#age-verify-overlay {
    /* (A1) COVER ENTIRE WINDOW */
    position: fixed;
    top: 0; left: 0; z-index: 999;
    width: 100vw; height: 100vh;
    overflow-y: scroll;

    /* (A2) BACKGROUND */
    background: rgb(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);

    /* (A3) CENTER CONTENT */
    display: flex;
    justify-content: center;
    align-items: center;

    /* (A4) HIDE OVERLAY BY DEFAULT */
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s;
    
    a.age-btn{
      background-color: #54A984;
      color: #fff;
      text-decoration: none;
      display:inline-block;
      letter-spacing: 0.1em;
      padding: 0.5em 0em;
      
      &.btn-beta{
        background-color: #e36e3a;
      }
    }
    .decor-line {
        position:	relative;
        top:	0.7em;
        border-top: 1px solid #ccc;
        text-align:center;
        max-width: 40%;
        margin: 0.5em auto;
        display: block;
        padding: 0.1em 1em;
        color: #ccc;

        span{
            background: #fff;
            color: #ccc;
            position: relative;
            top: -.7em;
            padding: 0.5em;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight:	900;
        }
    }

    .age-verify{
        background: #fff;
        position: absolute;
        left: 0;
        right: 0;
        top: 20%;
        bottom: 0;
        margin: 0 auto;
        z-index: 9;
        width: 40%;
        height: 40%;
        display: table;
          
        .verify-box{
            width: 100%;
            position: relative;
            text-align: center;
            padding: 5%;
            
            @media (min-width: 54em){
                display: table-cell;
                vertical-align: middle;
                width: 50%;
            }
            
            p{
                //padding: 5%;
                position: relative;
                z-index: 3;
            }
        }
      
        .verify-box{
            text-align: center;
            
            h3 {
                color: #555;
                text-transform: uppercase;
                letter-spacing: 0.07em;
                border-bottom: 1px solid #eee;
                padding-bottom: 1em;
                margin: 0 auto;
            }
            p {
                color: #aaa;
            }
            small {
                color: #ccc;
            }
            a.age-terms:link, a.age-terms:visited {
                color: #333;
                text-decoration: none;
            }
            .age-btn{
                font-weight: 600;
                letter-spacing: 0.2em;
                padding: 0.9em 1em 0.7em;
                margin: 1em auto;
                display: block;
            }
        }
    }
}

/* (B) SHOW OVERLAY */
#age-verify-overlay.show {
  opacity: 1; visibility: visible;
}
