/* CSS Document
    Title: GDPR Cookie Consent Window CSS
    Description: Defines the CSS styling for the consent window popup
    Author: Chris Martone
    Date: 05/06/26
    Version: 1.0
*/
#gdpr-cookie .gdpr-cookie-modal {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 700px;
    background: #ffffff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    color: #222222;
    box-sizing: border-box;
}
#gdpr-cookie {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
#gdpr-cookie .gdpr-cookie-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: bold;
    color: #002957;
}
#gdpr-cookie .gdpr-cookie-text {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
}

#gdpr-cookie .gdpr-cookie-text a {
    color: #002957;
    text-decoration: underline;
}
#gdpr-cookie .gdpr-cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
#gdpr-cookie .gdpr-cookie-button {
    border: none;
    padding: 12px 18px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 3px;
}
#gdpr-cookie .gdpr-cookie-accept {
    background: #c39428;
    color: #ffffff;
}
#gdpr-cookie .gdpr-cookie-necessary {
    background: #002957;
    color: #ffffff;
}
body.gdpr-cookie-open {
    overflow: hidden;
}
.gdpr-cookie-video-placeholder {
    background: #e5e5e5;
    color: #333333;
    padding: 30px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #cfcfcf;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.gdpr-cookie-video-placeholder-inner {
    max-width: 500px;
}
.gdpr-cookie-video-placeholder-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.gdpr-cookie-video-placeholder-link {
    color: #002957;
    text-decoration: underline;
    cursor: pointer;
}
.video-container.external-video {
    display: block !important;
    max-width: 100%;
    clear: both;
    margin-bottom: 20px;
}

.video-container.external-video iframe {
    display: block !important;
    max-width: 100%;
}