/**
 * DevBrothers Video Loop — decorative muted video, no controls.
 */

.fl-module-devbrothers-video-loop > .fl-module-content {
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

.dbbk-vl__empty {
	padding: 0.5rem 0;
	opacity: 0.75;
	font-size: 0.95rem;
}

.dbbk-video-loop {
	position: relative;
	width: 100%;
	max-width: 100%;
	line-height: 0;
	overflow: hidden;
}

.dbbk-video-loop--align-left {
	margin-left: 0;
	margin-right: auto;
}

.dbbk-video-loop--align-center {
	margin-left: auto;
	margin-right: auto;
}

.dbbk-video-loop--align-right {
	margin-left: auto;
	margin-right: 0;
}

.dbbk-vl__video {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
}

.dbbk-vl__video--fit-contain {
	object-fit: contain;
}

.dbbk-vl__video--fit-cover {
	object-fit: cover;
}

.dbbk-vl__video.is-buffered {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
}

.dbbk-vl__canvas {
	display: none;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: top;
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
}

.dbbk-vl__canvas.is-active {
	display: block;
}

/* Hide native controls if a browser forces them */
.dbbk-vl__video::-webkit-media-controls {
	display: none !important;
}

.dbbk-vl__video::-webkit-media-controls-enclosure {
	display: none !important;
}
