.autoplayer-pro {
	--controls-bg-hover-color: var(--gray-100);
	--controls-text-hover-color: var(--sw-key-color);
	--text-content-bg-color: var(--primary-color-100);
	--text-color: var(--gray-100);
	--border-color: var(--gray-100);

	position: relative;
	overflow: hidden;
	height: 80vh;
	display: flex;
}

@media (min-width: 641px) {
	.autoplayer-pro {
		height: 668px;
	}
}

.autoplayer-pro .poster {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	filter: blur(20px);
}

.autoplayer-pro .fallback.loaded .poster {
	filter: none;
}

.autoplayer-pro .video {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 300ms cubic-bezier(0, 0, 0.3, 1);
}

.autoplayer-pro.video-loaded .video {
	opacity: 1;
}

.autoplayer-pro .video-controls {
	display: none;
}

.autoplayer-pro.video-loaded .video-controls {
	display: flex;
	gap: var(--space-2);
	margin-top: var(--space-5);
}

.autoplayer-pro .video-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 34px;
	height: 34px;
	color: var(--burnt-deep);
	border: none;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	font-size: var(--text-base);
}

.autoplayer-pro .video-control.volume {
	font-size: var(--text-2xl);
}

.autoplayer-pro .video-control:focus {
	outline: var(--border-color) solid 1px;
	outline-offset: 2px;
}

.autoplayer-pro .video-control .fa-play {
	margin-left: var(--space-px);
}

.autoplayer-pro .text-content {
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 0;
	padding: 14px var(--space-6);
	width: calc(100% - 4rem);
	max-width: var(--width-comfortable);
	z-index: 12;
}

.autoplayer-pro .text-content .title {
	margin-bottom: var(--space-4);
}

.autoplayer-pro .description {
	font-family: var(--font-display);
	font-size: var(--text-base);
	color: var(--text-color);
	margin-bottom: var(--space-2);
}

.autoplayer-pro .text-content .read-more {
	font-family: var(--font-display);
	color: var(--text-color);
	text-decoration: none;
	font-weight: 400;
	position: relative;
	text-transform: uppercase;
}

.autoplayer-pro .text-content .read-more:hover i {
	transform: translateX(calc(100% + 5px));
}

.autoplayer-pro .logo-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70%;
	z-index: 3;
}

.autoplayer-pro .logo-wrapper .logo {
	max-width: 242px;
}

@media (min-width: 64em) {
	.autoplayer-pro .text-content .title {
		width: 418px;
		margin-bottom: var(--space-8);
	}
	.autoplayer-pro .video-control {
		width: 46px;
		height: 46px;
		font-size: var(--text-xl);
	}
	.autoplayer-pro .video-control.volume {
		font-size: 1.875rem;
	}
	.autoplayer-pro .text-content {
		left: 34px;
		padding-bottom: var(--space-5);
	}
	.autoplayer-pro.video-loaded .video-controls {
		margin-top: var(--space-6);
	}
}
