
/* -- Responsive Embeds -- */

.bg-video-embed {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	font-size: 0;
	background-color: #000000;
	overflow: hidden;
}

.bg-video-embed:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-image: url('/media/video-texture.png');
	background-size: auto;
	background-repeat: repeat;
	background-position: center center;
	opacity: 0.5;
}

.bg-video-embed iframe {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 200%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	filter: brightness(0.80);
}

.video-embed {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	font-size: 0;
	background-color: #000000;
	overflow: hidden;
}

.video-embed iframe {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%,-50%);
}