.autoplayer-pro {
	--controls-bg-hover-color: var(--white);
	--controls-text-hover-color: var(--dark-blue);
	--text-content-bg-color: var(--white);
	--text-color: var(--white);
	--border-color: var(--white);
	
	position: relative;
	overflow: hidden;
	height: 440px;
	display: flex;
}

@media (min-width: 40em) {
	.autoplayer-pro {
		height: 568px;
	}
}

@media (min-width: 64em) {
	.autoplayer-pro {
		height: 800px;
	}
}

.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:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 100%);
	pointer-events: none;
	z-index: 10;
}

.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;
	margin-bottom: var(--space-4);
}

.autoplayer-pro.video-loaded .video-controls {
	display: block;
}

.autoplayer-pro .video-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 38px;
	height: 38px;
	color: var(--text-color);
	border: none;
	border-radius: 50%;
	background-color: transparent;
	border: 2px solid var(--border-color);
	cursor: pointer;
}

@media (hover: hover) {
	.autoplayer-pro .video-control:hover {
		background-color: var(--controls-bg-hover-color);
		color: var(--controls-text-hover-color);
	}
}

.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;
	left: 0;
	bottom: 0;
	padding: var(--space-8) var(--space-5);
	width: calc(100% - 4rem);
	max-width: var(--width-comfortable);
	z-index: 12;
}

.autoplayer-pro .video-logo-wrapper {
	position: absolute;
	z-index: 14;
	right: 0;
	bottom: 0;
	padding: var(--space-8) var(--space-5);
}

.autoplayer-pro .video-logo-wrapper img {
	width: 180px;
	height: 40px;
}

.autoplayer-pro .text-content .title {
	font-family: var(--font-display);
	font-size: 2.125rem;
	font-weight: 400;
	margin-bottom: var(--space-2);
	line-height: var(--leading-none);
	color: var(--text-color);
	text-transform: lowercase;
}

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

.autoplayer-pro .text-content .read-more {
	display: inline-block;
	padding: 10px 14.5px 8px;
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--sw-button-primary-color);
	text-decoration: none;
	border-radius: var(--rounded-full);
	background-color: var(--sw-button-primary-bg);
	text-transform: uppercase;
	letter-spacing: 0.086em;
	line-height: var(--leading-none);
}

.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 (hover: hover) {
	.autoplayer-pro .text-content .read-more:hover,
	.autoplayer-pro .text-content .read-more:focus {
		text-decoration: none;
		outline: none;
		background-color: var(--teal-hover);
	}
}

@media (min-width: 64em) {
	.autoplayer-pro .video-control {
		width: 50px;
		height: 50px;
		font-size: var(--text-xl-1);
	}

	.autoplayer-pro .text-content {
		padding-left: var(--space-12);
		padding-right: var(--space-12);
	}

	.autoplayer-pro .text-content .title {
		font-size: var(--text-7xl);
	}
	
	.autoplayer-pro .description {
		font-size: var(--text-lg);
	}

	.autoplayer-pro .text-content .read-more {
		padding: 12px 20px 8px;
		font-size: var(--text-sm);
		letter-spacing: 0.11em;
	}
}