
/* AVP Elements */

.modal {
    display: none;
    position: fixed;
    z-index: 999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

/* Modal Content */

.age-verify-container{
    text-align: center;
    padding: 10px 10px;

}

.age-verify-container .notice-1 {
    margin-top: 10px;
    font-size: 12px;
    color: #1b1b1b;
}

.age-verify-container .notice-2 {
    font-size: 0.8rem;
    color: var(--fw-black-350);
}

.age-verify-container #birthdate {
    text-align: center;
}

.scroll-terms {
    text-align: left;
    font-size: 12px;
    color: var(--fw-black-350);
    background-color: var(--fw-white-250);
    border: solid 1px var(--fw-white-250);
    border-radius: 8px;
    height: 100%;
    min-height: 100px;
    max-height: 145px;
    padding: 13px;
    margin: 0px 0px 20px 0px;
    overflow-y: scroll;
}

.terms-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.bp-agree {
    background-color: var(--primary-300) !important;
    font-size: 1rem;
    color: var(--fw-static-white-000);
    border: none;
}

.bp-exit {
    background-color: var(--static-red-350) !important;
    font-size: 1rem;
    color: var(--fw-static-white-000);
    border: none;
}

#birthdate {
    max-width: 345px;
    padding: 20px;
    width: 100%;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin: 0px 0px 20px 0px;
}

#birthdate:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px #007BFF;
    outline: none;
}