/**
 * public/jaz — full-screen embed modal styles.
 * Scoped with .fr-view (set on body or wrapper). Used with lightbox.js.
 */

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fr-view .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    z-index: 99999999999 !important;
    animation: fadeIn 1s;
    overflow: hidden;
}

.fr-view .popup.has-active {
    display: block;
}

.fr-view .popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fr-view .popup-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 24px;
    line-height: 36px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    background: rgba(14, 14, 14, 0.9882352941);
    border-radius: 500px;
    cursor: pointer;
    opacity: 1;
    font-weight: 600;
    z-index: 1;
}

.fr-view .popup-close:hover {
    color: #fff;
}

.fr-view iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fr-view #riq-fullscreen-modal iframe {
    display: none;
}

.fr-view #riq-fullscreen-modal iframe.active,
.fr-view #riq-fullscreen-modal iframe.is-active {
    display: block;
}
