:root {
  --c_light: #f8f9fa;
  --blue: #082161;
  --sec: #5bfaca;
  /*--ter: #D9FFF1;*/
  --ter: #5BFACA;
  --d_grey: #3f4141;
  --white: #fff;
  --black: #212121;
  --bodyc: #3f4141;
  --l_grey: #d7d7d7;
  --sl_grey: #f3f3f3;
  --grey: #a4acb1;
  --bordo_1: #dedede;
  --bordo_2: #d8d1cc;
  --ssl_grey: #f7f7f7;
}
.secondary-button__container {
  margin-top: 1rem;
  font-family: 'Noto Sans Regular';
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: var(--blue);
  border-style: none;
  background-color: var(--sec);
  padding: 0.375rem 1.2rem;
  font-size: 1rem !important;
  line-height: 1.5;
  border-radius: 1.2rem;
  text-decoration: none !important;
  cursor: pointer;
  border: 1px solid var(--sec);
  transition: background-color .2s, color .2s;
}
.secondary-button__container:hover {
  background-color: var(--blue);
  color: var(--sec);
}

/* CONTAINERS */
.mega-menu__container {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1001;
  transition: .5s;
}
.mega-menu__container.scrolled{
	background-color:#082161;
}
.mega-menu__container .mega-menu {
  height: 90px;
  width: 100%;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1rem;
  align-items: center;
}

