.contentRender_name_plugins_common_hero_video {
    --controls-bg-hover-color: var(--off-white);
    --controls-text-hover-color: var(--red);
    --text-color: var(--red);

    padding: 0 20px;
    position: relative;
    margin-bottom: 60px;
}

.contentRender_name_plugins_common_hero_video:after {
    content: '';
    height: 100%;
    width: calc(100% - 40px);
    position: absolute;
    right: 0;
    top: 20px;
    background-color: var(--blue);
    z-index: -1;
    pointer-events: none;
}

.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 592px;
    display: flex;
}

.autoplayer-pro .overlay-cont {
    position: absolute;
    width: 245px;
    height: 75px;
    bottom: 22px;
    left: 15px;
}

.autoplayer-pro .overlay-cont svg {
	position: absolute;
    bottom: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@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;
}

.contentRender_name_plugins_common_hero_video .video-controls {
    display: block;
    position: absolute;
    z-index: 3;
    right: 15px;
    bottom: -10px;
    width: fit-content;
    z-index: 12;
}

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

.contentRender_name_plugins_common_hero_video .video-control:first-child {
    margin-right: 2px;
}

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

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

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

    .contentRender_name_plugins_common_hero_video {
        padding: 30px;
    }

    .contentRender_name_plugins_common_hero_video:after {
        width: calc(100% - 60px);
        height: calc(100% - 60px);
        top: 60px;
    }

    .contentRender_name_plugins_common_hero_video .video-controls {
        bottom: 90px;
        right: 60px;
    }

    .contentRender_name_plugins_common_hero_video .video-control {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .autoplayer-pro .overlay-cont {
        width: 402px;
        height: 120px;
        left: 30px;
        bottom: 30px;
    }

    .autoplayer-pro:after {
        background: radial-gradient(at 1% 90%, rgba(0,0,0,0.7), transparent);
    }
}

