.evo-gdpr-overflow{
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    transition: width 0.25s ease, background 0.25s ease;
}

/**
 * website bottom bar
 */
.evo-gdpr-box{
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 20px;
    -webkit-box-shadow: 0 -3px 3px -3px #414141;
    box-shadow: 0 -3px 3px -3px #414141;
    background: #fff;
    color: #414141;
    font-size: 14px;
    line-height: 20px;
    z-index: 9999;

}
.evo-gdpr-box-btn{
    padding: 5px 10px;
    background: #41AFEC;
    text-decoration: none;
    color: #fff;
    border: none;
}
.evo-gdpr-box-btn--mr{
    margin-right: 25px;
}

.evo-gdpr-box-btn:hover, .evo-gdpr-box-btn:focus{
    text-decoration: none;
    color: #fff;
    background-color: #2491cc;
}
.evo-gdpr-box-title{
    display: block;
    margin-bottom: 10px;
}
/**
 * website modal with cookies
 */
.evo-gdpr-window{
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: rgba(0,0,0, 0.5);
    display: none;
    transition: width 0.25s ease, background 0.25s ease;
}
.evo-gdpr-overflow .evo-gdpr-window{
    /*display: block;*/
}
.evo-gdpr-container-wrapper{
    position: relative;
    height: 100%;
    box-sizing: border-box;
    padding: 15px;
}
.evo-gdpr-container{
    background: #fff;
    max-width: 80%;
    width: 100%;
    max-height: 600px;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
    box-sizing: border-box;
}
@media (max-width: 470px){
    .evo-gdpr-container{
        overflow-y: scroll;
    }
}
@media (max-width: 768px) {
    .evo-gdpr-container-wrapper{
        padding: 0;
    }
    .evo-gdpr-container{
        max-width: 100%;
        min-height: 100%;
        height: 100%;
        top: 0;
        transform: none;
    }
}
.evo-gdpr-container__header{
    position: relative;
}
.evo-gdpr-close-modal{
    position: absolute;
    top: 10px;
    right:10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    cursor: pointer;
}
.evo-gdpr-close-modal svg{
    width: 20px;
    height: 20px;
}
.evo-gdpr-container__content{
    padding: 15px;
}
.evo-gdpr-container__content__title{
    font-size: 16px;
    color: #5d5d5d;
    margin: 25px 0 20px 0;
    display: block;
}
.evo-gdpr-container__content table{
    width: 100%;
    max-width: 100%;
    min-width: 464px;
    margin-bottom: 20px;
    background-color: transparent;
}
.evo-gdpr-container__content table thead > tr > th{
    border-bottom: 0;
    background: #eee;
    padding: 10px;
    text-align: left;
}
.evo-gdpr-container__content table tbody > tr > td{
    padding: 5px 10px;
}
.evo-gdpr-container__content table tbody > tr > td.td-checkbox{
    text-align: center;
    padding: 0;
}
.evo-gdpr-container__content table tbody > tr.border--bottom > td{
    border-bottom: 1px solid #d8d8d8;
}

/**
 * Checkboxes
 **/
.evo-gdpr-container__content .checkbox-container{
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-table;
}
.evo-gdpr-container__content .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 3px;
    cursor: pointer;
}

.evo-gdpr-container__content .checkbox-container:hover input ~ .checkmark {
    background: #ccc;
}

.evo-gdpr-container__content .checkbox-container input:checked ~ .checkmark {
    background-color: #5d5d5d;
}

.evo-gdpr-container__content .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.evo-gdpr-container__content .checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.evo-gdpr-container__content .checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.evo-gdpr-container__content .checkbox-container .accept-all{
    display: inline-block;
    min-width: 136px;
    padding-left: 35px;
    line-height: 24px;
    cursor: pointer;
}
