/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

@font-face {
  font-family: 'NeutralFace';
  src: url('../fonts/NeutralFace.eot'); /* IE9 Compat Modes */
  src: url('../fonts/NeutralFace.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/NeutralFace.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/NeutralFace.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/NeutralFace.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/NeutralFace.svg#NeutralFace') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'NeutralFace-Bold';
  src: url('../fonts/NeutralFace-Bold.eot'); /* IE9 Compat Modes */
  src: url('../fonts/NeutralFace-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/NeutralFace-Bold.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/NeutralFace-Bold.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/NeutralFace-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/NeutralFace-Bold.svg#NeutralFace-Bold') format('svg'); /* Legacy iOS */
}

html, body {
    position: relative;
    max-width: 100%;
/*    overflow-x: hidden;*/
}

body {
  position: relative;
  font-family: "Manrope", "NeutralFace", "NeutralFace-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: normal;
  line-height: 25px;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  color: #1E1E1E;
  margin: 0;
  padding: 0;
}

h1 {
    font-size: 36px;
    line-height: 125%;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "NeutralFace-Bold", sans-serif;
}

h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    color: #1e1e1e;
}

h4,
h5 {
    margin: 0;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

a, a:active, a:focus, a:hover {
    text-decoration: none;
    outline: none;
    border: none;
}

a, div, form, input, li, p, section, span {
    box-sizing: border-box;
}

/*a img {*/
/*    border: 1px solid #fff;*/
/*    box-sizing: border-box;*/
/*}*/

img {
    max-width: 100%;
    height: auto;
}

p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
    color: #BBBBBB;
    margin: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

li, p, ul {
    display: block;
}

button, button:active, button:focus, button:hover,
input, input:active, input:focus, input:hover {
    text-decoration: none !important;
    outline: none;
    border: none;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body.iti-mobile .iti--container {
    z-index: 9999;
}

.container {
    position: relative;
    max-width: 1340px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.container-fluid {
    position: relative;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid #393939;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    background-color: #fff;
    position: relative;
    z-index: 999;
}

.header .header__top {
   background: #393939;
   padding: 12px 0;
}

.header .header__top .header__top-info {
    white-space: nowrap;
    overflow: visible;
    margin-left: -71px;
}

.header .header__top .header__top-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.header .header__top .header__top-info ul li {
    position: relative;
    margin: 0px 47px;
}

.header .header__top .header__top-info ul li:after {
    content: '/';
    position: absolute;
    top: -8px;
    left: 104px;
    color: #F2F2F2;
    margin-top: 4px;
}

.header .header__top .header__top-info ul li p {
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    text-transform: uppercase;
    color: #f2f2f2;
}

.header__bottom {
    background-color: #FCFCFC;
    padding: 12px 0;
}

.header__bottom .nav__box {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__bottom .nav__box .search__mob {
    display: none;
}

.header__bottom .nav__box-icons {
    position: relative;
}

.header__bottom .nav__box-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__bottom .nav__box-icons ul li {
    margin: 0 0 0 16px;
}

.header__bottom .nav__box-icons ul li a {
    display: block;
}

.header__bottom.navbar_fixed .header__bottom-wrap {
  position: fixed;
  width: 100%;
  top: -71px;
  left: 0;
  right: 0;
  padding: 15px 0;
  background: #fff;
  transform: translateY(71px);
  transition: transform 500ms ease, background 500ms ease;
  -webkit-transition: transform 500ms ease, background 500ms ease;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 9990; }

.header .header__bottom .header__bottom-wrap .container {
   max-width: 95%;
}

  .header__bottom .nav__box .nav__box-logo {
     position: absolute;
     top: 56%;
     left: 50%;
     transform: translate(-50%, -50%);
  }

  .header__bottom .nav__box-logo.nav__box-logomob {
     display: none;
  }

/*--------------------------------------------------------------
# Search Open
--------------------------------------------------------------*/

.search-wrap {
    position: absolute;
    width: 280px;
    height: 100%;
    top: 0;
    /*    left: 0;*/
    right: 123px;
    bottom: 0;
    background: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease; }

.search-wrap .container {
  position: relative;
  height: 100%; }

.search-wrap.active {
  opacity: 1;
  visibility: visible; }

.search-wrap .form-control {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-bottom: 1px solid #393939;
  z-index: 3;
  font-size: 16px;
  padding: 9px 9px 6px 10px; }
  @media (max-width: 991.98px) {
    .search-wrap .form-control {
      font-size: 15px; } }

.search-wrap .search-close {
  z-index: 4;
  position: absolute;
  right: 8px;
  top: 30%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .search-wrap .search-close span {
    font-size: 30px; }

.search-wrap form button {
     position: absolute;
     right: 20px;
     background-color: transparent;
     z-index: 10;
}

.search-wrap .search-close .icon-close2 {
  position: relative;
}

.search-wrap .search-close .icon-close2:before {
  position: absolute;
  border: none;
  display: block;
  top: -14px;
  right: -5px;
  content: url(../img/icons/close-ico.svg);
}

/*---------------------
  Menu
-----------------------*/
#hamburger {
  cursor: pointer;
  transition: opacity 0.25s linear;
  width: 28px;
  height: 44px;
  display: flex;
  align-items: center;
}

/*#hamburger:hover {
  opacity: 1;
}*/

#hamburger div,
#hamburger div:after,
#hamburger div:before {
  background-color: #393939;
  border-radius: 10px;
  width: 28px;
  height: clamp(0.1rem, 0.1vw + 0rem, 0.4rem);
  transition: all 0.15s linear;
}

#hamburger div:before,
#hamburger div:after {
  content: "";
  position: absolute;

}

#hamburger div:before {
  top: 18px;
  transform: translateY(-200%);
}

#hamburger div:after {
  bottom: 18px;
  transform: translateY(200%);
}

#hamburger.open div {
  background: transparent;
}

#hamburger.open div:before {
  top: 22px;
  transform: rotate(45deg);
}

#hamburger.open div:after {
  top: 22px;
  transform: rotate(-45deg);
}

#overlay {
  position: fixed;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  z-index: 998;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
  /*display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;*/
}

#overlay .overlay__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
/*    margin-top: 13vw;*/
    padding-top: 160px;
}

#overlay .overlay__box .overlay__info {
   flex: 0 0 40%;
   max-width: 40%;
   width: 40%;
}

#overlay .overlay__box .overlay__info .overlay__info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#overlay .overlay__box .overlay__info .overlay__info-box .overlay__col {
    position: relative;
    width: 50%;
}

#overlay .overlay__box .overlay__info .overlay__info-box .overlay__title {
    font-family: 'NeutralFace-Bold';
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #393939;
}

#overlay .overlay__box .overlay__info .overlay__info-box .overlay__menu li a {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #bbb;
}

#overlay .overlay__box .overlay__info .overlay__info-box .sale {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #dc3545;
}

#overlay .overlay__box .overlay__info .overlay__info-box .gift-cards a {
    font-size: 16px;
    line-height: 150%;
    color: #bbb;
}

#overlay .overlay__box .overlay__info .overlay__info-box .sale,
#overlay .overlay__box .overlay__info .overlay__info-box .gift-cards {
    position: absolute;
    left: 0;
    bottom: -86px;
    width: 100%;
}


#overlay .overlay__box .overlay__pic {
   flex: 0 0 60%;
   max-width: 60%;
   width: 60%;
}

#overlay .overlay__box .overlay__pic .overlay__pic-box {
    position: relative;
}

#overlay .overlay__box .overlay__pic .overlay__pic-box .overlay__link {
    position: absolute;
    left: calc(50% - 40px);
    bottom: 35px;
}

#overlay .overlay__box .overlay__pic .overlay__pic-box .overlay__link a {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    color: #d5d5d5;
}

#overlay .overlay__box .overlay__pic .overlay__pic-box .overlay__link a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #d5d5d5;
    left: 0;
    bottom: -7px;
}

#overlay .overlay__box .overlay__pic img {
   width: 100%;
    height: 292px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}


#overlay.menu {
  transform: translateY(0%);
}

/*#overlay a {
  text-decoration: none;
  color: #fafafa;
  font-size: clamp(1rem, 4.1vw + 0.2rem, 10rem);
  margin: 2%;
  opacity: 0.5;
  transition: opacity 0.2s linear;
}

#overlay a:hover {
  opacity: 1;
}*/

/*---------------------
  Hero
-----------------------*/
.hero__slider.owl-carousel .hero__slider-box {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
}

.hero__slider.owl-carousel .hero__slider-col:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 7 - 0px);
}

.hero__slider.owl-carousel .hero__slider-col:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 5 - 0px);
}

