
.play-icon{
    display:none !important;
}

.video-card{
    cursor:pointer;
    overflow:hidden;
    position:relative;
}

.video-card iframe{
    pointer-events:none;
}

.video-modal-open{
    overflow:hidden !important;
}

.video-fullscreen-frame{
    pointer-events:auto !important;
}

.video-double-click-zone{
    position:absolute;
    top:0;
    left:0;
    right:220px;
    bottom:45%;
    z-index:2;
    background:transparent;
    cursor:pointer;
}

.video-fullscreen-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.94);
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    -webkit-tap-highlight-color:transparent;
    user-select:none;
}

.video-fullscreen-inner{
    width:min(94vw, 1280px);
    height:min(86vh, 720px);
    position:relative;
    background:#000;
    outline:none;
    transition:none !important;
    -webkit-tap-highlight-color:transparent;
    user-select:none;
    overflow:visible !important;
}

.video-fullscreen-inner iframe{
    width:100%;
    height:100%;
    border:none;
    border-radius:10px;
    background:#000;
    outline:none;
    transition:none !important;
}

.video-close{
    position:fixed !important;
    top:16px !important;
    left:16px !important;
    width:42px !important;
    height:42px !important;
    border-radius:50% !important;
    border:1px solid rgba(255,255,255,.28) !important;
    background:rgba(15,23,42,.82) !important;
    color:#fff !important;
    font-size:28px !important;
    line-height:1 !important;
    font-weight:400 !important;
    z-index:999999999 !important;
    cursor:pointer !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-shadow:0 14px 34px rgba(0,0,0,.38) !important;
    backdrop-filter:blur(10px);
    transition:background .18s ease, transform .18s ease, border-color .18s ease;
}

.video-close:hover,
.video-close:focus-visible{
    background:rgba(220,38,38,.94) !important;
    border-color:rgba(255,255,255,.48) !important;
    outline:2px solid rgba(255,255,255,.75);
    outline-offset:3px;
    transform:scale(1.08);
}

.video-close span{
    display:block;
    transform:translateY(-1px);
}

.video-fullscreen-inner::backdrop{
    background:#e5e7eb !important;
}

.video-fullscreen-inner::-webkit-backdrop{
    background:#e5e7eb !important;
}

.video-fullscreen-inner:fullscreen,
.video-fullscreen-inner:-webkit-full-screen{
    width:100vw !important;
    height:100vh !important;
    background:#e5e7eb !important;
    outline:none !important;
    transition:none !important;
}

.video-fullscreen-inner:fullscreen .video-double-click-zone,
.video-fullscreen-inner:-webkit-full-screen .video-double-click-zone{
    right:260px;
    bottom:45%;
}

.video-fullscreen-inner:fullscreen iframe,
.video-fullscreen-inner:-webkit-full-screen iframe{
    width:100vw !important;
    height:100vh !important;
    border-radius:0 !important;
    background:#e5e7eb !important;
    outline:none !important;
    transition:none !important;
}

@media(max-width:768px){

    .video-fullscreen-modal{
        align-items:center;
        padding:72px 10px 14px;
        box-sizing:border-box;
    }

    .video-fullscreen-inner{
        width:100%;
        height:auto;
        aspect-ratio:16 / 9;
        max-height:calc(100vh - 92px);
    }

    .video-close{
        width:44px !important;
        height:44px !important;
        font-size:28px !important;
        top:14px !important;
        left:12px !important;
    }

    .video-double-click-zone{
        right:150px;
        bottom:55%;
    }

}
