html.bths-age-gate-open,
body.bths-age-gate-open {
  overflow: hidden;
}
.bths-age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  padding: 24px;
}
.bths-age-gate.is-active {
  display: grid;
}
.bths-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 28, 45, .82);
  backdrop-filter: blur(5px);
}
.bths-age-gate__dialog {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  text-align: center;
}
.bths-age-gate__eyebrow {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bths-age-gate__dialog h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.08;
}
.bths-age-gate__dialog p {
  font-size: 17px;
  line-height: 1.55;
}
.bths-age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.bths-age-gate__actions button {
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.bths-age-gate__confirm {
  background: #173b63;
  color: #fff;
}
.bths-age-gate__decline {
  background: #fff;
  color: #173b63;
}
@media (max-width: 520px) {
  .bths-age-gate__actions {
    grid-template-columns: 1fr;
  }
}