.hero__slider.owl-carousel .owl-item.active .hero__slider-col h1 {
    top: 0;
    opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .info-text p {
    top: 0;
    opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__slider-col .hero__slider-img {
    top: 0;
    opacity: 1;
}

.hero__slider .hero__items .container {
    flex: 0 1 auto;
    max-width: 1340px;
    width: 100%;
}

.hero__slider .hero__items {
    height: 100vh; /* Высота экрана устройства */
    background-size: cover; /* Масштабируем фоновое изображение */
    background-position: center; /* Центрируем фоновое изображение */
    display: flex;
    /*align-items: center;
    justify-content: center;*/
    padding-top: 74px;
}

.hero__slider .hero__slider-box .hero__slider-col h1 {
    position: relative;
    font-weight: 700;
    font-size: 54px;
    line-height: 125%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #EAEAEA;
    top: 100px;
    margin-bottom: 52px;
    opacity: 0;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.hero__slider .hero__slider-box .info-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 250px;
}

.hero__slider .hero__slider-box .info-text p {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    top: 100px;
    opacity: 0;
    -webkit-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
}

.hero__slider .hero__slider-box .info-text.info-text__green p {
    color: #4C928B;
}

.hero__slider .hero__slider-box .info-text.info-text__purple p {
    color: #65557D;
}

.hero__slider .hero__slider-box .hero__slider-img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    top: 100px;
    opacity: 0;
    -webkit-transition: all, 0.9s;
    -o-transition: all, 0.9s;
    transition: all, 0.9s;
}

.hero__slider .hero__slider-col .hero__slider-img a img {
    width: 227px;
    height: 291px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero__slider .owl-dots {
    position: absolute;
    left: 50%;
    margin-left: -50px;
    bottom: 70px;
}

.hero__slider .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  margin: 8px;
  border-radius: 50%;
  background: #f2f2f2; }
  .hero__slider .owl-dots .owl-dot.active {
    background: #0e0d11; }

.hero .hero__slider .owl-nav {
    display: none;
}


/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.special-series {
    background-color: #fcfcfc;
/*    margin-top: 136px;*/
}

.product__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product__box .product__box-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 35px;
}

.product__box .product__box-col-3 {
    width: calc(100% / 12* 3 - 0px);
}

.product__box .product__box-col-4 {
    width: calc(100% / 12* 4 - 0px);
}

.product__box .product__box-col-8 {
    width: calc(100% / 12* 8 - 0px);
}

.product__box .product__box-col-6 {
    width: calc(100% / 12* 6 - 0px);
}

.product__box .product__item,
.product-card__wrap .product-card__img__item {
  transition: .5s;
}

.product__box .product__action {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column; /* Вертикальное расположение */
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.product__box .product__action p.btn-square,
.product__box .product__action div.view-square {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  text-transform: uppercase;
  line-height: 1.5;
  transition: opacity 0.3s ease, transform 0.3s ease; /* Добавляем анимацию для opacity и transform */
  transform: translateY(20px); /* Начальная позиция - немного ниже */
}

.product__box .product__action p.btn-square:before {
  position: absolute;
  display: block;
  top: -2px;
  right: -24px;
  font-size: 20px;
  color: #fff;
  content: '®';
}

.product__box .product__action p.btn-square {
  font-family: 'NeutralFace-Bold';
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  padding-bottom: 16px;
}

.product__box .product__action div.view-square {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.product__box .product__action div.view-square:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: -7px;
}

.product__box .product__item:hover .product__action {
  background: rgba(0, 0, 0, 0.3);
}

/* Анимация появления при наведении */
.product__box .product__item:hover .product__action p.btn-square {
  opacity: 1;
  transform: translateY(0); /* Возвращаем в исходную позицию */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Настраиваем плавное появление */
}

.product__box .product__item:hover .product__action div.view-square {
  opacity: 1;
  transform: translateY(0); /* Возвращаем в исходную позицию */
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s; /* Задержка для второго элемента */
}

.product__box .product__item:hover .product__action a.btn-square:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.product__box .product__item .product__img {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.product-card__wrap .product-card__img__item .product__img {
    position: relative;
    overflow: hidden;
    height: 800px;
}

.product__box .product__item .product__img .label__text {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #393939;
    font-weight: 700;
    font-size: 10px;
    line-height: 160%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
    width: 47px;
    height: 24px;
    border-radius: 100px;
    z-index: 100;
}

.product__box .product__item .product__img .label__icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 100;
}

.new-in .product__box .product__item .product__img {
    height: 425px;
}

.product__box .product__item .product__img img.product__pic,
.product-card__wrap .product-card__img__item .product__img img.product__pic {
    width: 100%;
    height: 650px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .5s;
    transition: opacity 0.5s ease;
}

.product__box .product__item.product__item-product .product__img img.product__pic {
    border: 1px solid #fff;
    box-sizing: border-box;
}

.new-in .product__box .product__item .product__img img.product__pic {
   height: 445px;
}

.product-card__wrap .product-card__img__item .product__img img.product__pic {
    height: 800px;
}

.product__box .product__item .product__img .hover-pic {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Скрываем второе изображение */
}

.product__box .product__item .product__img:hover .hover-pic {
    opacity: 1; /* Показываем второе изображение при наведении */
}

.product__box .product__item .product__img:hover .default-pic {
    opacity: 0; /* Скрываем первое изображение при наведении */
}

/*.product__box .product__item:hover .product__img img.product__pic,
.product-card__wrap .product-card__img__item:hover .product__img img.product__pic {
  transform: scale(1.2);
}*/

.product__box .product__item .text__wrap {
    margin: 10px 52px 0 52px;
}

.new-in .product__box .product__item .text__wrap {
    margin: 10px 24px 0 24px;
}

.product__box .product__item .text__wrap .product__title {
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   margin-bottom: 8px;
}

.product__box .product__item .text__wrap .product__title p {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 135%;
    color: #000;
}

.product__box .product__item .text__wrap .product__title .date__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__box .product__item .text__wrap .product__title .date__wrap .product__date {
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
    color: #d5d5d5;
}

.product__box .product__item .text__wrap .product__title .date__wrap .product__num {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 135%;
    color: #b0b0b0;
    margin-left: 6px;
}

.product__box .product__item .text__wrap .product__descr p {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #cfcfcf;
    margin-top: 15px;
    white-space: nowrap;          /* Запрещает перенос текста на новую строку */
    overflow: hidden;             /* Скрывает часть текста, которая выходит за пределы блока */
    text-overflow: ellipsis;      /* Добавляет троеточие в конце текста, если он не помещается */
    width: 100%;                  /* Ширина блока — 100% от родителя */
    display: block;               /* Убедитесь, что блок не будет ломать элементы */
}

.new-in .product__box .product__item .text__wrap .product__descr p {
   font-size: 14px;
}

.product__box .product__item .text__wrap .product__price {
    margin-top: 12px;
    display: flex;
    gap: 16px;
}

.product__box .product__item .text__wrap .product__price p {
    font-weight: 600;
    font-size: 14px;
    line-height: 135%;
    color: #1e1e1e;
    display: inline-block;
    /* margin-right: 10px; */
    order: -1;
}

.product__box .product__item .text__wrap .product__price span {
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    text-decoration: line-through;
    color: #bbb;
}

.new-in {
    background-color: #fcfcfc;
    padding-top: 20px;
}

.new-in.catalog {
    background-color: #fff;
}

.new-in__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 45px;
}

.new-in__head .view__all a {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    color: #b0b0b0;
}

.new-in__head .view__all a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #b0b0b0;
    left: 0;
    bottom: -7px;
}

/*--------------------------------------------------------------
# About brand
--------------------------------------------------------------*/
.about-brand {
    background-color: #fcfcfc;
/*    margin-top: 10px;*/
    padding: 100px 0 100px 0;
    overflow: hidden;
}

.about-brand .about-brand__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-brand .about-brand__box .about-brand__col {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.about-brand__title h3 {
    font-family: "NeutralFace";
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    color: #bbb;
}

.about-brand .about-brand__box .about-brand__img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-brand .about-brand__box .about-brand__img.about-brand__img-mob {
    display: none;
}

.about-brand .about-brand__box .about-brand__img ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about-brand .about-brand__box .about-brand__img ul li {
    margin-left: 32px;
}

.about-brand .about-brand__box .about-brand__img ul li img {
    width: 82px;
    height: 111px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-brand .about-brand__box .figure__brand {
    position: absolute;
    top: -107px;
    left: -215px;
    z-index: 0;
}

.about-brand .about-brand__box .about-info__large {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 35px;
    line-height: 135%;
    text-align: justify;
    hyphens: auto;
    color: #bbb;
    text-transform: uppercase;
    margin-bottom: 64px;
    z-index: 1;
}

.about-brand .about-brand__box .about-info__text {
    margin-bottom: 32px;
    z-index: 1;
}

.about-brand .about-brand__box .about-info__text ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about-brand .about-brand__box .about-info__text ul li:first-child {
    margin-right: 30px;
}

.about-brand .about-brand__box .about-info__text ul li p {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #cfcfcf;
    z-index: 1;
}

.about-brand .about-brand__box .about-info__link a {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    color: #d5d5d5;
}

.about-brand .about-brand__box .about-info__link a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #d5d5d5;
    left: 0;
    bottom: -7px;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb__wrap {
    margin-top: 25px;
}

.breadcrumb__wrap .breadcrumb__links a {
    position: relative;
    display: inline-block;
    margin-right: 32px;
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #8e8e8e;
}

.breadcrumb__wrap .breadcrumb__links a:after {
    position: absolute;
    right: -22px;
    top: 0;
    font-size: 19px;
    content: ">";
}

.breadcrumb__wrap .breadcrumb__links span {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #393939;
}

.new-in.catalog {
    margin: 25px 0 35px 0;
}

.new-in.catalog .catalog__sort a {
    position: relative;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    line-height: 145%;
    color: #b0b0b0;
}

.new-in.catalog .catalog__sort a:after {
    position: absolute;
    right: -22px;
    top: 0;
    font-size: 19px;
    transform: rotate(90deg);
    content: ">";
}

/*--------------------------------------------------------------
# Product-card
--------------------------------------------------------------*/
.product-card {
    margin: 60px 0 80px 0;
}

.product-card__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-card__wrap .product-card__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.product-card__item .product-card__info {
    max-width: 80%;
    width: 80%;
    margin-left: 32px;
}

.product-card__item .product-card__info .product-card__head .product-card__series {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

.product-card__item .product-card__info .product-card__head .product-card__series .series__box p,
.product-card__item .product-card__info .product-card__head .product-card__series .series__box div,
.product-card__item .product-card__info .product-card__head .product-card__series .availability__box p,
.product-card__item .product-card__info .color__title p {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 167%;
    color: #8e8e8e;
}

.product-card__item .product-card__info .product-card__head .product-card__series .series__box div {
    text-transform: uppercase;
}

.product-card__item .product-card__info .product-card__head .product-card__series .availability__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-card__item .product-card__info .product-card__head .product-card__series .availability__box div {
    margin-top: 7px;
}

.product-card__item .product-card__info .product-card__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /*-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;*/
    margin-top: 28px;
}

.product-card__item .product-card__info .product-card__price .sku__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-card__item .product-card__info .product-card__price .sku__price p {
    font-family: 'NeutralFace-Bold';
/*    display: inline-block;*/
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    color: #393939;
}

.product-card__item .product-card__info .product-card__price .sku__price span {
    font-size: 16px;
    line-height: 150%;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 12px;
}

.product-card__item .product-card__info .product-card__price .sku__price-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 77px;
}

.product-card__item .product-card__info .product-card__price .sku__price-info p {
    width: 98px;
    font-size: 14px;
    line-height: 129%;
    color: #8e8e8e;
}

.product-card__item .product-card__info .product-card__price .sku__price-info a,
.product-card__size .product-card__size-list a.size__table {
    position: relative;
    margin: 6px 0 0 28px;
    font-weight: 600;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    color: #b0b0b0;
}

.product-card__item .product-card__info .product-card__price .sku__price-info a:after,
.product-card__size .product-card__size-list a.size__table:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #b0b0b0;
    left: 0;
    bottom: 8px;
}

.product-card__item .product-card__info .product-card__color {
    margin-top: 55px;
}

.product-card__item .product-card__info .color__title {
    margin-bottom: 10px;
}

.product-card__item .product-card__info .color__title div {
    display: inline-block;
    font-size: 14px;
    line-height: 167%;
    color: #393939;
    margin-left: 2px;
}

.product-card__item .product-card__info .product-card__color ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-card__item .product-card__info .product-card__color ul li {
    margin-right: 12px;
}

.product-card__item .product-card__info .product-card__color ul li a img {
    width: 50px;
    height: 50px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-card__item .product-card__info .product-card__color ul li a.active img {
    border: 1px solid #a1a1a1;
}

.product-card__item .product-card__info .product-card__size {
    margin-top: 32px;
}

.product-card__item .product-card__info .product-card__size a.one__size {
    display: inline-block;
    color: #8e8e8e;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid #8e8e8e;
    padding: 0.5rem 1rem;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 100px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.product-card__item .product-card__info .product-card__size a.one__size:hover,
.product-card__item .product-card__info .product-card__size .product-card__size-list ul li a.size__item:hover {
    color: #fff;
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.product-card__item .product-card__info .product-card__size .product-card__size-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.product-card__item .product-card__info .product-card__size .product-card__size-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.product-card__item .product-card__info .product-card__size .product-card__size-list ul li {
    margin-right: 12px;
}

.product-card__item .product-card__info .product-card__size .product-card__size-list ul li a.size__item {
    width: 38px;
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9b9b9;
    font-size: 12px;
    line-height: 167%;
    color: #393939;
    border-radius: 100%;
}

.product-card__item .product-card__info .product-card__size .product-card__size-list ul li:first-child a.size__item {
    border: 1px solid #393939;
}

.product-card__item .product-card__info .product__cart-option {
    margin-top: 50px;
}

.product-card__item .product-card__info .product__cart-option .cart__addition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}


@media (max-width: 767px) {
    .product-card__item .product-card__info .product__cart-option .cart__addition {
        gap: 8px;
    }
}

a.cart__add {
    width: 100%;
    display: inline-block;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #393939;
    border: 1px solid #393939;
    padding: 0.8rem 1rem;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 0;
    text-transform: uppercase;
}

.product-card__item .product-card__info .product__cart-option .cart__addition a.cart__add {
    flex-grow: 1;
    font-size: 14px;
}

.product-card__item .product-card__info .product__telegram-option {
    margin-top: 12px;
}

.product-card__item .product-card__info .product__telegram-option a.cart__add {
    font-size: 14px;
}

a.cart__add.cart__add--gray {
    background-color: #bbbbbb;
    border-color: #bbbbbb;
    color: #ffffff;
}

.product-card__item .product-card__info .product__cart-option .cart__addition a.cart__add.cart__no-add {
    opacity: 0.07;
}
/*
.product-card__item .product-card__info .product__cart-option .cart__addition .heart__box a {
    display: flex;
    color: #8e8e8e;
    align-items: center;
    vertical-align: middle;
    user-select: none;
    background-color: #f5f5f5;
    padding: 0.48rem 0.5rem;
}
*/
.product-card__item .product-card__info .calculation__option {
    margin-top: 12px;
}

.product-card__item .product-card__info .calculation__option a {
    position: relative;
    width: 100%;
    display: inline-block;
    color: #8e8e8e;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    padding: 0.8rem 3rem;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 0;
}

.product-card__item .product-card__info .calculation__option a img {
    position: absolute;
    left: calc(50% - 107px);
    top: 14px;
}

.similar-products {
    margin: 80px 0 80px 0;
}

.similar-products .product__box .product__item .product__img,
.similar-products .product__box .product__item .product__img img.product__pic {
    height: 425px;
}

.similar-products .viewed-carousel.product__box .product__item .product__img,
.similar-products .viewed-carousel.product__box .product__item .product__img img.product__pic {
    height: 262px;
}

.similar-products .related-carousel.product__box .owl-nav,
.similar-products .viewed-carousel.product__box .owl-nav {
    position: absolute;
    right: 7.5rem;
    top: -5.9rem;
}

.similar-products .related-carousel.product__box .owl-nav .owl-prev,
.similar-products .viewed-carousel.product__box .owl-nav .owl-prev {
    margin-right: 20px;
}

.product-card .mobile__carousel.product__box {
    display: none;
}

.product-card__item .unslate_co--sticky {
   position: sticky;
   top: 85px;
}







/*.product-card__item .unslate_co--sticky:after, .product-card__item .unslate_co--sticky:before {
   content: '';
   display: table;
}*/

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion {
  margin-top: 64px;
  width: 100%;
  max-width: 100%;
}

.accordion-item {
  cursor: pointer;
}

.accordion-item h4 {
  position: relative;
  margin: 20px 0 20px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

.accordion-content {
  max-height: 0; /* Set a default max-height, but don't display it */
  overflow: hidden; /* Hide the content */
  transition: max-height 0.4s ease-out; /* Add a transition effect when sliding down (and up) the content */
  padding: 0 40px 0 0;
  margin-bottom: 30px;
}

.accordion-content p {
  font-size: 16px;
  line-height: 25px;
  color: #393939;
}

.accordion-content li {
   position: relative;
   margin: 10px 0 10px 0;
   padding: 0 0 0 20px;
}

.accordion-content li:before {
   position: absolute;
   content: '•';
   color: #393939;
   top: 0;
   left: 1px;
}

.accordion-content .accordion-content__box {
    margin-bottom: 20px;
}

/* Add this class to .accordion-content when the accordion item is active/open */
.accordion-content.active {
  max-height: auto; /* Adjust as needed */
}

.accordion-item h4::before {
  content: "+";
  position: absolute;
  right: 10px; /* Adjust as needed */
}

.accordion-item.active h4::before {
  content: "-";
}

/* For mobile screens */
@media (max-width: 767px) {
  .accordion {
    margin-top: 55px;
    max-width: 100vw;
/*    margin: 0 auto;*/
  }
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal-overlay .modal.open .modal-content .contact-content {
    background-color: transparent;
    padding-top: 4rem;
    padding-bottom: 1.7rem;
}

.modal-overlay .modal .modal-content .modal-header {
    padding: 18px 65px 30px 15px;
}

.modal-overlay .modal#modal2 .modal-content .modal-header {
    padding: 0 0 30px 0px;
}

.modal-overlay .modal#modal2 .modal-content .modal-header p {
    font-size: 15px;
    color: #8E8E8E;
}

.modal-overlay .modal .modal-content .modal-header h4 {
    font-family: 'NeutralFace-Bold';
    margin: 0 0 6px 0;
    font-size: 20px;
    line-height: 140%;
    color: #393939;
    text-transform: uppercase;
}

.modal-overlay .modal#modal2 .modal-content .modal-header h4 {
    margin-bottom: 20px;
}

/*.modal-overlay .modal .modal-content .modal-header span {
    font-size: 18px;
}*/

/*.modal-overlay .modal .modal-content .contact-content form {
    width: 100%;
}*/

.modal-overlay {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*padding: 40px;*/
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: inherit;
    z-index: 9999;
}

.modal-overlay .modal {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #FFFFFF;
/*    box-shadow: 0px 4px 55px rgb(0 0 0 / 0.65);*/
    width: 880px;
    /*max-width: 75rem;*/
    padding: 1rem;
    border-radius: 0;
    transition: 0.35s ease-in-out;
    opacity: 0;
    outline: 0;
}

.modal-overlay .modal.open {
    opacity: 1;
    pointer-events: inherit;
}

.modal-overlay .modal.open .modal-content {
    transform: translate(0, 0px);
    opacity: 1;
    /*width: 90%;*/
}

.modal-overlay .modal .modal-content {
    transform: translate(0, -10px);
    opacity: 0;
    transition: 0.35s ease-in-out;
}

.modal-overlay .modal .modal-content .contact-content__modal {
    background-color: transparent;
    padding: 15px 35px 25px 35px;
}

.modal-overlay .modal#modal2 .modal-content .contact-content__modal,
.modal-overlay .modal#modal5 .modal-content .contact-content__modal {
    padding: 0 0 0 0;
}

.modal-overlay .modal .modal-content .contact-content__modal .content__size-chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.modal-overlay .modal .modal-content .contact-content__modal .content__size-chart .size-chart__col {
    text-align: center;
}

.modal-overlay .modal .modal-content .contact-content__modal .content__size-chart .size__title {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #191919;
}

.modal-overlay .modal .modal-content .contact-content__modal .content__size-chart .size__menu li {
    margin-bottom: 6px;
}

.modal-overlay .modal .modal-content .contact-content__modal .content__size-chart .size__menu li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #8e8e8e;
}

