body.age-gate-active,
html.age-gate-active {
  overflow: hidden !important;
  height: 100% !important;
}
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--verde-norths, #2cad6e);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.age-gate.is-verified {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
.age-gate__inner {
  position: relative;
  width: 100%;
  max-width: 750px;
  background-color: var(--verde-norths, #2cad6e);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.age-gate__bg-top {
  position: absolute;
  top: 0;
  right: 35px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.age-gate__bg-top-img {
  width: auto;
  height: auto;
  display: block;
  object-fit: cover;
}
.age-gate__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0 auto;
}
.age-gate__logo-wrap {
  margin-bottom: 50px;
}
.age-gate__logo-wrap img {
  width: 80%;
  max-width: 330px;
  height: auto;
  display: inline-block;
}
.age-gate__title {
  margin-bottom: 35px;
}
.age-gate__desc {
  margin-bottom: 100px;
}
.age-gate__title,
.age-gate__desc {
  font-family: var(--theme-font-two);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: 0%;
  text-align: center;
  color: var(--theme-white, #ffffff);
}
.age-gate__muneco {
  position: absolute;
  bottom: -77px;
  left: 65px;
}
.age-gate__muneco img {
  max-height: 260px;
  width: auto;
}
@media (max-width: 767px) {
  .age-gate__muneco {
    left: 25%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .age-gate__muneco-img {
    max-height: 200px;
  }
}
