#r-overlay{
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    background: rgba(0,0,0,0.6);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-font-smoothing: antialiased;
}
#r-message-container{
    bottom: -100%;
    position: absolute;
    max-height:90vh;
    width: 100%;
    left: 0;
    padding: 30px 0;
    background-color: #fff;
    color: #333;
    font-size:16px;
    line-height: 1.3;
    font-weight:300;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
#r-message-container a{
    text-decoration: underline !important;
    color: #337ab7 !important;
}
#r-container{
    width:100%;
    padding:0 15px;
    max-width:1140px;
    margin:0 auto;
}
.r-title{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight:400;
}
.r-policy-scroll{
    font-size:14px;
    padding: 10px;
    margin: 20px 0 0 0;
    box-sizing: border-box;
    height: 160px;
    width: 100%;
    line-height: 1.35;
    overflow-y: scroll;
    background-color: #f3f3f3;
}
.r-buttons{
    padding-top:20px;
}
#r-message-container .r-button{
    text-decoration: none !important;
    width: 140px;
    margin: auto;
    padding: 0;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
}
#r-message-container .r-button:hover{
    text-decoration: underline !important;
}
#r-message-container #r-accept{
    background-color: #337ab7;
    color: #fff !important;
    float: left;
}
#r-message-container #r-decline{
    background-color: transparent;
    float: right;
    color: #337ab7 !important;
}
@media(max-width:767px){
    #r-message-container{
        font-size:12px;
        padding:20px 0;
    }
    .r-title{
        font-size:16px;
    }
    .r-policy-scroll{
        font-size:10px;
        height:120px;
    }
    .r-button{
        font-size:12px;
        height:30px;
        line-height: 30px;
        width:100px;
    }
}

/*form checkboxes*/
.rodo-agreements{
    padding-top: 10px;
}
.rodo-agreement{
    margin-top: 10px;
    margin-right: 20px;
    font-size: 12px;
    position: relative;
}
.rodo-agreement .checkbox{
    display: block;
    position: absolute;
    left: -9999px;
    height: 0;
    visibility: hidden;
    line-height: normal;
}
.rodo-agreement .checkbox:checked+label:after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    left: 3px;
    top: 3px;
    background-color: #bfbfbf;
}
.rodo-agreement label{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-weight: 300;
    max-width: 100%;
    margin-bottom: 5px;
}
.rodo-agreement label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #afafaf;
}
.r-cloud {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #ffffff;
    width: 300px;
    max-width: 600px;
    opacity: 0;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 99;
    color: #333;
    font-size: 12px;
    text-align: left;
    padding: 15px 15px 10px 15px;
    line-height: 1.4;
}
.r-cloud p{
    margin-bottom:5px;
}
.r-tooltip{
    position: absolute;
    left: 100%;
    top: 0;
    font-size: 14px;
    background: #333;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
}
.r-tooltip > span{
    cursor: pointer;
    display: block;
}
.r-tooltip:hover .r-cloud,
.r-tooltip:focus .r-cloud,
.r-tooltip > span:hover + .r-cloud,
.r-tooltip > span:focus + .r-cloud{
    opacity: 1;
}
