* {
  font-family: "main", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
}

html {
  font-size: 20px;
}

p {
  margin: 0;
}

@font-face {
  font-family: "main";
  src: url("/assets/fonts/regular.woff2") format("woff2"), url("/assets/fonts/regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "main";
  src: url("/assets/fonts/semibold.woff2") format("woff2"), url("/assets/fonts/semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "main";
  src: url("/assets/fonts/bold.woff2") format("woff2"), url("/assets/fonts/bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.wrapper__content {
  width: calc(100% - 1.6rem);
  max-width: 57.7rem;
  height: calc(100% - 1.6rem);
  max-height: 36rem;
  background-color: #fff;
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
@media screen and (max-width: 769px) {
  .wrapper__content {
    width: 100%;
    max-width: unset;
    height: 100%;
    max-height: unset;
  }
}
.wrapper__col {
  height: 100%;
}
@media screen and (max-width: 769px) {
  .wrapper__col {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.wrapper__col--left {
  width: 26.7rem;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .wrapper__col--left {
    width: 20rem;
  }
}
@media screen and (max-width: 769px) {
  .wrapper__col--left {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
  }
}
.wrapper__col--right {
  z-index: 1;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 769px) {
  .wrapper__col--right {
    width: 100%;
  }
}
.wrapper--compress .wrapper__content {
  max-width: 31rem;
}
@media screen and (max-width: 769px) {
  .wrapper--compress .wrapper__content {
    max-width: unset;
  }
}
.wrapper__close {
  z-index: 3;
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
}
.wrapper__close::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("/assets/img/icons/close.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.2s;
}
@media screen and (min-width: 770px) {
  .wrapper__close:hover::before {
    filter: invert(1);
  }
}

.navigator {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  pointer-events: all;
  background-color: #fff;
}
.navigator__opener {
  height: 2.6rem;
  background: #030303;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 770px) {
  .navigator__opener {
    display: none;
  }
}
.navigator__opener img {
  width: 1rem;
  display: block;
  filter: brightness(0) invert(1);
  transition-duration: 0.2s;
}
.navigator__opener p {
  color: #fefefe;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 769px) {
  .navigator {
    transition-duration: 0.2s;
    height: unset;
  }
  .navigator:not(.navigator--open) {
    transform: translateY(100%);
  }
  .navigator:not(.navigator--open).navigator--show {
    transform: translateY(calc(100% - 2.6rem));
  }
}
.navigator__header {
  display: flex;
  flex-flow: row wrap;
  height: 2.6rem;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 769px) {
  .navigator__header {
    display: none;
  }
}
.navigator__logo {
  width: 7.1rem;
  border-right: 1px solid #e4e4e4;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.navigator__logo img {
  width: 5.67395rem;
  height: 0.92365rem;
  object-fit: contain;
}
.navigator__title {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0 0.6rem;
}
.navigator__title p {
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  flex: 1;
}
.navigator__content {
  display: flex;
  flex-flow: row wrap;
  height: calc(100% - 2.6rem);
}
@media screen and (max-width: 769px) {
  .navigator__content {
    height: 100%;
    flex-flow: column-reverse;
  }
}
.navigator__body {
  flex: 1;
  display: flex;
  flex-flow: column;
  height: 100%;
}
@media screen and (max-width: 769px) {
  .navigator__body {
    flex-flow: column-reverse;
  }
}

.sidebar {
  width: 7.1rem;
  height: 100%;
}
@media screen and (min-width: 770px) {
  .sidebar {
    border-right: 1px solid #e4e4e4;
  }
}
@media screen and (max-width: 769px) {
  .sidebar {
    width: 100%;
    height: 2.6rem;
    display: flex;
    flex-flow: row wrap;
  }
}
.sidebar__item {
  display: flex;
  flex-flow: row wrap;
  height: 2.6rem;
  align-items: center;
  padding: 0.8rem;
  gap: 0.8rem;
  transition-duration: 0.2s;
  opacity: 0.6;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 770px) {
  .sidebar__item {
    width: calc(100% + 1px);
  }
}
@media screen and (max-width: 769px) {
  .sidebar__item {
    flex: 1;
    justify-content: center;
    height: calc(100% + 1px);
    position: relative;
    top: -1px;
  }
}
@media screen and (min-width: 770px) {
  .sidebar__item:not(.si--current):hover {
    background-color: rgba(250, 226, 236, 0.6);
  }
}
.sidebar__item--current {
  background-color: #fae2ec;
  opacity: 1;
}
@media screen and (min-width: 770px) {
  .sidebar__item--current {
    border-right: 1px solid #030303;
  }
}
@media screen and (max-width: 769px) {
  .sidebar__item--current {
    border-top: 1px solid #030303;
  }
}
.sidebar__icon {
  width: 1.18rem;
  height: 1.18rem;
}
.sidebar__icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 770px) {
  .sidebar__text {
    flex: 1;
  }
}
.sidebar__text p {
  color: #030303;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.chips {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  min-height: 2.6rem;
  border-bottom: 1px solid #e4e4e4;
  padding: 0.4rem 0.4rem;
  gap: 0.4rem;
}
.chips__item {
  padding: 0.3rem 0.6rem 0.4rem;
  border-radius: 0.7rem;
  background: rgba(250, 226, 236, 0);
  cursor: pointer;
  transition-duration: 0.2s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chips__item p {
  color: #636363;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  transition-duration: 0.2s;
}
@media screen and (min-width: 770px) {
  .chips__item:not(.chips__item--current):hover {
    background: rgba(250, 226, 236, 0.45);
  }
}
.chips__item--current {
  background-color: #fae2ec;
}
.chips__item--current p {
  color: #030303;
}

.list {
  overflow-y: auto;
  display: none;
}
@media screen and (min-width: 770px) {
  .list {
    flex: 1;
  }
}
.list--current {
  display: block;
}
.list__item {
  cursor: pointer;
  display: flex;
  flex-flow: row wrap;
  padding: 0.4rem;
  border-bottom: 1px solid #e4e4e4;
  background-color: rgba(245, 245, 251, 0);
  align-items: center;
  transition-duration: 0.2s;
  gap: 0.5rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 770px) {
  .list__item:not(.list__item--current):hover {
    background-color: rgba(245, 245, 251, 0.45);
  }
}
.list__item--current {
  background-color: #f5f5fb;
}
.list__image {
  width: 4.8rem;
}
@media screen and (max-width: 1023px) {
  .list__image {
    width: 3.8rem;
  }
}
.list__image img {
  width: 100%;
}
.list__content {
  flex: 1;
}
.list__content p:first-of-type {
  color: #030303;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.011rem;
}
@media screen and (max-width: 1023px) {
  .list__content p:first-of-type {
    font-size: 0.9rem;
    letter-spacing: 0.009rem;
  }
}
.list__content p:last-of-type {
  color: #474747;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  margin-top: 0.4rem;
}
@media screen and (max-width: 1023px) {
  .list__content p:last-of-type {
    font-size: 0.56rem;
  }
}
@media screen and (max-width: 769px) {
  .list__content p:last-of-type {
    font-size: 0.7rem;
  }
}

.section {
  display: none;
  height: 100%;
  flex-flow: column;
}
.section--current {
  display: flex;
}

.cover {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  background-image: url("/assets/img/cover.webp");
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.8rem;
  z-index: 2;
}
@media screen and (max-width: 769px) {
  .cover {
    padding: 1.2rem 0.8rem 0.8rem;
  }
}
.cover img[data-upload] {
  display: none;
}
.cover--hidden {
  display: none;
}
.cover__sheet {
  width: 100%;
  padding: 0.8rem;
  background-color: #fff;
}
.cover__logo {
  display: block;
  width: 100%;
  max-width: 14rem;
  margin: 0 auto;
}
@media screen and (min-width: 770px) {
  .cover__logo {
    display: none;
  }
}
.cover__title, .cover__text {
  color: #000;
  letter-spacing: 0.05rem;
}
.cover__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 769px) {
  .cover__title {
    margin-top: 1.2rem;
  }
}
.cover__text {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 154.286%;
}
.cover__action {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.8rem;
  cursor: pointer;
}
.cover__action p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  flex: 1;
}
.cover__action img {
  width: 1.2rem;
}
.cover__action--camera {
  background-color: #141414;
}
.cover__action--camera p {
  color: #fff;
}
.cover__action--camera img {
  filter: brightness(0) invert(1);
}
.cover__action--photo {
  border: 1px solid #141414;
}
.cover__action--photo p {
  color: #000;
}
.cover__actions {
  margin-top: 0.8rem;
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
}

/**
 * Swiper 11.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 31, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.tryon {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #141414;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 769px) {
  .tryon::before {
    content: "";
    pointer-events: none;
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-duration: 0.25s;
  }
  .tryon--disable::before {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
  }
}
.tryon__switcher {
  width: 3.2rem;
  height: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  background-color: #141414;
  padding: 0.2rem 0.4rem;
  transition-duration: 0.2s;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 769px) {
  .tryon__switcher {
    border-radius: 3.2rem;
  }
}
.tryon__switcher div {
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.tryon__switcher div img {
  display: block;
  transition-duration: 0.2s;
}
@media screen and (max-width: 769px) {
  .tryon__switcher div img {
    filter: brightness(0) invert(1);
  }
}
.tryon__switcher div:first-of-type img {
  width: 0.5rem;
  transform: rotate(-90deg);
}
.tryon__switcher div:last-of-type img {
  width: 1rem;
}
@media screen and (min-width: 770px) {
  .tryon__switcher:not(:hover) img {
    filter: brightness(0) invert(1);
  }
  .tryon__switcher:hover {
    background-color: #fff;
  }
}
.tryon__video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
}
.tryon__renderer {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.tryon--camera .tryon__renderer,
.tryon--camera .tryon__video {
  transform: rotateY(180deg);
}
.tryon__compare {
  width: 2.5rem;
  height: calc(100% - 1.2rem);
  position: absolute;
  top: 0.8rem;
  left: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 3.8rem;
}
.tryon__compare::before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  border-radius: 15rem;
}
.tryon__compare div {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.2rem;
  cursor: grab;
  z-index: 2;
}
.tryon__compare div img {
  width: 1rem;
  display: block;
}
.tryon__compare div img:first-of-type {
  transform: rotate(-90deg);
}
.tryon__compare div img:last-of-type {
  transform: rotate(90deg);
}
.tryon__compare-button {
  position: absolute;
  right: 0.8rem;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
}
@media screen and (max-width: 769px) {
  .tryon__compare-button {
    right: 1rem;
  }
}
.tryon__compare-button img {
  width: 2.4rem;
  height: 2.4rem;
}
.tryon__compare-button--active {
  filter: invert(1);
}
.tryon__ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  z-index: 9;
}
@media screen and (max-width: 769px) {
  .tryon__ui--no-selector {
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 769px) {
  .tryon__ui:not(.tryon__ui--no-selector) {
    padding-bottom: 3.2rem;
  }
}
.tryon__ui-content {
  position: relative;
  flex: 1;
  width: 100%;
}
.tryon__ui-head {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 1rem 1rem 0;
  min-height: 2.6rem;
}
.tryon__ui-head > div:last-of-type, .tryon__ui-head > div:first-of-type {
  width: 3.2rem;
}
.tryon__ui-logo {
  flex: 1;
}
.tryon__ui-logo img {
  display: block;
  width: 100%;
  max-width: 7.65rem;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
.tryon:not(.tryon--compare) .tryon__compare {
  display: none;
}
.tryon:not(.tryon--compare) .tryon__renderer-wrapper {
  width: 100% !important;
}
.tryon--compare .tryon__compare-button {
  filter: invert(1);
}
.tryon__loader {
  z-index: 8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  transition-duration: 0.35s;
}
.tryon__loader img {
  width: 5.5rem;
}
.tryon__permission {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  display: none;
}
.tryon__permission--show {
  display: flex;
}
.tryon__permission > div {
  width: 17rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.8rem;
  background-color: #fff;
}
.tryon__permission-title, .tryon__permission-text {
  color: #000;
  letter-spacing: 0.05rem;
}
.tryon__permission-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 120%;
}
.tryon__permission-text {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 154.286%;
}
.tryon__permission-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
}
.tryon__permission-actions > button {
  border: none;
  box-shadow: none;
  outline: none;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0 0.8rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
.tryon__permission-actions > button:first-of-type {
  background-color: #141414;
  color: #fff;
}
.tryon__permission-actions > button:last-of-type {
  border: 1px solid #141414;
  color: #000;
  background-color: #fff;
}
.tryon--ready .tryon__loader {
  opacity: 0;
  pointer-events: none;
}

.shades {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.shades__current {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.shades__prev, .shades__next {
  border-radius: 0.2rem;
  background: #fff;
  padding: 0.2rem 0.2rem 0.2rem 0.4rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.shades__prev img, .shades__next img {
  pointer-events: none;
}
.shades__prev img:last-of-type, .shades__next img:last-of-type {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}
.shades__next {
  padding: 0.2rem 0.4rem 0.2rem 0.2rem;
  flex-flow: row-reverse wrap;
}
.shades__next img:first-of-type {
  transform: rotate(180deg);
}
.shades__button {
  border-radius: 0.2rem;
  display: flex;
  flex-flow: row wrap;
  min-width: 12rem;
  gap: 0.75rem 0.6rem;
  padding: 0.4rem;
  background-color: #fff;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.shades__button--collection {
  min-width: unset;
  width: 12rem;
}
@media screen and (max-width: 769px) {
  .shades__button--collection {
    width: 8rem;
  }
}
.shades__button > div:first-of-type {
  width: 2rem;
}
.shades__button > div:first-of-type img {
  width: 100%;
  display: block;
}
.shades__button > div:last-of-type {
  flex: 1;
}
.shades__button > div:last-of-type p:first-of-type {
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.008rem;
}
@media screen and (max-width: 769px) {
  .shades__button > div:last-of-type p:first-of-type {
    font-size: 0.6rem;
  }
}
.shades__button > div:last-of-type p:last-of-type {
  margin-top: 0.2rem;
  color: #636363;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.021rem;
}
@media screen and (max-width: 769px) {
  .shades__button > div:last-of-type p:last-of-type {
    font-size: 0.5rem;
  }
}
.shades__list {
  width: 100%;
  margin-top: 0.8rem;
}
.shades__list .swiper {
  cursor: grab;
  overflow: visible;
}
.shades__list .swiper-slide {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.shades__list img {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  cursor: pointer;
  transition-duration: 0.2s;
  pointer-events: none;
}
.shades__list img.current {
  border-color: #000;
  transform: scale(1.5);
}

.debug {
  position: absolute;
  top: 0;
  right: 0;
  width: 15rem;
  height: 100%;
  transform: translateX(100%);
  background-color: #000;
  display: flex;
  flex-flow: column;
}
.debug__content {
  height: calc(100% - 4rem);
  overflow-y: auto;
  padding: 0.8rem;
}
.debug__download {
  background-color: #fff;
  border: none;
  outline: none;
  box-shadow: none;
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05rem;
  height: 3.2rem;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
.debug__title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.011rem;
}
.debug__subtitle {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05rem;
}
.debug__disclaimer {
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05rem;
}
.debug__section {
  border: 1px solid #fff;
  padding: 0.4rem;
  border-radius: 0.4rem;
  margin-top: 0.8rem;
}
.debug label {
  display: block;
  margin-top: 0.8rem;
}
.debug label span {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
}
.debug label > span {
  display: block;
}
.debug label > span:nth-of-type(2) {
  display: flex;
  flex-flow: row wrap;
}
.debug label > span:nth-of-type(2) span {
  font-size: 0.5rem;
}
.debug label > span:nth-of-type(2) span:nth-of-type(2) {
  flex: 1;
  text-align: center;
}
.debug label input {
  width: 100%;
}
.debug__sub-section + .debug__sub-section {
  border-top: 1px solid #fff;
  margin-top: 0.8rem;
}
.debug__header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-top: 0.2rem;
}
.debug__header p {
  flex: 1;
  padding-bottom: 0;
}
.debug__header button {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05rem;
  padding: 0.2rem 0.4rem 0.4rem;
  cursor: pointer;
}
.debug select {
  width: 100%;
  background-color: transparent;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  border: 1px solid #fff;
  outline: none;
  border-radius: 0.4rem;
  height: 1.8rem;
  padding: 0 0.4rem;
  margin-top: 0.4rem;
}
.debug .hide {
  display: none;
}