.modal-overlay .modal .modal-content .contact-content__modal .contact-form .form-field input {
    height: 5.5rem;
}

.modal-overlay .modal .modal-content .contact-content__modal .contact-form .form-field .btn--primary {
    margin-top: 2rem;
    margin-bottom: 5px;
}

.modal-overlay .modal .modal-content .close-modal {
  position: absolute;
  cursor: pointer;
  top: 14px;
  right: 8px;
  z-index: 10;
}

.modal-overlay .modal#modal5 .modal-content .close-modal {
    top: -7px;
    right: -42px;
}

.modal-overlay .modal .modal-content .close-modal svg {
  width: 1.75em;
  height: 1.75em;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.modal-overlay .modal#modal2,
.modal-overlay .modal#modal5 {
    width: 600px;
    padding: 40px 70px 40px 70px;
}

.modal-overlay .modal#modal6 {
    width: 600px;
}

.modal-overlay .modal#modal2 .modal-content .close-modal {
    top: -25px;
    right: -52px;
}

.contacts__main {
    position: relative;
}

.contacts__form .form__box .form__group label {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #8e8e8e;
}

.contacts__form .form__box .form__group {
    width: 100%;
    margin-bottom: 12px;
}

.contacts__form .form__box .form__group input.form-control,
.contacts__form .form__box .form__group textarea.form-control {
   display: block;
   width: 100%;
   height: 52px;
   padding: 14px 16px;
   font-size: 16px;
   font-weight: 400;
   line-height: 1.5;
   color: #BBBBBB;
   background-color: transparent;
   background-clip: padding-box;
   border: 1px solid #F5F5F5;
   border-radius: 0;
}

