#rgpdPopupBlackOverlay					{
    display:block;
    position:fixed;
    top:0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    z-index:900;
}
#rgpdPopupFormContainer					{
    padding:20px;
    border:0;
    clear:both;
    width:100%;
    max-width:640px;
    position:absolute;
    left:0;
    right:0;
    top:50%;
    margin:0 auto;
    transform:translateY(-50%);
}
#rgpdPopupForm							{
    padding:30px;
    background-color:#fff;
    clear:both;
    width:100%;
    line-height:0;
    font-size:0;
    border-radius:3px;
}
#rgpdPopupForm input[type=checkbox]		{
    -webkit-appearance: checkbox;
    -ms-appearance: checkbox;
    appearance: checkbox;
    -moz-appearance: checkbox;
    -o-appearance: checkbox;
    width: 20px;
    height: 20px !important;
    display: block;
    float:left;
    padding:0;
    margin:0;
}
#rgpdPopupForm label					{
    display:block;
    margin:0;
    padding:0 0 0 30px;
    float:none;
    width:auto;
    font-family:Arial, Geneva, sans-serif;
    font-size:14px;
    line-height:22px;
    height:auto;
}
#rgpdPopupFormButtons 					{
    text-align:center;
    margin-top:20px;
}
#rgpdPopupFormButtons input[type=button]{
    font-family:Arial, Geneva, sans-serif;
    border:none;
    color:#FFF;
    font-size:14px;
    height:50px;
    line-height:50px;
    padding:0 20px;
    margin:0 5px;
    cursor:pointer;
    border-radius:3px;
    width:auto;
    min-width:100px;
    transition:background 400ms ease-in-out;
}
#rgpdPopupFormCancel					{
    background-color:#CCC;
}
#rgpdPopupFormConfirm					{
    background-color:#75be30;
}
#rgpdPopupForm a						{
    border-bottom:1px solid #888;
    padding-bottom:1px;
}
#rgpdPopupFormAcceptError				{
    padding:6px 0 0 30px;
    color:#d21e2c;
    width:auto;
    font-family:Arial, Geneva, sans-serif;
    font-size:14px;
    line-height:22px;
}

@media (min-width:1201px) {
    #rgpdPopupFormCancel:hover					{
        background-color:#BBB;
    }
    #rgpdPopupFormConfirm:hover					{
        background-color:#75cf30;
    }
}
@media (max-width:600px) {
    #rgpdPopupForm							{
        padding:30px 20px;
    }
}