
/* -- Responsive Embeds -- */

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

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

.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%);
}

.video-embed-cover {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 0;
	overflow: hidden;
}
.video-embed-cover * { pointer-events: none; }
.video-embed-cover iframe {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 500%;
	height: 100%;
	transform: translate(-50%,-50%);
}
@media( min-width: 1000px ) {
	.video-embed-cover iframe {
		width: 100%;
		height: 500%;
	}
}