/**
 * Video player container
 */
.cvwp-video-player{
	background-repeat: no-repeat;
	background-position: center;
	background-color: #000;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	/* background-size: cover; */
}
	/**
	 * Lazy load play video link
	 */
	.cvwp-video-player .cvwp-load-video{
		display:block;
		position:relative;
		width:100%;
		height:100%;
		background-position:center;
		background-repeat:no-repeat;
		background-image:url(../images/play-button.png);
	}


.cvwp-video-thumbnail{
	display:block;
	position:relative;
}
	.cvwp-video-thumbnail .overlay{
		display:block;
		position:absolute;
		width:100%;
		height:100%;
		background:url('../images/play.png') center center no-repeat;
		top:0;
		left:0;
		cursor:pointer;
	}