.gdpr-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    text-align: center;
    height: 100%;
    z-index: 99999999999;
    padding: 10px;
    pointer-events: none;
}

.gdpr-modal {
    background: #FFF;
    border: 1px solid #efefef;
    max-width: 800px;
    margin: auto;
    margin-top: 40px;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 10px;
    text-align: justify;
    box-shadow: 0 0 2px 0px #e2e2e2;
}

.gdpr-modal-action-bar {
    margin-top: 10px;
    margin-left: -10px;
    margin-bottom: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    background: #f3f3f3;
    border-top: 1px solid #d6d6d6;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
}

.gdpr-btn-link {
    color: #6d6a6a;
    font-size: 14px;
    line-height: 30px;
    font-weight: bold;
    margin-right: 20px;
    cursor: pointer;
}

.gdpr-btn-link.gdpr-accept-cookie {
    /* float: right; */
    margin-right: 0;
    background: #7baf2b;
    color: #FFF;
    padding: 8px 10px;
    line-height: 14px;
    border-radius: 4px;
    display: inline-block;
}

.gdpr-modal-content {
    font-size: 14px;
    line-height: 18px;
    color: #3e3e3e;
}

.gdpr-modal {
    position: absolute;
    bottom: 0;
    max-width: 80%;
    left: 10%;
    margin-bottom: 10px;
    pointer-events: all;
}

i.gdpr-close-btn {
    float: right;
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    background: #eaeaea;
    width: 24px;
    margin-left: 20px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 100%;
    line-height: 24px;
    color: #5a5a5a;
    cursor: pointer;
}

i.gdpr-close-btn:hover {
    background: #cecece;
}

.gdpr-modal-content {
    color: #7f7f7f;
}

@media only screen and (max-width: 768px){
    .gdpr-modal-action-bar .gdpr-btn-link {
        float: initial;
        width: 100%;
        display: block;
    }

    .gdpr-btn-link.gdpr-accept-cookie {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .gdpr-container {
        padding: 0;
    }
    
    .gdpr-modal {
        width: 100%;
        max-width: initial;
        left: 0;
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .gdpr-modal-action-bar .gdpr-btn-link {
        display: inline-block;
        width: auto;
        margin-right: 8px;
        line-height: 16px;
    }
    
    .gdpr-btn-link.gdpr-accept-cookie {
        display: block;
    }
}