.wpflex-bg-host {
	position: relative;
	overflow: hidden;
}

.wpflex-bg-host > .wpflex-bg-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.wpflex-bg-host > :not(.wpflex-bg-media) {
	position: relative;
	z-index: 2;
}

.wpflex-bg-image,
.wpflex-bg-video,
.wpflex-bg-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.wpflex-bg-image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: var(--wpflex-bg-fit, cover);
}

.wpflex-bg-video {
	object-fit: var(--wpflex-bg-fit, cover);
}

.wpflex-bg-iframe {
	border: 0;
	object-fit: var(--wpflex-bg-fit, cover);
	transform: scale(1.15);
	transform-origin: center center;
}

.wpflex-bg-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

