/* CSS Document */

.videoVignette {
	background-position:center;
	background-size:cover;
	cursor:pointer;
	margin-bottom:8%;
	position:relative;
	padding-top:100%;
	height:0;
}

.videoVignette img {
	display:block;
	margin-bottom:0;
	max-height:100%;
	max-width:100%;
	vertical-align:bottom;
}

.videoVignette img.videoPlay {
	display:none;
	position:absolute;
	top:0;
	left:0;
/*	transform: translate(-50%,-50%); */
}

.videoPlayer {
	background-color:rgb(255,255,255);
	background-color:rgba(255,255,255, 0.8);
	display:none;
	position:fixed;
	left:0;
	right:0;
	bottom:0;
	top:0;
	z-index:10;
}
.videoPlayer iframe {
	max-height:90vh;
	max-width:90vw;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}
