.away {
  padding: 20px 20px 35px;
  line-height: 160%;
  text-align: center;
  background: #fff;
}
.away-wrapper {
  margin: 50px auto;
}
.away__header {
  margin-bottom: 7px;
  font-weight: 700;
}
.away__browsers {
  padding: 20px 24px;
}
.away__browser {
  display: inline-block;
  margin: 0 10px;
  padding: 20px 20px 15px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s;
}
.away__browser:hover {
  background: #fafafa;
}
.away__browser-ico {
  display: block;
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  background-image: url(../img/browsers.png);
}
.away__browser-ico.atom {
  background-position: 0 -400px;
}
.away__browser-ico.chrome {
  background-position: 0 -160px;
}
.away__browser-ico.firefox {
  background-position: 0 -80px;
}
.away__browser-ico.opera {
  background-position: 0 -240px;
}

.error-page {
  display: flex;
  z-index: 9999999999;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 1rem;
  color: var(--clr-text);
  line-height: 1;
  text-align: center;
  background-color: #fff;
}
.error-page__title {
  margin-bottom: 1.8rem;
  color: var(--clr-accent);
  font-weight: bold;
  font-size: min(7.5em, 16vw);
}
.error-page__description {
  font-weight: 500;
  font-size: min(1.6em, 6vw);
}

.pageup {
  display: block;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 90;
  position: fixed;
  right: 3vw;
  bottom: 3vw;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  background: var(--clr-accent);
  transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
}
.pageup:hover::after {
  opacity: 0.08;
}
.pageup:active::after {
  opacity: 0.1;
}
.pageup.is-active {
  opacity: 1;
  visibility: visible;
  bottom: 4.6vw;
}
.pageup::after {
  display: block;
  opacity: 0;
  z-index: 0;
  position: absolute;
  content: "";
  background: #000;
  transition: opacity 0.3s;
  inset: 0;
}
.pageup:before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  margin-top: -0.3em;
  margin-left: -0.5em;
  border-top: solid 0.19em #fff;
  border-left: solid 0.19em #fff;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}



.header {
    padding: clamp(0.625rem, 0.358rem + 0.74vw, 1.25rem) 0 clamp(0.625rem, 0.358rem + 0.74vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    max-width: var(--container);
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 5;
}
.header_inner {
    position: relative;
    background: #ffff;
    max-width: 100%;
}
.header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.938rem, 0.403rem + 1.49vw, 1.188rem);
}
.header__wrap .logo img {
    width: clamp(5.313rem, 3.041rem + 6.32vw, 10.625rem);
}
.header__wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 100%;
    fill: var(--white);
    filter: blur(40px);
    z-index: -1;
}
.phone .img {
    width: 24px;
}
.hphone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
.hphone .phone {
    font-weight: 600;
    color: var(--black-text);
    display: flex;
    align-items: center;
    gap: 5px;
}
.hphone .phone:hover {
    color: #e2697e;
}
.btn_link {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--blue3);
    border-bottom: 1px dashed;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}
.btn_link:hover {
    border-color: var(--green);
    color: var(--green);
}
.hmenu {
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    justify-content: space-between;
    max-width: clamp(50rem, 48.13rem + 6.2vw, 57.375rem);
    width: 100%;
    gap: clamp(0.625rem, -0.043rem + 1.86vw, 2.188rem);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: clamp(0.625rem, 0.251rem + 1.04vw, 1.5rem);
}
.nav__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--black-text);
}
.nav__item-current .nav__link {
    color: var(--blue2);
    cursor: default;
}
.nav__link:hover {
    color: var(--blue2);
}
.hmenu_catalog {
    border: 1px solid var(--blue2);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    height: 44px;
    align-items: center;
    font-size: 16px;
    line-height: 100%;
    color: var(--blue2);
    gap: 8px;
    background: var(--white);
    cursor: pointer;
    transition: .3s
}
.menu_catalog {
    right: 0;
    z-index: 100;
    box-shadow: 0 20px 20px rgba(0, 0, 0, .08);
    position: absolute;
    top: 100%;
    left: 50%;
    background: #fff;
    width: 100vw;
    height: auto;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) translateX(-50%);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
    border-top: 1px solid var(--clr-wrapper);
}
.menu_catalog_wrap.scroll{
  max-height: calc(100vh - clamp(4.375rem, 2.638rem + 4.83vw, 8.438rem));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu_catalog.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) translateX(-50%);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}
.menu_catalog_grid{
    position: relative;
    display: flex;
}

