/*** Full Width Image Video ***/

.full_width_image_video .video_position_container {
    position: relative;
    overflow: hidden;
    border-radius: var(--global-border-radius);
}

.full_width_image_video .video_embed_container {
    /*background-color: var(--onyx);*/
}
.full_width_image_video .video_embed_container > div {
    border-radius: 12px;
}

.full_width_image_video .video_image_overlay {
    transition: ease all 0.6s;
    /*background-color: black;*/
    display: block;
    width: calc(100% + 1px);
    left: -1px;
    padding-bottom: 56.25%;
    position: absolute;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius:12px;
    /*background-attachment: fixed;*/
}

/*.full_width_image_video .video_image_overlay:hover {*/
    /*background-size: 101%;*/
/*}*/

.full_width_image_video .video_image_overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background-color: #000000;*/
    opacity: 0.4;
    z-index: 1;
}

.full_width_image_video .video_image_overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.full_width_image_video .video_image_overlay .play_the_video,
.full_width_image_video .video_image_overlay .play_the_video:after {
    transition: ease all 0.3s;
    outline: none;
    border: none;
    height: 180px;
    width: 180px;
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    opacity: 0.7;
    background-image: url('assets/play_button.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

.full_width_image_video .video_image_overlay .play_the_video:after {
    content: '';
    background-image: url('assets/play_icon.svg');
}

.full_width_image_video .video_image_overlay .play_the_video {
    background-image: none;
}



.full_width_image_video .video_image_overlay:hover .play_the_video,
.full_width_image_video .video_image_overlay .play_the_video:after {
    outline: none;
    border: none;
    opacity: 1;
}
.full_width_image_video .video_image_overlay:focus .play_the_video,
.full_width_image_video .video_image_overlay .play_the_video:after {
    outline: none;
    border: none;
    opacity: 1;
}
.full_width_image_video .video_image_overlay.progressing,
.full_width_image_video .video_image_overlay.progressing .play_the_video {
    cursor: progress;
}

.full_width_image_video .container-fluid {
    width: 93.75%;
}


/*** POsition Fixed Background on Large Screens ***/
/*@media(min-width: 1400px) {*/
/*    .full_width_image_video {*/
/*        position: relative;*/
/*    }*/
/*    !* Video *!*/
/*    .full_width_image_video .video_image_overlay {*/
/*        background-attachment: fixed;*/
/*    }*/
/*    !* Image *!*/
/*    .full_width_image_video .image-16by9 > img {*/
/*        opacity: 0;*/
/*        display: none;*/
/*    }*/
/*    .full_width_image_video .image-16by9 {*/
/*        background-attachment: fixed;*/
/*    }*/

/*}*/


/*** Single Articles Specific ***/
@media(min-width: 1199.98px) {
    body.single-nw-articles .full_width_image_video div.image-16by9 {
        padding-bottom: 35%;
    }
}


@media(max-width: 767.98px) {
    .full_width_image_video .video_image_overlay .play_the_video,
    .full_width_image_video .video_image_overlay .play_the_video:after {
        height: 150px;
        width: 150px;
    }
}


@media(max-width: 575px) {
    .full_width_image_video .video_image_overlay .play_the_video,
    .full_width_image_video .video_image_overlay .play_the_video:after {
        height: 100px;
        width: 100px;
    }
}