/*Lightbox Form*/
.privacy-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
}

.privacy-lightbox-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-lightbox-container {
    position: relative;
    width: 50%;
    max-width: 1200px;
    height: 70vh;
    background: white;
    border-radius: 8px;
    overflow: scroll;
    padding: 20px;
}

.privacy-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #0A1F43;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.privacy-lightbox-content {
    width: 100%;
    height: 100%;
}

#privacy-iframe {
    width: 100%;
    height: 100%;
    border: none;
}