.contacts__form .form__box .form__group textarea.form-control {
    height: 128px;
}

.contacts__form .form__box .form__group .iti.iti--allow-dropdown,
.contacts__form .form__box .form__group .iti.iti--allow-dropdown input.form-control {
    width: 100%;
}

.contacts__form .form__box .form__group .iti.iti--allow-dropdown input.form-control {
    padding: 14px 16px 14px 50px;
}

.contacts__form .form__box .form__group input.form-control:focus,
.contacts__form .form__box .form__group textarea.form-control:focus {
    color: #828282;
    background-color: #fff;
    border-color: #828282;
    outline: 0;
    box-shadow: none;
}

.contacts__form .form__box .form__group .error {
    font-size: 14px;
}

.contacts__form .form__box .iti__country-list {
    z-index: 9999;
}

.contacts__bottom {
    margin-top: 25px;
}

.form__policy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form__policy .custom-checkbox {
  display: inline-flex;
  margin-right: 8px;
}

.form__policy .custom-checkbox input {
  visibility: hidden;
  position: absolute;
}

.form__policy .custom-checkbox .icon {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border: 1px solid #8e8e8e;
  border-radius: 0.25rem;
  transition: 0.3s ease;
}

.form__policy .custom-checkbox .icon svg {
  transition: 0.3s ease;
}

.form__policy .custom-checkbox input:not(:checked) ~ .icon svg {
  opacity: 0;
}

.form__policy .custom-checkbox.scale input:not(:checked) ~ .icon svg {
  transform: scale(2);
}

.form__policy .custom-checkbox.medium .icon {
  position: relative;
  height: 16px;
  width: 16px;
}

.form__policy .custom-checkbox.grey svg {
  fill: #8e8e8e;
  position: absolute;
  top: 0;
  left: 0;
}

.form__policy .custom-checkbox.grey input:checked ~ .icon {
  border-color: #8e8e8e;
}

.form__policy .custom-checkbox.grey:hover .icon {
  border-color: #8e8e8e;
}

.form__policy span {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #8e8e8e;
}

.contacts__form .contacts__btn {
    margin-top: 24px;
}

.contacts__form .contacts__btn input {
    width: 220px;
    display: inline-block;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #393939;
    border: 1px solid #393939;
    padding: 16px 0 16px 0;
    line-height: 1.5;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

#form-message-warning,
#form-message-success,
#form-message-warning2,
#form-message-success2 {
  display: none;
}

#form-message-warning {
  color: #f64b3c;
}

#form-message-success h4 {
   font-family: 'NeutralFace-Bold';
   font-size: 20px;
   line-height: 140%;
   color: #393939;
   text-transform: uppercase;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: .1rem;
  color: rgba(255, 255, 255, 0.5);
}

/*---------------------
  Cart menu
-----------------------*/
#cart-menu-icon{
    position: relative;
    top: -6px;
    left: 0;
    height: 35px;
    width: 35px;
    z-index: 9999;
}

#menu-cart {
  cursor: pointer;
/*  padding: 22px 35px 16px 0px;*/
}

#menu-cart span, #menu-cart span:before, #menu-cart span:after {
  cursor: pointer;
  height: 2px;
  width: 30px;
  background: #000;
  position: absolute;
  display: block;
  content: '';
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#menu-cart.active span, #menu-cart.active span:before, #menu-cart.active span:after {
    background: #fff;
}

#menu-cart span:before {
  -webkit-animation: undo-top .5s forwards;
          animation: undo-top .5s forwards;
}

#menu-cart span:after {
  bottom: -10px;
  -webkit-animation: undo-bottom .5s;
          animation: undo-bottom .5s;
}

#menu-cart.active span {
  background-color: transparent;
}

#menu-cart.active span:before {
  top: 0;
}

#menu-cart.active span:before {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-animation: top-x .5s forwards;
          animation: top-x .5s forwards;
}

#menu-cart.active span:after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-animation: bottom-x .5s forwards;
          animation: bottom-x .5s forwards;
}

@-webkit-keyframes top-x {
  0% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
  100% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
}

@keyframes top-x {
  0% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
  100% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
}

@-webkit-keyframes bottom-x {
  0% { transfrom: translateY(0) rotate(0); }
  50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  100% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
}

@keyframes bottom-x {
  0% { transfrom: translateY(0) rotate(0); }
  50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  100% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
}

@-webkit-keyframes undo-top {
  0% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
  50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
  100% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
}

@keyframes undo-top {
  0% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
  50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
  100% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
}

@-webkit-keyframes undo-bottom {

  0% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
  50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  100% { transfrom: translateY(0px) rotate(0); }
}

@keyframes undo-bottom {

  0% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
  50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  100% { transfrom: translateY(0px) rotate(0); }
}

#sidemenu-cart {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px; /* Меняем left на right */
    bottom: 0px;
    width: 460px;
    height: 100vh;
    background-color: #fff;
    z-index: 9998;
    padding: 24px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
    transform: translate(610px, 0px); /* Скрываем за правым краем */
    transition: 0.3s ease-in-out;
}

/*#sidemenu-cart ul {
    text-align: right;
    margin: 3.6rem 3rem 3rem 0;
}*/

#sidemenu-cart ul li {
    /*margin-left: 12px;*/
}

/*#sidemenu-cart ul li a {
    color: #000;
    font-size: 18px;
}*/

#sidemenu-cart.active{
    transform: translate(0px,0px);
    transition: 0.3s ease-in-out;
}

/*#sidemenu-cart #close-cart {
    position: absolute;
    right: 40px;
    top: 50px;
}*/

#sidemenu-cart #close-cart span {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    overflow: hidden;
}

