.video_wrapper{
    height: var(--jl-video-height);
    position: relative;
}
.video_wrapper:before{
    background: #000;
    opacity: .3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video_preview{
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
}
.video_preview img{
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
}
.video_link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video_link .vid_i_w{
    display: block;
    line-height: inherit;
    width: 96px;
    height: 96px;
    position: relative;
}
.video_link .vid_i_w:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.4s ease 0s;
}
.video_link .vid_i_w svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.video_link:hover .vid_i_w:before{
  transform: scale(1.3);
}
.mfp-iframe-holder .mfp-close:hover{
  background: transparent !important;
}