
.gliderzone-qv-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
.gliderzone-qv-modal {
    background: #fff;
    width: 50%;
    max-height: 90%;
    overflow-y: auto;
    padding: 20px;
    resize: both;
    position: relative;
    z-index: 10001;
    font-family: inherit;
    color: inherit;
}
.gliderzone-qv-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}
.gliderzone-qv-btn {
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    background: var(--wp--preset--color--primary, #0073aa);
    color: #fff;
    padding: 6px 14px;
    border: none;
    border-radius: 0;
    font-family: inherit;
}
.gliderzone-loader {
    width: 80px;
    height: 80px;
    background: url('https://glider.zone/wp-content/uploads/2023/11/GZ_logo_rund_trans_512.png') no-repeat center center;
    background-size: contain;
    animation: pulse 1.2s infinite ease-in-out;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