#sidemenu-cart #close-cart span::before,
#sidemenu-cart #close-cart span::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #393939;
    border-radius: 5px;
    margin-top: -2px;
}

#sidemenu-cart #close-cart span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#sidemenu-cart #close-cart span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#overlay-bg {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 105;
    display: none;
    transition: 0.5s ease-in-out;
}

#overlay-bg.active{
    display: block;
    transition: 0.5s ease-in-out;
    z-index: 9997;
}

/*--------------------------------------------------------------
# Shopping cart
--------------------------------------------------------------*/

.cart__wrap .cart__wrap-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0;
}

.cart__wrap .cart__wrap-head h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    color: #393939;
}

.cart__wrap .cart__wrap-products {
    margin-top: 45px;
}

.cart__wrap-products .cart__product-item {
    display: flex;
    flex-wrap: nowrap;
    padding: 16px 0;
    border-bottom: 1px solid #cbcbcb;
    gap: 16px;
    position: relative;
}

/*.cart__wrap .cart__wrap-products .cart__item-img,
.cart__wrap .cart__wrap-products .cart__item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}*/

.cart__wrap-products .cart__item-img.cart-col-2 {
    inline-size: 77px;
    min-inline-size: 77px;
    block-size: 102px;
}

.cart__wrap-products .cart__item-info.cart-col-10 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart__wrap-products .cart__item-img img {
    width: 100%;
    height: auto;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

/*.cart__wrap-products .cart__item-info .cart__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}*/

.cart__wrap-products .cart__item-info .cart__name a {
    width: 213px;
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: #393939;
    text-transform: uppercase;
}

.cart__wrap-products .cart__item-info .cart__name .sku__price p {
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    text-align: right;
    color: #393939;
}

.cart__wrap-products .cart__item-info .color__title.color__title_sum {
    position: absolute;
    bottom: 16px;
    right: 0;
}

.cart__wrap-products .cart__item-info .color__title.color__title_sum div span {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #8e8e8e;
}

.cart__wrap-products .cart__item-info .color__title {
    display: flex;
}

.cart__wrap-products .cart__item-info .color__title p {
    padding-right: 3px;
}

.cart__wrap-products .cart__item-info .color__title p,
.cart__wrap-products .cart__item-info .color__title div {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    display: inline-block;
    color: #8e8e8e;
}

.cart__wrap-products .cart__item-info .counter__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;*/
}

.cart__wrap .cart__wrap-products .cart__item-info .counter__wrap-mob {
    display: none;
}

.cart__wrap .cart__wrap-products .cart__item-info .counter__wrap .cart__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.cart__wrap .cart__wrap-products .cart__item-info .counter__wrap .cart__icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.counter__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 35px;
  padding: 12px 8px;
  border: 1px solid #bbb;
  border-radius: 4px;
  background-color: transparent;
}

.counter__container button {
  background-color: transparent;
  border: none;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
}

.counter__container button:focus {
  outline: none;
}

.counter {
  font-weight: 600;
  font-size: 14px;
  line-height: 167%;
  text-align: center;
  color: #393939;
}

.place__order .contacts__form .form__group {
    position: relative;
    width: 100%;
}

.place__order .contacts__form .form__group button {
    position: absolute;
    right: 8px;
    background-color: transparent;
    z-index: 10;
    top: 13px;
    height: 60%;
}

.place__order .product__cart-option {
    border: 1px solid #dedddc;
    padding: 10px 16px 16px 16px;
    margin-top: 16px;
}

.place__order .product__cart-option .cart__discount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    height: 46px;
}

.place__order .product__cart-option .cart__discount span,
.place__order .product__cart-option .cart__discount p {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #393939;
}

.place__order .product__cart-option .cart__payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
}

.place__order .product__cart-option .cart__payment p {
    font-weight: 600;
    font-size: 16px;
    line-height: 162%;
    color: #393939;
}

.place__order .product__cart-option .product__btn {
    margin-top: 20px;
}

.place__order .product__cart-option .product__btn a {
    width: 100%;
    display: inline-block;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #393939;
    border: 1px solid #393939;
    padding: 0.8rem 3rem;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    border-radius: 0;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.container-order {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.checkout {
    margin: 60px 0 100px 0;
}

.checkout .checkout__box {
    display: flex;
    flex-direction: row;
    gap: 33px;
}

.checkout .checkout__box .checkout__data {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 64px;
}

.checkout .checkout__box .checkout__data .bx-soa-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkout .checkout__box .checkout__data .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title {
    font-family: "NeutralFace-Bold", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    color: #393939;
    text-transform: uppercase;
}

.checkout .checkout__box .checkout__data .bx-soa-section .form-group {
    margin-bottom: 0;
}

.checkout .checkout__box .checkout__data .bx-soa-section .form-group.bx-soa-customer-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout .checkout__box .checkout__data .bx-soa-section .bx-soa-custom-label {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #8E8E8E;
}

.checkout .checkout__box .checkout__forms {
    margin-bottom: 68px;
}

.checkout .checkout__box .checkout__data h2 {
    font-size: 20px;
}

.checkout .checkout__box .checkout__data .checkout__forms-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px;
}

.checkout .checkout__box .checkout__data .checkout__forms-wrap .checkout__forms-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.checkout .checkout__box .checkout__data .checkout__forms-wrap .checkout__forms-col:first-child {
    padding-right: 16px;
}

.checkout .checkout__box .checkout__data .checkout__forms-wrap .checkout__forms-col:last-child {
    padding-left: 16px;
}

.checkout .contacts__form .form__box .form__group input.form-control,
.checkout .contacts__form .form__box .form__group .iti.iti--allow-dropdown {
   margin-top: 8px;
}

.checkout .contacts__form .form__box .form__group {
    margin-bottom: 16px;
}

.checkout .contacts__form .form__box .form__group:last-child {
    margin-bottom: 8px;
}

.checkout .contacts__form .checkout__forms-wrap .span__info {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #393939;
}

.checkout .checkout__receiving {
    margin-bottom: 64px;
}

.checkout .checkout__receiving .select__city {
    margin-top: 32px;
}

.select__city span {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #8e8e8e;
}

.select__city span.current {
    color: #393939;
}

.select__city .nice-select {
    width: 100%;
    height: 55px;
    background: #fff;
    border-radius: 0px;
    padding: 11px 19px;
    color: #616875;
    line-height: 2;
}

.select__city .nice-select .list {
    width: 100%;
    border-radius: 0;
}

.select__city .nice-select.open .list {
    width: 100%;
}

.select__city .nice-select::after {
    border-bottom: 2px solid #393939;
    border-right: 2px solid #393939;
    height: 9px;
    width: 9px;
    margin-top: -4px;
    right: 21px;
}

.select__city .select__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 8px;
}

.checkout .checkout__receiving .select__delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 32px 0 32px 0;
}

.checkout .checkout__receiving .select__delivery .select__delivery-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.checkout .checkout__receiving .select__delivery label {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #393939;
}

label:has(input[type='radio']) {
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  cursor: pointer;

  &:not( & ~ &) {
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
  }

  > input[type='radio'] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 18px;
    height: 18px;
    border: 1px solid #bbb;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;

    &::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      transform: scale(0);
      transition: 120ms transform ease-in-out;
      background-color: CanvasText;
    }

    &::after {
      content: "";
      width: 2em;
      height: 2em;
      border-radius: 50%;
      background-color: #393939;
      opacity: 0;
      position: absolute;
      z-index: -1;
      inset-block-start: 50%;
      inset-inline-start: 50%;
      transform: translate(-50%, -50%);
    }

    &:active:not(:disabled) {
      &::after {
        opacity: 0.12;
      }
    }

    &:is(:active):not(:checked) {
      &::after {
        background-color: #393939;
      }
    }

    &:checked {
      border-color: #bbb;

      &::after {
        opacity: 0;
      }

      &::before {
        transform: scale(1);
      }

    }

  }
}

.checkout .checkout__receiving .select__delivery .select__delivery-col p {
    margin-top: 16px;
    line-height: 37px;
    color: #8E8E8E;
}

.checkout .checkout__receiving .checkout__info {
    border: 1px solid #bbb;
    padding: 24px;
}

.checkout .checkout__receiving .checkout__info .form__policy span {
    font-family: 'NeutralFace-Bold';
    font-size: 16px;
    line-height: 150%;
    color: #393939;
    text-transform: uppercase;
}

.checkout .checkout__receiving .checkout__info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #bbb;
}

.checkout .checkout__receiving .checkout__info .checkout__btn a {
    width: 208px;
    display: inline-block;
    color: #8E8E8E;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    padding: 16px 0 16px 0;
    line-height: 1.5;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
}

.checkout .checkout__receiving .checkout__info p {
    margin: 16px 0 16px 0;
    width: 630px;
}

.checkout .checkout__payment {
    margin-bottom: 66px;
}

.checkout .checkout__payment ul {
    margin: 24px 0 44px 0;
}

.checkout .checkout__payment ul li.method__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 13px 16px 13px;
    transition: .5s 0s;
    border: 1px solid #f5f5f5;
    height: 65px;
}

.checkout .checkout__payment ul li.method__item.active {
    border: 1px solid #828282;
    transition: all .5s;
}

