/**
 *  Font mixins
 */

/**
 * Add custom font
 *
 * @param {String} $font-family - Font name
 * @param {String} $file-path - Path to font without extension
 * @param {Number} $font-weight - Font weight
 * @param {String} $font-style - Font style
 */

/**
 *  Responsive mixins
 */

/**
 * Set media query
 *
 * @param {String} $device-type (all) Device type is one of - all, desktop-l, desktop, tablet, mobile
 * @param {String} $property ('') Media property
 */

/* ---- Declare custom fonts ---- */

@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans/NotoSans-Regular/NotoSans-Regular.woff2") format("woff2"), url("../fonts/NotoSans/NotoSans-Regular/NotoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NotoSansBold";
  src: url("../fonts/NotoSans/NotoSans-Bold/NotoSans-Bold.woff2") format("woff2"), url("../fonts/NotoSans/NotoSans-Bold/NotoSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "ushatava";
  src: url("../fonts/Ushatava/ushatava.eot?79185269");
  src: url("../fonts/Ushatava/ushatava.eot?79185269#iefix") format("embedded-opentype"), url("../fonts/Ushatava/ushatava.woff2?79185269") format("woff2"), url("../fonts/Ushatava/ushatava.woff?79185269") format("woff"), url("../fonts/Ushatava/ushatava.ttf?79185269") format("truetype"), url("../fonts/Ushatava/ushatava.svg?79185269#ushatava") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon-fonts {
  position: relative;
  display: inline-block;
  background: none;
}

.icon-fonts:before,
.btn__icon_vk:before,
.btn__icon_instagram:before,
.btn__icon_facebook:before,
.btn__icon_cart:before,
.btn__text_arrow:after,
.select__dropdown:after,
.card .accordion__title:after,
.card .accordion__title-chat:after {
  font-family: "ushatava";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search {
  width: 40px;
  height: 40px;
  margin-top: -5px;
  margin-left: 0;
  left: -5px;
}

.subMenu-mobile .icon-search {
  margin-top: -20px;
}

.subMenu-mobile .form-search_open .icon-search {
  margin-right: -7px;
}

.icon-left:before {
  content: '\e800';
}

.icon-right:before,
.btn__text_arrow:after {
  content: '\e801';
}

.icon-up:before {
  content: '\e802';
}

.icon-down:before,
.select__dropdown:after,
.card .accordion__title:after,
.card .accordion__title-chat:after {
  content: '\e803';
}

.icon-instagram:before,
.btn__icon_instagram:before {
  content: '\e804';
}

.icon-facebook:before,
.btn__icon_facebook:before {
  content: '\e805';
}

.icon-vk:before,
.btn__icon_vk:before {
  content: '\e806';
}

.icon-search:before {
  content: '\e807';
}

.icon-logo:before {
  content: '\e80a';
}

.icon-cart:before,
.btn__icon_cart:before {
  content: '\e80b';
}

.icon-close:before {
  content: '\e80c';
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 7px 12px;
  font-weight: bold;
  font-size: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media screen and (max-width: 991px) {
  .btn {
    font-size: 0.75rem;
  }
}

.btn:active {
  opacity: 0.8;
}

.btn:hover {
  cursor: pointer;
  opacity: 0.5;
}

.btn_group,
.btn__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .btn_group,
  .btn__group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.btn__icon {
  color: #B8B8B8;
  font-size: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn__icon_facebook:before {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn__icon_cart:before {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn__text {
  font-size: 12px;
  font-weight: lighter;
  line-height: 16px;
  letter-spacing: 3px;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .btn__text {
    letter-spacing: 3.2px;
  }
}

.btn__text_arrow {
  text-align: initial;
  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;
  width: 100%;
}

.btn__text_arrow:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 18px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  font-size: 12px;
  color: white;
}

.btn_transparent .btn__text {
  font-size: 14px;
  line-height: 19px;
}

.btn_white {
  display: block;
  padding: 15px 0;
  font-size: 13px;
  color: #4c4c4c !important;
  border: 1px solid #bc9c7d;
  text-transform: uppercase;
  text-align: center;
}

.btn_white-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  font-size: 13px;
  color: #4c4c4c !important;
  padding: 7px;
  border: 1px solid #bc9c7d;
  text-transform: uppercase;
  text-align: center;
}

.burger-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
  height: 60px;
  padding: 20px;
  margin: -20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  z-index: 1000;
}

@media screen and (max-width: 1199px) {
  .burger-btn {
    display: block;
  }
}

.burger-btn__line {
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #55575C;
  display: block;
  width: 30px;
  height: 1px;
}

.burger-btn__line_top,
.burger-btn__line_middle {
  margin-bottom: 7px;
}

.header_fixed .burger-btn__line {
  background: white;
}

.header__menu .burger-btn {
  margin-right: auto;
}

.burger-btn_fixed {
  position: fixed;
  top: 22px;
  right: 27px;
}

.burger-btn_close {
  opacity: 1;
  text-shadow: none;
}

.checkbox + .checkbox {
  margin-left: 20px;
}

.checkbox input {
  position: absolute;
  margin: 10px 0 0 20px;
  z-index: -1;
  opacity: 0;
}

.checkbox input:checked + .checkbox__text {
  background: rgba(234, 205, 178, 0.5);
  border: 1px solid #EACDB2;
}

.checkbox input:checked + .checkbox__text:before {
  background: transparent;
}

.checkbox__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 1px solid #E0E0E0;
  color: #828282;
  font-size: 12px;
}

.checkbox__text:hover {
  border: 1px solid #edd4ba;
}

.checkbox__text:before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  height: 25%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  z-index: 9;
}

.checkbox.none {
  background: white;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .checkbox.none {
    opacity: 0.6;
  }
}

.checkbox.none .checkbox__text:before {
  color: #E0E0E0;
  background: white;
  -webkit-transition: .2s;
  transition: .2s;
}

.checkbox.none .checkbox__text:after {
  border-bottom: 1px solid #E0E0E0;
  position: absolute;
  content: "";
  width: 140%;
  height: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 22px;
  left: -8px;
}

.checkbox-small input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox-small input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #CCAE9F;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox-small label {
  position: relative;
  cursor: pointer;
}

.checkbox-small label:before {
  content: '';
  position: relative;
  display: inline-block;
  margin-right: 5px;
  padding: 6px;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  vertical-align: middle;
  cursor: pointer;
}

