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

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

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

.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 {
    content: "";
    display: block;
    /* background-image: url(/includes/public/assets/shared/bottom-brush-effect.svg); */
    background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/discoverlehighvalley/brush_texture_bottom_b5d8166a-7b8a-41ac-8b86-b5cd23d608fb.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 3;
}

.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) 100%);*/
    pointer-events: none;
    z-index: 2;
}

.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 .logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 96px;
    z-index: 3;
}

@media screen and (min-width: 64em) {
    .autoplayer-pro .logo-wrapper {
        margin-top: 162px;
    }
}

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

@media screen and (min-width: 64em) {
    .autoplayer-pro .logo-wrapper .logo {
        max-width: 342px;
    }
}

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

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

.autoplayer-pro.video-loaded .video-controls i {
    font-size: 22px;
}

.autoplayer-pro .video-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 46px;
    height: 46px;
    color: var(--text-color);
    border: none;
    background-color: var(--controls-bg-color);
    cursor: pointer;
}

.autoplayer-pro .video-control:first-child {
    margin-right: var(--space-4);
}

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

.autoplayer-pro .content-section {
    margin-bottom: 20px;
}

.autoplayer-pro .content-section .slide-title {
    font-family: 'Gilroy W05 Bold', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
    pointer-events: all;
}

.autoplayer-pro .content-section .slide-title a {
    color: #fff;
}

.autoplayer-pro .content-section .description {
    font-family: 'adelle sans', sans-serif;
    font-weight: normal;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 12px;
}

.autoplayer-pro .content-section .read-more {
    font-family: 'rooney-web', serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-color);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    text-decoration: none;
    pointer-events: all;
}

.autoplayer-pro .content-section .slide-title a:hover,
.autoplayer-pro .content-section .read-more:hover {
    text-decoration: underline;
}

.autoplayer-pro .content-section .fas.fa-chevron-right {
    margin-left: 8px;
}

@media screen and (min-width: 64em) {
    .autoplayer-pro .text-content {
        bottom: 10px;
        padding-left: 84px;
        padding-bottom: 45px;
    }
    
    .autoplayer-pro .content-section {
        margin-bottom: 50px;
    }
    
    .autoplayer-pro .content-section .slide-title {
        font-size: 38px;
    }
    
    .autoplayer-pro .content-section .description {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .autoplayer-pro .content-section .read-more {
        font-size: 1rem;
    }
}