.checkout .checkout__payment ul li.method__item label {
   margin-top: 0!important;
}

.checkout .checkout__payment ul li.method__item label input {
   font-weight: 400;
   font-size: 16px;
   line-height: 150%;
   color: #8e8e8e;
}

.checkout .checkout__payment ul li.method__item label span {
   font-weight: 400;
   font-size: 16px;
   line-height: 150%;
   color: #8e8e8e;
}

.checkout .checkout__payment ul li.method__item label span,
.checkout .checkout__receiving .select__delivery label span {
    margin-left: 10px;
}

.checkout .checkout__payment ul li.method__item label input,
.checkout .checkout__receiving .select__delivery label input {
    margin: 4px 0 0 0;
}

.checkout .checkout__payment ul li.method__item .payment__logos {
   display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkout .checkout__payment ul li.method__item .payment__logos img {
    margin-right: 12px;
}

.checkout .checkout__payment ul li.method__item:nth-child(2) .payment__logos img {
    position: relative;
    top: -4px;
}

.checkout .checkout__payment ul li.method__item:nth-child(2) .check__point {
    position: relative;
    top: -3px;
}

.checkout .checkout__payment .loyalty__system div {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #8e8e8e;
}

.checkout .checkout__payment .loyalty__system p {
    margin-top: 18px;
    color: #4F4F4F;
}

.checkout .checkout__payment .loyalty__system p span {
    position: relative;
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    color: #828282;
}

.checkout .checkout__payment .loyalty__system p span:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #b0b0b0;
    left: 0;
    bottom: 0;
}

.checkout .checkout__confirm .confirm__method {
    margin: 16px 0 68px 0;
}

.checkout .checkout__confirm .form__policy {
    margin-top: 16px;
    align-items: unset;
}

.checkout .checkout__confirm .form__policy .custom-checkbox {
    align-items: unset;
    margin-top: 2px;
}

.checkout .checkout__confirm .checkout__clearance .contacts__btn {
    margin-top: 40px;
}

.checkout .checkout__confirm .checkout__clearance .contacts__btn input {
    width: 100%;
    font-size: 14px;
    padding: 13px 0 13px 0;
}

.checkout .checkout__box .checkout__order {
    display: flex;
    flex-direction: column;
    inline-size: 423px;
    min-inline-size: 423px;
    padding: 22px;
    background-color: #fcfcfc;
    height: fit-content;
}

.checkout .checkout__box .checkout__order .order__compo {
    
}

.checkout .checkout__box .checkout__order .order__compo .bx-soa-cart-total {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout .checkout__box .checkout__order .order__compo .order__compo-head {
    padding: 14px 0 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.checkout .checkout__box .checkout__order .order__compo .order__compo-head h3 {
    font-size: 20px;
}

.checkout .checkout__box .checkout__order .order__compo .order__compo-head a {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
    color: #b0b0b0;
    border-bottom: 1px solid #b0b0b0;
    align-self: end;
}

.checkout .checkout__box .checkout__order .order__compo .cart__wrap-products {
    margin: 16px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart__wrap-products .sku__price {
   display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkout .checkout__box .checkout__order .order__compo .cart__wrap-products .sku__price span,
.checkout .checkout__box .checkout__order .order__compo .cart__wrap-products .sku__price p {
   color: #8e8e8e;
}

.checkout .checkout__box .checkout__order .order__compo .cart__wrap-products .sku__price span {
   font-size: 12px;
}

.checkout .checkout__box .checkout__order .order__compo .cart__wrap-products .sku__price p {
   font-size: 14px;
}

.checkout .checkout__box .checkout__order .order__compo .cart__wrap-products .cart__item-img img {
    height: 90px;
}

.order__info .order__info-list {
    margin-bottom: 36px;
}

.order__info .order__info-list ul li,
.order__info .order__info-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}

.order__info .order__info-list ul li span {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #393939;
}

.order__info .order__info-list ul li p {
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    text-align: right;
    color: #393939;
}

.order__info .order__info-total p,
.order__info .order__info-total .total__price {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #393939;
}

.checkout .checkout__receiving .checkout__info .form__policy {
    position: relative;
}

.checkout .checkout__receiving .checkout__info .form__policy .for__free {
    position: absolute;
    right: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #393939;
}

.checkout .checkout__receiving .checkout__info .checkout__text {
    margin: 16px 0 16px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #bbb;
}

#toggleBlock {
    margin: 16px 0 30px 0;
}

#toggleBlock ul li p {
    margin: 8px 0 16px 0;
    width: unset;
}

.checkout .checkout__receiving #deliveryBlock .checkout__info {
    margin-top: 40px;
}

.checkout .checkout__receiving #deliveryBlock .checkout__info .form__box .line__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.checkout .checkout__receiving #deliveryBlock .checkout__info .form__box .line__wrap .form__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 4 - 0px);
    padding-right: 16px;
}

.checkout .checkout__receiving #deliveryBlock .checkout__info .form__box .line__wrap .form__group:last-child {
    padding-right: 0;
}

/*--------------------------------------------------------------
# Pick-up point
--------------------------------------------------------------*/
.modal-overlay .modal#modal3 {
    width: 1240px;
}

.modal#modal3 .contacts__main .pick-up__point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__point__map {
    flex: 0 0 65%;
    max-width: 65%;
    width: 65%;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__point__map .map__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 880px;
    background-color: #F2F2F2;
}

.modal-overlay .modal#modal3,
.modal-overlay .modal#modal3 .modal-content .contact-content__modal {
    padding: 0;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__point__map p {
    font-size: 20px;
    text-transform: uppercase;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice {
    flex: 0 0 35%;
    max-width: 35%;
    width: 35%;
    padding: 64px 0 0 32px;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice h2,
.modal#modal3 .contacts__main .pick-up__point .pick-up__choice .select__city {
    width: 90%;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice .pick-up__choice__item {
    padding-top: 40px;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice .pick-up__choice__item .pick-up__address {
    overflow: hidden;
    overflow-y: auto;
    max-height: 320px;
    margin-top: 40px;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice .pick-up__address__item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #cbcbcb;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice .pick-up__address__item ul li span {
    font-weight: bold;
    color: #707070;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice .pick-up__address__item ul li p {
    margin: 8px 0 16px 0;
    font-size: 14px;
}

.modal#modal3 .contacts__main .pick-up__point .pick-up__choice .pick-up__address__item ul li a.cart__add {
    width: 90%;
    font-size: 12px;
}

/*--------------------------------------------------------------
# Order modal
--------------------------------------------------------------*/
.modal-overlay .modal#modal4 {
    width: 680px;
    padding: 24px;
}

.modal-overlay .modal#modal4 .modal-content .contact-content__modal {
    padding: 0;
}

.modal-overlay .modal#modal4 .modal-content .modal-header h4 {
    margin-bottom: 8px;
}

.modal-overlay .modal#modal4 .modal-content .modal-header p a {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #8e8e8e;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.modal-overlay .modal#modal4 .modal-content .modal-header {
    padding: 0 0 24px 0px;
}

.modal#modal4 .contact-content__modal .order__wrap .order__wrap-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.modal#modal4 .contact-content__modal .order__wrap .order__wrap-info .order__wrap-item:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.modal#modal4 .contact-content__modal .order__wrap .order__wrap-info .order__wrap-item:last-child {
    padding-left: 32px;
}

.modal#modal4 .contact-content__modal .order__wrap .order__wrap-info .order__wrap-item {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    margin-bottom: 24px;
}

.modal#modal4 .contact-content__modal .order__wrap .order__wrap-info .order__wrap-item h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    color: #393939;
    margin-bottom: 10px;
}

.modal#modal4 .contact-content__modal .order__wrap .order__wrap-info .order__wrap-item span {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal#modal4 .cart__wrap-products .cart__item-info.cart-col-10 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 85%;
}

.modal#modal4 .cart__wrap-products .sku__price {
    padding-bottom: 25px;
}

.modal#modal4 .contact-content__modal .order__wrap .cart__wrap-products {
    margin-top: 15px;
}

.modal#modal4 .cart__wrap-products .cart__product-item {
    padding-bottom: 4px;
}

.modal#modal4 .cart__wrap-products .cart__item-img.cart-col-2 {
    flex: 0 0 15%;
    max-width: 15%;
    width: 15%;
}

/*--------------------------------------------------------------
# Cooperation
--------------------------------------------------------------*/
.info__offer {
    margin: 10px 0 50px 0;
}

.info__offer .info__offer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.info__offer .info__offer__wrap .info__offer__item:first-child {
    padding: 100px 52px 100px 121px;
}

.info__offer .info__offer__wrap .info__offer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.info__offer .info__offer__wrap .info__offer__item h1 {
    text-align: justify;
    hyphens: auto;
    color: #bbb;
}

.info__offer .info__offer__wrap .info__offer__item .info__offer__text {
    margin: 64px 0 40px 0;
}

.info__offer .info__offer__wrap .info__offer__item img {
    width: 100%;
    height: 570px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    margin-top: 60px;
}

.clients .clients__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 25px 0 50px 0;
}

.clients .clients__box .clients__box__item {
    width: 12.8vw;
    height: 12.8vw;
}

