.autoplayer-pro {
    --controls-bg-hover-color: var(--violet);
    --controls-text-hover-color: var(--white);
    --text-content-bg-color: var(--primary-color-100);
    --text-color: var(--white);
    --border-color: var(--gray-100);
    position: relative;
    overflow: hidden;
    height: 30vh;
    display: flex;
}

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

.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:before {
    position: absolute;
	inset: auto 0 0 0;
	z-index: 3;
	display: block;
	height: 100px;
	background: url('/includes/public/assets/shared/dot-texture-white.svg') repeat-x right top / 1811px auto;
	content: '';
	pointer-events: none;
    left: -2px;
}

.autoplayer-pro:after {
    position: absolute;
	bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	pointer-events: none;
	content: "";
    z-index: 2;
}

.autoplayer-pro .video {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    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: 82px;
    padding: var(--space-5) 16px;
    width: calc(100% - 4rem);
    max-width: var(--width-comfortable);
    z-index: 12;
}

.contentRender_name_plugins_common_hero_video {
    position: relative;
}

.contentRender_name_plugins_common_hero_video:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at 0% 95%, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
}

.autoplayer-pro .text-content .title {
    margin-bottom: 2px;
	font-family: var(--font-montserrat);
	font-weight: var(--font-weight-black);
	font-size: 1.5rem;
	line-height: 1.2;
	text-transform: uppercase;
	color: white;
}

.autoplayer-pro .description {
    font-family: var(--font-body);
	font-weight: normal;
	font-size: var(--text-sm);
	line-height: 1.2;
	color: white;
}

.autoplayer-pro .text-content .read-more {
    display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	background: none;
	text-align: left;
	text-transform: uppercase;
	font-family: var(--font-montserrat);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-lg);
	color: var(--white);
    text-decoration: none;
    margin-top: var(--space-5);
}

.autoplayer-pro .text-content .read-more:hover,
.autoplayer-pro .text-content .read-more:focus {
    text-decoration: none;
    outline: 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(min-width:40em) {
    .autoplayer-pro .text-content {
        padding: var(--space-5) 30px;
        max-width: 542px;
    }

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

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

    .autoplayer-pro .video {
        width: 100%;
    }

    .autoplayer-pro .text-content .title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .autoplayer-pro:before {
        height: 154px;
        background-size: auto 110%;
    }
}