/**
 * 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%;
	}
	    .cvwp-video-player .cvwp-load-video .icon{
	    	width:20%;
	    	max-width:200px;
			min-width:30px;
			height:20%;
			max-height:136px;
            min-height:23px;
			overflow: visible;
			background-size: cover;
			top:40%;
			left:40%;
			position:absolute;
			display: block;
			background: url(../images/play-btn.png) center center no-repeat #f00;
			border-radius:9px;
			background-size: cover;
	    }


.cvwp-video-thumbnail{
	display:block;
	position:relative;
}	
	.cvwp-video-thumbnail .overlay{
		display:block;
		position:absolute;
		width:100%;
		height:100%;
		top:0;
		left:0;
		cursor:pointer;
		z-index: 1;
		opacity: 1!important;
		visibility: visible!important;
		border:none;
		overflow:hidden;
		background-color: transparent!important;
	}
		
		.cvwp-video-thumbnail .overlay .icon{
			width:50%;
			height:34%;
			overflow: visible;
			background-size: cover;
			top:33%;
			left:25%;
			position:absolute;
			display: block;
			background: url(../images/play-btn.png) center center no-repeat #f00;
			border-radius:5px;
			background-size: cover;
		}
		
.cvwp-woocommerce-video-player iframe{
	width: 100%!important;
	height: 100%!important;
}