.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Regular.woff2") format("woff2"), url("/fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Medium.woff2") format("woff2"), url("/fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Semibold.woff2") format("woff2"), url("/fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Bold.woff2") format("woff2"), url("/fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Extrabold.woff2") format("woff2"), url("/fonts/Gilroy-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Angeme";
  src: url("/fonts/Angeme-Regular.woff2") format("woff2"), url("/fonts/Angeme-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #1E1E1E;
  --text-color: var(--black);
  --green: #72acb0;
  --accent-color: var(--green);
  --body-color: #FFFFF6;
  --white: #ECECEA;
  --pink: #e795a3;
  --yellow: #ffbd52;
  --blue: #307ec7;
  --red: #E84B4B;
  --second-font: "Angeme", sans-serif;
}

html:has([data-aos]) {
  overflow-x: hidden;
}

body:has([data-aos]) {
  overflow-x: hidden;
}
body:has([data-aos]) .section {
  overflow: visible;
}

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  min-width: 320px;
  line-height: normal;
  color: var(--text-color);
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: var(--body-color);
  margin: 0;
}

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

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: #000;
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 120px;
}

.format-text-p p {
  margin: 20px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}
.format-text-p b, .format-text-p strong {
  font-weight: 700;
}

.btn {
  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-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: 1px solid var(--accent-color);
  text-align: center;
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 600;
  padding: 30px 55px;
  color: var(--white);
  background-color: var(--accent-color);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-transform: uppercase;
}
.btn__title + .btn__icon {
  margin-right: 0;
  margin-left: 10px;
}
.btn__icon {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn:hover {
  background-color: rgb(85.8227272727, 148.8318181818, 153.1772727273);
}
.btn--outline {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}
.btn--outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.btn--outline:hover .btn__icon path {
  fill: #fff;
  stroke: #fff;
}
.btn--outline.btn--black {
  border-color: var(--text-color);
  color: var(--text-color);
}
.btn--outline.btn--black:hover {
  background-color: var(--text-color);
  color: #fff;
}
.btn--outline.btn--pink {
  border-color: var(--pink);
  color: var(--pink);
}
.btn--outline.btn--pink:hover {
  background-color: var(--pink);
  color: #fff;
}
.btn--sm {
  padding: 17px 25px;
  font-size: 14px;
  font-weight: 500;
}
.btn--md {
  padding: 20px 55px;
}

.section {
  padding: 60px 0;
  overflow: hidden;
}
.section-title {
  margin: 0;
  font-weight: 400;
  text-align: center;
  font-family: var(--second-font);
  font-size: 36px;
  line-height: 130%;
  text-transform: uppercase;
}

.prev,
.next {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0;
  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;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background-color: var(--accent-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: 7px 11px;
  background-position: center;
  z-index: 2;
  opacity: 0.3;
}
.prev:focus-visible,
.next:focus-visible {
  outline: none;
}
.prev:active,
.next:active {
  opacity: 1;
}

.prev {
  background-image: url("./images/prev.svg");
}

.next {
  background-image: url("./images/next.svg");
}

@media (hover) {
  .prev:hover,
  .next:hover {
    opacity: 1;
  }
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 7px;
  width: 10px;
  height: 10px;
  background: #f5f5f5;
  border: none;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  border-radius: 50%;
  opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (hover) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 50px;
  line-height: 1.2;
}
.breadcrumbs a {
  color: var(--text-color);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  margin-right: 10px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  opacity: 0.5;
}
.breadcrumbs a::before {
  content: "/";
  top: calc(50% - 1px);
  opacity: 0.3;
  position: absolute;
  right: -10px;
  top: 0;
  color: var(--text-color);
  opacity: 0.7;
  pointer-events: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}

.breadcrumb_last {
  color: var(--text-color);
}

.visually-hidden-h1 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .main {
    margin-top: 60px;
  }
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 26px;
  }
  .btn {
    font-size: 16px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .btn--sm {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .btn--md {
    padding: 15px 60px;
  }
  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.page-content > *:first-child {
  margin-top: 0;
}
.page-content > *:last-child {
  margin-bottom: 0;
}
.page-content p {
  margin: 20px 0;
}
.page-content b, .page-content strong {
  font-weight: 500;
}
.page-content a {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.page-content a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.page-content h1 {
  font-weight: 400;
  font-family: var(--second-font);
  font-size: 36px;
  line-height: 130%;
  text-transform: uppercase;
}
.page-content h2 {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
}

@media only screen and (max-width: 1199px) {
  .page-content h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .page-content h1 {
    font-size: 26px;
  }
  .page-content h2 {
    font-size: 20px;
  }
}
.logo {
  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;
}
.logo img {
  width: 100%;
}

.language {
  position: relative;
}
.language__current {
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  height: 30px;
  border: 1px solid var(--text-color);
  border-radius: 9999px;
}
.language__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7px;
  height: 4px;
}
.language__arrow svg {
  width: 7px;
  height: 4px;
}
.language__text {
  font-weight: 500;
  font-size: 13px;
}
.language__dropdown {
  position: absolute;
  z-index: 3;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  padding: 10px 0px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
  background: #fffff6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.language__dropdown.visible {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.language__item {
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  padding: 7px 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.language__item:hover {
  background-color: #f5f5f5;
}

.header {
  z-index: 20;
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-color: var(--body-color);
  border-bottom: 1px solid transparent;
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 120px;
  padding: 15px 0 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 126px;
}
.header.fixed {
  border-color: rgba(30, 30, 30, 0.2);
  position: fixed;
  top: -70px;
}
.header.fixed .menu {
  top: 20px;
}
.header.fixed .header-block {
  border-color: transparent;
}
.header.fixed .header-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header.fixed .header-nav {
  top: 10px;
}
.header-top {
  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;
  height: 45px;
  margin-bottom: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-bottom {
  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;
  height: 30px;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -10px;
  position: relative;
}
.header-nav-btn {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  height: 30px;
  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;
  padding: 0 18px;
  border: 1px solid #1e1e1e;
  border-radius: 9999px;
  margin-right: 10px;
}
.header-nav-btn svg {
  width: 14px;
  height: 14px;
}

.menu {
  position: relative;
  top: 10px;
}
.menu .container {
  padding: 0;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.menu__item {
  position: relative;
  height: 30px;
}
.menu__item + .menu__item {
  margin-left: 15px;
}
.menu__item.current_page_item .menu__link {
  text-decoration: underline;
}
.menu__item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.menu__link {
  height: 100%;
  font-weight: 500;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.menu__link:active {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.menu-arrow {
  margin-left: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: -2px;
}

@media (hover) {
  .menu__link:hover {
    text-decoration: underline;
    text-decoration-color: var(--text-color);
  }
}
.sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  background-color: #f3f3ee;
  padding: 15px 0px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  width: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.3s, margin-left 0.5s;
  transition: opacity 0.3s, margin-left 0.5s;
}
.sub-menu__item.current_page_item .sub-menu__link {
  text-decoration: underline;
}
.sub-menu__link {
  font-size: 12px;
  font-weight: 500;
  padding: 10px 30px;
  width: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.sub-menu__link:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.sub-menu__link:hover .menu-arrow {
  right: 20px;
}
.sub-menu__link .menu-arrow {
  position: absolute;
  right: 30px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sub-menu__link:has(.menu-arrow) {
  padding: 10px 45px 10px 30px;
}

@media only screen and (min-width: 1200px) {
  .sub-menu {
    margin-left: -5px;
  }
  .sub-menu__item:hover > .sub-menu {
    left: 100%;
    top: 0;
    opacity: 1;
    visibility: visible;
    margin-left: 0;
  }
}
.wish-btn.active svg path {
  fill: var(--accent-color);
}
.wish-btn__count {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--red);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fffff6;
  margin-left: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}
.wish-btn__count:not(:empty) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-btn__count {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--red);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 140%;
  text-align: center;
  color: #fffff6;
  margin-left: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}
.cart-btn__count:not(:empty) {
  display: block;
}

.hamburger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  height: 18px;
  background-color: transparent;
  z-index: 12;
}
.hamburger .hamburger-box {
  width: 25px;
  height: 18px;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
  background-color: var(--text-color);
  height: 2px;
  width: 25px;
  border-radius: 0;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger .hamburger-inner::before {
  top: 8px;
}
.hamburger .hamburger-inner::after {
  top: 16px;
}
.hamburger.is-active .hamburger-inner {
  top: 0px;
}
.hamburger.is-active .hamburger-inner::after {
  top: 20px;
}

.top-trigger {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 50px;
  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;
  text-align: center;
  background-color: #848988;
}
.top-trigger__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #fffff6;
}
.top-trigger__text a {
  color: #fffff6;
  text-decoration: underline;
  text-decoration-color: #fffff6;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.top-trigger__text a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.wrap:has(.top-trigger) .main {
  margin-top: 170px;
}
.wrap:has(.top-trigger) .header:not(.fixed) {
  top: 50px;
}

@media only screen and (max-width: 1199px) {
  .header {
    height: 60px;
    position: fixed;
  }
  .header-block {
    padding: 0;
    height: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header.fixed {
    top: auto;
  }
  .header.fixed .menu {
    top: 0;
  }
  .header.fixed .header-top {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.fixed .header-nav {
    top: auto;
  }
  .header.opened .header__language {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.opened .header__hamburger .hamburger-inner,
  .header.opened .header__hamburger .hamburger-inner::after,
  .header.opened .header__hamburger .hamburger-inner::before {
    background-color: #fff;
  }
  .header.opened .menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header.opened .login-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-top {
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .header-bottom {
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__logo {
    width: 80px;
  }
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 10px;
  }
  .header__language {
    top: 15px;
    left: 15px;
    right: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 3;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__language .language__current {
    color: #fff;
    border-color: #fff;
  }
  .header__language .language__arrow svg path {
    fill: #fff;
  }
  .header-nav {
    top: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
    position: static;
  }
  .menu {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    overflow: hidden;
    top: 0;
    width: 400px;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    height: 100dvh;
    background-color: var(--accent-color);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 60px;
  }
  .menu .container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
    margin-top: auto;
    margin-bottom: auto;
  }
  .menu__list {
    -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: flex-start;
    margin-top: 0px;
  }
  .menu__item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .menu__item + .menu__item {
    margin-left: 0;
  }
  .menu__item.current_page_item .menu__link {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
  }
  .menu__item.opened .menu-arrow:after {
    display: none;
  }
  .menu__link {
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .menu__link:hover {
    text-decoration: none;
  }
  .menu__link:active {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .menu__link .menu-arrow {
    position: absolute;
    right: 10px;
    top: 15px;
    width: 20px;
    height: 20px;
  }
  .menu__link .menu-arrow:before, .menu__link .menu-arrow:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    background-color: #fff;
    left: 4px;
    top: 50%;
  }
  .menu__link .menu-arrow:before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .menu__link .menu-arrow:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .menu__link .menu-arrow svg {
    display: none;
  }
  .menu-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    position: fixed;
    top: 0;
    height: 100dvh;
    left: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
  }
  .menu-overlay.visible {
    opacity: 1;
    visibility: visible;
  }
  .sub-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: left;
    margin: 0px 0 20px 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    border: none;
  }
  .sub-menu.opened {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-menu.opened .sub-menu__item > .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-menu__link {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    white-space: normal;
    padding: 10px 0;
    text-decoration: none;
    width: 100%;
    padding-left: 20px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .sub-menu__link:hover {
    text-decoration: none;
  }
  .sub-menu__link:hover .menu-arrow {
    right: 0;
  }
  .sub-menu__link:active {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .sub-menu__link .menu-arrow {
    display: none;
  }
  .sub-menu__link:has(.menu-arrow) {
    padding: 10px 0;
    padding-left: 20px;
  }
  .sub-menu__item {
    width: 100%;
  }
  .sub-menu__item + .sub-menu__item {
    margin-top: 0px;
  }
  .sub-menu__item > .sub-menu .sub-menu__link {
    padding-left: 40px;
  }
  .sub-menu__item.current_page_item .sub-menu__link {
    text-decoration: none;
  }
  .login-btn {
    top: 15px;
    left: 100px;
    right: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 3;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    border-color: #fff;
  }
  .login-btn svg path {
    fill: #fff;
  }
  .top-trigger {
    height: 30px;
  }
  .top-trigger__text {
    font-size: 14px;
  }
  .wrap:has(.top-trigger) .main {
    margin-top: 90px;
  }
  .wrap:has(.top-trigger) .header:not(.fixed) {
    top: 30px;
    position: absolute;
  }
  .wrap:has(.top-trigger) .header:not(.fixed) .menu {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .header.fixed {
    border-color: transparent;
  }
  .header.fixed .header-block {
    border-color: rgba(30, 30, 30, 0.2);
  }
  .header-nav-btn {
    margin-right: 5px;
  }
  .menu {
    width: 100vw;
  }
}
.search-dropdown {
  position: absolute;
  right: 10px;
  width: 300px;
  top: calc(100% + 15px);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
  background: #fffff6;
  max-height: calc(100dvh - 130px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  z-index: 2;
}
.search-dropdown.visible {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.search-form {
  width: 100%;
}
.search-form *::-webkit-input-placeholder {
  opacity: 1;
  font-size: 12px;
  font-weight: 500;
  color: #E0E0E0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *::-moz-placeholder {
  opacity: 1;
  font-size: 12px;
  font-weight: 500;
  color: #E0E0E0;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *:-ms-input-placeholder {
  opacity: 1;
  font-size: 12px;
  font-weight: 500;
  color: #E0E0E0;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *::-ms-input-placeholder {
  opacity: 1;
  font-size: 12px;
  font-weight: 500;
  color: #E0E0E0;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *::placeholder {
  opacity: 1;
  font-size: 12px;
  font-weight: 500;
  color: #E0E0E0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form input:-webkit-autofill,
.search-form input:-webkit-autofill:hover,
.search-form input:-webkit-autofill:focus,
.search-form input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 25px #fffff6;
  -webkit-text-fill-color: var(--text-color);
}
.search-input {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  height: 25px;
  padding: 0 0 0 15px;
  background-image: url("/images/search-icon.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: left center;
  text-align: left;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--text-color);
}
.search-input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.search-input:focus::-moz-placeholder {
  opacity: 0;
}
.search-input:focus:-ms-input-placeholder {
  opacity: 0;
}
.search-input:focus::-ms-input-placeholder {
  opacity: 0;
}
.search-input:focus::placeholder {
  opacity: 0;
}
.search-list {
  margin-top: 15px;
}
.search-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-product + .search-product {
  margin-top: 15px;
}
.search-product__photo {
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.search-product__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.search-product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
}
.search-product__title {
  margin: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.search-product__title:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.search-product__sku {
  margin-top: 10px;
  font-family: var(--font-family);
  font-size: 10px;
  line-height: 140%;
  color: #a6a6a6;
  margin-bottom: 10px;
}
.search-product__price {
  margin-top: auto;
}
.search-product__prev-price {
  font-size: 12px;
  line-height: 140%;
  white-space: nowrap;
  color: var(--red);
  text-decoration: line-through;
  margin-right: 5px;
}
.search-product__cur-price {
  font-size: 12px;
  line-height: 140%;
  white-space: nowrap;
}
.search-product__tax {
  font-size: 8px;
  color: #a6a6a6;
  white-space: nowrap;
}
.search__btn {
  width: 100%;
  margin-top: 15px;
  text-transform: none;
}

@media only screen and (max-width: 1199px) {
  .search-dropdown {
    right: 0;
    max-height: calc(100dvh - 80px);
  }
}
@media only screen and (max-width: 575px) {
  .search-dropdown {
    top: calc(100% + 10px);
    max-height: calc(100dvh - 70px);
  }
}
*::-webkit-input-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::-moz-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*:-ms-input-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::-ms-input-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.form input[type=text],
.form input[type=password],
.form input[type=url],
.form input[type=email],
.form input[type=number],
.form textarea {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  height: 60px;
  padding: 0 20px;
  text-align: left;
  border: 1px solid #9A9898;
  border-radius: 9999px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #333;
  margin-bottom: 20px;
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form textarea {
  resize: none;
  height: 150px;
  padding-top: 15px;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 60px #FFFFF6;
  -webkit-text-fill-color: #333;
}
.form .btn {
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 600;
}
.form-row {
  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;
}
.form-row input[type=text],
.form-row input[type=password],
.form-row input[type=url],
.form-row input[type=email],
.form-row input[type=number],
.form-row textarea {
  width: calc(50% - 15px);
}
.form-row .iti {
  width: calc(50% - 15px);
}
.form-row .iti input[type=text],
.form-row .iti input[type=number],
.form-row .iti input[type=tel] {
  width: 100%;
}
.form-acceptance {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.form-acceptance a {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.form-acceptance a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.form-custom-checkbox {
  width: 10px;
  height: 10px;
  border: 1px solid var(--text-color);
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: absolute;
  left: 0;
  top: 5px;
}
.form-checkbox {
  max-width: 450px;
  margin-top: 30px;
  position: relative;
  padding-left: 20px;
}
.form-checkbox input[type=checkbox] {
  position: absolute;
  top: 5px;
  width: 10px;
  height: 10px;
  left: 0;
  cursor: pointer;
  z-index: 2;
}
.form-checkbox input[type=checkbox]:checked + .form-custom-checkbox {
  background-color: var(--text-color);
}
.form-checkbox-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.form-checkbox-text a {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.form-checkbox-text a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.iti {
  width: 100%;
  margin-bottom: 20px;
}
.iti__flag-container {
  padding: 0;
}
.iti .iti__selected-flag {
  outline: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 9999px 0 0 9999px;
  color: #333;
}
.iti__divider {
  padding-bottom: 10px;
  margin-bottom: 5px;
  border-color: #9A9898;
}
.iti__arrow {
  border-top: 4px solid #333;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #333;
}
.iti__country-list {
  max-height: 250px;
  z-index: 11;
  margin: 0;
  margin-top: 10px;
  border: 1px solid #9A9898;
  white-space: normal;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--body-color);
}
.iti__country-list li {
  color: #333;
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.iti-mobile .iti__country-list {
  margin: 0;
  border-radius: 0;
  width: calc(100% - 20px);
}

.fancybox-bg {
  background-color: #000;
}

.fancybox-is-open .fancybox-bg {
  background-color: #000;
  opacity: 0.5;
}

/* Custom animation */
.fancybox-fx-slide-in-down.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--next {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-up.fancybox-slide--previous {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.popup {
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
          box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
  padding: 60px;
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  position: relative;
  display: none;
  margin: 20px auto;
}
.popup .fancybox-close-small {
  display: none;
}
.popup-close {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  top: 20px;
  right: 20px;
  position: absolute;
  width: 20px;
  height: 20px;
  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;
}
.popup-close svg {
  width: 20px;
  height: 20px;
}
.popup-content {
  margin-top: 30px;
}

@media only screen and (max-width: 1199px) {
  .form-acceptance {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .popup {
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 575px) {
  .form .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-row input[type=text],
  .form-row input[type=password],
  .form-row input[type=url],
  .form-row input[type=email],
  .form-row input[type=number],
  .form-row textarea {
    width: 100%;
  }
  .form-row .iti {
    width: 100%;
  }
  .popup {
    border-radius: 15px;
    padding: 60px 30px 40px;
  }
  .popup-content {
    margin-top: 20px;
  }
}
.hero-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px -20px;
}
.hero-link {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 0.795;
  text-align: center;
  color: var(--white);
}
.hero-link__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.hero-link__image:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 58%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 30, 30, 0)), to(#1e1e1e));
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1e1e1e 100%);
  opacity: 0.3;
  pointer-events: none;
}
.hero-link__image img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.hero-link__title {
  font-weight: 600;
  font-size: 52px;
  position: relative;
  top: 15%;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}

@media (hover) {
  .hero-link:hover .hero-link__image {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  .hero-link:hover .hero-link__title {
    top: 25%;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-link__title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-link__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-links {
    margin-left: -7.5px;
    margin-right: -7.5px;
    margin-bottom: -15px;
  }
  .hero-link {
    width: calc(50% - 15px);
    margin-left: 7.5px;
    margin-right: 7.5px;
    margin-bottom: 15px;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .hero {
    padding-top: 20px;
  }
  .hero-links {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-link {
    width: 100%;
    margin: 0;
    aspect-ratio: 0.83;
  }
  .hero-link + .hero-link {
    margin-top: 20px;
  }
  .hero-link__title {
    font-size: 16vw;
    top: auto;
  }
}
.banner-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  background-color: #A6A6A6;
  position: relative;
}
.banner-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  z-index: 2;
}
.banner-image {
  width: 100%;
}
.banner-image--mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .banner-block {
    border-radius: 15px;
  }
  .banner-image--desktop {
    display: none;
  }
  .banner-image--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.triggers-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.triggers-content {
  margin-top: 60px;
}
.triggers-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
}
.triggers-row {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
.triggers__btn {
  margin-top: 60px;
}

.trigger {
  font-size: 18px;
  line-height: 130%;
  max-width: 360px;
}

@media only screen and (max-width: 1199px) {
  .triggers-subtitle {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .triggers-content {
    margin-top: 20px;
  }
  .triggers-subtitle {
    font-size: 18px;
  }
  .triggers-row {
    margin-top: 40px;
    -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;
    gap: 20px;
  }
  .triggers__btn {
    margin-top: 40px;
    width: 100%;
  }
  .trigger {
    font-size: 16px;
  }
}
.poster-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.poster-links-column {
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.poster-links-column:nth-child(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.poster-links-column:nth-child(2) .poster-link {
  aspect-ratio: auto;
  height: calc(50% - 20px);
}
.poster-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 0.859;
  text-align: center;
  color: var(--white);
}
.poster-link__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.poster-link__image:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #1e1e1e;
  opacity: 0.3;
  pointer-events: none;
}
.poster-link__image--gradient:after {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #1e1e1e), to(rgba(30, 30, 30, 0)));
  background-image: linear-gradient(0deg, #1e1e1e 50%, rgba(30, 30, 30, 0) 100%);
}
.poster-link__image img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.poster-link__uptitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  position: relative;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
  top: 0;
}
.poster-link__title {
  font-weight: 800;
  font-size: 52px;
  position: relative;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
  top: 0;
}

@media (hover) {
  .poster-link:hover .poster-link__image {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  .poster-link:hover .poster-link__uptitle, .poster-link:hover .poster-link__title {
    top: 15%;
  }
}
@media only screen and (max-width: 1199px) {
  .poster-link__uptitle {
    font-size: 16px;
  }
  .poster-link__title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .poster-links-column {
    width: calc(50% - 15px);
  }
  .poster-links-column:nth-child(2) .poster-link {
    height: calc(50% - 15px);
  }
  .poster-link__uptitle {
    font-size: 12px;
  }
  .poster-link__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .poster-links-column {
    width: calc(50% - 10px);
  }
  .poster-links-column:nth-child(2) .poster-link {
    height: calc(50% - 10px);
  }
  .poster-link {
    border-radius: 15px;
  }
  .poster-link__uptitle {
    font-size: 10px;
  }
  .poster-link__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .poster-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .poster-links-column {
    width: 100%;
  }
  .poster-links-column:nth-child(1) {
    gap: 10px;
  }
  .poster-links-column:nth-child(2) {
    margin-top: 10px;
  }
  .poster-links-column:nth-child(2) .poster-link {
    height: auto;
    aspect-ratio: 1.83;
  }
  .poster-link__uptitle {
    font-size: 2.5vw;
  }
  .poster-link__title {
    font-size: 8vw;
  }
}
.product {
  width: calc(33.33% - 40px);
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
}
.product--wish .product-wish-btn {
  background-color: var(--accent-color);
}
.product--wish .product-wish-btn svg {
  fill: #fff;
}
.product-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.product-nav {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  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;
  margin-top: -17.5px;
}
.product-nav__prev {
  left: 0;
  display: none;
}
.product-nav__next {
  right: 0;
  display: none;
}
.product-top {
  background-color: #EFEDEF;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.product-wish-btn {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #B0C8C5;
  position: absolute;
  top: 10px;
  right: 10px;
  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;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 2;
  cursor: pointer;
}
.product-wish-btn svg {
  width: 25px;
  height: 25px;
}
.product-discount {
  border-radius: 50%;
  background-color: var(--red);
  width: 65px;
  height: 65px;
  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;
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-align: center;
  color: #f3f3ee;
}
.product-body {
  padding: 15px 40px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.product-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 5px;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.product-title:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.product-size {
  font-size: 16px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-bottom: 5px;
}
.product-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-top: 8px;
  margin-bottom: 5px;
}
.product-price {
  margin-top: auto;
}
.product-prev-price {
  font-size: 22px;
  line-height: 140%;
  white-space: nowrap;
  color: var(--red);
  text-decoration: line-through;
  margin-right: 5px;
}
.product-cur-price {
  font-size: 22px;
  line-height: 140%;
  white-space: nowrap;
}
.product-tax {
  font-size: 12px;
  color: #a6a6a6;
  white-space: nowrap;
}
.product-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  width: 100%;
}
.product-btns .btn {
  white-space: nowrap;
  width: calc(50% - 10px);
  text-transform: none;
}

.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
  position: relative;
}
.products__swiper-pagination {
  margin-top: 40px;
  text-align: center;
}
.products.swiper {
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.products.swiper.swiper-initialized {
  opacity: 1;
}
.products.swiper .product {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 1px;
}

.catalog-products {
  margin-bottom: -50px;
}
.catalog-products .product {
  margin-bottom: 50px;
}
.catalog-products .product-btns {
  display: none;
}

.arrivals__products {
  margin-top: 60px;
}
.arrivals-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1200px) {
  .catalog-products {
    margin-left: -11px;
    margin-right: -11px;
  }
  .catalog-products .product {
    margin-left: 11px;
    margin-right: 11px;
    width: calc(33.33% - 22px);
  }
  .catalog-products .product-body {
    padding-left: 0;
    padding-right: 0;
  }
  .catalog-products .product-wish-btn {
    width: 25px;
    height: 25px;
  }
  .catalog-products .product-wish-btn svg {
    width: 14px;
    height: 14px;
  }
  .catalog-products .product-discount {
    width: 45px;
    height: 45px;
    top: 10px;
    left: 10px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-nav {
    left: 10px;
    right: 10px;
  }
  .product-body {
    padding-left: 0px;
    padding-right: 0px;
  }
  .product-title {
    font-size: 18px;
  }
  .product-size {
    font-size: 14px;
  }
  .product-text {
    font-size: 12px;
  }
  .product-discount {
    width: 55px;
    height: 55px;
    top: 15px;
    left: 15px;
    font-size: 18px;
  }
  .product-prev-price {
    font-size: 18px;
  }
  .product-cur-price {
    font-size: 18px;
  }
  .product-tax {
    font-size: 8px;
  }
  .product-btns .btn {
    width: calc(50% - 5px);
  }
  .products__swiper-pagination {
    margin-top: 30px;
  }
  .catalog-products {
    margin-bottom: -40px;
  }
  .catalog-products .product {
    margin-bottom: 40px;
  }
  .arrivals__products {
    margin-top: 40px;
  }
  .arrivals-btns {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .product {
    width: calc(33.33% - 20px);
    margin: 0 10px;
  }
  .product-nav {
    margin-top: -15px;
  }
  .product-nav__prev, .product-nav__next {
    width: 30px;
    height: 30px;
  }
  .product-wish-btn {
    width: 30px;
    height: 30px;
  }
  .product-wish-btn svg {
    width: 16px;
  }
  .product-body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .product-discount {
    width: 45px;
    height: 45px;
    top: 10px;
    left: 10px;
    font-size: 16px;
  }
  .product-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .product-btns .btn {
    width: auto;
  }
  .product-btns .add-to-cart-btn {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .products {
    margin: 0 -5px;
  }
  .product {
    width: calc(50% - 10px);
    margin: 0 5px;
  }
  .product-wish-btn {
    width: 15%;
    height: auto;
    aspect-ratio: 1;
    top: 4%;
    right: 4%;
  }
  .product-wish-btn svg {
    width: 50%;
    height: 50%;
  }
  .product-nav {
    left: 4%;
    right: 4%;
    margin-top: -7.5%;
  }
  .product-nav__prev, .product-nav__next {
    width: 16%;
    height: auto;
    aspect-ratio: 1;
    background-size: 30%;
  }
  .product-top {
    border-radius: 7.5px;
  }
  .product-body {
    padding-top: 8px;
  }
  .product-title {
    font-size: 12px;
  }
  .product-size {
    font-size: 8px;
  }
  .product-text {
    font-size: 10px;
  }
  .product-prev-price {
    font-size: 12px;
  }
  .product-cur-price {
    font-size: 12px;
  }
  .product-tax {
    font-size: 5px;
  }
  .product-discount {
    width: 22%;
    height: auto;
    aspect-ratio: 1;
    top: 4%;
    left: 4%;
    font-size: 3vw;
  }
  .product-btns .btn {
    font-size: 10px;
    padding: 10px 25px;
  }
  .products__swiper-pagination {
    margin-top: 20px;
  }
  .catalog-products {
    margin-bottom: -20px;
  }
  .catalog-products .product {
    margin-bottom: 20px;
  }
  .arrivals__products {
    margin-top: 20px;
  }
}
.about {
  padding: 0;
}
.about-wrap {
  border-top: 1px solid #D2D2CB;
  border-bottom: 1px solid #D2D2CB;
}
.about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0;
}
.about-block:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about-block:nth-child(2n+1) .about-photo {
  margin-right: 0;
  margin-left: 90px;
}
.about-photo {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  width: 550px;
  aspect-ratio: 1;
  margin-right: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.about-title {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  text-align: center;
}
.about-text {
  margin-top: 30px;
  font-size: 18px;
  line-height: 130%;
}
.about__btn {
  margin-top: 30px;
  padding: 15px 66px;
}

@media only screen and (max-width: 1199px) {
  .about-block:nth-child(2n+1) .about-photo {
    margin-left: 60px;
  }
  .about-photo {
    width: calc(50% - 30px);
    margin-right: 60px;
  }
  .about-info {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 991px) {
  .about-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-block:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-block:nth-child(2n+1) .about-photo {
    margin-left: 0px;
  }
  .about-photo {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 40px;
  }
  .about-info {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .about-block {
    padding: 40px 0;
  }
  .about-photo {
    border-radius: 15px;
  }
  .about-title {
    font-size: 20px;
  }
  .about-text {
    font-size: 16px;
  }
  .about__btn {
    width: 100%;
  }
}
.prefooter {
  padding: 60px 0 80px;
}
.prefooter-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.prefooter-text {
  margin-top: 60px;
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
}
.prefooter__btn {
  margin-top: 36px;
}

@media only screen and (max-width: 1199px) {
  .prefooter-block {
    max-width: 500px;
  }
  .prefooter-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .prefooter {
    padding: 40px 0 60px;
  }
  .prefooter-block {
    max-width: 350px;
  }
  .prefooter-text {
    font-size: 18px;
    margin-top: 40px;
  }
  .prefooter__btn {
    margin-top: 20px;
  }
}
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.social-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
}
.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-link img, .social-link svg {
  width: 35px;
  height: 35px;
}
.social-link + .social-link {
  margin-left: 10px;
}
.social-link svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.footer {
  overflow: hidden;
  padding-bottom: 60px;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}
.footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 15px;
}
.footer-column__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
}
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-menu__link {
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.footer-menu__link:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.footer-menu__link + .footer-menu__link {
  margin-top: 20px;
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-contact__icon {
  width: 18px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.footer-contact__text {
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.footer-contact:hover .footer-contact__text {
  text-decoration: none;
  text-decoration-color: transparent;
}
.footer-contact + .footer-contact {
  margin-top: 20px;
}
.footer-bottom {
  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;
  margin-top: 60px;
}
.footer__logo {
  width: 228px;
}
.footer-copy {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
}
.footer-copy a {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.footer-copy a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.footer-payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-bottom: -15px;
  max-width: 190px;
}
.footer-payment {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: auto;
  max-width: 60px;
  margin-right: 15px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1199px) {
  .footer-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: -40px;
  }
  .footer-column {
    width: calc(50% - 30px);
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .footer__logo {
    margin-top: 40px;
  }
  .footer-copy {
    margin-top: 40px;
  }
  .footer-menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-contacts {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-payments {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .social-title {
    font-size: 20px;
  }
  .footer {
    padding-bottom: 40px;
  }
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-column {
    width: 100%;
  }
  .footer-column__title {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .footer-menu__link + .footer-menu__link {
    margin-top: 15px;
  }
  .footer-payments {
    max-width: 100%;
  }
}
.catalog-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.catalog-content {
  position: relative;
  padding-bottom: 90px;
  padding-top: 35px;
}
.catalog-content:after {
  position: fixed;
  content: "";
  top: calc(50% + 100px);
  left: 50%;
  margin-left: 195px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url("/images/preloader.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog-content.is-overlay:after {
  opacity: 1;
  visibility: visible;
}
.catalog-content.is-overlay .catalog-products:after {
  opacity: 1;
  visibility: visible;
}
.catalog-products {
  position: relative;
}
.catalog-products:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(243, 243, 238, 0.85);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
  .catalog-content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .catalog-content {
    padding-bottom: 40px;
  }
}
.catalog-aside {
  width: 265px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 50px;
}

.filters-head {
  padding: 26px 0;
  font-weight: 600;
  font-size: 18px;
}
.filters-btn {
  display: none;
}

.filter {
  border-top: 1px solid #E0E0E0;
}
.filter-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 20px 0;
  padding-right: 20px;
  min-height: 68px;
}
.filter-head::before, .filter-head::after {
  position: absolute;
  top: 50%;
  background-color: var(--text-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  content: "";
  width: 10px;
  height: 1px;
}
.filter-head:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.filter-head a {
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.filter-head a:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.filter.active .filter-head::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.filter.active .filter-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.filter-body {
  -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: flex-start;
  display: none;
  padding-left: 8px;
  padding-bottom: 20px;
}
.filter-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  margin: 6px 0;
}
.filter-checkbox input[type=checkbox],
.filter-checkbox input[type=radio] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}
.filter-checkbox input[type=checkbox]:checked + .custom-checkbox,
.filter-checkbox input[type=radio]:checked + .custom-checkbox {
  background-color: var(--text-color);
}

.category {
  width: 100%;
}
.category-head {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 6px 0;
  padding-right: 20px;
}
.category-head::before, .category-head::after {
  position: absolute;
  top: 50%;
  background-color: var(--text-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  content: "";
  width: 10px;
  height: 1px;
}
.category-head:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.category-head a {
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.category-head a:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.category.active .category-head::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.category.active .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.category-list {
  -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: flex-start;
  display: none;
  padding-left: 16px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.category-list__link {
  display: block;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.category-list__link:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}

.custom-checkbox {
  width: 10px;
  height: 10px;
  border: 1px solid var(--text-color);
  margin-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
  border-radius: 0;
  top: -1px;
}

.checkbox-text {
  font-size: 12px;
  font-weight: 400;
}

.catalog-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 25px;
}

.sort-dropdown {
  position: relative;
}
.sort-dropdown.open .sort-arrow {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.sort-dropdown.open .sort-menu {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.sort-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
}
.sort-selected {
  font-weight: 600;
  margin-left: 3px;
}
.sort-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  position: relative;
  top: 1px;
}
.sort-menu {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 0;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  opacity: 0;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
  background: #fffff6;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  z-index: 5;
}
.sort-option {
  white-space: nowrap;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  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;
  line-height: 217%;
  cursor: pointer;
  padding: 2.5px 35px 2.5px 15px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.sort-option:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  opacity: 0;
  width: 12px;
  height: 8px;
  background-image: url("/images/check-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sort-option.active:after {
  opacity: 1;
}
.sort-option:hover {
  background: #f5f5f5;
}

@media only screen and (max-width: 1199px) {
  .overlay-filters {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    position: fixed;
    top: 0;
    height: 100dvh;
    left: 0;
    right: 0;
    z-index: 21;
    cursor: pointer;
  }
  .overlay-filters.visible {
    opacity: 1;
    visibility: visible;
  }
  .catalog-aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100dvh;
    background-color: #fff;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: 30;
    padding: 0 30px;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .catalog-aside.visible {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .filters-btn {
    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;
    padding: 0;
    cursor: pointer;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    background-color: transparent;
    display: flex;
    width: 50px;
    height: 30px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 9999px;
    border: 1px solid var(--text-color);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .filters-btn svg {
    width: 20px;
    height: 20px;
  }
  .filters-btn:active {
    background-color: var(--text-color);
  }
  .filters-btn:active svg path {
    fill: #fff;
  }
}
@media (hover) {
  .filters-btn:hover {
    background-color: var(--text-color);
  }
  .filters-btn:hover svg path {
    fill: #fff;
  }
}
@media only screen and (max-width: 575px) {
  .catalog-aside {
    width: calc(100vw - 80px);
  }
}
.card {
  padding-bottom: 60px;
}
.card-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.card-slider {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
}
.card-slider-wrap {
  width: 450px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.card-thumbs-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.card-thumbs-slider.swiper-initialized {
  opacity: 1;
}
.card-thumbs-slide {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.card-thumbs-slide:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  border: 1px solid var(--text-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.card-thumbs-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.card-thumbs-slide.swiper-slide-thumb-active:after {
  opacity: 1;
}
.card-content {
  width: 100%;
  margin-left: 30px;
  padding-top: 23px;
}
.card-title {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.card-colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: -15px;
  margin-bottom: -15px;
}
.card-colors-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}
.card-colors-label {
  font-size: 12px;
  line-height: 140%;
  margin-bottom: 10px;
}
.card-color {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.card-color.active {
  border-color: var(--text-color);
}
.card-price {
  margin-top: 22px;
}
.card-prev-price {
  font-size: 22px;
  line-height: 140%;
  white-space: nowrap;
  color: var(--red);
  text-decoration: line-through;
  margin-right: 3px;
}
.card-cur-price {
  font-size: 22px;
  line-height: 140%;
  white-space: nowrap;
}
.card-tax {
  font-size: 12px;
  color: #a6a6a6;
  white-space: nowrap;
}
.card-sku {
  font-size: 12px;
  line-height: 140%;
  color: #a6a6a6;
  margin-top: 10px;
}
.card-sizes {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-bottom: -10px;
}
.card-sizes-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 320px;
  margin-top: 23px;
}
.card-sizes-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-size {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  margin-right: 10px;
  margin-bottom: 10px;
  height: 40px;
  width: 100px;
  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;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #e0e0e0;
  border: 1px solid #e0e0e0;
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
  border-radius: 9999px;
}
.card-size.active {
  color: var(--text-color);
  border: 1px solid var(--text-color);
}
.card-size-text {
  font-size: 12px;
  line-height: 140%;
  margin-right: 30px;
}
.card-size-guide {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.card-size-guide svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.card-footer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  margin-top: 25px;
}
.card__btn {
  text-transform: none;
}
.card-wishlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  cursor: pointer;
  margin-top: 12px;
}
.card-wishlist svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 10px;
  margin-right: 5px;
}
.card-wishlist:hover {
  text-decoration: none;
}

.card-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
  margin-top: 55px;
  text-align: left;
}

.cd-item {
  width: 100%;
  border-top: 1px solid rgba(30, 30, 30, 0.2);
}
.cd-item.is-open {
  padding-bottom: 10px;
}
.cd-item.is-open .cd-item__body {
  max-height: 100vh;
  opacity: 1;
}
.cd-item.is-open .cd-item__toggle:before {
  opacity: 0;
}
.cd-item__header {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.cd-item__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
}
.cd-item__toggle {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
  margin-right: 15px;
  position: relative;
  top: 5px;
}
.cd-item__toggle:before, .cd-item__toggle:after {
  position: absolute;
  content: "";
  width: 1px;
  background-color: #000;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cd-item__toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.cd-item__body {
  max-height: 0;
  font-size: 14px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.3s, opacity 0.3s;
  transition: max-height 0.3s, opacity 0.3s;
}

@media only screen and (max-width: 991px) {
  .card-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-slider-wrap {
    width: 100%;
  }
  .card-content {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .card {
    padding-bottom: 40px;
  }
  .card-slider {
    border-radius: 15px;
  }
  .card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .card-title {
    font-size: 18px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .card-price {
    margin-top: 10px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .card-sku {
    margin-top: 10px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .card-sizes {
    margin-top: 15px;
    max-width: calc(100% + 10px);
  }
  .card-sizes-block {
    margin-top: 30px;
    max-width: 100%;
  }
  .card-colors {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-colors-block {
    margin-top: 30px;
  }
  .card-footer {
    width: 100%;
    margin-top: 30px;
  }
  .card__btn {
    width: 100%;
  }
  .card-description {
    margin-top: 40px;
  }
}
.qty {
  border: 1px solid var(--text-color);
  border-radius: 9999px;
  padding: 30px 40px;
  width: 60px;
  height: 32px;
  padding: 0;
  background-color: transparent;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin: 0 5px;
}
.qty-btn {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  width: 8px;
  height: 15px;
}
.qty-btn svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.qty-btn:hover svg path {
  fill: var(--accent-color);
}

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

.cart-header {
  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;
}
.cart-header .btn {
  margin-left: 30px;
}
.cart-th {
  border-bottom: 1px solid #E0E0E0;
  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: 20px;
  margin-top: 50px;
}
.cart-th__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  width: calc(100% - 200px - 90px - 240px - 90px);
}
.cart-th__items .cart-th__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 33.33%;
  text-align: center;
}
.cart-th__items .cart-th__item--price {
  text-align: left;
}
.cart-th__items .cart-th__item--quantity {
  padding: 0 10px;
}
.cart-th__items .cart-th__item--subtotal {
  text-align: right;
}
.cart-th__item {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.cart-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cart-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
}
.cart-item__photo {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 90px;
  flex-shrink: 0;
}
.cart-item__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.cart-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.cart-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: auto;
}
.cart-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 90px;
  width: 100%;
}
.cart-item__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.cart-item__title:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.cart-item__sku {
  font-size: 12px;
  line-height: 140%;
  color: #a6a6a6;
  margin-top: 6px;
}
.cart-item__size {
  font-size: 12px;
  line-height: 140%;
  color: #a6a6a6;
  margin-top: 6px;
}
.cart-item__price {
  width: 33.33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart-item__cur-price {
  font-size: 22px;
  line-height: 140%;
  white-space: nowrap;
}
.cart-item__tax {
  font-size: 12px;
  color: #a6a6a6;
  white-space: nowrap;
}
.cart-item__quantity {
  width: 33.33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cart-item-subtotal {
  width: 33.33%;
  text-align: right;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart-item-subtotal__price {
  font-size: 22px;
  line-height: 140%;
  white-space: nowrap;
}
.cart-item-subtotal__tax {
  font-size: 12px;
  color: #a6a6a6;
  white-space: nowrap;
}
.cart-item__remove {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  font-size: 14px;
  line-height: 140%;
  color: #a6a6a6;
  position: relative;
  padding-left: 26px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: absolute;
  top: 15px;
  right: 0;
}
.cart-item__remove:before, .cart-item__remove:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 1px;
  left: 0;
  top: calc(50% - 0.5px);
  background-color: #A6A6A6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cart-item__remove:before {
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
.cart-item__remove:after {
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.cart-item__remove:hover {
  color: var(--text-color);
}
.cart-item__remove:hover:before, .cart-item__remove:hover:after {
  background-color: var(--text-color);
}
.cart-footer {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart-total {
  width: 500px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart-total__list {
  padding-bottom: 30px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 30px;
}
.cart-total__item {
  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;
}
.cart-total__item + .cart-total__item {
  margin-top: 20px;
}
.cart-total__item-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.cart-total__price {
  font-size: 12px;
  color: #a6a6a6;
  margin-left: 30px;
}
.cart-total__price strong, .cart-total__price b {
  color: var(--text-color);
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
}
.cart-btns {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.add-code-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 435px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.add-code-form input[type=text] {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .cart-th__items {
    width: calc(100% - 150px - 50px - 200px - 50px);
  }
  .cart-th__item {
    font-size: 20px;
  }
  .cart-item__photo {
    width: 150px;
    height: 150px;
    border-radius: 7.5px;
    margin-right: 50px;
  }
  .cart-item__header {
    width: 200px;
  }
  .cart-item__body {
    margin-left: 50px;
  }
  .cart-item__title {
    font-size: 20px;
  }
  .cart-item__sku {
    font-size: 10px;
  }
  .cart-item__size {
    font-size: 10px;
  }
  .cart-item__cur-price {
    font-size: 20px;
  }
  .cart-item__tax {
    font-size: 10px;
  }
  .cart-item-subtotal__price {
    font-size: 20px;
  }
  .cart-item-subtotal__tax {
    font-size: 10px;
  }
  .cart-total {
    width: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .cart-th__items {
    width: calc(100% - 150px - 40px - 200px - 40px);
  }
  .cart-th__items .cart-th__item {
    width: 33.33%;
  }
  .cart-th__items .cart-th__item--price {
    display: none;
  }
  .cart-th__items .cart-th__item--quantity {
    padding-left: 0;
  }
  .cart-th__items .cart-th__item--subtotal {
    text-align: right;
    width: 66.66%;
  }
  .cart-item__photo {
    margin-right: 40px;
  }
  .cart-item__body {
    margin-left: 40px;
  }
  .cart-item__price {
    display: none;
  }
  .cart-item__quantity {
    padding-left: 0;
  }
  .cart-item-subtotal {
    width: 66.66%;
  }
  .cart-footer {
    -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;
  }
  .cart-total {
    width: 100%;
    margin-top: 60px;
  }
  .add-code-form {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cart-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cart-header .btn {
    margin-left: 0px;
    margin-top: 30px;
  }
  .cart-th__items {
    display: none;
  }
  .cart-item__photo {
    margin-right: 20px;
  }
  .cart-item__body {
    margin-left: 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;
  }
  .cart-item__price {
    display: none;
  }
  .cart-item__quantity {
    padding: 0;
    width: 100%;
  }
  .cart-item-subtotal {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .cart-header .btn {
    margin-left: 0px;
    margin-top: 30px;
  }
  .cart-th {
    margin-top: 40px;
    padding-bottom: 15px;
  }
  .cart-th__item {
    font-size: 16px;
  }
  .cart-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .cart-item__info {
    -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: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .cart-item__header {
    width: 100%;
  }
  .cart-item__title {
    font-size: 16px;
  }
  .cart-item__body {
    margin-left: 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .cart-item__quantity {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 10px;
  }
  .cart-item-subtotal {
    text-align: left;
    margin-top: 10px;
  }
  .cart-item__remove {
    right: auto;
    top: auto;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .cart-footer {
    margin-top: 40px;
  }
  .cart-total {
    margin-top: 45px;
  }
  .cart-btns {
    margin-top: 45px;
  }
  .add-code-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.wishlist-block {
  text-align: center;
}
.wishlist-text {
  margin-top: 30px;
}
.wishlist__products {
  margin-top: 60px;
}

.browse-categories__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  text-align: center;
}
.browse-categories-block {
  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;
  margin-top: 60px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -40px;
}
.browse-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 20px 40px;
  width: calc(33.33% - 40px);
}
.browse-category:hover .browse-category__title {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.browse-category__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.browse-category__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.browse-category__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .wishlist__products {
    margin-top: 40px;
  }
  .browse-categories__title {
    font-size: 20px;
  }
  .browse-categories-block {
    margin-top: 40px;
  }
  .browse-category__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .browse-categories-block {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -30px;
  }
  .browse-category {
    margin: 0 10px 30px;
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .browse-category {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .wishlist-text {
    margin-top: 20px;
  }
  .wishlist__products {
    margin-top: 20px;
  }
  .browse-categories__title {
    font-size: 18px;
  }
  .browse-categories-block {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .browse-category {
    margin: 0;
    width: 100%;
  }
  .browse-category + .browse-category {
    margin-top: 30px;
  }
  .browse-category__title {
    font-size: 18px;
  }
}
.login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 454px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.login-form-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.login-form-btns .btn {
  width: 100%;
}

.register-block {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.register-form {
  width: 100%;
}
.register-form-inner {
  max-width: 550px;
}
.register-form .btn {
  margin-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
}
.register-advantages {
  width: 285px;
  margin-right: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.register-advantages__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
}
.register-advantages__subtitle {
  margin-top: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}
.register-advantages__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.register-advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.register-advantage + .register-advantage {
  margin-top: 25px;
}
.register-advantage__icon {
  width: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.register-advantage__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}

@media only screen and (max-width: 1199px) {
  .register-block {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .register-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .register-form-inner {
    max-width: 100%;
  }
  .register-advantages {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 120px;
  }
  .register-advantages__info {
    width: calc(50% - 30px);
  }
  .register-advantages__list {
    margin-top: 0;
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 575px) {
  .register-block {
    margin-top: 20px;
  }
  .register-advantages {
    margin-top: 80px;
    -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;
    text-align: center;
  }
  .register-advantages__title {
    font-size: 18px;
  }
  .register-advantages__subtitle {
    font-size: 16px;
    font-weight: 400;
  }
  .register-advantages__info {
    width: 100%;
  }
  .register-advantages__list {
    width: 100%;
    margin-top: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .register-advantage {
    -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;
    max-width: 220px;
  }
  .register-advantage + .register-advantage {
    margin-top: 20px;
  }
  .register-advantage__icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .register-advantage__text {
    font-size: 16px;
    font-weight: 400;
  }
}
.account {
  overflow: visible;
}
.account__title {
  text-align: left;
}
.account-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.account-aside {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 265px;
  margin-right: 50px;
  position: sticky;
  top: 60px;
  margin-top: 30px;
}
.account-aside__title {
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  font-size: 18px;
}
.account-menu {
  width: 100%;
}
.account-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 20px;
}
.account-menu__item + .account-menu__item {
  margin-top: 20px;
}
.account-menu__link {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.account-menu__link.active, .account-menu__link:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color);
}
.account-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.account-text-block {
  margin-top: 30px;
}
.account-text-block + .account-text-block {
  margin-top: 35px;
}
.account-h2 {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
}
.account-h2 + .account-text {
  margin-top: 20px;
}
.account__btn {
  margin-top: 35px;
}
.account-btns {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.account-balance {
  font-weight: 400;
  font-size: 36px;
  line-height: 140%;
  margin-top: 20px;
}
.account__add-code-form {
  margin-top: 30px;
  -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: flex-start;
  gap: 20px;
  width: 450px;
}
.account__add-code-form .btn {
  padding-left: 67px;
  padding-right: 67px;
}

@media only screen and (max-width: 1199px) {
  .account-aside {
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .account-aside {
    width: 200px;
  }
  .account__add-code-form {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .account {
    padding: 0;
  }
  .account__title {
    text-align: center;
  }
  .account-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .account-content {
    padding: 60px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .account-h2 {
    text-align: center;
  }
  .account-aside {
    width: 100%;
    margin-right: 0px;
    margin-top: 0px;
    position: static;
    top: auto;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 60px 0;
  }
  .account-aside__title {
    display: none;
  }
  .account-menu__list {
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .account-menu__item + .account-menu__item {
    margin-top: 25px;
  }
  .account-menu__link {
    font-size: 18px;
  }
  .account__add-code-form {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media only screen and (max-width: 575px) {
  .account-content {
    padding: 40px 0;
  }
  .account-h2 {
    font-size: 20px;
  }
  .account-aside {
    width: 100%;
    margin-right: 0px;
    margin-top: 0px;
    position: static;
    top: auto;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 40px 0;
  }
  .account-aside__title {
    display: none;
  }
  .account-menu__list {
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .account__btn {
    width: 100%;
  }
  .account-btns {
    width: 100%;
  }
  .account-balance {
    margin-top: 5px;
  }
}