/* R4 GDPR Cookie Consent Styles */

#r4-gdpr-consent-banner {
    position: fixed;
    bottom: 60px;
    left: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    max-width: 400px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}
#r4-gdpr-consent-banner.show {
	display: block;
	animation: r4-gdpr-fadeIn 0.3s ease;
}

.r4-gdpr-consent-content p {
    margin: 0 0 15px 0;
    color: #333;
}



.r4-gdpr-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}



.r4-gdpr-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;

}



.r4-gdpr-accept {
    background-color: #e11920;
    color: white;
}



.r4-gdpr-accept:hover {
    background-color: #c61920;
}



.r4-gdpr-reject {
    background-color: #f0f0f1;
    color: #3c434a;

}



.r4-gdpr-reject:hover {
    background-color: #dcdcde;

}



.r4-gdpr-read-more {

    color: #e11920;
    text-decoration: none;
    font-size: 14px;

}



.r4-gdpr-read-more:hover {

    text-decoration: underline;

}



.r4-gdpr-consent-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e11920;
    border-radius: 50%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}



.r4-gdpr-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}



.r4-gdpr-modal.show {
    display: block;
    animation: r4-gdpr-fadeIn 0.3s ease;
}



.r4-gdpr-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}



.r4-gdpr-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #72777c;
}

.r4-gdpr-close:hover {
    color: #000;
}



.r4-gdpr-modal-content h3 {
    margin-top: 0;
    color: #1d2327;
}

.r4-gdpr-options {
    margin: 20px 0;
}

.r4-gdpr-options label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    cursor: pointer;
}

.r4-gdpr-options input[type="checkbox"] {
    margin-right: 8px;
}

.r4-gdpr-cookie-desc {
    margin: 0 0 15px 20px;
    font-size: 13px;
    color: #646970;
}

@keyframes r4-gdpr-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    #r4-gdpr-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 60px !important;
        max-width: none;
    }

    .r4-gdpr-consent-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .r4-gdpr-btn {
        text-align: center;
    }

    .r4-gdpr-modal-content {
        margin: 5% 10px;
        width: auto;
    }
}