.clients .clients__box .clients__box__item .clients__box__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid #f5f5f5;
}

.clients .clients__box .clients__box__item img {
    max-width: 80%;
    height: auto;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-card.merch-card .product-card__item .product-card__info .product__cart-option .cart__addition a.cart__add {
    width: 100%;
}

.product-card.merch-card .product-card__item .product-card__info .product-card__price .sku__price span {
    color: #393939;
    text-decoration: unset;
    margin-left: unset;
    margin-right: 10px;
}

/*.product-card.merch-card .product-card__item .unslate_co--sticky {
   position: static;
}*/

/*--------------------------------------------------------------
# Contacts
--------------------------------------------------------------*/
.info__offer.info__offer__add {
    margin: 40px 0 0 0;
}

.info__offer.info__offer__add .info__offer__wrap .info__offer__item {
    padding: 0!important;
    width: calc(100% / 12* 12 - 0px);
}

.info__offer.info__offer__add .info__offer__wrap .info__offer__item img {
    height: 460px;
}

.contacts {
    margin: 56px 0 100px 0;
}

.contacts .contacts__head h1 {
    font-weight: 700;
    font-size: 54px;
    letter-spacing: 0.01em;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.contacts .contacts__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 45px;
}

.contacts .contacts__info .contacts__info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.contacts .contacts__info .contacts__info-item .contacts__info-connection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
}

.contacts .contacts__info .contacts__info-item .contacts__info-connection p {
    max-width: 35%;
    width: 35%;
    text-transform: uppercase;
    color: #8e8e8e;
    font-weight: 700;
}

.contacts .contacts__info .contacts__info-item .contacts__info-connection p:has(#email_copy),
.contacts .contacts__info .contacts__info-item .contacts__info-connection p:has(#email_copy) a {
    text-transform: none;
}

.contacts .contacts__info .contacts__info-item .contacts__info-connection a,
.contacts .contacts__info .contacts__info-item .contacts__info-connection span {
    max-width: 65%;
    width: 65%;
    color: #8e8e8e;
}

.contacts .contacts__info .contacts__info-item .contacts__info-connection.contacts__info-social .footer__socials a {
    width: 60px;
    height: 60px;
    margin-left: unset;
    margin-right: 8px;
}

.contacts .contacts__map {
    margin-top: 40px;
}

.contacts .contacts__map .contacts__map-wrap iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/*--------------------------------------------------------------
# Vacancies
--------------------------------------------------------------*/
.contacts.vacancies .contacts__info .contacts__info-item:first-child {
    width: calc(100% / 12* 7 - 0px);
}

.contacts.vacancies .contacts__info .contacts__info-item:last-child {
    width: calc(100% / 12* 5 - 0px);
}

.contacts.vacancies .contacts__info .contacts__info-item h2.vacancies__h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;
    text-align: justify;
    color: #bbb;
    padding-right: 100px;
}

.contacts .contacts__info.vacancies__pic__wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 50px;
}

