#age_restricted_modal_wrapper{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top:0;
    left: 0;
    background-color: gray;
    z-index: 1000;
}
#age_restricted_modal{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 350px;
    height: 150px;
    border-radius: 17px;
}
#age_restricted_modal p {
    display: inline-block;
    font-family: sans-serif;
    font-size: 20px;
    margin: 10px 7px;
    text-align: center;
}
#age_restricted_modal_btn_wrapper {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}
#age_restricted_cancel_btn, #age_restricted_accept_btn{
    font-size: 20px;
    margin-right: 15px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}
#age_restricted_cancel_btn{
    background-color: red;
}
#age_restricted_accept_btn{
    background-color: green;
}
#age_restricted_cancel_btn:hover, #age_restricted_accept_btn:hover{
    opacity: 1;
}