/* scoped: si-age-verification */

  #age-gate:where(.si-age-verification, .si-age-verification *){
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 24px;
    box-sizing: border-box;
  }

  #age-gate.hidden:where(.si-age-verification, .si-age-verification *){
    display: none;
  }

  #age-gate-box:where(.si-age-verification, .si-age-verification *){
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 34.5px 0px #0000001f;
    border-radius: 10px;
    padding: 0;
    width: 960px;
    max-width: 100%;
    min-height: 420px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .age-gate-content:where(.si-age-verification, .si-age-verification *){
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 64px 48px;
    background: rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
  }

  .age-gate-media:where(.si-age-verification, .si-age-verification *){
    min-height: 100%;
    overflow: hidden;
  }

  .age-gate-media img:where(.si-age-verification, .si-age-verification *){
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #age-gate-box .age-gate-title:where(.si-age-verification, .si-age-verification *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #d62121 0%, #ed7777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 -24px;
  }

  .divider:where(.si-age-verification, .si-age-verification *){
    width: 114px;
    height: 2px;
    background: #272727;
    flex-shrink: 0;
  }

  .confirm-text:where(.si-age-verification, .si-age-verification *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #272727;
    width: 242px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .age-gate-radios:where(.si-age-verification, .si-age-verification *){
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 28px;
    gap: 23px;
  }

  .radio-option:where(.si-age-verification, .si-age-verification *){
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #272727;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
  }

  .radio-option input[type="radio"]:where(.si-age-verification, .si-age-verification *){
    display: none;
  }

  .radio-circle:where(.si-age-verification, .si-age-verification *){
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #272727;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
  }

  .radio-option input[type="radio"]:checked + .radio-circle:where(.si-age-verification, .si-age-verification *)::after{
    content: '';
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #272727;
  }

  html.is-mobile #age-gate-box:where(.si-age-verification, .si-age-verification *){
    width: 390px;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 200px;
  }

  html.is-mobile .age-gate-content:where(.si-age-verification, .si-age-verification *){
    padding: 48px 40px 32px;
    gap: 28px;
  }

  html.is-mobile #age-gate-box .age-gate-title:where(.si-age-verification, .si-age-verification *){
    font-size: 42px;
  }

  html.is-mobile .age-gate-media:where(.si-age-verification, .si-age-verification *){
    min-height: 0;
    height: 200px;
  }