/* левая колонка */
.menu_catalog_sections{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 350px;
    border-right: 1px solid var(--blue-gray);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 510px;
}

/* пункты слева */
.menu_catalog_section{
    position: static;
    display: block;
}

/* панель справа (один раз, без дублей) */
.menu_catalog_panel{
    display: none;
    position: absolute;
    left: 350px;        /* = ширина левой колонки */
    top: 0;
    right: 0;
    z-index: 20;
    padding-left: 40px; /* отступ от разделительной линии */
}

/* приоритет: если курсор НЕ в меню — показываем current */
.menu_catalog_grid:not(:hover) .menu_catalog_section.is_current > .menu_catalog_panel{
    display: block;
}

/* если курсор в меню — показываем hover */
.menu_catalog_grid:hover .menu_catalog_section.is_hover > .menu_catalog_panel{
    display: block;
}

/* сетка внутри панели: подкатегории + картинка справа */
.menu_catalog_panel_grid{
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* колонка со списком подкатегорий */
.menu_catalog_panel_list {
    flex: 0 0 420px;
    min-width: 0;
    height: 510px;
}

/* подкатегории */
.menu_catalog_sublist{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* колонка под картинку (правый столбец) */
.menu_catalog_panel_media{
    flex: 1 1 auto;
    min-width: 0;
    min-height: auto; /* чтобы не было пустоты */
    display: flex;
    align-items: flex-end; /* как на примере — картинка снизу */
    justify-content: flex-start;
}
.menu_catalog_sublink:hover {
    color: var(--blue2);
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

/* картинка раздела */
.menu_catalog_panel_img{
    width: 100%;
    max-height: 350px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ссылки разделов */
.menu_catalog_section_link{
    font-weight: 500;
    font-size: clamp(1rem, 0.893rem + 0.3vw, 1.25rem);
    line-height: 120%;
    color: var(--black-text);
    text-decoration: none;
    display: inline-block;
}

/* подсветка ТОЛЬКО выбранного раздела слева */
.menu_catalog_section.is_current > .menu_catalog_section_link{
    color: var(--blue2);
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

/* подсветка ТОЛЬКО текущего подраздела справа */
.menu_catalog_subitem.is_here > .menu_catalog_sublink{
    color: var(--blue2);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    cursor: default;
}

/* чтобы панель не обрезалась */
.menu_catalog_wrap{
    padding: clamp(1.25rem, 0.582rem + 1.86vw, 2.813rem) 0;
    overflow: visible;
}



/* Иконка */
.hmenu_catalog .burger-icon{
  display:block;
}

/* Линии */
.hmenu_catalog .burger-line{
  fill: none;
  stroke: currentColor; 
  stroke-width: 2;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .4s, opacity .4s;
}
.hmenu_catalog.is-open {
    background: var(--blue2);
    color: #fff;
    fill: #fff !important;
    transition: .3s
}
/* Состояние "открыто" — рисуем крестик */
.hmenu_catalog.is-open .burger-line--top{
  transform: translateY(5px) rotate(45deg);
}

.hmenu_catalog.is-open .burger-line--mid{
  opacity: 0;
}

.hmenu_catalog.is-open .burger-line--bot{
  transform: translateY(-5px) rotate(-45deg);
}

/* Уважение к reduce motion */
@media (prefers-reduced-motion: reduce){
  .hmenu_catalog .burger-line{
    transition: none;
  }
}










.breadcrumb {
    margin: clamp(1rem, 0.893rem + 0.3vw, 1.25rem) 0 clamp(1.25rem, 0.716rem + 1.49vw, 2.5rem);
}
.breadcrumb ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    line-height: 100%;
    color: var(--blue-gray);
}
.breadcrumb ul li a {
    color: var(--blue-gray);
}


/* footer */

.footer {
    border-radius: 0;
    padding-right: 0;
    padding-left: 0;
}
.footer_logo .logo {
    width: clamp(12.5rem, 11.164rem + 3.72vw, 15.625rem);
}
.footer_wrap {
    display: flex;
    flex-direction: column;
}
.footer_row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer_item .title {
    font-size: 14px;
    line-height: 140%;
    color: var(--white);
    opacity: 0.7;
    margin: 0 0 11px;
}
.footer_address a {
    font-size: 16px;
    line-height: 140%;
    color: var(--white);
}
.footer_mail a {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.393rem + 0.3vw, 1.75rem);
    line-height: 100%;
    color: var(--white);
}
.footer_phone {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.393rem + 0.3vw, 1.75rem);
    line-height: 100%;
    color: var(--white);
    margin: 0 0 20px;
    display: inline-block;
}
.white_social {
    display: flex;
    gap: 12px;
}
.footer_row_line {
    border-top: 1px solid rgb(255 255 255 / 30%);
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    padding: clamp(1.875rem, 1.608rem + 0.74vw, 2.5rem) 0 clamp(1.875rem, 1.608rem + 0.74vw, 2.5rem);
    margin: clamp(1.875rem, 1.608rem + 0.74vw, 2.5rem) 0 clamp(1.875rem, 1.608rem + 0.74vw, 2.5rem);
    display: flex;
    flex-direction: column;
}
.footer_bottom {
    font-size: 14px;
    line-height: 140%;
    color: var(--white);
    opacity: 0.7;
}
.footer_copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer_bottom a {
    color: var(--white);
    opacity: 0.7;
}
.footer_inn {
    display: flex;
    gap: clamp(0.5rem, -0.141rem + 1.78vw, 2rem);
    flex-direction: row;
    flex-wrap: wrap;
}
.footer_menu ul {
    column-count: 2;
    column-gap: clamp(1.875rem, 1.341rem + 1.49vw, 3.125rem);
    max-width: 675px;
    width: 100%;
}
.footer_menu ul li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}
.footer_menu ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--white);
    opacity: 0.8;
    margin: 0 0 8px;
    display: inline-block;
}
.footer_row_line .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    opacity: 1;
    margin: 0 0 15px;
    cursor: pointer;
    display: inline-block;
}
.footer_item.footer_menu_b {
    width: 46%;
}
.footer_menu_b ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 0.626rem + 1.04vw, 1.875rem);
}
.footer_menu_b a {
    font-weight: 500;
    font-size: clamp(1.125rem, 1.072rem + 0.15vw, 1.25rem);
    line-height: 100%;
    color: var(--white);
}
.footer a:hover {
    color: var(--green);
    opacity: 1;
}

