/* .video-box {
    position: relative;
}

.video-box iframe {
    pointer-events: none;
} */

.playVideoInner {
    position: relative;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: scale(1);
}

.playVideoInner iframe {
    pointer-events: none;
}

/* Плавность появления в фуллскрине */
/* .video-box.fullscreen-active {
    opacity: 1;
    transform: scale(1.05);
} */

/* Эффект исчезновения при выходе */
/* .video-box:not(.fullscreen-active) {
    opacity: 0.7;
    transform: scale(1);
} */

.fullscreen--active {
    pointer-events: all!important;
}



