.custom-video-lightbox {
    position: relative;
   /* min-height: 100vh;*/
    z-index: 9;

    @media (max-width: 1024px) {
        min-height: 20vh;
        height: 100%;
    }
}

.video-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: none;
}

.video-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.video-lightbox-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-lightbox-content iframe {
    width: 100%;
    height: 100%;
}

.custom-video-lightbox {
    position: relative;
}

.custom-video-lightbox {
    cursor: auto;
}

.custom-video-lightbox:has(.cursor-img) {
    cursor: none;
}

.custom-video-lightbox iframe {
    height: 600px;
}

img.cursor-img, img.cursor-img-lightbox {
    pointer-events: none;
    display: none;
    width: 200px;
    height: 200px;
    position: absolute;
    transform: translate(-50%, -50%);
}

body.lightbox-open .cursor-img {
    display: none!important;
}

.play-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    cursor: pointer;

    @media (max-width: 1024px) {
        display: flex;
    }
}

.play-overlay::after {
    content: '\25BA';
    font-size: 64px;
    color: white;
}

.close-lightbox {
    position: absolute;
    top: 20%;
    right: 20%;
    display: block;
}