.white_social .sicon {
    border: 1px solid var(--white);
    fill: var(--white);
}
.white_social .sicon:hover {
    border: 1px solid var(--green);
    fill: var(--white);
    background: var(--green);
}


.menu_search {
    display: flex;
    align-items: center;
    gap: clamp(0.625rem, -0.043rem + 1.86vw, 2.188rem);
    overflow: hidden;
    width: 100%;
}
.header-search {
  position: static;
  width: 44px;
  height: 44px;
}
.header-search.is-open{
  z-index: 5;
}
.menu_search nav {
    position: relative;
    z-index: 2;
}
/* Форма: в закрытом виде занимает минимум */
.header-search__form{
  position: absolute;
  top: 0;
  right: 0;
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: visible;
}

/* Поле ввода (по умолчанию скрыто) */
.header-search__field {
    margin: 0;
    height: 44px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.header-search__input{
  height: 44px;
  border: 1px solid var(--blue2);
  border-radius: 100px;
  padding: 0 18px;
  outline: none;
  background: #fff;
    font-size: 16px;
  width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: width .22s ease, opacity .18s ease, visibility 0s linear .22s;
}

/* Твоя кнопка */
.search{
  border: 1px solid var(--blue2);
  border-radius: 100px;
  height: 44px;
  width: 44px;
  min-width: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  gap: 8px;

  background: transparent;
  color: var(--blue2);
  cursor: pointer;
  padding: 0;

  transition: width .22s ease, padding .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.search svg{
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.search span{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity .2s ease, visibility 0s linear .2s;
}
.header-search.is-open .header-search__input {
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: width .3s, opacity .3s, visibility 0s linear 0s, border-color .22s ease;
    z-index: 1;
    position: relative;
}
.header-search.is-open .search:hover {
    background: var(--green);
    border-color: var(--green);
}
.header-search.is-open .header-search__form:has(.search:hover) .header-search__input{
  border-color: var(--green);
}
.header-search.is-open .search {
    width: auto;
    padding: 0 40px;
    background: var(--blue2);
    color: #fff;
    border-color: var(--blue2);
    z-index: 2;
    position: absolute;
    right: 0;
}

.header-search.is-open .search span{
  opacity: 1;
  visibility: visible;
  position: static;
  transition: opacity .18s ease, visibility 0s linear 0s;
    font-size: 16px;
}
.header-search.is-open .search svg {
    opacity: 0;
    display: none;
}




/* mobile menu sidebar */

.mobile {
	position: fixed;
	top: 0;
	right: 0;
	height: 100% !important;
	width: 100%;
	max-width: 100%;
	z-index: 999999;
	-webkit-transition:-webkit-transform 0.8s;
	transition:-webkit-transform 0.8s;
	-o-transition:-o-transform 0.8s;
	-moz-transition:transform 0.8s,-moz-transform 0.8s;
	transition:transform 0.8s;
	transition:transform 0.8s,-webkit-transform 0.8s,-moz-transform 0.8s,-o-transform 0.8s;
	-webkit-transform:translateX(100%);
	-moz-transform:translateX(100%);
	-ms-transform:translateX(100%);
	-o-transform:translateX(100%);
	transform:translateX(100%);
	
	transition: all 0.8s ease;
}
.mobile.active{
	display: block;
    z-index: 320;
	-webkit-transform:translateX(0);
	-moz-transform:translateX(0);
	-ms-transform:translateX(0);
	-o-transform:translateX(0);
	transform:translateX(0);
	-webkit-box-shadow:0 0 20px rgba(0,0,0,.1);
	-moz-box-shadow:0 0 20px rgba(0,0,0,.1);
	box-shadow:0 0 20px rgba(0,0,0,.1);
	-webkit-transition:-webkit-transform 0.8s;
	transition:-webkit-transform 0.8s;
	-o-transition:-o-transform 0.8s;
	-moz-transition:transform 0.8s,-moz-transform 0.8s;
	transition:transform 0.8s;
	transition:transform 0.8s,-webkit-transform 0.8s,-moz-transform 0.8s,-o-transform 0.8s;
	transition: all 0.8s ease;
	    -webkit-transition:.3s;
	-o-transition:.3s;
	-moz-transition:.3s;
	transition:.3s;
	height: 100% !important;
	width: 100%;
}

.mobile_overlay{
	height: 100% !important;
	position: absolute;
    transition: transform .3s,filter .3s;
}
.mobile_overlay_body.active_overlay_body{
	display: block;
	height: 100%;
	opacity: 0.5;
	transition:.3s;
}
.mobile_overlay.ov_active{
	opacity: 1;
    transition: transform .3s,filter .3s;
}
.overlay {
    position: absolute;
    min-width: 280px;
    max-width: 400px;
    width: 100%;
    padding: 0 20px;
    right: 0;
    background: #fff;
    overflow: auto;
    height: 100% !important;
    z-index: 999;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -moz-transition: transform 0.3s,-moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s,-webkit-transform 0.3s,-moz-transform 0.3s,-o-transform 0.3s;
}
.mobile .btn-close{
	display: flex;
	justify-content: flex-end;
	
}
.social_icon_head {
    margin: 0 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
.icon-close{
	display: block;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	fill: var(--pr_blue_1);
}
.mobile_overlay{
	width: 100%;
	opacity: 0;
}
.mobile_overlay_body{
	display: none;
	height: 0;
    width: 100%;
    background: #000000;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
	transition:.3s;
}
.flex.flex_s_between.flex_a_center img {
    width: 100px;
}
.mlogo {
    margin: 20px 0 0 0;
    display: flex;
    gap: 30px;
}
.mlogo img {
    width: 50%;
    margin: 0;
}
.email.info_mobile.flex {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
}
.info_mobile a.phone {
    font-weight: 600;
    margin: 0 0 5px 0;
}
.info_mobile a.number {
    font-size: 1.4rem;
    color: #37A03C;
}
nav.menu_box {
    margin: 15px 0 15px 0;
}
ul.mmo-dropdown {
    display: none;
    overflow: hidden;
    flex-direction: column;
}
.mmo-navbar .arrow-down {
    height: 8px;
    width: 8px;
    border: 1px solid #4F4F4F;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    transition: 0.3s;
}
.mmo-navbar .arrow-down:after {
    content: "";
    position: absolute;
    left: -9px;
    top: -13px;
    width: 30px;
    height: 30px;
}
li.mmo-submenu1 {
    font-size: 15px;
    margin: 0 0 5px 0;
}
li.last.mmo-submenu1 {
    border-bottom: 0;
}
.mmo-navbar .mmo-submenu1.active ul.mmo-dropdown {
    display: flex;
    background: #fff;
    height: auto;
}
.mmo-navbar  .mmo-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
li.mmo-submenu1 {
    position: relative;
}
.main-menu-arr {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -10px;
    top: 0;
    width: 3em;
    height: 3em;
}
.mamenu {
    display: flex;
    align-items: center;
}
.main-menu-arr.active .arrow-down {
    height: 8px;
    width: 8px;
    border: 1px solid #333;
    border-width: 2px 2px 0 0;
    transform: rotate(133deg);
    transition: 0.3s;
}
li.mmo-submenu2 a {
    font-size: 1em;
}
a.dropdown-toggle {
    padding: 0 35px 0 0;
}
.mmo-submenu1.dropdown.active a.dropdown-toggle {
    font-weight: bold;
}

li.mmo-submenu2 {
    border-bottom: 1px solid #e9e9e9;
    padding: 0 0 0 10px;
}
li.mmo-submenu2:last-child {
    border-bottom: 0px solid #e9e9e9;
    margin: 0;
}
.service-who .desc {
    max-width: 80%;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.pm-line {
    margin: 30px 0 0 0;
}
.fixed-menu {
    overflow: hidden;
    opacity: 0;
    height: 0;
    transition: 0.3s;
}
.mwrap {
    transition: transform .3s,filter .3s;
    overflow: hidden;
}
.mwrap.nwrap-yes {
    overflow-y: hidden;
    transform: translateX(calc(0px - 300px));
    transition: all .3s;
}
li.mmo-submenu1 {
    font-size: 15px;
    margin: 0;
    border-bottom: 1px solid #e9e9e9;
}
.mmo-submenu1 a {
    padding: 10px 20px 10px 0;
    display: block;
    width: 100%;
    margin: 0 30px 0 0;
}
.m-header-btn .phone_email {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
}
.m-header-btn .address {
    display: flex;
    max-width: 100%;
    margin: 0 0 20px;
    justify-content: flex-start;
}
.m-header-btn .callback {
    margin: 20px 0 30px 0;
    width: 100%;
}
.m-header-btn {
    padding: 0 0 60px;
}
.m-header-btn .address svg {
    margin: 0 7px 0 0;
}
.m-header-btn .phone {
    margin: 0 0 10px 0;
    font-size: 1em;
    color: var(--clr-accent);
    font-weight: 600;
}
.a_email a {
    color: var(--clr-accent);
    font-weight: 500;
}
.m-header-btn .address address {
    font-size: 0.9em;
    font-style: normal;
}
.conteiner_overlay {
    height: 90%;
}
.wrap {
    height: 100%;
}
.header_menu_mobile {
    height: 100%;
}
.menu_overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mmo-submenu1.active > a, .mmo-submenu1.active .mamenu a, .mmo-submenu2.active a {
    font-weight: 700;
    color: var(--clr-accent);
}



/* burger icon */

.mburger {
    align-items: center;
    display: none;
}
.burger {
    display: block;
    width: 58px;
    height: 22px;
    position: relative;
    cursor: pointer;
    border: 0;
}
.nwrap-yes .mburger {
        display: none;
}
.header__phone:hover {
    color: var(--clr-accent);
}
/* close icon */

.mm__close {
    margin-left: auto;
    right: 0;
    width: 50px;
    height: 50px;
}
.close {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer
}

.close:hover:after,.close:hover:before {
    width: 24px;
    margin-left: -12px
}

.close:after,.close:before {
    content: "";
    display: block;
    position: absolute;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    height: 2px;
    width: 20px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -1px;
    background: #333;
    border-radius: 2px
}

.close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.header_right .h576 {
    display: flex;
}
.social_icon_head {
    margin: 0 0 20px;
}
.fixed_header .header_wrap .logo {
    width: 220px;
}
.fixed_header .nav__link {
    font-size: 16px;
}
.fixed_header .header__phone {
    font-size: 15px;
}
.fixed_header .header_wrap {
    padding: 8px 0;
}
.cookies__popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #fff;
    box-shadow: 0px 20px 30px #333;
    z-index: 2147483647;
    opacity: 1;
    transition: all 0.3s;
    font-size: 15px;
}
.cookies__popup .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap:24px;
}
.cookies__popup .text-content a {
    color: var(--white-color);
    text-decoration: underline;
    transition: all 0.3s;
    text-decoration: underline;
}
.cookies__popup .text-content a:hover{
    text-decoration: none;
}
.cookies_title {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 500;
}
.close_cookies {
    min-width: max-content;
    height: auto;
}
.cookies__popup a {
    color: var(--clr-accent);
    text-decoration: underline;
}
.cookies__popup a:hover {
    text-decoration: none;
}
.product_gal_thumb .swiper-slide {
    border: 1px solid var(--devider);
    overflow: hidden;
    border-radius: var(--border-radius);
}
.product_gal_thumb .swiper-slide-visible.swiper-slide-thumb-active {
    border: 1px solid var(--green);
}
.blue_box .agree__text .link {
    color: #fff;
}
#mse2_ms\|vendor .filter_wrap.scroll {
    height: 355px;
}