@font-face {
  font-family: "GarageGothicBold";
  src: url("/DigitUp/LaCaseraES/assets/fonts/GarageGothic-Bold.woff2") format("woff2"), url("/DigitUp/LaCaseraES/assets/fonts/GarageGothic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansLight";
  src: url("/DigitUp/LaCaseraES/assets/fonts/OpenSans-Light.woff2") format("woff2"), url("/DigitUp/LaCaseraES/assets/fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Define the responsive grid mixin */
/* Center content with optional starting column */
/* ============================================
   Button Mixin
   Supports: variants, sizes, optional icon
=============================================== */
/* SIZE MIXIN (NO COLORS, NO VARIANT) */
/* VARIANT MIXIN (COLORS ONLY) */
/* OPTIONAL: BASE MIXIN */
.age-modal {
    position: fixed;
    inset: 0;
    background: #000000e6;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.age-modal.active {
  display: flex;
}
.age-modal .age-modal-content {
  max-width: 450px;
  width: 100%;
  background: #F7F7FC;
  margin: 0px 2rem;
  padding: 2.25rem;
  text-align: center;
}
.age-modal .sorry-card {
  max-width: 450px;
  width: 100%;
  padding: 0.75rem;
  margin: 0px 2rem;
}
.age-modal .age-title {
  font-size: 42px;
  font-weight: 700;
  color: #002d72;
  text-transform: capitalize;
}
.age-modal .divider {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 1rem 0px;
}
.age-modal .age-text {
  font-size: 22px;
  color: #888;
  margin-bottom: 30px;
}
.age-modal .age-text span {
  color: #c8102e;
  font-weight: 700;
}
.age-modal .age-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.age-modal .age-buttons button {
  padding: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.age-modal .age-buttons .btn-yes {
  background: #c8102e;
  color: #ffffff;
}
.age-modal .age-buttons .btn-no {
  background: #dcdcdc;
  color: #333;
}

@media (min-width: 0) and (max-width: 839.9px) {
  .age-modal .age-buttons button {
    padding: 0.375rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .age-modal .age-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .age-modal .age-buttons button {
    width: 100%;
  }
}
