/* Settem Video Popup v1.2 */

.svp-wrapper {
    width: auto !important;
    display: inline-flex !important;
    justify-content: center;
}

.svp-thumb {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.svp-overlay {
    display: none !important;
}

.svp-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(232, 0, 106, 0.15);
    border: 2px solid rgba(232, 0, 106, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
    outline: none;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.svp-thumb:hover .svp-play-btn {
    transform: scale(1.1);
    background-color: rgba(232, 0, 106, 0.3);
    border-color: #e8006a;
}

.svp-play-icon {
    display: block;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 22px solid #e8006a;
    margin-left: 5px;
}

.svp-no-video {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
    text-align: center;
}

/* POPUP */
.svp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.92);
    animation: svp-fade-in 0.2s ease;
    padding: 20px;
}

@keyframes svp-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.svp-lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    animation: svp-scale-in 0.25s ease;
}

@keyframes svp-scale-in {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.svp-lightbox-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.svp-lightbox-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.svp-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-weight: 300;
}

.svp-close:hover { opacity: 1; }
