#privacy_policy_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top:0;
    background: whitesmoke;
    text-transform: none;
    z-index: 1001;
}

#privacy_policy_popup * {
    text-transform: none;
}
#privacy_policy_popup .error_msg {
    display: none;
    position: absolute;
    top: 40px;
    background: #d23830;
    width: 100%;
    padding: 20px;
    text-align: center;
    color: whitesmoke;
    z-index: 1002;
}
#privacy_policy_header {
    text-align: center;
    text-transform: uppercase;
    background: #27516c;
}

#privacy_policy_content {
    overflow-y: scroll;
    position: relative;
    padding: 0 20px;
    background-color: rgba(255, 255, 255,1);
}
#privacy_policy_popup .wrapper{
    width: 100% !important;
    padding: 10px 0px !important;
}

#privacy_policy_content p {
    margin: 5px;
}

#privacy_policy_content input[type='checkbox'] { 
    margin: 0 5px;
    width: 20px;
    height: 20px;
}

#privacy_policy_content input.required_outline {
    outline: red 2px dashed;
}

#privacy_policy_btns {
    position: absolute;
    bottom: 0;
    width: 94%;
    text-align: center;
    margin: 10px 3%;
}

#privacy_policy_btns a {
    height: 25px;
    padding-top: 11px;
    border-radius: 5px;
    width: 45%;
    max-width: 400px;
    text-transform: uppercase;
}

a#privacy_policy_decline {
    float: left;
    background-color: #d23830;
}
a#privacy_policy_decline.privacy_policy_cancel{
    background-color: #656565;
}
a#privacy_policy_agree {
    float: right;
    background-color: #98cb4a;
}