.autoplayer-pro {
    --controls-bg-hover-color: var(--gray-100);
    --controls-text-hover-color: var(--orange);
    --text-content-bg-color: var(--primary-color-100);
    --text-color: var(--gray-100);
    --border-color: var(--gray-100);
    position: relative;
    overflow: hidden;
    height: 80vh;
}

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

.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.85) 0%, rgba(0,0,0,0) 40%);
    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: 40px;
    height: 40px;
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--border-color);
    cursor: pointer;
}

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

.autoplayer-pro .video-control:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--controls-bg-color);
    outline: none;
}

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

.autoplayer-pro .text-content .title {
    font-family: var(--font-bevan);
    font-size: 1.563rem;
	text-transform: capitalize;
    font-weight: normal;
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
    color: var(--text-color);
}

.autoplayer-pro a {
    font-weight: normal;
}

.autoplayer-pro .description {
    font-family: var(--font-closeone);
    font-size: 1.125rem;
    color: var(--text-color);
	max-width: 90%;
    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: 700;
}

.autoplayer-pro .text-content .read-more:hover,
.autoplayer-pro .text-content .read-more:focus {
    text-decoration: underline;
    outline: none;
}

.autoplayer-pro .description.link {
	position: relative;
}
.autoplayer-pro .description.link::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -50px;
	display: block;
	width: 28px;
	height: 28px;
	background: url("https://res.cloudinary.com/simpleview/image/upload/v1621573380/right-arrow_lj0uyn.png") no-repeat center / contain; 
	transition: all .3s;
}

.autoplayer-pro .text-content a {
	color: var(--white);
	text-decoration: none;
}


@media (hover: hover) {
	.autoplayer-pro .text-content .title:hover,
	.autoplayer-pro .text-content.link:hover,
	.autoplayer-pro .text-content.link a:hover {
		text-decoration: none;
		color: var(--white);
	}
	.autoplayer-pro .text-content.link:hover .description.link::after{ right: -65px; } 
}

@media (min-width: 40em) {
	.autoplayer-pro .text-content { max-width: 60%; }
	.autoplayer-pro .text-content .title { font-size: 2.188rem; }
	.autoplayer-pro .description {
		position: relative;
		max-width: 32ch;
		font-size: 1.25rem;
	}

	.autoplayer-pro .description.link::after {
		top: -5px;
		right: -40px;
		width: 35px;
		height: 100%;
	}
	@media (hover: hover) {
		.autoplayer-pro .text-content:hover .description.link::after{ right: -55px; } 
	}
}

@media (min-width: 64em) {
	.autoplayer-pro .text-content .title {
		font-size: 3.125rem;
		line-height: 1;
		letter-spacing: -2.5px;
	}
	.autoplayer-pro .description {
		font-size: 1.563rem;
		line-height: 1.12;
	}
	.autoplayer-pro .text-content {
		max-width: 50%;
		padding: 50px 30px;
	}
}

.autoplayer-pro::before {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0;
	right: 0;
	z-index: 15;
	display: block;
	height: 20px;
	background: var(--border-featured-events-3);
	background-position: bottom;
	background-size: 101% 100%;
	background-repeat: no-repeat;
}