
.gdpr-spinner {
    display: none;
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: gdpr-spin 1s linear infinite;
}

@keyframes gdpr-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gdpr-form-message {
    padding: 0.5em 1em;
    margin-bottom: 1em;
    border-radius: 0.5em;
    display: none;
    text-align:center;
}
.gdpr-form-message.success {
    background-color: #d4edda;
    border-color:rgb(129, 219, 150);
    color: #155724;
}
.gdpr-form-message.error {
    background-color: #ffecec;
    border: 1px solid #ff9a9a;
    color: #721c24;
}
pre.gdpr h1,
pre.gdpr h2 {
    margin-bottom: -0.25em;
    padding-bottom: 0;
}
pre.gdpr {
    font-size: 1.2em;
}
#gdpr-contact-form .row.send > div {
    text-align: center;
}
#gdpr-contact-form .contact-form-success,
#gdpr-contact-form .contact-form-error {
    display: none;
}

#gdpr-contact-form input[type="checkbox"] {
    display: block;
    width: auto;
    -webkit-appearance: auto;
    float: left;
}
#gdpr-contact-form input[type="checkbox"]+label {
    width: 90% !important;
    height: auto;
    padding-left: 5px;
    float: left;
}
#gdpr-contact-form input[type="checkbox"]+label::before {
    display: none;
}
#gdpr-contact-form input[type="checkbox"]:checked+label::before {
    content: '';
}


#gdpr-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
#gdpr-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
    width: 600px;
}
#gdpr-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #888;
}