@font-face {
  font-family: MonumentGrotesk;
  font-weight: 300;
  src: url("./fonts/MonumentGrotesk-Bold.otf");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-image: url("./images/BG_white.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: MonumentGrotesk;
  /* background: ; */
  transition: 0.5s;
}
body.dark {
  background-image: url("./images/BG_black.jpg");
}

.shining {
  display: none;
  position: absolute;
  left: 50%;
  top: 40%;
  width: 1px;
  height: 1px;
  pointer-events: none;
  z-index: -1;

  -webkit-box-shadow: 0px 0px 200px 120px #b3467a;
  -moz-box-shadow: 0px 0px 200px 120px #b3467a;
  box-shadow: 0px 0px 200px 120px #b3467a;
}
/* .dark .shining {
  display: block;
} */

.content {
  max-width: 100vh;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translate(-50%, 0);
}
.content__logo {
  margin-bottom: 25px;
  position: absolute;
  aspect-ratio: 2048 / 1180;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -1;
}
.content__logo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-logo__light {
  opacity: 1;
  z-index: 1;
}
.main-logo__dark {
  opacity: 0;
  z-index: -1;
}
.dark .main-logo__light {
  opacity: 0;
  z-index: -1;
}
.dark .main-logo__dark {
  opacity: 1;
  z-index: 1;
}

model-viewer {
  position: absolute;
  left: 50%;
  top: 0%;
  height: 100%;
  width: 100vw;
  transform: translate(-50%, 0);
  /* background-color: #b3467a; */
}

.footer {
  position: absolute;
  /* background-color: aquamarine; */
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 10px 20px;
}
.footer__picker {
  position: absolute;
  /* background: red; */
  left: 50%;
  bottom: 125px;
  transform: translateX(-50%);
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 100px;
  margin: 0 auto;
}
.picker__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 8px;
  transition: 0.5s;
  border: 2px solid transparent;
}
.picker__btn.active {
  border: 2px solid #ad0f0f80;
  width: 60px;
  height: 60px;
}
.picker__btn.green.active {
  border: 2px solid #318f3180;
}
.footer__content {
  display: flex;
  justify-content: center;
}
.footer__logo {
  top: 30px;
  position: absolute;
  aspect-ratio: 1024 / 72;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
}
.footer__logo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.logo-light {
  opacity: 1;
  z-index: 1;
}
.logo-dark {
  opacity: 0;
  z-index: -1;
}
.dark .logo-light {
  opacity: 0;
  z-index: -1;
}
.dark .logo-dark {
  opacity: 1;
  z-index: 1;
}
.logo-dark.hidden {
  opacity: 0;
}

