.has-autoplayer-widget.video-loaded .homepage-highlights-panel .hero .inner {
    height: auto;
}

.has-autoplayer-widget.video-loaded .homepage-highlights-panel .hero .inner,
.has-autoplayer-widget.video-loaded .homepage-highlights-panel .hero .inner .autoplayer-pro {
    height: 100%;
}

.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%;
    width: 100%;
}

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

.autoplayer-pro .poster {
    position: absolute;
    z-index: 1;
    display: block;
    object-fit: cover;
    filter: blur(20px);
}

.autoplayer-pro .fallback.loaded .poster {
    filter: none;
}

.autoplayer-pro .video {
    position: absolute;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0,0,0.3,1);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.autoplayer-pro.video-loaded .video {
    opacity: 1;
}

.autoplayer-pro .video-controls {
    display: none;
    margin-bottom: 1rem;
}

.autoplayer-pro.video-loaded .video-controls {
    display: inline-flex;
    margin: 0px -5px 1rem;
}

.autoplayer-pro .video-control {
	display: inline-flex;
	align-items: center;
    justify-content: center;
    margin: 0px 5px;
    padding: 0;
	width: 30px;
	height: 30px;
    color: #fff;
    border: none;
	border-radius: 50%;
    background-color: #e40046;
    cursor: pointer;
}

.autoplayer-pro .video-control:hover {
	background-color: #dbe442;
}

.autoplayer-pro .video-control:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #203f99;
    outline: none;
}

.autoplayer-pro .video-control .fa-play {
    margin-left: 2px;
}

.autoplayer-pro .text-content {
   position: absolute;
   z-index: 3;
   left: 0;
   bottom: 70px;
   padding: 2rem;
   width: calc(100% - 4rem);
   max-width: 450px;
   background-color: #272667;
}

@media (min-width: 1024px) {
    .autoplayer-pro .text-content {
        bottom: 180px;
    }
}

.autoplayer-pro .text-content .title {
    color: #fff;
    font-weight: bold;
    font-family: proxima-nova, sans-serif;
    font-size: 19px;
    line-height: 27px;
    text-transform: uppercase;
}

.autoplayer-pro .text-content .description {
    margin-bottom: 0;
    color: white;
}

.autoplayer-pro .text-content .read-more {
   font-weight: 600;
   color: #dbe442;
   pointer-events: all;
   font-family: ibm-plex-sans-condensed, sans-serif;
   text-transform: uppercase;
   font-size: 15px;
   line-height: 27px;
   letter-spacing: 2px;
}

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

.autoplayer-pro .text-content .mobile-collapse {
    display: none;
}

@media (max-width: 641px) {
    .slideshow-container.has-autoplayer-widget .homepage-highlights-panel .hero.highlight .scroll-circle {
        display: none;
    }
    .autoplayer-pro .text-content .description,
    .autoplayer-pro .text-content .read-more {
        display: none;
    }
    .autoplayer-pro .text-content .video-controls {
        margin-bottom: 10px;
    }
    .autoplayer-pro .text-content {
        padding: 10px 40px 10px 20px;
        bottom: 20px;
        width: auto;
        max-height: 90px;
        transition: all 500ms;
        transition-delay: 0ms;
    }
    .autoplayer-pro .text-content .mobile-collapse {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 5px 10px;
        height: 100%;
        background: transparent;
    }
    .autoplayer-pro .text-content .mobile-collapse i {
        transform: rotate(0);
        transition: transform 400ms;
        transition-delay: 0ms;
    }
    .autoplayer-pro .text-content .title {
        transform: translate(0);
        transition: transform 600ms;
    }
    .autoplayer-pro .text-content.collapse {
        padding: 10px 30px 10px 10px;
        max-width: 115px;
        max-height: 50px;
        transition: all 400ms;
        transition-delay: 300ms;
    }
    .autoplayer-pro .text-content.collapse .title {
        transform: translateX(-300%);
    }
    .autoplayer-pro .text-content.collapse .mobile-collapse i {
        transform: rotateZ(180deg);
        transition-delay: 300ms;
    }
}