.popup-age-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background-color: rgba(255,255,255,0.7);
}

.popup-age-inner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
    background-color: #FFFFFF;
    border: 4px solid #ed204b;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #ed204b;
    font-weight: 700;
    font-size: 1.2rem;
    width: 90%;
    max-width: 450px;
}

.popup-age-inner h1 {
    font-size: 1em;
    margin: 1em 0;
    font-weight: 700;
}

.popup-age-inner button {
    background-color: #ed204b;
    font-size: 1em;
    padding: 7px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    color: #FFFFFF;
    min-width: 40%;
    margin: 1em 0;
    cursor: pointer;
}

@media (min-width: 992px) {
    .popup-age-inner {
        font-size: 1.7em;
        max-width: 17em;
    }
}

@media (min-width: 1800px) and (min-height: 960px) {
    .popup-age-inner {
        font-size: 4.05rem;
        border-width: .4rem;
        border-radius: 1rem;
        padding: 2.07rem;
    }
    .popup-age-inner button {
        padding: .7rem 2.07rem;
        border-radius: .8rem;
    }
}