.contacts .vacancies__pic__mob {
    display: none;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic img {
    width: 100%;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(1) img {
    height: 111px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(2) img {
    height: 199px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(3) img {
    height: 111px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(4) img {
    height: 154px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(5) img {
    height: 111px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(6) img {
    height: 199px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(7) img {
    height: 111px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(8) img {
    height: 111px;
}

.contacts .contacts__info.vacancies__pic__wrap .vacancies__pic:nth-child(9) img {
    height: 199px;
}

.contacts .contacts__info .contacts__info-item .accordion {
    margin-top: 0;
}

.contacts .contacts__info .contacts__info-item .accordion-content p {
    color: #8E8E8E;
}

.contacts.vacancies .contacts__info .contacts__info-item h2 {
    margin-bottom: 24px;
}

.contacts.vacancies .contacts__info .contacts__info-item a.cart__add {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Info content
--------------------------------------------------------------*/
.info__content {
    margin: 50px 0 50px 0;
}

.info__content .info__content__head {
    margin-bottom: 63px;
}

.info__content .info__content__head h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;
    color: #393939;
}

.info__content .info__content__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.info__content .info__content__wrap .info__content__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.info__content .info__content__wrap .info__content__item:first-child {
    width: calc(100% / 12* 4 - 0px);
}

.info__content .info__content__wrap .info__content__item:last-child {
    width: calc(100% / 12* 8 - 0px);
}

.info__content .info__content__wrap .info__content__item .info__content__menu ul li {
    margin-bottom: 16px;
}

.info__content .info__content__wrap .info__content__item .info__content__menu ul li a {
    position: relative;
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #BBBBBB;
    margin-bottom: 37px;
    text-transform: uppercase;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.info__content .info__content__wrap .info__content__item .info__content__menu ul li a::before {
  content: '—';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease; /* Плавная анимация появления */
}

.info__content .info__content__wrap .info__content__item .info__content__menu ul li a.active {
    color: #393939;
    padding-left: 20px;
    transform: translateX(10px);
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.info__content .info__content__wrap .info__content__item .info__content__menu ul li a.active::before {
    opacity: 1;
    left: 0px;
}

.info__content .info__content__wrap .info__content__item .content__box .content-item h2 {
    font-size: 24px;
    line-height: 133%;
    color: #bbb;
    margin-bottom: 30px;
}

/*.info__content .info__content__wrap .info__content__item:first-child p {
    font-family: 'NeutralFace-Bold';
    margin-bottom: 16px;
}

.info__content .info__content__wrap .info__content__item:last-child p {
    font-size: 16px;
    line-height: 150%;
    color: #bbb;
    text-transform: unset;
    margin-bottom: 10px;
}*/

.info__content .info__content__wrap .info__content__item .content__box .content-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #8e8e8e;
    margin-bottom: 10px;
}

.info__content .info__content__wrap .info__content__item .content__box .content-item {
    display: none;
}

.info__content .info__content__wrap .info__content__item .content__box .content-item.active {
    display: block;
}

.info__content.guarantee__content .info__content__wrap .info__content__item {
    width: calc(100% / 12* 12 - 0px);
}

/*--------------------------------------------------------------
# About brand
--------------------------------------------------------------*/
.about__brand-img {
    background-color: #FCFCFC;
    padding: 50px 0 25px 0;
}

.info__offer.brand__offer .info__offer__wrap .info__offer__item {
    padding: 0!important;
}

.info__offer.brand__offer .info__offer__wrap .info__offer__item .info__brand__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 685px;
}

.info__offer.brand__offer .info__offer__wrap .info__offer__item .info__brand__wrap .info__brand__pic {
    text-align: center;
}

.info__offer.brand__offer .info__offer__wrap .info__offer__item .info__brand__wrap .info__brand__pic h1 {
    position: relative;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #393939;
    margin-bottom: -25px;
    z-index: 1;
}

.info__offer.brand__offer .info__offer__wrap .info__offer__item .info__brand__wrap .info__brand__pic img {
    width: 281px;
    height: 327px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.info__offer.brand__offer .info__offer__wrap .info__offer__item:last-child img {
    height: 685px;
}

.info__content.info__content-brand .info__content__wrap .info__content__item {
    width: calc(100% / 12* 6 - 0px)!important;
}

.info__content.info__content-brand .info__content__wrap .info__content__item h2 {
    font-size: 36px;
    line-height: 125%;
    text-align: justify;
    margin-bottom: 0!important;
    padding-right: 70px;
    color: #BBBBBB;
}

.info__content.info__content-brand .info__content__wrap .info__content__item .info__content-connection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info__content.info__content-brand .info__content__wrap .info__content__item .info__content-connection p {
    max-width: 45%;
    width: 45%;
}

.about__brand-img .about__brand__gallery .about__gallery-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about__brand-img .about__brand__gallery .about__gallery-item .about__gallery-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-one .about__gallery-col:first-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-one .about__gallery-col:nth-child(2) {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-one .about__gallery-col:last-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 11px;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-two {
    margin-bottom: 40px;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-two .about__gallery-col:first-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-two .about__gallery-col:last-child {
    flex: 0 0 75%;
    max-width: 75%;
    width: 75%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-three .about__gallery-col:first-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-three .about__gallery-col:nth-child(2) {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-three .about__gallery-col:last-child {
    flex: 0 0 40%;
    max-width: 40%;
    width: 40%;
    margin-left: auto;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-four {
    margin: 40px 0 40px 0;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-four .about__gallery-col h3 {
    padding-left: 53px;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-four .about__gallery-col:first-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-four .about__gallery-col:nth-child(2) {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-four .about__gallery-col:last-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item .about__gallery-col h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #bbb;
}

.about__brand-img .about__brand__gallery .about__gallery-item .about__gallery-col img {
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-five .about__gallery-col:first-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-five .about__gallery-col:nth-child(2) {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
}

.about__brand-img .about__brand__gallery .about__gallery-item.gallery__line-five .about__gallery-col:last-child {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end;
}

.about__brand-img .mobile__carousel.about__brand__box {
    display: none;
}

.partners {
    margin: 45px 0 100px 0;
}

.partners .partners__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.partners .partners__info .partners__info-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

/*.partners .partners__info .partners__info-col:last-child {
    padding-left: 20px;
}*/

.partners .partners__info .partners__info-col h3 {
    font-family: "NeutralFace";
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    color: #bbb;
}

.partners .partners__info .partners__info-col .partners__info-large {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 36px;
    line-height: 135%;
    text-align: justify;
    hyphens: auto;
    color: #bbb;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.partners .partners__info .partners__info-col .partners__info-text ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.partners .partners__info .partners__info-col .partners__info-text ul li:first-child {
    margin-right: 30px;
}

.partners .partners__info .partners__info-col .partners__info-text ul li p {
    color: #BBBBBB;
}

.partners .partners__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 64px;
}

.partners .partners__image .partners__image-item {
    width: 12.8vw;
    height: 12.8vw;
}

.partners .partners__image .partners__image-item img {
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Loyalty program
--------------------------------------------------------------*/
.info__offer.info__offer__add.info__offer__loyalty {
    height: 685px;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.info__offer.info__offer__add.info__offer__loyalty.info__offer__cooperation {
    position: relative;
}

.info__offer.info__offer__add.info__offer__loyalty.info__offer__cooperation::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    background: #000;
}

.info__offer.info__offer__add.info__offer__loyalty .container {
    flex: 0 1 auto;
    width: 100%;
}

.info__offer.info__offer__add.info__offer__loyalty .info__offer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
    height: 500px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info__offer.info__offer__add.info__offer__loyalty.info__offer__cooperation .info__offer__wrap {
    width: calc(100% / 12* 7 - 0px);
}

.info__offer.info__offer__add.info__offer__loyalty .info__offer__wrap h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;
    text-align: justify;
    color: #eaeaea;
}

.info__offer.info__offer__add.info__offer__loyalty .info__offer__wrap .info__offer__text {
    width: 300px;
}

.info__offer.info__offer__add.info__offer__loyalty.info__offer__cooperation .info__offer__wrap .info__offer__text {
    width: 70%;
}

.info__offer.info__offer__add.info__offer__loyalty .info__offer__wrap .info__offer__text p {
    color: #fff;
    margin-bottom: 40px;
}

.info__offer.info__offer__add.info__offer__loyalty .info__offer__wrap .info__offer__text a.cart__add {
    width: 200px;
}

.loyalty__percentage {
    margin: 50px 0 45px 0;
}

.loyalty__percentage .percentage__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.loyalty__percentage .percentage__box .percentage__box__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 4 - 0px);
    padding-right: 32px;
}

/*.loyalty__percentage .percentage__box .percentage__box__item:last-child {
    padding-right: 0;
}*/

.loyalty__percentage .percentage__box .percentage__box__item .clients__box__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEDDDC;
    height: 128px;
}

.loyalty__percentage .percentage__box .percentage__box__item .clients__box__wrap .percentage__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 32px;
    gap: 32px;
}

.loyalty__percentage .percentage__box .percentage__box__item .clients__box__wrap .percentage {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;
    color: #8e8e8e;
}

.loyalty__percentage .percentage__box .percentage__box__item .clients__box__wrap p {
    width: 165px;
}

.loyalty__info {
    margin: 45px 0 45px 0;
}

.loyalty__info .loyalty__info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.loyalty__info .loyalty__info-box .loyalty__info-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.loyalty__info .loyalty__info-box .loyalty__info-col h3,
.join-us .join-us__box .join-us__col .join-us__title h3 {
    font-family: "NeutralFace";
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    color: #bbb;
}

.join-us .join-us__box .join-us__col .join-us__title.join-us__title-mob {
    display: none;
}

.loyalty__info .loyalty__info-box .loyalty__info-col ul li {
    margin-bottom: 64px;
}

.loyalty__info .loyalty__info-box .loyalty__info-col ul li h2 {
    margin-bottom: 24px;
}

.loyalty__info .loyalty__info-box .loyalty__info-add {
    margin-top: 0;
}

.join-us {
    margin: 70px 0 100px 0;
}

.join-us .join-us__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.join-us .join-us__box .join-us__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% / 12* 6 - 0px);
}

.join-us .join-us__box .join-us__col:first-child {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.join-us .join-us__box .join-us__col .join-us__img ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 32px;
    gap: 32px;
}

/*.join-us .join-us__box .join-us__col .join-us__img ul li {
    position: relative;
}*/

.join-us .join-us__box .join-us__col .join-us__img ul li img {
    width: 134px;
    height: 171px;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.join-us .join-us__box .join-us__col .join-us__img ul li:last-child img {
    position: relative;
    top: 60px;
    width: 82px;
    height: 111px;
}

.join-us .join-us__box .join-us__col .join-us__large {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 36px;
    line-height: 135%;
    text-align: justify;
    hyphens: auto;
    color: #bbb;
    text-transform: uppercase;
    margin-bottom: 64px;
}

.join-us .join-us__box .join-us__col .join-us__link {
    margin-top: 40px;
}

.join-us .join-us__box .join-us__col .join-us__link a.cart__add {
    width: 197px;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.error-section .container {
    flex: 0 1 auto;
    width: 100%;
}

.error-section .error__wrap {
    width: 408px;
}

.error-section .error__wrap .error__large-text {
    margin-bottom: 64px;
}

.error-section .error__wrap .error__large-text ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.error-section .error__wrap .error__large-text ul li p {
    font-family: 'NeutralFace-Bold';
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;
    text-align: justify;
    color: #393939;
}

.error-section .error__wrap .error__text {
    color: #696969;
}

.error-section .error__wrap .error__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
    /*grid-gap: 32px;
    gap: 32px;*/
}

.error-section .error__wrap .error__links a.cart__add {
    width: 265px;
}

.error-section .error__wrap .error__links a.cart__add.cart__catalog {
    width: 135px;
    background-color: #FCFCFC;
    border: 1px solid #FCFCFC;
    color: #8E8E8E;
}

/*--------------------------------------------------------------
# Privacy Policy
--------------------------------------------------------------*/
.privacy__policy__offer {
    margin: 100px 0 64px 0;
}

.privacy__policy__offer h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;
    color: #393939;
    margin-bottom: 32px;
}

.privacy__policy {
    margin-bottom: 90px;
}

.privacy__policy .privacy__policy-content ul li {
    margin-bottom: 45px;
}

.privacy__policy .privacy__policy-content ul li p {
    color: #393939;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    position: relative;
    padding: 100px 0 32px 0;
    background: #F5F5F5;
}

.footer.footer-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer .footer__box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .footer__box .footer__col .footer__logo img {
    max-width: 114px;
}

.footer .footer__box .footer__col .footer__title {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #393939;
}

.footer .footer__menu li a {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #bbb;
}

.footer .footer__col.footer__contact {
    max-width: 205px;
}

.footer .footer__col.footer__contact .footer__menu.footer__contacts a {
    display: block;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #bbb;
}

.footer .footer__col.footer__contact .footer__menu.footer__contacts p {
    font-size: 15px;
}

.footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__socials a {
    width: 60px;
    height: 60px;
    margin-left: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbb;
    border-radius: 100%;
}

.footer__socials a img {
    transition: transform 0.6s ease;
}

.footer__socials a img:hover {
  transform: rotateY(360deg);
}

.footer .copyright__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-top: 1px solid #e4e4e4;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 72px;
    padding-top: 24px;
}

.footer .copyright__info .copyright__info-box ul {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.footer .copyright__info .copyright__info-box ul li {
    margin: 0 70px 0 0;
}

.footer .copyright__info .copyright__info-box ul li p {
   font-weight: 400;
   font-size: 12px;
   line-height: 150%;
   color: #bbb;
}

.footer .payment__footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer .payment__footer ul li {
    margin: 0 0 0 19px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 55px;
  bottom: 55px;
  z-index: 11;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.back-to-top img {
    width: 55px;
    height: 55px;
}

.go-to-chat {
  block-size: fit-content;
  position: fixed;
  display: none;
  right: 55px;
  z-index: 11;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.go-to-chat-all {
    bottom: 125px;
    height: 55px;
}

.go-to-chat-all img {
    width: 55px;
    height: 55px;
}

.go-to-chat-ws {
    bottom: 195px;
    height: 43px;
}

.go-to-chat-ws.active {
    display: flex;
}

.go-to-chat-ws img {
    width: 43px;
    height: 43px;
}

.go-to-chat-tg {
    bottom: 246px;
    height: 43px;
}

.go-to-chat-tg.active {
    display: flex;
}

.go-to-chat-tg img {
    width: 43px;
    height: 43px;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 12px;
        bottom: 12px;
    }
    .back-to-top img {
        width: 43px;
        height: 43px;
    }

    .go-to-chat-all {
        right: 12px;
        bottom: 62px;
    }
    .go-to-chat-all img {
        width: 43px;
        height: 43px;
    }
    .go-to-chat-ws {
        height: 36px;
        right: 12px;
        bottom: 130px;
    }
    .go-to-chat-ws img {
        width: 36px;
        height: 36px;
    }
    .go-to-chat-tg {
        height: 36px;
        right: 12px;
        bottom: 174px;
    }
    .go-to-chat-tg img {
        width: 36px;
        height: 36px;
    }
}

@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

.container-fluid .owl-carousel .owl-dots.disabled, .container-fluid .owl-carousel .owl-nav.disabled {
    display: block;
}