@font-face {
  font-family: "NeueMontreal";
  src: url("/fonts/NeueMontreal-Regular.otf");
}
@font-face {
  font-family: "NeueMontrealMedium";
  src: url("/fonts/NeueMontreal-Medium.otf");
}
@font-face {
  font-family: "NeueMontrealBold";
  src: url("/fonts/NeueMontreal-Bold.otf");
}
.age-btn, .info-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.age-btn, .info-btn {
  min-width: 138px;
  height: 42px;
  width: max-content;
  border: 1px solid #143F47;
  background-color: #143F47;
  border-radius: 8px;
  color: #D2AC68;
  transition: 0.3s;
}
.age-btn svg, .info-btn svg {
  width: 16px;
  transition: 0.3s;
  margin-left: 6px;
}
.age-btn:hover, .info-btn:hover {
  background-color: #fff;
  color: #143F47;
}
.age-btn:hover svg path, .info-btn:hover svg path {
  stroke: #143F47;
}

.age-modal-open, .info-modal-open {
  overflow: hidden;
}

.age-modal, .info-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.age-modal__backdrop, .info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.age-modal__dialog, .info-modal__dialog {
  position: relative;
  z-index: 2;
  max-width: 420px;
  width: calc(100% - 32px);
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 24px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  animation: ageModalFadeIn 0.25s ease-out;
  color: #143F47;
}
.age-modal__dialog img, .info-modal__dialog img {
  width: 100px;
}
.age-modal__title, .info-modal__title {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 22px;
  font-family: "NeueMontrealBold";
  font-weight: 700;
}
.age-modal__text, .info-modal__text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 22px;
}
.age-modal__text strong, .info-modal__text strong {
  font-family: "NeueMontrealBold";
  font-weight: 700;
}
.age-modal__actions, .info-modal__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.age-unconfirmed {
  overflow: hidden;
  overscroll-behavior: none;
}
.age-unconfirmed .product-card,
.age-unconfirmed .product_page_content {
  filter: blur(12px);
  user-select: none;
}

html:has(#age-modal) {
  overflow: hidden;
  overscroll-behavior: none;
}

body:has(#age-modal) .product-card,
body:has(#age-modal) .product_page_content {
  filter: blur(12px);
  user-select: none;
}

.age-btn--no, .info-btn--no {
  background-color: #fff;
  color: #143F47;
}
.age-btn--no:hover, .info-btn--no:hover {
  color: #D2AC68;
  background-color: #143F47;
}

@keyframes ageModalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-45%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/*# sourceMappingURL=modal.css.map */
