/*--------------------------------------------------------------
## Theme belectricmessetv - ACF-Block for video with lightbox
--------------------------------------------------------------*/

.video-lightbox {
    background-position: center center;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    cursor: pointer;
    height: 8.5rem;
}

.video-lightbox-assets {
    background-image: url("assets/images/video-play-icon.svg");
    background-position: center 40%;
    background-repeat: no-repeat;
    align-items: end;
    display: flex;
    height: 100%;
}

.video-lightbox-title {
    background-color: #ffffff;
    color: #707070;
    font-size: 1.25rem;
    text-align: center;
    width: 100%;
}

.video-lightbox-video {
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
}

.video-lightbox-close {
    cursor: pointer;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 700;
    padding: 0.75rem 1rem;
    position: absolute;
    top: 0;
    right: 0;
}

.video-lighbox-videocontainer {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video-lighbox-videocontainer video {
    width: 65%;
    margin: 0 auto;
}