.video-thumbnail{
    cursor:pointer;
    position:relative;
}
.video-thumbnail img{
    width:100%;
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}
.video-thumbnail{
    box-shadow:rgba(0, 0, 0, 0.15) 0px 1px 10px 1px;
    overflow:hidden;
    box-sizing:border-box;
}
.video-thumbnail *{
    box-sizing:border-box;
}
.video-thumbnail .img-wrapper{
    transition:opacity 0.4s ease-in-out;
    position:relative;
    z-index:2;
    display: block;
}
.video-thumbnail .img-wrapper.hide{
    opacity:0;
}

.video-thumbnail .img-wrapper:after{
    content: "\f522";
    font-family:'dashicons';
    display:block;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    font-size:60px;
    height:50px;
    width:50px;
    line-height:1;
    border:4px solid ;
    border-radius:50%;
    padding:12px 15px 18px 15px;
    color:#fff;
    background-color:rgba(0,0,0,0.4);
    -webkit-box-shadow: 2px 2px 10px 6px rgba(255,255,255,0.8); 
    box-shadow: 2px 2px 10px 6px rgba(255,255,255,0.8);
    transition:all 0.4s ease-in-out;
}
.video-thumbnail:hover .img-wrapper:after{
    background-color:rgba(247, 166, 0,0.8);

}
.video-thumbnail .loader-animation{
    z-index:1;
}
.video-thumbnail iframe{
    position:absolute;
    top:0px;
    left:0px;
    height:100%;
    width:100%;
    z-index:2;
}
.video-thumbnail p{
    display:none;
}
.thumb-overlay{
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    background-color:rgba(255,255,255,0.98);
    font-size:13px;
    padding:5px;
    line-height:1.3;
}