/* LOGO */
.mega-menu__logo-container {
  height: 90px;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.mega-menu__logo-container .mega-menu__logo {
  width: 150px;
}
.mega-menu__logo.scroll_logo{
	display:none;
}
.mega-menu__logo.default_logo{
	display:block;
}
.scrolled .mega-menu__logo.scroll_logo{
	display:block!important;
}
.scrolled .mega-menu__logo.default_logo{
	display:none!important;
}
/* VOICES */
.mega-menu__voices-container {
  height: 90px;
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-around;
  color: white;
  position: relative;
  column-gap: 60px;
}
.mega-menu__voices-container .mega-menu__voice {
  color: white;
  cursor: pointer;
  transition: color 0.2s;
  font-family: 'Noto Sans Bold',Helvetica,Arial,Lucida,sans-serif;
}
.mega-menu__voices-container .mega-menu__voice:hover {
  color: var(--sec);
}

/* MENU */
.mega-menu__menu-container {
  height: 90px;
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  color: white;
  position: relative;
}
.mega-menu__menu-container .menu__content-second-sub-second-languages {
  margin-right: 25px;
  color: white;
}
.mega-menu__menu-container .menu__content-second-sub-second-languages > a {
  color: white;
}
.menu__content-second-sub-second > p{
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 40px !important;
	padding-bottom: 0 !important;
}
.mega-menu__menu-container .mega-menu__menu-toggle {
  cursor: pointer;
  column-gap: 15px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-family: 'Noto Sans Bold', sans-serif;
}

/* MENU 2 */
.menu__container {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 50vh;
  background-color: white;
  transition: transform 0.5s;
}
.menu__container.close {
  transform: translateY(-100vh);
}
.menu__container .menu__top-container {
  padding: 1rem;
  height: 90px;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
.menu__container .menu__top-container .menu__top-logo {
  width: 150px;
}
.menu__container .menu__top-container .mega-menu__menu-toggle {
  color: var(--blue);
  fill: var(--blue);	
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 15px;
  align-items: center;
  font-family: 'Noto Sans Bold', sans-serif !important;
}
.menu__container .menu__content-container {
  height: calc(50vh - 90px);
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}

/* MENU 2 CONTENT */
.menu__container .menu__content-container .menu__content-first,
.menu__container .menu__content-container .menu__content-second {
  width: 50%;
}
.menu__container
  .menu__content-container
  .menu__content-first
  .menu__content-first-title {
  color: var(--blue);
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  width: 100%;
  font-family: "Sora", sans-serif;
	  line-height: 1.3;
}
@media screen and (max-width: 1024px){
	.menu__container
 	.menu__content-container
  	.menu__content-first
	.menu__content-first-title{
		font-size: 22px;
	}
	.menu__container .menu__content-container .menu__content-first > a {
	 	padding-bottom: 15px !important;
	}
}
.mega-menu__mobile-voices .initial__link-container > div{
	align-items: center;
}
.mega-menu__mobile-voices .initial__link-container svg{
	display: none !important;
}
.menu__container .menu__content-container .menu__content-first {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.menu__container .menu__content-container .menu__content-first > a {
  padding-bottom: 33px;
}
.menu__container .menu__content-container .menu__content-second {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.menu__container
  .menu__content-container
  .menu__content-second
  .menu__content-second-sub-first {
  color: var(--blue);
  font-size: 16px;
  font-family: 'Noto Sans Bold', sans-serif;
  margin: 0;
  display: flex;
  flex-flow: column;
  margin-top: 20px;
  margin-bottom: 40px;
}
.menu__container
  .menu__content-container
  .menu__content-second
  .menu__content-second-sub-first > a:not(:first-child) {
    padding-top: 25px;
}
@media screen and (max-width: 1024px){
	  .menu__container
	  .menu__content-container
	  .menu__content-second
	  .menu__content-second-sub-first > a:not(:first-child) {
		padding-top: 10px;
	}
}
.menu__container
  .menu__content-container
  .menu__content-second
  .menu__content-second-sub-second
  .menu__content-second-sub-second-languages {
  color: var(--grey);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--f_pr);
}
.menu__container
  .menu__content-container
  .menu__content-second
  .menu__content-second-sub-second
  .menu__content-second-sub-second-languages > a {
    color: var(--grey);
}
.menu__container
  .menu__content-container
  .menu__content-second
  .menu__content-second-sub-second
  .menu__content-second-sub-second-socials {
    width: 100%;
    display: flex;
    flex-flow: row;
	margin-top: 40px;  
  }
.menu__container
  .menu__content-container
  .menu__content-second
  .menu__content-second-sub-second
  .menu__content-second-sub-second-socials .menu__content-second-sub-second-social {
    width: 32px;
    height: 32px;
	border: 1px solid #D7D7D7;
	border-radius: 50px;
	margin-right: 10px;
  }

/* MOBILE HEADER */
.mega-menu__container .mega-menu .mega-menu__mobile-toggle-container {
  display: none;
  position: relative;
}

/* DETAILS */
.mega-menu__container .mega-menu .details__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
	opacity: 1;
  animation: fadeIn .5s;
  z-index: 9999;
}
.mega-menu__container .mega-menu .details__container.close {
  /*transform: translateY(-100%);*/
	height: 0;
	width: 0;
	opacity: 0;
	display: none;
	animation: fadeOut .5s;
	z-index: -100;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
.mega-menu__container .mega-menu .details__container .details__content-container {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	background: rgba(0,0,0,0.45);
}

/* First */
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container {
  height: 100vh;
  background-color: white;
  position: relative;
  overflow: auto;
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .details__top-container {
  height: 90px;
  width: 100%;
  padding: 1rem;
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .details__top-container .mega-menu__voice-toggle.close {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 15px;
  align-items: center;
  height: 100%;
  cursor: pointer;
  color: var(--blue);
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container {
  cursor: pointer;
  transform: translateX(0);
  transition: transform 0.2s;
  width: 85%;
  padding: 12.5px 0;
}
@media screen and (max-width: 767px){
	.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container{
		padding: .5rem 0 !important;
	}
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container h3 {
  padding-bottom: 0;
  transition: color .2s;
  color: var(--grey);
	font-family: 'Sora',Helvetica,Arial,Lucida,sans-serif;
	font-size: 18px !important;
	line-height: 1.1;
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container:hover h3 {
  color: var(--blue);
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container:hover {
  transform: translateX(32px);
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container .first-step__link-arrow {
  opacity: 0;
  transition: opacity .2s;
}
.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container:hover .first-step__link-arrow {
 opacity: 1; 
}

.mega-menu__container .mega-menu .first-step__link-divider-container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.mega-menu__container .mega-menu .first-step__link-divider {
  background-color: #D1D1D1;
  width: 90%;
  height: 1px;
}
/*.full-catalog-link{
	position: absolute;
	bottom: 50px;
}*/
.full-catalog-link a p{
	font-family: 'Noto Sans Bold', sans-serif !important;
}
/* Second */
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container {
  position: relative;
  transition: height .2s;
  height: 100vh;
  overflow: auto;
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container {
  cursor: pointer;
  transform: translateX(0);
  transition: transform 0.2s;
  padding: 30px 0;
  width: 85%;
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container:hover {
  transform: translateX(32px);
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container .second-step__link-arrow {
  opacity: 0;
  transition: opacity 0.2s;
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container:hover .second-step__link-arrow {
  opacity: 1;
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container h3 {
  color: #A4ACB1;
  transition: opacity .2s;
  opacity: .75;
  padding-bottom: 0;
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container:hover *{
	color: #082161 !important;
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container:hover svg{
	stroke: #082161 !important;
}
.subtitle-menu{
	font-family: 'Noto Sans Regular', sans-serif;
}
.mega-menu__container .mega-menu .details__container .details__content-container .second-step__container .second-step__link-container:hover h3 {
  opacity: 1;
}
.mega-menu__container .mega-menu .second-step__link-divider-container {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}
.mega-menu__container .mega-menu .second-step__link-divider {
  background-color: #DDDDDD;
  width: calc(100% - 64px);
  height: 1px;
}
/* Third */
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container {
  position: relative;
  transition: height .2s;
  height: 100vh;
  overflow: auto;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__details-container {
  height: 32px;
  padding-left: 32px;
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 1fr 1fr;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__details-container .third-step__details {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--f_pr);
  color: #3f4448;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__link-container {
  cursor: pointer;
  padding-left: 32px;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__link-container .third-step__link-details {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 30px 0;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__link-container .third-step__link-details h3:before{
	display: inline-block;
	content: 'Donatoni';
	text-transform: uppercase;
	margin-right: 5px;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__link-container .third-step__link-details h3 {
  padding-bottom: 0;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__link-container .third-step__link-details {
  color: var(--grey);
  transition: color .2s;
}
.mega-menu__container .mega-menu .details__container .details__content-container .third-step__container .third-step__link-container:hover .third-step__link-details {
  color: var(--blue);
}
.third-step__link-divider-container {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}
.third-step__link-divider {
  background-color: #D1D1D1;
  width: calc(100% - 64px);
  height: 1px;
}
.third-step__close-container {
  display: none;
  cursor: pointer;
  width: 100%;
  height: 90px;
  padding: 1rem;
  background-color: white;
  margin-bottom: 2rem;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 15px;
}


.first-step__description-container {
  margin: auto;
  width: 90%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #3F4448;
  text-align: start;
}

/* MOBILE */
@media (max-width: 1024px) {
  .mega-menu__container .mega-menu .details__container .details__content-container .third-step__container.close,
  .mega-menu__container .mega-menu .details__container .details__content-container .second-step__container.close {
    height: 0;
  }
  .mega-menu__container .mega-menu {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu__logo-container {
    justify-content: flex-end;
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container {
    display: flex;
    justify-content: flex-start;
    color: white;
    fill: white;
    cursor: pointer;
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__menu-toggle {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 15px;
    align-items: center;
	  
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices {
    top: 0;
    left: 0;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: white;
    transition: transform .5s;
    transform: translateY(0);
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices.close {
    transform: translateY(-120vh);
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .mega-menu__mobile-voices-close {
    height: 90px;
    padding: 0 1rem;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .mega-menu__mobile-voices-close .mega-menu__voice-toggle.close {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 15px;
    align-items: center;
    color: var(--blue);
    fill: var(--blue);
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .initial__link-container {
    cursor: pointer;
    transform: translateX(0);
    transition: transform 0.2s;
    width: 85%;
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .initial__link-container {
    transform: translateX(32px);
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .initial__link-container h3 {
    color: #a4acb1;
    transition: color 0.2s;
    margin: 0;
    font-weight: 700;
    font-size: 24px !important;
	padding-bottom: 0 !important;
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .initial__link-container:hover h3 {
    color: var(--blue);
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .initial__link-divider-container {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
  }
  .mega-menu__container .mega-menu .mega-menu__mobile-toggle-container .mega-menu__mobile-voices .initial__link-divider {
    width: 85%;
    height: 1px;
    background-color: #a4acb1;
    opacity: 30%;
  }
  .menu__container .menu__content-container .menu__content-first,
  .menu__container .menu__content-container .menu__content-second {
    width: 100%;
  }
  .menu__container .menu__content-container .menu__content-second {
    grid-template-columns: 1fr;
  }
  .menu__container .menu__content-container {
    height: calc(100vh - 90px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .menu__container {
    height: 100vh;
  }
  .mega-menu__container .mega-menu .details__container .details__content-container {
    display: block;
    width: 100vw;
  }
	.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container{
		width: 95%!important;
	}
	.mega-menu__container .mega-menu .details__container .details__content-container .first-step__container .first-step__link-container h3{
		width: calc(100% - 32px);
	}
  .mega-menu__voices-container,
  .mega-menu__menu-container {
    display: none;
  }
  .mega-menu__container .mega-menu .first-step__link-divider {
    width: 100%;
  }  
  .mega-menu__container .mega-menu .details__container .details__content-container .second-step__container,
  .mega-menu__container .mega-menu .details__container .details__content-container .third-step__container {
    transform: translateY(0);
    position: fixed;
    top: 0;
    left: 0;
    transition: transform .4s, height .4s;
    width: 100vw;
    height: 100vh;
  }
  .third-step__close-container {
    display: flex;
    color: var(--blue);
  }
  .first-step__description-container {
    width: 100%;
    margin-left: 32px;
  }
	.wpml-ls-legacy-list-horizontal{
		padding: 0 !important;
	}
}

/* MOBILE MENU LANGUAGE SWITCHER */
.mega-menu .mega-menu__mobile-voices .wpml-ls-slot-shortcode_actions a {
  color: #a4acb1;
  font-size: 1.4em;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  padding: 5px 10px 5px;
}
.mega-menu .mega-menu__mobile-voices .wpml-ls-slot-shortcode_actions:first-child a {
  padding-left: 0;
}
.mega-menu .mega-menu__mobile-voices .wpml-ls-slot-shortcode_actions:not(:first-child) a::before {
  content: '//';
  margin-right: 10px;
}
/* TOPBAR LANGUAGE SWITCHER */
.mega-menu__menu-container .wpml-ls-slot-shortcode_actions a {
  color: white;
  padding: 5px 5px 5px;
  font-family: 'Noto Sans Bold',Helvetica,Arial,Lucida,sans-serif;
}
.mega-menu .mega-menu__menu-container .wpml-ls-slot-shortcode_actions:not(:first-child) a::before {
  content: '//';
  margin-right: 5px;
  vertical-align: middle;
}
/* DETAILS MENU LANGUAGE SWITCHER */
.mega-menu .menu__container .wpml-ls-statics-shortcode_actions {
  padding: 0;
}
.mega-menu .menu__container .wpml-ls-slot-shortcode_actions a {
  color: #a4acb1;
  padding: 5px 5px 5px;
}
.mega-menu .menu__container .wpml-ls-slot-shortcode_actions:first-child a {
  padding-left: 0;
}
.mega-menu .menu__container .wpml-ls-slot-shortcode_actions:not(:first-child) a::before {
  content: '//';
  margin-right: 5px;
  vertical-align: middle;
}
.mega-menu .menu__container .wpml-ls-slot-shortcode_actions:last-child a::after {
  content: '//';
  margin-left: 5px;
  vertical-align: middle;
}
.menu-gamma-button{
	padding: 12px 35px;
	background-color: #082161;
	color: #5BFACA;
	font-family: 'Sora', Arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
	border-radius: 50px;
}
.menu-gamma-button .gamma-title{
	text-transform: uppercase;
}
.menu-gamma-button-container{
	display:flex;
	align-items:center;
	justify-content:center;
	margin-top: 100px;
}
.post-type-archive-product .mega-menu__container{
	background-image: linear-gradient(180deg,rgba(63,65,65,0.7) 0%,rgba(255,255,255,0) 100%)!important;
}
.dgwt-wcas-search-wrapp{
	margin: 0 0 0 auto !important;
	color: #fff !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{
	padding: 0 !important;
	border-radius: 0 !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
	padding: 7.5px 12px 7.5px 40px !important;
	font-size: 15px !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{
	top: 5px !important;
	left: 5px !important;
}
.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp{
	padding-top: 0 !important;
}
.dgwt-wcas-si{
	width: 110px !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-preloader {
    margin-right: 10px !important;
}
.dgwt-wcas-ico-magnifier-handler{
	fill: #fff;
}
.single-product .mega-menu__container:not(.scrolled) .dgwt-wcas-ico-magnifier-handler{
	fill: #082161;
}
.search-main-container-desk{
	margin-right: 20px;
	margin-top: 7.5px;
}
@media screen and (max-width: 1024px){
	.dgwt-wcas-search-wrapp{
		margin: 0 auto 0 20px !important;
		color: #fff !important;
	}
	.dgwt-wcas-search-wrapp {
		max-width: 85%;
	}
}
.searchcontent{
	position: absolute;
	left: 0;
}
.custom-search-button{
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	outline: none !important;
	cursor: pointer;
}
.is-search-icon{
	cursor: pointer;
}
.custom-search-button svg{
	fill: #fff;
}
@media screen and (min-width: 768px){
	.searchcontent{
		min-width: 350px;
	}
}
@media screen and (max-width: 767px){
	.searchcontent{
		min-width: 300px;
		top: 40px;
	}
	.custom-search-button{
		margin-left: 15px;
	}
}
.search-main-container-mobile{
	display: flex;
	align-items: center;
}