.gdpr-container {
    background-color: #202020;
    position: fixed;
    bottom: 0;
    height: 60px;
    width: 100%;
    color: #FFF;
    padding: 12px 40px;
    text-align: center;
    z-index: 10000;
    line-height: 1;
}

.gdpr-overlay {
    position: fixed;
    background-color: rgba(0,0,0,.45);
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
}

.gdpr-modal {
    width: 600px;
    height: 330px;
    background-color: #fff;
    position: fixed;
    margin: 0 auto;
    top: 25%;
    left: calc(50% - 300px);
    z-index: 10000;
    box-shadow: 5px 2px 50px 4px #878787;
    padding: 20px;
    color: #000;
}

.gdpr-modal-body {
    margin-top: 25px;
    color: #000 !important;
}

.gdpr-item {
    margin-top: 15px;
}

.gdpr-item label {
    cursor: pointer;
    margin-bottom: 0;
    color: #000;
}

#gdpr-accept-btn {
    background-color: #0C4DA2;
    cursor: pointer;
    color: #FFF;
    padding: 4px 25px;
    font-size: 14px;
    border-radius: 150px;
    position: relative;
    top: -10px;
}

.gdpr-btn-container {
    margin-top: 30px;
    text-align: center;
}

.gdpr-modal-body {
    line-height: 1 !important;
}

.gdpr-modal-body button {
    background-color: #0C4DA2;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
}

.gdpr-close-button {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
}

.all-hide {
    display: none;
}

.gdpr-cookie-settings {
    text-decoration: underline !important;
    color: #fff;
}

.gdpr-item p {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

.gdpr-note {
    font-size: 12px;
}

.gdpr-note a {
    text-decoration: underline;
}

@media (max-width: 768px){
    .gdpr-modal {
        width: calc(100% - 20px);
        height: 355px;
        left: 10px;
    }

    .gdpr-container {
        height: max-content;
        text-align: left;
    }

    #gdpr-accept-btn {
        display: block;
        top: 10px;
        margin-bottom: 10px;
    }
}