#age_verification {
    width: 495px;
    height: auto;
    background-color: #ffffff;
    border-radius: 10px;
    justify-content: center;
    margin: 30px auto;
}
#agreeButton{
    color: #fff;
    background-color: #08c;
    border-color: #08c #08c #069;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
}
#disagreeButton{
    color: #fff;
    background-color: #9ea4a7;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
}
#agreeButton:hover{
    background-color: 08c; /* Darker Blue */
}
#disagreeButton:hover{
    background-color: #9ea4a7; /* Darker Blue */
}
#age_verification p {
    color: #898181;
    font-weight: 600;
}

#age_verification h2 {
    color: #212121;
    margin: 25px 0px;
    font-family: 'Open Sans';
    font-weight: 600;
    margin-top:5px;
}

#age_verification #age_verification_image {
    width: 89px;
    height: 86px;
    margin-top: -23px;
}

#term-conditions {
    color: black;
    font-weight: 500;
}
#term-conditions-link {
    color: #0088cc;
    font-weight: 600;
}
@media only screen and (max-width:525px){
    #age_verification{
     width: unset;
    }
}
@media only screen and (max-width:375px){
    #age_verification p {
        padding:0px 15px;
    }
}