.footer {
  margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
  .footer {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer {
    padding: 0 33px;
  }

  .footer .col-lg {
    position: absolute;
    top: 30px;
    left: 0;
    width: auto;
    padding-left: 0;
  }

  .footer .col-lg-3 {
    margin-top: -5px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    margin-bottom: 10px;
  }

  .page_personal .footer {
    display: none;
  }
}

.footer__wrapper {
  display: block;
  margin-bottom: 90px;
  width: 100%;
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  .footer__wrapper {
    margin-bottom: 75px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__wrapper {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__wrapper {
    margin-bottom: 10px;
    text-align: center;
  }
}

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

@media screen and (max-width: 992px) {
  .footer__col_right {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 10px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__col_right {
    display: block;
  }

  .footer__col_right .link {
    float: none;
  }
}

@media screen and (min-width: 992px) {
  .footer__col:nth-child(2) {
    position: relative;
    left: 12px;
  }

  .footer__col:nth-child(3) {
    position: relative;
    left: 48px;
  }

  .footer__col:nth-child(4) {
    position: relative;
    left: 22px;
  }

  .footer__col:nth-child(5) {
    position: relative;
    left: 2px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__col {
    width: 33.3%;
    padding-bottom: 40px;
  }
}

.footer__desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .footer__desktop {
    margin-right: 170px;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__desktop {
    display: none;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__desktop {
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__mobile {
  display: none;
  margin-top: -20px;
}

@media screen and (max-width: 767px) {
  .footer__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .page_collection .footer__mobile {
    border-top: none;
  }

  .page_card .footer__mobile {
    margin-bottom: 50px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

.page_index .footer__mobile {
  margin-top: 20px;
  border-top: 1px solid #bbb;
}

.footer__title {
  color: #59585D !important;
  display: inline-block;
  margin: 0;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__title {
    color: #000 !important;
  }
}

.footer__subinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer__subinfo {
    display: none;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__subinfo {
    position: relative;
  }
}

.footer__subinfo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.footer__policy {
  color: #7F8288;
  text-align: center;
  font-size: 12px;
  margin: 0;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__policy {
    margin: 0;
  }
}

.footer__policy a {
  color: #7F8288;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  letter-spacing: 0;
  margin-left: 48px;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer__policy a {
    margin-left: 0;
  }
}

.footer__policy a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  max-width: 105px;
  background-color: #7F8288;
  height: 1px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.footer__policy a:hover {
  opacity: 0.5;
}

.footer__policy a:hover:after {
  opacity: 0.5;
}

.footer__policy a:active {
  opacity: 0.8;
}

.footer__policy a:active:after {
  opacity: 0.8;
}

@media screen and (max-width: 991px) {
  .footer__policy {
    text-align: right;
  }
}

.footer__socials-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-left: auto;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.footer__socials-block .btn + .btn {
  margin-left: 20.55px;
}

@media screen and (min-width: 992px) {
  .footer__socials-block {
    margin-left: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

@media screen and (max-width: 992px) {
  .footer__socials-block {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 2px;
  }
}

.footer .form-search {
  position: relative;
  width: 80px;
  margin: 0 28px 0 35px;
}

@media screen and (max-width: 768px) {
  .footer .form-search {
    display: none;
  }
}

.footer .form-search_open {
  right: 0;
  max-width: 267px;
  margin-top: -8px;
  padding-top: 5px;
  height: 50px;
  width: 267px;
}

.footer .form-search_open .form-control {
  padding: 4px 0;
  color: #7f8288;
  max-width: 115px;
}

.footer .form-search_open .icon-search {
  top: 5px;
}

.footer .form-search_open .form-search__after {
  display: none;
}

.footer .form-search_open .form-search__data {
  display: block;
  padding-left: 40px;
  padding-right: 0;
  width: 267px;
}

.footer .form-search_open .form-search__data:after {
  content: "";
  display: block;
  background: #b8b8b8;
  height: 1px;
  width: calc(100% - 40px);
  position: absolute;
  top: 33px;
  left: 40px;
}

.footer .form-search_open .form-search__btn {
  padding-right: 0;
  right: auto;
  left: -5px;
}

.footer .lang-switch {
  position: relative;
  display: block;
  padding-right: 10px;
}

@media screen and (max-width: 991px) {
  .footer .lang-switch {
    padding-top: 5px;
  }
}

@media screen and (max-width: 768px) {
  .footer .lang-switch {
    margin-left: 15px;
  }
}

@media only screen and (min-width: 993px) {
  .page_index.desktop_dark_theme .header_fixed .menu__link {
    color: #828282 !important;
  }

  .page_index.desktop_dark_theme .header_fixed .logo svg {
    fill: #59585d !important;
  }

  .page_index.desktop_dark_theme .header_fixed .header__basket svg,
  .page_index.desktop_dark_theme .header_fixed .header__favorites svg,
  .page_index.desktop_dark_theme .header_fixed .header__personal svg {
    fill: #59585d !important;
  }

  .page_index.desktop_dark_theme .header_fixed .header__personal svg g {
    fill: #59585d !important;
    stroke: #59585d !important;
  }
}

@media only screen and (max-width: 992px) {
  .page_index.mobile_dark_theme .header_fixed .burger-btn__line {
    background: #59585d !important;
  }

  .page_index.mobile_dark_theme .header_fixed .logo svg {
    fill: #59585d !important;
  }

  .page_index.mobile_dark_theme .header_fixed .header__basket svg,
  .page_index.mobile_dark_theme .header_fixed .header__favorites svg,
  .page_index.mobile_dark_theme .header_fixed .header__personal svg {
    fill: #59585d !important;
  }

  .page_index.mobile_dark_theme .header_fixed .header__personal svg g {
    fill: #59585d !important;
    stroke: #59585d !important;
  }
}

.header {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
  .header {
    top: 0;
  }
}

@media only screen and (max-width: 992px) {
  .header .container_big {
    position: relative;
  }
}

.header__icons {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12%;
          flex: 0 0 12%;
  max-width: 130px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__icons.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media only screen and (max-width: 1239px) {
  .header__icons {
    max-width: 110px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 992px) {
  .header__icons {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .header__icons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
  }
}

@media only screen and (max-width: 499px) {
  .header__icons {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.header__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 16px;
  height: 17px;
  z-index: 1000;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition: none !important;
  transition: none !important;
}

@media only screen and (max-width: 992px) {
  .header__icon {
    top: -8px;
  }

  .header_scrolled .header__icon {
    top: 1px;
  }
}

@media only screen and (min-width: 993px) {
  .header__icon {
    position: relative;
    top: 5px;
    width: 20px;
    height: 22px;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header__icon {
    top: -8px;
  }

  .header_fixed .header__icon {
    top: -8px;
  }
}

.header__icon svg {
  width: 100%;
  height: 100%;
  fill: #828282;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .header_scrolled .header__icon svg {
    fill: #fff;
  }
}

.header_fixed .header__icon svg {
  fill: #fff;
}

.header__personal {
  width: 22px;
  height: 24px;
}

@media only screen and (max-width: 1239px) {
  .header__personal {
    width: 19px;
    height: 21px;
  }
}

@media only screen and (min-width: 500px) and (max-width: 768px) {
  .header__personal {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 992px) {
  .header__personal {
    top: -8px;
  }
}

@media only screen and (max-width: 992px) {
  .header_scrolled .header__personal svg g {
    fill: #fff;
    stroke: #fff;
  }
}

.header_fixed .header__personal svg g {
  fill: #fff;
  stroke: #fff;
}

.header__favorites {
  width: 25px;
  height: 21px;
}

@media only screen and (max-width: 1239px) {
  .header__favorites {
    width: 19px;
    height: 17px;
  }
}

@media only screen and (max-width: 992px) {
  .header_fixed .header__favorites {
    top: -7px;
  }
}

@media only screen and (max-width: 499px) {
  .header__favorites {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .header_scrolled .header__favorites {
    top: 2px;
  }
}

.header__favorites-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -7px;
  right: 15px;
  width: 19px;
  height: 19px;
  z-index: 999;
  border-radius: 50%;
  background-color: #c6a28f;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  opacity: 0.8;
  text-align: center;
  font-size: 11px;
  line-height: 1;
  color: #fff;
}

.header_scrolled .header__favorites-quantity {
  right: 11px;
  top: -6px;
}

@media only screen and (max-width: 992px) {
  .header__favorites-quantity {
    right: 12px;
    top: -8px !important;
    width: 16px;
    height: 16px;
    background-color: #fff;
    color: #59585d;
  }
}

.header__basket {
  width: 20px;
  height: 22px;
}

@media only screen and (max-width: 1239px) {
  .header__basket {
    width: 18px;
    height: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .header__basket {
    margin-left: 14px;
    margin-right: 21px;
  }

  .header_fixed .header__basket {
    margin-right: 11px;
  }

  .header_scrolled .header__basket {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 992px) {
  .header__basket .basket-summ {
    right: 10px;
  }
}

.header__submenu .col-3:first-child .menu__list {
  display: block;
}

.header__submenu .col-3:first-child .menu__item {
  display: block;
}

.top-banner__wrapper {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  background-color: rgba(85, 87, 92, 0.4);
  height: auto;
}

.top-banner__container {
  color: white;
  text-align: center;
  vertical-align: top;
  margin: 10px;
}

.top-banner__text {
  display: inline-block;
  padding-left: 25px;
  padding-right: 25px;
  width: 90%;
}

.top-banner__close {
  position: absolute;
  display: inline-block;
  right: 1%;
  width: 35px;
}

.top-banner__close:hover,
.top-banner__close:focus {
  cursor: pointer;
}

.link {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: inherit;
}

.link:hover {
  cursor: pointer;
  text-decoration: underline;
}

.link_underline {
  text-decoration: underline;
}

.link_underline:hover {
  text-decoration: none;
}

.container_form .link_underline:hover {
  -ms-flex-item-align: center;
      align-self: center;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5) url("/assets/public/img/loader.gif") no-repeat 50% 50%;
  z-index: 10010;
}

.loader--global {
  background: #FFFFFF;
}

.loader--block {
  position: relative;
}

.loader--block:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5) url("/assets/public/img/loader.gif") no-repeat 50% 50%;
  z-index: 1000;
}

.preloader {
  background: rgba(255, 255, 255, 0.5) url("/assets/public/img/loader.gif") no-repeat 97% 50%;
  background-size: 5%;
}

@media screen and (max-width: 767px) {
  .preloader {
    background-size: 9%;
  }
}

.logo {
  display: inline-block;
  width: 105.1px;
  height: 20px;
  text-decoration: none;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.logo__img {
  display: block;
  max-width: 100%;
}

.logo_inner {
  width: 78px;
}

@media screen and (min-width: 992px) {
  .logo {
    width: 123px;
  }

  .header_scrolled .logo {
    width: 111px;
  }
}

.logo svg {
  width: 100%;
  height: 100%;
  fill: #828282;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.subMenu-mobile .logo {
  display: inline-block !important;
}

@media screen and (max-width: 992px) {
  .header_scrolled .logo {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .col-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14%;
            flex: 0 0 14%;
    max-width: 14%;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-height: 100%;
}

.menu_footer {
  text-transform: uppercase;
}

.menu_footer .menu__title {
  font-size: 10px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 3px;
  color: #7F8288;
  white-space: nowrap;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .menu__list {
    text-align: center;
  }
}

.footer__col .menu__list,
.header__submenu .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.header__submenu .menu__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu__item {
  display: inline-block;
  height: 100%;
}

.menu__item.active .menu__title {
  border-bottom: 1px solid #828282;
}

.menu_header-nav .menu__item {
  position: relative;
  padding-right: 32px;
}

@media screen and (max-width: 1239px) {
  .menu_header-nav .menu__item {
    padding-right: 30px;
  }
}

.header__submenu .menu__item {
  height: auto;
}

.footer__col .menu__item {
  height: initial;
  width: 50%;
}

.menu__link {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  z-index: 1000;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu__link:hover {
  opacity: 0.5;
}

.menu__link:active {
  opacity: 0.8;
}

.header .menu__link_special {
  color: #D5A48C !important;
}

.header .menu__link {
  font-size: 12px;
  line-height: 16px;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.header .menu__link {
  color: #828282;
}

.header .menu__link_special {
  color: #D5A48C;
}

.header_fixed .menu__link {
  color: white;
}

.header_fixed .menu__link_special {
  color: #D5A48C !important;
}

.header_scrolled .menu__link,
.header__submenu .menu__link {
  color: #828282 !important;
}

.header_scrolled .menu__link_special,
.header__submenu .menu__link_special {
  color: #D5A48C !important;
}

.header__submenu .menu__link {
  color: #828282;
  padding-top: 11px;
  padding-bottom: 11px;
}

.header__submenu .menu__link_special {
  color: #D5A48C;
}

.menu__title {
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
  white-space: nowrap;
}

.select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #59585D;
}

.select > * {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .select_mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    overflow-opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.select.disabled {
  opacity: 0.3;
}

.select.disabled .select__dropdown:hover {
  cursor: default;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.select__dropdown {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 60px;
  padding: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #E0E0E0;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .select__dropdown {
    padding: 14px;
  }
}

.select__dropdown:hover {
  background: #f5e6d9;
  border-color: #eacdb2;
}

.select__dropdown:after {
  position: absolute;
  top: 25px;
  right: 17px;
  margin-left: 8px;
  font-size: 10px;
  color: #bdbdbd;
}

@media screen and (min-width: 992px) {
  .select__dropdown:after {
    right: 12px;
    top: 25px;
  }
}

.select__dropdown__no-options {
  cursor: default;
}

.select__dropdown__no-options:after {
  display: none;
}

.select__dropdown.open:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.select__dropdown.hidden-list:after {
  display: none;
}

.select__dropdown.hidden-list .select__more {
  display: none;
}

.select__color {
  display: block;
  float: left;
  min-width: 120px;
  line-height: 19px;
  white-space: nowrap;
  overflow: hidden;
}

.select__color span {
  display: block;
  color: #828282;
  letter-spacing: 3.2px;
  font-size: 12px;
}

.select__color span span {
  display: block;
  float: left;
  margin-right: 15px;
  z-index: 99;
  content: '';
  width: 19px;
  height: 19px;
}

@media screen and (min-width: 992px) {
  .select__color span span {
    margin-right: 10px;
  }
}

.select__menu {
  position: absolute;
  right: 0;
  top: 61px;
  width: 100%;
  max-height: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  line-height: 19.75px;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
}

@media screen and (min-width: 992px) {
  .select__menu {
    top: 59px;
  }
}

@media screen and (max-width: 767px) {
  .select__menu {
    position: fixed;
    bottom: 0;
    top: auto;
    padding-bottom: 20px;
    -webkit-transition: all 0s;
    transition: all 0s;
    border: none;
  }
}

.select__menu span span {
  margin-right: 15px;
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  float: left;
  z-index: 99;
}

@media screen and (min-width: 992px) {
  .select__menu span span {
    margin-right: 10px;
  }
}

.select__menu li {
  padding: 15px 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 19.75px;
  margin: 0 -1px;
  border: 1px solid transparent;
}

@media screen and (max-width: 767px) {
  .select__menu li {
    display: block !important;
    padding: 15px 22px;
  }
}

.select__menu li:hover {
  background: #f5e6d9;
  border-color: #eacdb2;
}

.select__menu_show {
  max-height: 600px;
  opacity: 1;
  z-index: 10000;
}

.select__menu .title {
  display: none;
}

@media screen and (max-width: 767px) {
  .select__menu .title {
    display: block;
    padding: 23px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}

.select__menu .close {
  display: none;
}

@media screen and (max-width: 767px) {
  .select__menu .close {
    display: block;
    float: right;
    font-size: 23px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 50;
  }
}

.select__menu .icon-close:before {
  cursor: pointer;
  color: #C2C2C2;
}

.select__more {
  display: block;
  float: right;
  margin-right: 23px;
  font-size: 12px;
  letter-spacing: 3.2px;
  white-space: nowrap;
}

@media screen and (max-width: 500px) {
  .select__more {
    display: none !important;
  }
}

.section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100vw;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.section_col,
.section__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section_col ul,
.section__col ul {
  margin: 0;
  padding: 0;
}

.section_col_bordered,
.section__col_bordered {
  -webkit-box-shadow: inset 1px 0 0 0 #B6B6B6;
          box-shadow: inset 1px 0 0 0 #B6B6B6;
}

.section_col_padding,
.section__col_padding {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 32px;
}

.section__row,
.section_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section__row_centered,
.section_row_centered {
  margin: 0 auto;
}

.section__row_margin,
.section_row_margin {
  margin: 24px auto;
}

.section__row_slider-head,
.section_row_slider-head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 23px;
  padding-bottom: 23px;
}

@media screen and (max-width: 768px) {
  .section__row_slider-head,
  .section_row_slider-head {
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: center;
  }
}

.section_centered {
  margin: 0 auto;
}

@media only screen and (min-width: 992px) {
  .page_index .section_col:nth-child(3) .section__wrapper {
    margin-top: 0 !important;
  }
}

@media only screen and (min-width: 992px) {
  .page_index .section__img {
    height: auto !important;
  }
}

.subMenu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: black;
  top: 100%;
  left: 0;
  width: 100vw;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}

.subMenu_header_open {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.subMenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
  margin: auto;
}

.subMenu__item {
  width: 312px;
  height: 121px;
  padding: 12.5px;
}

.subMenu__item:hover {
  cursor: pointer;
  background: linear-gradient(315deg, #FFCC00 0%, #FF0066 50%, #FF00FF 100%);
}

.subMenu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  max-width: 100vw;
  padding: 26px 21px 20px 20px;
  overflow: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100000;
  background-color: #fcfaf6;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: -webkit-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-overflow-scrolling: touch;
}

.subMenu-mobile__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
}

.subMenu-mobile__accordion {
  display: block;
  height: auto;
  padding: 11px 0 35px;
  text-align: center;
  color: #828282;
}

.subMenu-mobile__accordion.disable {
  opacity: 0.3;
  pointer-events: none;
}

.subMenu-mobile .logo {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 80.37px;
  height: 16px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.subMenu-mobile .logo svg {
  fill: #828282;
}

.subMenu-mobile .form-search {
  position: relative;
  display: block;
  height: 22px;
}

.subMenu-mobile .form-search__data {
  padding: 0 40px;
  background: #FCFAF6;
}

.subMenu-mobile .form-search__btn {
  font-size: 22px;
}

.subMenu-mobile .accordion__submenu li:not(:last-child) {
  padding-bottom: 40px;
}

.subMenu-mobile_open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.subMenu-mobile_open .subMenu-mobile__close.switch {
  left: -9px;
}

.accordion_filter {
  position: relative;
}

.accordion__title,
.accordion__title-chat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .accordion__title,
  .accordion__title-chat {
    font-size: 12px;
  }
}

.card .accordion__title:after,
.card .accordion__title-chat:after {
  color: #BDBDBD;
  font-size: 10px;
  width: 16px;
}

.subMenu-mobile .accordion__title,
.subMenu-mobile .accordion__title-chat {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 22px;
}

.accordion__title.special,
.accordion__title-chat.special {
  color: #D5A48C;
}

.accordion__item {
  padding: 24px 0;
  min-height: 70px;
  list-style: none;
}

.accordion__item_active .accordion__header {
  background: #fff;
  color: #211f21;
}

.accordion__item_active .accordion__title:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.card .accordion__item {
  border-bottom: 1px solid #9e9d9b;
}

.subMenu-mobile .accordion__item {
  display: block;
  padding: 26px 0 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subMenu-mobile .accordion__item_active {
  padding-bottom: 19px;
}

.accordion_filter .accordion__item {
  margin: 0;
  padding-left: 15px;
  display: table-cell;
  width: 1%;
  border: none;
}

@media screen and (max-width: 767px) {
  .accordion_filter .accordion__item {
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
  }
}

.accordion_filter .accordion__item:first-child {
  padding: 0;
}

.accordion__submenu {
  display: none;
}

.subMenu-mobile .accordion__submenu {
  padding-top: 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subMenu-mobile .accordion__submenu a {
  font-size: 16px;
  letter-spacing: 3.2px;
}

.accordion_filter .accordion__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  z-index: 1;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .accordion_filter .accordion__submenu {
    position: static;
    padding: 15px;
  }
}

.card__accordion .accordion__submenu {
  padding-top: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.accordion__submenu .section__text_normal {
  margin-top: 0;
}

.accordion__submenu .section__text_normal p:first-child {
  margin-top: 0;
}

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

.accordion__content-list {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
}

.card__accordion .accordion__submenu a {
  text-decoration: underline;
}

.card__accordion .accordion__submenu a.btn {
  text-decoration: none;
}

.card__accordion .accordion__submenu a:hover {
  text-decoration: none;
}

.anchor-fix {
  display: block;
  height: 115px;
  margin-top: -115px;
  visibility: hidden;
}

.apple-pay {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.apple-pay-errors {
  color: #FF0000;
}

.apple-pay-button {
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: buy;
  display: inline-block;
  width: 200px;
  min-height: 30px;
  border: 1px solid black;
  background-image: -webkit-named-image(apple-pay-logo-black);
  background-size: 100% calc(60% + 2px);
  background-repeat: no-repeat;
  background-color: white;
  background-position: 50% 50%;
  border-radius: 5px;
  padding: 0;
  margin: 5px auto;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
}

.apple-pay-button.hide {
  display: none;
}

.apple-pay-button:active {
  background-color: #989898;
}

.banner__btn {
  margin-top: 50px;
  text-shadow: 0 0 12px #000000;
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  .banner__btn {
    margin-top: 40px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .banner__btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .banner__btn {
    margin-top: 15px;
  }
}

.banner__icon {
  margin-bottom: 24px;
}

.banner__img {
  display: block;
  max-height: 100%;
  width: 100%;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.banner__img-src,
.banner__img video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.banner_main .banner__img {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
}

.banner__img_mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  .banner__img {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
  }
}

@media screen and (max-width: 767px) {
  .banner__img_desktop {
    display: none;
  }

  .banner__img_mobile {
    display: block;
  }
}

.banner__lookbook {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: auto;
  font-size: 14px;
  font-weight: 100;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
}

.banner__lookbook:hover {
  opacity: 0.5;
}

.banner__supertitle {
  font-size: 18px;
  line-height: 20px;
  margin-top: auto;
  max-width: 400px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .banner__supertitle {
    font-size: 12px;
    line-height: 16px;
  }
}

.banner__supertitle + .banner__title {
  margin-top: initial;
}

.banner__text {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
  line-height: 24px;
  text-align: center;
  text-shadow: 0 0 12px #000;
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  .banner__text {
    margin-bottom: 8px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .banner__text {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .banner__text {
    margin-bottom: 15px;
  }
}

.banner__text_supertitle {
  margin: 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 56px;
}

.banner__text_subtitle {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.banner__text_subtitle-main {
  font-size: 18px;
  line-height: 28px;
}

.banner__title {
  text-transform: uppercase;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 44px;
  margin-top: auto;
  max-width: 400px;
  text-align: center;
  letter-spacing: 5px;
  padding: 15px 0 17px;
}

@media screen and (max-width: 993px) {
  .banner__title {
    font-size: 1.75rem;
    line-height: 28px;
  }
}

.banner__title-main {
  display: inline-block;
  text-align: center;
  margin-top: 0;
  margin-bottom: 70px;
  font-size: 8rem;
  font-weight: bold;
  line-height: 100px;
  text-shadow: 0 0 12px #000;
}

@media screen and (min-width: 1200px) {
  .banner__title-main {
    margin-bottom: 90px;
    font-size: 10rem;
    line-height: 130px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  .banner__title-main {
    font-size: 6rem;
    line-height: 80px;
  }
}

@media screen and (max-width: 993px) {
  .banner__title-main {
    font-size: 5rem;
    line-height: 65px;
  }
}

.banner_cabinet .banner__title {
  margin-top: 12.5%;
}

.banner_collection .banner__title,
.banner_main .banner__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 620px;
  font-size: 36px;
  line-height: 56px;
  letter-spacing: 10px;
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  .banner_collection .banner__title,
  .banner_main .banner__title {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 7px;
  }
}

@media screen and (max-width: 993px) {
  .banner_collection .banner__title,
  .banner_main .banner__title {
    font-size: 30px;
    line-height: 42px;
  }
}

@media screen and (max-width: 767px) {
  .banner_collection .banner__title,
  .banner_main .banner__title {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 5px;
  }
}

.banner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 56px;
  bottom: 59px;
  right: 0;
  left: 0;
  z-index: 3;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.banner_main .banner__wrapper {
  bottom: 99px;
}

@media screen and (max-width: 767px) {
  .banner_main .banner__wrapper {
    top: auto;
    bottom: 47px;
  }
}

.banner_collection .banner__wrapper {
  bottom: 101px;
}

.banner_centered .banner__wrapper {
  top: 50%;
  max-width: 640px;
  margin: 0 auto;
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.banner__wrapper .btn {
  display: block;
  margin-top: 0;
  margin-left: 35px;
  margin-right: 35px;
  text-align: center;
}

.banner__wrapper .btn__text {
  white-space: normal;
}

@media only screen and (max-width: 768px) {
  .banner__video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    overflow: hidden;
  }

  .banner__video video.mobile-only {
    height: 100%;
    max-height: 100%;
    width: 100%;
    min-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (max-width: 992px) {
  .banner_mobile_dark_theme .banner__title {
    color: #59585d;
  }

  .banner_mobile_dark_theme .btn__text {
    color: #59585d;
  }

  .banner_mobile_dark_theme .link_underline:after,
  .banner_mobile_dark_theme .btn_underline:after {
    background: #59585d;
  }
}

@media only screen and (min-width: 993px) {
  .banner_dark_theme .banner__title {
    color: #59585d;
  }

  .banner_dark_theme .btn__text {
    color: #59585d;
  }

  .banner_dark_theme .link_underline:after,
  .banner_dark_theme .btn_underline:after {
    background: #59585d;
  }
}

.bx-livechat-wrapper {
  bottom: 30px !important;
  right: 30px !important;
}

@media (max-width: 520px) {
  .bx-livechat-wrapper {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
}

.bx-livechat-wrapper.bx-livechat-mobile {
  top: 10% !important;
  left: calc(50% - 260px) !important;
  width: 520px !important;
  height: 690px !important;
}

@media (max-width: 520px) {
  .bx-livechat-wrapper.bx-livechat-mobile {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
}

.bx-livechat-wrapper .bx-livechat-body {
  background: #fff;
}

.bx-livechat-wrapper .bx-livechat-textarea {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 150px !important;
          flex: 0 0 150px !important;
}

.bx-livechat-wrapper .bx-livechat-copyright {
  display: none;
}

.bx-livechat-wrapper .bx-livechat-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bx-livechat-wrapper .bx-livechat-btn {
  width: 100%;
  height: 40px;
  background-color: #c6a28f;
  color: #fff;
  text-transform: uppercase;
  border-radius: 0;
  font-family: Noto Sans;
  line-height: 40px;
  padding: 0 20px !important;
  border: none;
}

.bx-livechat-wrapper .bx-livechat-btn-like,
.bx-livechat-wrapper .bx-livechat-btn-dislike {
  margin: 0;
}

.bx-livechat-wrapper .bx-livechat-btn:hover {
  background: #ccae9fba;
}

.bx-livechat-wrapper .bx-livechat-alert-box {
  border-top: 1px solid #cbcbcb;
}

.bx-livechat-wrapper .bx-livechat-alert-title {
  font-family: Noto Sans;
  color: #59585d !important;
  text-align: left;
}

.bx-livechat-wrapper .bx-livechat-alert-title-sm {
  margin: 14px 0 5px 0;
  font-size: 12px;
}

.bx-im-dialog-list-box {
  overflow-y: hidden !important;
}

.bx-im-dialog .bx-im-message-without-menu {
  margin-top: 0;
  margin-bottom: 0;
}

.bx-im-dialog .bx-im-message-content {
  background: #eee;
  margin: 25px 0 0 0;
  padding: 5px 10px;
  border-radius: 4px;
  padding-top: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.bx-im-dialog .bx-im-message-content-box {
  position: relative;
  padding: 26px 0 7px;
}

.bx-im-dialog .bx-im-message-content-date {
  color: #59585d !important;
}

.bx-im-dialog .bx-im-message-content-params {
  position: absolute;
  top: 0;
  right: 0;
}

.bx-im-dialog .bx-im-message-type-self {
  margin: 0;
}

.bx-im-dialog .bx-im-message-type-self .bx-im-message-content-text {
  color: #59585d !important;
  font-family: Noto Sans;
}

.bx-im-dialog .bx-im-message-type-system .bx-im-message-content,
.bx-im-dialog .bx-im-message-type-opponent .bx-im-message-content {
  background: #f1efe7;
  margin: 25px 60px 0 0;
  padding: 5px 10px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.bx-im-dialog .bx-im-message-type-system .bx-im-message-content-body-with-text,
.bx-im-dialog .bx-im-message-type-opponent .bx-im-message-content-body-with-text {
  background: #f1efe7;
}

.bx-im-dialog .bx-im-message-type-system .bx-im-message-content-name,
.bx-im-dialog .bx-im-message-type-opponent .bx-im-message-content-name {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: bold;
  font-family: Noto Sans;
  color: #59585d !important;
  text-transform: uppercase;
  background: transparent;
}

.bx-im-dialog .bx-im-message-type-system .bx-im-message-content-date,
.bx-im-dialog .bx-im-message-type-opponent .bx-im-message-content-date {
  color: #59585d !important;
  font-size: 12px;
  font-family: Noto Sans;
}

.bx-im-dialog .bx-im-message-type-system .bx-im-message-content-text,
.bx-im-dialog .bx-im-message-type-opponent .bx-im-message-content-text {
  color: #59585d !important;
  font-family: Noto Sans;
}

.bx-livechat-form-item input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-weight: 500;
  line-height: 19px;
  color: #000;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-bottom: 1px solid #828282;
  border-radius: 0;
  outline: none;
  text-align: center;
  font-family: Noto Sans;
}

.bx-livechat-form-item input:focus,
.bx-livechat-form-item input:hover,
.bx-livechat-form-item input:active {
  border: none;
  border-bottom: 1px solid #828282;
}

.bx-livechat-form-item.ui-ctl-danger input {
  border: none;
  border-bottom: 1px solid #f67b48;
}

.bx-im-dialog-list-item + .bx-im-dialog-list-item .bx-im-message-content-name {
  display: block;
}

.bx-livechat-wrapper .bx-im-textarea {
  border-top: 1px solid #cbcbcb;
  font-family: Noto Sans;
  color: #59585d !important;
}

.bx-livechat-wrapper .bx-im-textarea-box {
  margin-top: 10px;
}

.b24-widget-button-wrapper {
  display: none !important;
}

.b24-widget-button-wrapper.show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.b24-widget-button-bottom .b24-widget-button-social,
.b24-widget-button-top .b24-widget-button-social {
  -webkit-animation: none !important;
          animation: none !important;
}

.bx-im-message-content-wrap {
  min-width: 220px;
}

.bx-im-message-content {
  width: 100%;
}

.bx-livechat-custom-scroll div::-webkit-scrollbar-thumb:hover {
  background-image: linear-gradient(to right, transparent, transparent 5px, #e7e7e8 5px, #e7e7e8 12px, transparent 12px) !important;
}

.card__link-bottom {
  text-decoration: none !important;
}

.card__accordion .accordion__submenu .card__link-bottom {
  display: inline-block;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .card__accordion {
    padding-bottom: 20px;
  }
}

.card-size {
  position: relative;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .card-size {
    margin-bottom: 10px;
  }
}

.card-size + .card-size {
  margin-left: 20px;
}

.card-size__availability {
  position: absolute;
  bottom: -15px;
  width: 62px;
  left: -4px;
  height: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #828282;
  font-size: 7px;
  line-height: 10px;
  letter-spacing: 2.2px;
}

@media (max-width: 767px) {
  .card-size__availability {
    font-size: 7px;
    line-height: 10px;
    letter-spacing: 1.2px;
  }
}

.card-size__availability.colorbox-trigger-inline {
  padding-top: 55px;
  bottom: -5px;
}

.card-size__availability.colorbox-trigger-inline:hover {
  cursor: pointer;
}

.card__sizes {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .card__sizes {
    margin-bottom: 0;
  }
}

.popup-sizes .card__sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-sizes .card-size {
  display: inline-block;
  margin: 0;
}

.popup-sizes .card-size__availability {
  display: none;
}

.certificate-form {
  padding: 20px;
  background: #faf2eb;
}

@media screen and (max-width: 767px) {
  .certificate-form {
    font-size: 12px;
  }
}

.certificate-form__open {
  display: inline-block;
  color: #000;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  border-bottom: 1px dashed;
}

.certificate-form__open:hover {
  border-bottom: 1px solid transparent;
}

.certificate-form__form {
  margin-top: 10px;
}

[data-state="closed"] .certificate-form__form {
  display: none;
}

.certificate-form__add {
  display: inline-block;
  margin-top: 10px;
  color: #000;
  cursor: pointer;
  font-weight: 300;
  line-height: 20px;
  border-bottom: 1px dashed;
}

.certificate-form__add:hover {
  border-bottom: 1px solid transparent;
}

.certificate-form__sum {
  display: none;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 500px) {
  .certificate-form__sum {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

[data-state="sum"] .certificate-form__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.certificate-form__sum label {
  margin-right: 10px;
}

.certificate-form__sum input {
  max-width: 80px;
  text-align: center;
  margin-right: 10px;
}

.certificate-form__error {
  display: none;
}

.certificate-form__error.show {
  display: block;
}

.chats-btn__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 22px;
}

.chats-btn__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  line-height: 12px;
  margin-top: 30px !important;
}

.collection-timer {
  margin: 15px auto 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .collection-timer {
    margin-top: 0;
  }
}

.collection-timer__text {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.collection-timer._hide {
  display: none;
}

.collection-timer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0 48px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .collection-timer__items {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 768px) {
  .collection-timer__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .collection-timer__link .btn__text {
    font-size: 12px;
  }
}

.collection-timer__item {
  text-align: center;
  font-family: Noto Sans;
}

.collection-timer__item:not(:last-child) {
  margin-right: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .collection-timer__item:not(:last-child) {
    margin-right: 8px;
  }
}

.collection-timer__count {
  font-size: 22px;
  line-height: 30px;
  color: #c6a28f;
  letter-spacing: 0.2em;
}

.collection-timer__name {
  margin: 7px auto 0;
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #828282;
}

.collection-timer__name--days {
  width: 3.558em;
}

.collection-timer__name--hours {
  width: 4.391em;
}

.collection-timer__name--minutes {
  width: 5.655em;
}

.collection-timer__name--seconds {
  width: 6.12em;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section__collection-timer .section__title {
    margin-top: 0;
  }
}

.colorbox-how-to-wear .colorbox__close:before {
  color: #d6d6d6;
}

.colorbox .size-grid {
  min-height: 100px;
}

.countdown-timer {
  background: #fff;
  color: #828282;
  font-family: 'Noto Sans', sans-serif;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .countdown-timer {
    padding: 30px 0;
    padding-top: 0;
  }
}

@media screen and (max-width: 520px) {
  .countdown-timer {
    padding: 20px 0;
    padding-top: 0;
  }
}

.countdown-timer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.countdown-timer__container-text {
  text-align: center;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 9px;
}

@media screen and (max-width: 1024px) {
  .countdown-timer__container-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 520px) {
  .countdown-timer__container-text {
    font-size: 14px;
  }
}

.countdown-timer__block {
  text-align: center;
}

.countdown-timer__block:not(:first-child) {
  margin-left: 74px;
}

@media screen and (max-width: 1024px) {
  .countdown-timer__block:not(:first-child) {
    margin-left: 64px;
  }
}

@media screen and (max-width: 768px) {
  .countdown-timer__block:not(:first-child) {
    margin-left: 50px;
  }
}

@media screen and (max-width: 520px) {
  .countdown-timer__block:not(:first-child) {
    margin-left: 30px;
  }
}

.countdown-timer__block:not(:first-child) .countdown-timer__time:before {
  content: ':';
  position: absolute;
  top: 0;
  left: calc(-74px / 2 - 15px);
}

@media screen and (max-width: 1024px) {
  .countdown-timer__block:not(:first-child) .countdown-timer__time:before {
    left: calc(-64px / 2 - 13px);
  }
}

@media screen and (max-width: 768px) {
  .countdown-timer__block:not(:first-child) .countdown-timer__time:before {
    left: calc(-50px / 2 - 11px);
  }
}

@media screen and (max-width: 520px) {
  .countdown-timer__block:not(:first-child) .countdown-timer__time:before {
    left: calc(-30px / 2 - 7px);
  }
}

.countdown-timer__time {
  position: relative;
  font-size: 64px;
  line-height: 64px;
}

@media screen and (max-width: 1024px) {
  .countdown-timer__time {
    font-size: 56px;
    line-height: 56px;
  }
}

@media screen and (max-width: 768px) {
  .countdown-timer__time {
    font-size: 48px;
    line-height: 48px;
  }
}

@media screen and (max-width: 520px) {
  .countdown-timer__time {
    font-size: 32px;
    line-height: 32px;
  }
}

.countdown-timer__time::first-letter {
  letter-spacing: 26px;
}

@media screen and (max-width: 1024px) {
  .countdown-timer__time::first-letter {
    letter-spacing: 24px;
  }
}

@media screen and (max-width: 768px) {
  .countdown-timer__time::first-letter {
    letter-spacing: 16px;
  }
}

@media screen and (max-width: 520px) {
  .countdown-timer__time::first-letter {
    letter-spacing: 10px;
  }
}

@media screen and (max-width: 340px) {
  .countdown-timer__time::first-letter {
    letter-spacing: 4px;
  }
}

.countdown-timer__text {
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  .countdown-timer__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .countdown-timer__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 520px) {
  .countdown-timer__text {
    font-size: 12px;
  }
}

@media screen and (max-width: 340px) {
  .countdown-timer__text {
    font-size: 10px;
  }
}

.main-page-timer {
  position: absolute;
  bottom: 150px;
  left: calc(50% - (652px / 2));
  z-index: 1;
  background: transparent;
  color: #828282;
}

@media screen and (min-width: 1200px) {
  .main-page-timer.countdown-timer {
    left: calc(50% - (556px / 2));
  }
}

@media screen and (max-width: 1024px) {
  .main-page-timer.countdown-timer {
    left: calc(50% - (572px / 2));
  }
}

@media screen and (max-width: 767px) {
  .main-page-timer.countdown-timer {
    bottom: auto;
    top: 14%;
    left: calc(50% - (458px / 2));
  }
}

@media screen and (max-width: 520px) {
  .main-page-timer.countdown-timer {
    top: 16.5%;
    left: calc(50% - (246px / 2));
  }
}

@media screen and (max-width: 340px) {
  .main-page-timer.countdown-timer {
    left: calc(50% - (226px / 2));
  }
}

.main-page-timer.countdown-timer__time {
  font-weight: bold;
}

@media screen and (min-width: 1200px) {
  .main-page-timer.countdown-timer__time {
    font-size: 56px;
  }
}

@media screen and (max-width: 520px) {
  .main-page-timer.countdown-timer__time {
    font-size: 28px;
  }
}

@media screen and (max-width: 340px) {
  .main-page-timer.countdown-timer__time {
    font-size: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .main-page-timer.countdown-timer__time::first-letter {
    letter-spacing: 20px;
  }
}

@media screen and (max-width: 520px) {
  .main-page-timer.countdown-timer__time::first-letter {
    letter-spacing: 8px;
  }
}

@media screen and (min-width: 1200px) {
  .main-page-timer.countdown-timer__block:not(:first-child) {
    margin-left: 64px;
  }
}

@media screen and (max-width: 520px) {
  .main-page-timer.countdown-timer__block:not(:first-child) {
    margin-left: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .main-page-timer.countdown-timer__block:not(:first-child) .countdown-timer__time:before {
    left: calc(-64px / 2 - 15px);
  }
}

.masthead--timer {
  padding: 0;
  margin: 0;
}

.section_before_timer {
  margin-bottom: 29px !important;
}

.favorite {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("/assets/public/img/icon-white-heart.svg") center center no-repeat;
}

@media (max-width: 767px) {
  .favorite {
    background-size: 20px;
  }
}

.favorite.added {
  background: url("/assets/public/img/icon-heart.svg") center center no-repeat;
}

@media (max-width: 767px) {
  .favorite.added {
    background-size: 20px;
  }
}

@media (min-width: 768px) {
  .favorite:hover {
    cursor: pointer;
  }
}

.basket-item__favorite {
  left: 10px;
  bottom: 8px;
}

@media (min-width: 768px) {
  .basket-item__favorite:hover {
    opacity: 0.95;
  }
}

.catalog-item__favorite {
  right: 15px;
  bottom: 15px;
}

@media (max-width: 767px) {
  .catalog-item__favorite {
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 768px) {
  .catalog-item__favorite:hover {
    opacity: 0.7;
  }
}

.card__favorite {
  right: 15px;
  bottom: 15px;
}

@media (max-width: 767px) {
  .card__favorite {
    position: relative;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
    margin-left: 19px;
    float: right;
    background: url("/assets/public/img/icon-border-heart.svg") center center no-repeat;
  }
}

@media (min-width: 768px) {
  .card__favorite:hover {
    opacity: 0.7;
  }
}

.favorite-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #E0E0E0;
  background: url("/assets/public/img/icon-border-heart.svg") center center no-repeat;
}

.favorite-btn:hover {
  cursor: pointer;
  border: 1px solid #EACDB2;
}

.favorite-btn.added {
  border: transparent;
  background: url("/assets/public/img/icon-heart.svg") center center no-repeat #F9F1E9;
}

.favorite-btn.added:hover {
  opacity: 0.8;
}

.basket-item__image,
.catalog-item__overflow {
  position: relative;
  display: block;
}

.form {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.form__container {
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  width: 100%;
  max-width: 1340px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 520px) {
  .form__container {
    width: 320px;
  }
}

.form__title {
  margin-bottom: 18px;
  line-height: 30px;
  font-size: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #59585D;
}

.form__text {
  margin-bottom: 41px;
  color: #7F8288;
}

.form__form-group {
  position: relative;
  margin-bottom: 45px;
}

@media (max-width: 520px) {
  .form__form-group {
    width: 240px;
    margin: 0 auto 45px;
  }
}

.form__form-group.status-success .form__input-success {
  display: block;
}

.form__form-group.status-error .form__input-error {
  display: block;
}

.form__form-group.status-error .form__input {
  color: #F37B40;
  border-bottom: 1px solid #F37B40;
}

.form__input-error {
  display: none;
  color: #f37b40;
  font-size: 14px;
  padding: 5px 0;
  text-align: left;
}

.form__input-success {
  display: none;
  color: #C6A28F;
  font-size: 14px;
  padding: 5px 0 5px 18px;
  text-align: left;
  background: url("/assets/public/img/icon-success.png") 0 50% no-repeat;
}

.form__input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #828282;
  color: #828282;
  font-size: 17px;
  line-height: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0;
}

.form__input::-webkit-input-placeholder {
  width: 100%;
  color: #7F8288;
  text-align: center;
}

.form__input::-moz-placeholder {
  width: 100%;
  color: #7F8288;
  text-align: center;
}

.form__input::-ms-input-placeholder {
  width: 100%;
  color: #7F8288;
  text-align: center;
}

.form__input::placeholder {
  width: 100%;
  color: #7F8288;
  text-align: center;
}

.form__input:active,
.form__input:focus {
  padding: 15px 0;
}

.form__input:active::-webkit-input-placeholder,
.form__input:focus::-webkit-input-placeholder {
  color: transparent;
}

.form__input:active::-moz-placeholder,
.form__input:focus::-moz-placeholder {
  color: transparent;
}

.form__input:active::-ms-input-placeholder,
.form__input:focus::-ms-input-placeholder {
  color: transparent;
}

.form__input:active::placeholder,
.form__input:focus::placeholder {
  color: transparent;
}

.form__input:active + .form__label,
.form__input:focus + .form__label {
  display: block;
}

@media (max-width: 520px) {
  .form__input:active + .form__label,
  .form__input:focus + .form__label {
    display: none;
  }
}

.form__label {
  display: none;
  position: absolute;
  top: 13px;
  right: 0;
  width: auto;
  color: #BDBDBD;
}

.form__label:hover {
  cursor: pointer;
}

.form__button {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 11px 0;
  border: none;
  background: #c6a28f;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

@media (max-width: 520px) {
  .form__button {
    width: 240px;
    margin: 0 auto 25px;
  }
}

.form__button:hover {
  background: rgba(198, 162, 143, 0.8);
}

.form__button:active,
.form__button:focus {
  background: rgba(198, 162, 143, 0.5);
}

.form__personal-data {
  font-size: 13px;
  line-height: 18px;
  color: rgba(127, 130, 136, 0.5);
}

.form__personal-data a {
  text-decoration: underline;
  color: rgba(127, 130, 136, 0.5);
}

.form__personal-data a:hover {
  text-decoration: none;
  cursor: pointer;
}

.form__personal-data a:hover,
.form__personal-data a:focus,
.form__personal-data a:visited {
  color: rgba(127, 130, 136, 0.5);
}

@media (min-width: 521px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .hide-mobile {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}

.lang-switch {
  display: none;
}

@media (min-width: 992px) {
  .lang-switch {
    display: block;
    position: absolute;
    right: 0;
    top: 5px;
  }
}

@media (min-width: 992px) {
  .lang-switch a {
    color: #828282;
  }
}

@media (min-width: 992px) {
  .lang-switch a:hover {
    color: #C0C1C3;
  }
}

.location-search-result {
  overflow: hidden auto;
  display: block;
  bottom: auto;
  background-color: #fff;
  z-index: 500;
  border: 1px solid #87919c;
  max-height: 300px;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 3px #c7c7c7;
  box-shadow: 0 2px 3px #c7c7c7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  left: 0;
  padding: 5px 5px 3px 5px;
  position: absolute;
  width: 100%;
}

.location-search-result .dropdown-item {
  z-index: 999;
  padding: 10px 10px;
  border-radius: 2px;
  margin-bottom: 2px;
  font-size: 14px;
  color: #aba8ac;
}

.location-search-result .dropdown-item:hover {
  cursor: pointer;
  background-color: #E0E8EA;
}

.location-search-result .dropdown-item .dropdown-item-text {
  color: #59585d;
  display: inline-block;
  vertical-align: top;
}

.page_personal .location-search-result {
  border: 1px solid #EACDB2;
  border-radius: 0;
  padding: 15px 20px;
}

.page_personal .location-search-result .dropdown-item {
  padding: 0;
  margin-bottom: 15px;
  color: #cdcdcd;
  background: none;
}

.page_personal .location-search-result .dropdown-item:last-child {
  margin-bottom: 0;
}

.page_personal .location-search-result .dropdown-item .dropdown-item-text {
  color: #828282;
}

.page_personal .select2-selection {
  border: none;
  border-bottom: 1px solid var(--color--gray-light);
}

.page_personal .select2-selection__rendered {
  color: var(--color--gray-space);
  font-size: 12px;
  letter-spacing: 3px;
  pointer-events: none;
  text-transform: uppercase;
  padding: 0;
}

.page_personal .select2-results__option {
  margin-bottom: 5px;
  color: #cdcdcd;
  background: none;
  text-transform: uppercase;
}

.page_personal .select2-results__option:last-child {
  margin-bottom: 0;
}

.page_personal .select2-results__option .dropdown-item-text {
  color: #828282;
}

.page_personal .select2-results__option[aria-selected="true"] {
  text-decoration: none;
}

.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .main-container {
    overflow: hidden;
  }
}

.page_card .main-container {
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .page_card .main-container {
    overflow: visible;
  }
}

.map-img,
.map__image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  text-align: center;
}

.modal:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -.05em;
}

.modal.current {
  display: block;
}

.modal.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1990;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .modal.blocker {
    padding: 10px;
  }
}

.modal.opacity {
  opacity: 0.3;
}

.modal__dialog {
  position: relative;
  min-width: 480px;
  margin: auto 0;
  padding: 60px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.3);
}

.modal--auth-form .modal__dialog {
  top: 76px;
}

@media screen and (max-width: 767px) {
  .modal__dialog {
    max-width: 100%;
    min-width: 300px;
    padding: 40px;
  }
}

@media screen and (max-width: 320px) {
  .modal__dialog {
    padding: 40px 30px;
  }
}

.modal__title {
  text-align: left;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

@media (max-width: 768px) {
  .modal__close {
    top: 15px;
    right: 15px;
    font-size: 15px;
  }
}

.modal__text {
  text-align: left;
}

@media (max-width: 768px) {
  .modal__text {
    font-size: 12px;
  }
}

.modal-gallery {
  max-width: 100%;
  max-height: 100%;
}

.modal-gallery .slick-list,
.modal-gallery .slick-track {
  max-height: 100%;
  height: 100%;
  padding: 0 !important;
}

.modal-gallery .slick-arrow {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  z-index: 1;
  color: transparent;
  background: transparent;
}

.modal-gallery .slick-arrow.slick-prev {
  left: 0;
}

.modal-gallery .slick-arrow.slick-next {
  right: 0;
}

.modal-gallery__item {
  max-height: 100%;
  width: 100%;
  overflow: hidden;
}

.modal-gallery__video,
.modal-gallery__img {
  display: block;
  max-height: 100%;
  margin: 0 auto;
}

.slider__item--video .play {
  max-height: 100%;
}

.slider__item--video .play:after {
  background-color: rgba(255, 255, 255, 0.3);
}

.cookie-notification {
  width: 365px;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .cookie-notification {
    width: 100%;
  }
}

.change-site-notification {
  border: 1px solid #d9d9d9;
}

@media (min-width: 768px) {
  .change-site-notification {
    left: 30% !important;
    right: 30% !important;
    bottom: 50% !important;
  }
}

.order-navigation {
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
  padding: 30px 0 0;
  margin: 0 0 60px;
}

@media screen and (max-width: 767px) {
  .order-navigation {
    display: none;
  }
}

.order-navigation ul {
  color: #262626;
  font-size: 15px;
  line-height: 20px;
}

.order-navigation__step {
  display: inline-block;
  padding: 0 0 22px;
  margin: 0 4% 0 6%;
  color: #747474;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}

.order-navigation__step.active .order-navigation__number {
  background: #666;
}

.order-navigation__number {
  background: #9b9d9f;
  width: 19px;
  height: 19px;
  border-radius: 100%;
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -20px;
}

.paypal-btn {
  max-width: 450px;
  margin: 0 auto;
}

.paypal-result.form-success,
.paypal-result.form-error {
  display: block !important;
  background: none;
  font-size: 14px;
  margin: 20px auto;
}

.order-checkout .cloudpay_button {
  display: none;
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #c6a28f;
  color: #fff;
  width: 200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: lighter;
  line-height: 16px;
  letter-spacing: 3px;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.order-checkout .cloudpay_button.visible {
  display: block;
}

.order-checkout .cloudpay_button + #result {
  display: none !important;
}

div[id^="cloudpayments-loading-overlay"] img {
  display: none;
}

div[id^="cloudpayments-loading-overlay"]:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5) url("/new_assets/builds/static/img/assets/colorbox/loader.gif") no-repeat 50% 50%;
  z-index: 1000;
}

.payment-methods {
  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;
  max-width: 300px;
  margin: 0 auto;
}

.payment-methods .payment-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22%;
  height: 35px;
  padding: 5px 8px;
  border: 1px solid rgba(128, 128, 128, 0.15);
  border-radius: 3px;
}

.payment-methods .payment-method img {
  max-width: 100% !important;
  max-height: 100% !important;
  height: auto;
}

.popup {
  display: none;
  position: fixed;
  bottom: 32px;
  left: auto;
  right: 32px;
  padding: 25px;
  padding-right: 36px;
  z-index: 10000;
  background: #fff;
  text-align: center;
}

.popup.opacity {
  opacity: 0.3;
}

@media (max-width: 768px) {
  .popup {
    width: 100%;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    background: rgba(255, 255, 255, 0.95);
    padding-right: 30px;
  }
}

.popup__title {
  text-align: left;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

@media (max-width: 768px) {
  .popup__close {
    top: 15px;
    right: 15px;
    font-size: 15px;
  }
}

.popup__text {
  text-align: left;
}

@media (max-width: 768px) {
  .popup__text {
    font-size: 12px;
  }
}

.preorder-form {
  background-color: #fff;
  padding: 36px;
  text-align: center;
  max-width: 455px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 470px;
}

@media (max-width: 767px) {
  .preorder-form {
    padding: 25px 0 0;
  }
}

.preorder-form__text {
  margin: 0;
}

.preorder-form .container_form {
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
}

.preorder-form h2 {
  max-width: 315px;
  color: #828282;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 3px;
  padding-bottom: 10px;
}

.preorder-form .section__text_normal {
  color: #828282;
  padding-bottom: 30px;
}

.preorder-form .section__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.preorder-form .btn {
  margin-bottom: 20px;
}

.preorder-form__privacy-policy {
  font-size: 10px;
  line-height: 14px;
  color: #828282;
  margin-bottom: 40px;
}

.preorder-btn {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .preorder-btn {
    width: 350px;
    margin: 0 auto;
  }
}

.registration-form .form__container {
  padding: 120px 25px;
  width: 445px;
  max-width: none;
}

@media (max-width: 520px) {
  .registration-form .form__container {
    width: 100%;
    padding: 30px 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.registration-form .form__form-group,
.registration-form .form__title,
.registration-form .form__text {
  margin-bottom: 15px;
}

@media (max-width: 520px) {
  .registration-form .form__form-group,
  .registration-form .form__title,
  .registration-form .form__text {
    margin-bottom: 10px;
  }
}

@media (max-width: 520px) {
  .registration-form .form__form-group {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .registration-form .form__title {
    line-height: 28px;
    font-size: 22px;
  }

  .registration-form .form__text {
    font-size: 14px;
  }
}

.registration-form .form__button {
  margin-top: 30px;
  margin-bottom: 5px;
}

.registration-form .form__button:hover {
  cursor: pointer;
}

.registration-form .form__label {
  font-size: 14px;
}

.registration-form .form__input {
  display: block;
  width: 100%;
  padding: 14.6px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #000;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-bottom: 1px solid #828282;
  border-radius: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

@media (max-width: 520px) {
  .registration-form .form__input {
    height: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.registration-form .form__input:active {
  padding: 14.6px 16px;
}

.registration-form .form__input-error,
.registration-form .form__input-success {
  display: block;
}

.registration-form .form__input-success {
  background: url("/assets/public/img/icon-success.png") 0 11px no-repeat;
}

.registration-form .form__input-success a {
  color: #c6a28f;
  text-decoration: underline;
}

.registration-form .form__checkbox-group {
  width: 45%;
  margin: 30px auto;
}

@media (max-width: 360px) {
  .registration-form .form__checkbox-group {
    width: 60%;
  }
}

.registration-form .form .checkbox span {
  text-align: left;
  color: #828282;
  margin-left: 50px;
  font-size: 17px;
  line-height: 27px;
  padding: 0;
}

.registration-form .bx-sls {
  padding-top: 10px;
  padding-bottom: 12px;
}

.registration-form .bx-sls .dropdown-block {
  border-bottom: 1px solid #828282;
  font-size: 14px;
  padding: 0 22px 0 22px;
  position: relative;
  background-color: #fff;
}

.registration-form .bx-sls .dropdown-arrow {
  background: url("/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/dropdown-errow.png") no-repeat center center;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  width: 22px;
}

.registration-form .bx-sls .bx-ui-sls-container {
  overflow: hidden;
  min-height: 25px;
}

.registration-form .bx-ui-sls-variants {
  text-align: left;
}

.registration-form .bx-sls .bx-ui-sls-pane {
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 3px #c7c7c7;
  box-shadow: 0 2px 3px #c7c7c7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  left: 0;
  top: 35px;
  padding: 5px 5px 3px 5px;
  position: absolute;
  width: 100%;
}

.registration-form .bx-sls .dropdown-active .bx-ui-sls-pane {
  display: block;
}

.registration-form .bx-sls .bx-ui-sls-variants {
  list-style: none;
  margin: 0;
  padding: 0;
}

.registration-form .bx-sls .dropdown-item {
  border-radius: 2px;
  padding: 7px 4px 7px 10px;
  margin-bottom: 2px;
}

.registration-form .bx-sls .dropdown-item:hover {
  background-color: #f1f3f5;
  cursor: pointer;
}

.registration-form .bx-sls .dropdown-img {
  border: none;
  display: inline-block;
  height: 12px;
  margin: 3px 12px 0 0;
  vertical-align: top;
  width: 16px;
}

.registration-form .bx-sls .dropdown-item-text {
  color: #aba8ac;
  display: inline-block;
  vertical-align: top;
}

.registration-form .bx-sls .dropdown-item-text span {
  color: #25282c;
}

.registration-form .bx-sls .dropdown-list-title {
  border-bottom: 1px solid #e5e5e5;
  height: 37px;
  line-height: 37px;
  padding-left: 8px;
}

.registration-form .bx-sls .dropdown-icon {
  background: url("/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/lens.png") no-repeat center center;
  height: 14px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 14px;
}

.registration-form .bx-sls .quick-locations {
  margin-bottom: 5px;
}

.registration-form .bx-sls .quick-location-tag {
  background-color: #f2f5f8;
  border: 1px solid #cad3dc;
  border-radius: 3px;
  color: #1e55b9;
  display: inline-block;
  font-size: 15px;
  height: 27px;
  line-height: 26px;
  margin: 0 3px;
  padding: 0 14px;
  text-decoration: none;
  margin-bottom: 10px;
}

.registration-form .bx-sls .quick-location-tag:hover {
  background-color: #fafafa;
}

.registration-form .bx-sls .dropdown-fade2white {
  width: 46px;
  height: 31px;
  position: absolute;
  top: 2px;
  right: 0;
}

.registration-form .bx-sls .bx-ui-sls-clear {
  background: url("/bitrix/panel/main/images/bx-admin-sprite-small.png") 6px -3386px no-repeat scroll;
  width: 30px;
  height: 30px;
  cursor: pointer;
  cursor: hand;
  margin-top: 2px;
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
}

.registration-form .bx-sls .bx-ui-sls-clear:hover {
  background-position: 6px -3418px;
}

.registration-form .bx-sls .bx-ui-sls-loader {
  background-image: url("/bitrix/panel/main/images/waiter-white.gif") !important;
  background-repeat: no-repeat !important;
  background-position: right -1px !important;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 3px;
  right: 2px;
  display: none;
}

.registration-form .bx-sls .bx-ui-sls-go-edit {
  display: none;
}

.registration-form .bx-sls .bx-ui-sls-pane {
  max-height: 300px;
}

.registration-form .bx-sls input::-ms-clear {
  display: none;
}

.registration-form .bx-sls input[type="text"] {
  position: relative;
}

.registration-form .bx-sls .bx-ui-sls-fake,
.registration-form .bx-sls .bx-ui-sls-route {
  position: absolute !important;
  top: 0;
  left: 0;
  color: #000 !important;
  opacity: 1 !important;
  background: transparent !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0 0 0 0 !important;
  background-position: right 1px;
  background-repeat: no-repeat;
  font-size: 14px;
  height: 33px;
  width: 100%;
  outline: none;
  z-index: 10;
  text-align: center;
}

.registration-form .bx-sls .bx-ui-sls-route {
  color: #aba8ac !important;
  z-index: 5;
}

.registration-form .bx-sls .bx-ui-sls-pane {
  background-color: #fff;
  z-index: 999;
  border: 1px solid #87919c;
}

.registration-form .bx-sls .bx-ui-sls-variants .bx-ui-sls-variant,
.registration-form .bx-sls .bx-ui-sls-error {
  padding: 10px 10px;
}

.registration-form .bx-sls .bx-ui-sls-error {
  color: #ff2222;
  padding-left: 30px;
  position: relative;
}

.registration-form .bx-sls .bx-ui-sls-error div {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 25px;
  height: 25px;
  background: url("/bitrix/panel/main/images/bx-admin-sprite-small.png") 6px -2895px no-repeat scroll;
}

.registration-form .bx-sls .bx-ui-sls-variants .bx-ui-sls-variant:hover,
.registration-form .bx-sls .bx-ui-sls-variant-active {
  background-color: #E0E8EA;
}

.registration-form .adm-sls-edit-link {
  margin-top: 10px;
}

.registration-form .bx-admin-mode .bx-sls-go-edit {
  margin-left: 10px;
  display: none;
}

.registration-form .bx-admin-mode .dropdown-block {
  border-color: #87919c #959ea9 #9ea7b1;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
  height: 25px;
}

.registration-form .bx-sls.bx-admin-mode .bx-ui-sls-fake,
.registration-form .bx-sls.bx-admin-mode .bx-ui-sls-route {
  height: 25px;
}

.registration-form .bx-admin-mode .dropdown-icon {
  top: 7px;
}

.registration-form .bx-admin-mode .dropdown-fade2white {
  height: 22px;
}

.registration-form .bx-admin-mode .dropdown-fade2white {
  right: 1px;
}

.registration-form .bx-admin-mode .bx-ui-sls-clear {
  background-position: 6px -3389px;
  height: 22px;
}

.registration-form .bx-admin-mode .bx-ui-sls-clear:hover {
  background-position: 6px -3421px;
}

.registration-form .bx-admin-mode .bx-ui-sls-loader {
  background-position: right -4px !important;
  height: 21px;
}

.registration-form .bx-admin-mode .bx-ui-sls-pane {
  top: 27px;
}

.registration-form .bx-sls .bx-ui-sls-fake,
.registration-form .bx-sls .bx-ui-sls-route {
  height: 25px;
}

.registration-form .bx-sls .bx-ui-sls-fake {
  font-weight: 500;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  font-size: 14px;
  line-height: 20px;
}

.registration-form .bx-sls .bx-ui-sls-fake::-webkit-input-placeholder {
  color: #7F8288;
}

.registration-form .bx-sls .bx-ui-sls-fake::-moz-placeholder {
  color: #7F8288;
}

.registration-form .bx-sls .bx-ui-sls-fake::-ms-input-placeholder {
  color: #7F8288;
}

.registration-form .bx-sls .bx-ui-sls-fake::placeholder {
  color: #7F8288;
}

.registration-form .bx-ui-sls-clear,
.registration-form .dropdown-icon {
  display: none !important;
}

.registration-form .bx-ui-sls-route {
  display: none;
}

.registration-form .bx-ui-sls-input-block {
  padding-bottom: 14.6px !important;
}

.ui-widget-content .ui-icon {
  background-image: none !important;
  text-indent: 5px !important;
  font-size: small !important;
}

.ui-datepicker-month,
.ui-datepicker-year {
  -moz-text-align-last: center;
       text-align-last: center;
  border: none;
  background: transparent;
}

@media (max-width: 767px) {
  .wallet-form {
    margin-bottom: 105px;
    margin-top: 35px;
  }
}

.wallet-form .form__input-error a {
  text-decoration: underline;
}

.refprogram-form {
  margin-top: 35px;
  margin-bottom: 35px;
}

@media (min-width: 520px) {
  .refprogram-form .left-position {
    margin: unset;
    padding-left: 20px;
  }
}

.section__row_slider-view .slider {
  overflow-y: hidden;
  height: 390px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section__row_slider-view .slider {
    height: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .section__row_slider-view .slider {
    height: 443px;
  }
}

.section__row_slider-view .slider__item {
  width: 400px !important;
  height: 390px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section__row_slider-view .slider__item {
    width: 309px !important;
    height: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .section__row_slider-view .slider__item {
    width: 347px !important;
    height: 443px;
  }
}

@media only screen and (max-width: 374px) {
  .section__row_slider-view .slider__item {
    width: 290px !important;
  }
}

@media only screen and (max-width: 767px) {
  .card-slider .slider-single__img {
    position: relative;
  }

  .card-slider .slider-single .slick-slide > div {
    height: 100%;
  }
}

.subscribe-modal {
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}

.subscribe-modal .form-success,
.subscribe-modal .form-error {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .subscribe-modal .container_big {
    padding: 0 !important;
  }
}

.subscribe-modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .subscribe-modal__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) and (min-width: 550px) {
  .subscribe-modal__form {
    max-width: 60%;
  }
}

.subscribe-modal__title {
  padding: 0;
}

@media (max-width: 767px) {
  .subscribe-modal__title {
    text-align: center;
  }
}

.subscribe-modal__text {
  margin-right: 20px;
  max-width: 50%;
}

@media (max-width: 767px) {
  .subscribe-modal__text {
    margin-right: 0;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) and (min-width: 550px) {
  .subscribe-modal__text {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .subscribe-modal .section__text_policy {
    top: 0;
    margin: 5px;
    font-size: 12px;
  }
}

.toper {
  display: none;
}

@media screen and (max-width: 992px) {
  .header_scrolled .toper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    cursor: pointer;
    float: none;
    padding: 7px 0 9px;
    margin-top: -16px;
    font-size: 12px;
    letter-spacing: 3.2px;
  }
}

.Feedback__Link {
  width: auto;
}

.Feedback__Item {
  margin-top: 24px;
}

@media screen and (min-width: 1366px) {
  .FavoriteCard__Picture {
    min-height: 251px;
  }
}

@media screen and (max-width: 1365px) {
  .FavoriteCard__Picture {
    min-height: 234px;
  }
}

@media screen and (max-width: 1024px) {
  .FavoriteCard__Picture {
    min-height: 301px;
  }
}

@media screen and (max-width: 768px) {
  .FavoriteCard__Picture {
    min-height: 276px;
  }
}

@media screen and (max-width: 500px) {
  .FavoriteCard__Picture {
    min-height: auto;
  }
}

.country-switcher-popup {
  display: block;
  position: fixed;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100%;
  padding: 0;
}

.country-switcher-popup .container_big {
  position: relative;
}

.country-switcher-popup .popup__close {
  top: 45px;
  right: 1px;
  font-size: 22px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .country-switcher-popup .popup__close {
    right: 16px;
  }
}

@media screen and (max-width: 767px) {
  .country-switcher-popup .popup__close {
    top: 30px;
    right: 18px;
  }
}

.country-switcher-popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 107px 30px  0;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .country-switcher-popup__content {
    padding: 30px 81px 30px  0;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .country-switcher-popup__content {
    padding: 26px 79px 26px 16px;
  }
}

@media screen and (max-width: 767px) {
  .country-switcher-popup__content {
    padding: 30px 9px;
  }
}

.country-switcher-popup__content .popup__text {
  width: 46%;
  padding-top: 10px;
  font-size: 12px;
  line-height: 16px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .country-switcher-popup__content .popup__text {
    width: 45%;
    padding-top: 7px;
    max-width: 300px;
  }

  .country-switcher-popup__content .popup__text br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .country-switcher-popup__content .popup__text {
    width: 100%;
    padding: 0;
    padding-right: 30px;
    margin-bottom: 20px;
  }

  .country-switcher-popup__content .popup__text br {
    display: none;
  }
}

.country-switcher-popup .country-switcher__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 54%;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .country-switcher-popup .country-switcher__select {
    width: 55%;
    padding-top: 4px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .country-switcher-popup .country-switcher__select {
    width: 100%;
  }
}

.country-switcher-popup .country-switcher__select .select {
  width: 400px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .country-switcher-popup .country-switcher__select .select {
    width: 315px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .country-switcher-popup .country-switcher__select .select {
    width: 232px;
  }
}

@media screen and (max-width: 767px) {
  .country-switcher-popup .country-switcher__select .select {
    width: 69%;
  }
}

.country-switcher-popup .country-switcher__select .select__dropdown {
  height: 50px;
}

.country-switcher-popup .country-switcher__select .select__dropdown:after {
  top: 21px;
}

.country-switcher-popup .country-switcher__select .select__dropdown img {
  margin: 4px 19px 0 2px;
}

.country-switcher-popup .country-switcher__select .select__menu {
  top: 49px;
}

.country-switcher-popup .country-switcher__select .select__menu_show {
  height: 52px;
}

.country-switcher-popup .country-switcher__select .select__menu li {
  text-align: left;
  padding-left: 48px;
}

@media screen and (max-width: 991px) {
  .country-switcher-popup .country-switcher__select .select__menu li {
    padding-left: 54px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .country-switcher-popup .country-switcher__select .select__menu {
    top: 50px;
    border: 1px solid #e0e0e0;
    position: absolute;
    bottom: auto;
    padding-bottom: 0;
  }
}

.country-switcher-popup .country-switcher__btn {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .country-switcher-popup .country-switcher__btn {
    width: 28%;
  }
}

.country-switcher-popup .country-switcher__btn .btn {
  width: 190px;
  height: 50px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .country-switcher-popup .country-switcher__btn .btn {
    width: 145px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .country-switcher-popup .country-switcher__btn .btn {
    width: 103px;
  }
}

@media screen and (max-width: 767px) {
  .country-switcher-popup .country-switcher__btn .btn {
    width: 100%;
  }
}

.error-page {
  text-align: center;
  padding: 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  bottom: 0;
  vertical-align: middle;
  margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .error-page {
    margin: 0 auto;
  }
}

.error-page h2 {
  text-transform: uppercase;
  font-size: 36px !important;
  margin: 0 0 33px !important;
}

@media screen and (max-width: 767px) {
  .error-page h2 {
    font-size: 18px !important;
    margin: 0 0 22px !important;
  }
}

.error-page .form__button {
  text-align: center;
  margin: auto;
  min-width: 156px;
  max-width: 370px;
}

.error-page .btn {
  background: #fff;
  font-size: 13px;
  line-height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #4c4c4c;
  padding: 6px 0 7px;
  width: 246px;
  border: 1px solid #bb9b7d;
  border-radius: 2px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
}

.error-page .btn:hover {
  background: #e6e2de;
  border: 1px solid #e6e2de;
}

@media screen and (max-width: 767px) {
  .error-page .btn {
    padding: 9px 0 9px;
    font-size: 12px;
    max-width: 86%;
    width: 100%;
    line-height: 15px;
  }
}

.additional-location-link {
  font-weight: 300;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  border-bottom: 1px dashed;
}

.additional-location-link:hover {
  border-bottom: none;
}

.js-additional-location {
  margin-bottom: 15px;
}

.location-block-wrapper .bx-ui-sls-variants .-bx-popup-special-prompt {
  line-height: 1.25;
  font-size: 14px;
  color: #1a1a19;
  padding: 12px 14px;
}

.location-block-wrapper .bx-ui-sls-variants .-bx-popup-special-prompt a {
  text-decoration: underline;
  color: #1a1a19;
}

.location-block-wrapper .bx-ui-sls-variants .-bx-popup-special-prompt a:hover {
  text-decoration: none;
}

.showrooms__title {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .showrooms__title {
    text-align: center;
  }
}

.pseudo-link-arrow {
  position: relative;
}

.pseudo-link-arrow:before {
  top: 50%;
  right: -15px;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid #54565b;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.pseudo-link-arrow.pseudo-link-arrow-open:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-container {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

::-webkit-inner-spin-button {
  display: none;
}

.Order_Details .Order__Hr:last-child {
  display: none;
}

.map-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.section_before_timer {
  margin-bottom: 29px !important;
}

.card__accordion .accordion__submenu a {
  text-decoration: underline;
}

.card__accordion .accordion__submenu a.btn {
  text-decoration: none;
}

.card__accordion .accordion__submenu a:hover {
  text-decoration: none;
}

.colorbox-how-to-wear .colorbox__close:before {
  color: #d6d6d6;
}

.Profile__ChangePhone {
  background-color: #faf2eb;
  padding: 20px 30px 25px;
  margin-bottom: 30px;
}

.Profile__ChangePhone__Text {
  color: #828282;
  font-size: 12px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .Profile__ChangePhone__Text {
    line-height: 18px;
  }
}

.Profile__ChangePhone__Phone {
  color: #c7a38f;
}

.gift-page .card-slider .slider-single {
  visibility: visible;
}

.subscribe-modal .form-error {
  margin-top: 0;
  margin-bottom: 0;
}

.subscribe-modal .form-control.section__margin-bottom_30 {
  margin-bottom: 35px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .page_personal #root {
    padding-top: 0;
  }

  .page_personal #root > .bb-container {
    padding-top: 20px;
  }
}

.currency-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #828282;
  padding: 0 10px;
}

@media (min-width: 992px) {
  .currency-switch {
    position: relative;
    right: 0;
    top: 5px;
  }
}

.currency-switch span {
  padding: 0 3px;
}

.country-list {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

@media (max-width: 1260px) {
  .country-list {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media (max-width: 1024px) {
  .country-list {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

@media (max-width: 992px) {
  .country-list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (max-width: 767px) {
  .country-list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (max-width: 320px) {
  .country-list {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.country-list a:hover,
.country-list a:active {
  opacity: 1 !important;
}

.blog-page .main-container {
  -ms-touch-action: initial;
      touch-action: initial;
}
.cookie-notification {
  width: 365px;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .cookie-notification {
    width: 100%;
  }
}

.change-site-notification {
  border: 1px solid #d9d9d9;
}

@media (min-width: 768px) {
  .change-site-notification {
    left: 30% !important;
    right: 30% !important;
    bottom: 50% !important;
  }
}