.dark .footer_title_img_dark {
  opacity: 1;
  z-index: 1;
}
.dark .footer_title_img_light {
  opacity: 0;
  z-index: -1;
}
.footer_title_img_dark {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.footer_title_img_light {
  opacity: 1;
  z-index: 1;
  position: absolute;
}


.footer__title {
  position: absolute;
  left: 50%;
  bottom: 105px;
  transform: translateX(-50%);
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 40%;
  margin: 0 auto;
}

.mobile .footer__title {
  width: 70%;
}

.footer__title img {
  width: 100%;
}

.link {
  display: block;
  margin: 0 10px;
  width: 50%;

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

  border-radius: 40px;
  border: 2px solid;
  padding: 14px 10px;

  text-decoration: none;
  font-size: 20px;
  line-height: 22px;
  color: #000000;
  max-width: 450px;
  transition: 0.5s;
}
.link_black {
  background: black;
  border-color: black;
  color: #ffffff;
}

.link .link-icon {
  width: calc(350 / 84 * 30px);
  height: 30px;
}

.shop .link-icon  {
  height: 20px;
  width: calc(256 / 60 * 20px);
}

.link-icon {
  position: relative;
}
.link-icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.icon-light {
  opacity: 1;
  z-index: 1;
}
.icon-dark {
  opacity: 0;
  z-index: -1;
}
.dark .icon-light {
  opacity: 0;
  z-index: -1;
}
.dark .icon-dark {
  opacity: 1;
  z-index: 1;
}

.dark .link {
  color: #fff;
}
.dark .link_black {
  color: #000;
  background: #fff;
  border-color: #fff;
}
.footer_img {
  width: 100%;
  margin-bottom: 10px;
}

.interaction-prompt {
  width: 85px;
  opacity: 0;
}
.interaction-prompt-custom {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  opacity: 0;
}
.interaction-prompt-custom.anim {
  animation: anim 10s infinite ease-in-out;
}

@keyframes anim {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  10% {
    transform: translate(calc(-50% - 20px), -50%) scale(1);
  }
  20% {
    transform: translate(calc(-50% + 20px), -50%) scale(1);
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    opacity: 1;
  }
  35% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  80% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  85% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

.link.tryon {
  position: relative;
}
.hotspot__img {
  position: absolute;
  right: -25px;
  top: 6%;
  width: 70px;
  transition: opacity 0.5s;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

.desktop-modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
}

.desktop-modal .modal-content {
  width: 83%;
  max-width: 500px;
}
.desktop-modal img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 15px;
}
.desktop-modal p {
  text-transform: uppercase;
  color: #000000;
  font-size: 17px;
  text-align: center;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  padding: 10px;
}

.close-modal img {
  width: 100%;
}

/* landscape */

.landscape {
  display: none;
}
.mobile .landscape {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5vh;
  background: white;
  z-index: 25;
}

.mobile .landscape_logo {
  width: 23%;
}
.mobile .landscape_icon {
  width: 25%;
}
.mobile .landscape_clue {
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
}

@media screen and (orientation: portrait) {
  .mobile .wrap {
    display: block;
  }
  .mobile .landscape {
    display: none;
  }
}
@media screen and (orientation: landscape) {
  .mobile .wrap {
    display: none;
  }
  .mobile .landscape {
    display: flex;
  }
}

#custom-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  overflow: hidden;
}
.custom-bar {
  width: 0%;
  height: 100%;
  background: rgb(181, 181, 181);
  transition: 0.2s;
  pointer-events: none;
}

.dots-placeholder {
  position: absolute;
  width: 100%;
  top: -120px;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  /* background-color: #b3467a; */
  left: 50%;
  transform: translate(-50%, 0);
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: black;
  color: black;
  box-shadow: 9999px 0 0 -5px black;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: 0.25s;
}
.dark .dot-pulse {
  color: white;
  background-color: white;
  box-shadow: 9999px 0 0 -5px white;
  animation: dotPulseDark 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: black;
  color: black;
}
.dark .dot-pulse::before,
.dark .dot-pulse::after {
  background-color: white;
  color: white;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px black;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}
.dark .dot-pulse::before {
  box-shadow: 9984px 0 0 -5px white;
  animation: dotPulseBeforeDark 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px black;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: 0.5s;
}
.dark .dot-pulse::after {
  box-shadow: 10014px 0 0 -5px white;
  animation: dotPulseAfterDark 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px black;
  }
  30% {
    box-shadow: 9984px 0 0 2px black;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px black;
  }
}
@keyframes dotPulseBeforeDark {
  0% {
    box-shadow: 9984px 0 0 -5px white;
  }
  30% {
    box-shadow: 9984px 0 0 2px white;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px white;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px black;
  }
  30% {
    box-shadow: 9999px 0 0 2px black;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px black;
  }
}
@keyframes dotPulseDark {
  0% {
    box-shadow: 9999px 0 0 -5px white;
  }
  30% {
    box-shadow: 9999px 0 0 2px white;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px white;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px black;
  }
  30% {
    box-shadow: 10014px 0 0 2px black;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px black;
  }
}
@keyframes dotPulseAfterDark {
  0% {
    box-shadow: 10014px 0 0 -5px white;
  }
  30% {
    box-shadow: 10014px 0 0 2px white;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px white;
  }
}
