body.no-overflow {
    overflow: hidden;
}

.age_modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1002;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 28, 55, .8); */    
    backdrop-filter: blur(4px);
}

.cta-age-gate {    
    cursor: pointer;
    transition: transform 0.2s ease-in-out;  
}

.cta-age-gate:hover {
    animation: bump 0.4s ease-in-out;
}

.cta-age-gate:active {
    animation: press 0.2s ease-in-out;
}

@keyframes bump {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes press {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.age_modal .inner_modal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_age {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: margin-left .5s;
}

.form_age h1 {
    margin-bottom: 4rem;
    color: white;
}

.form_age input {
    color: white;
    width: 100px;
    height: 70px;
    font-size: 40px;
    background-color: transparent;
    border: 0;
    border: 1px solid white;
    cursor: pointer;
    margin: 0 1.5rem;
}

.form_age input:hover {
    background-color: rgba(240, 255, 255,0.2);
}

.form_age p {
    margin-top: 2rem;
    color: white;
    text-align: center;
    padding: 20px 50px;
    font-weight: bold;
}

.mainsection.age_modal {
    background-color: transparent;
}