<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-dd-container{
    width: 100%;
}

.video-dd-wrapper{
    width: 100%;
    display: flex;
}

.sml-video{
    width: 20%;
    align-self: center;
    height: 75%;
    overflow: hidden;
}

.sml-video video{
    width: 500%;
}

.big-video{
    width: 50%;
    overflow: hidden;
    margin: 0 16px;
    
}

.left-video video{
    transform: translate(-4%,-12.5%);
}
.right-video video{
    transform: translate(-76%,-12.5%);
}

.big-video video{
    transform: translate(-25%,0);
}

video {
    width: 200%;
}

.video-section{
    width: 70%;
    display: flex;
    justify-content: center;
}

.video-dd-scroller{
    width: 15%;
}

.video-dd-scroller{
    display: flex;
    align-items: center;
}
.video-scroller-wrapper{
    width: 100%;
    transform: rotate(270deg) translateX(40%);
}

.video-dd-text-scroller{
    font-weight: 600;
    
    width: 100%;
    color: var(--wp--preset--color--white);
}

@keyframes fill{

    0%{
        width: 20%;

    }

    60%{
        width: 100%;


    }

    100%{
        width: 20%;


    }
}

.video-dd-scroller-container{
    width: 100%;
    height: 2px;
    background-color: rgba(255,255,255,.5);
    position: relative;
}

.video-dd-scroller-container-filler{
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    top: 0;
    right: 0;
    animation: fill 3s   infinite  ;
}
.dd-img{
    display: none;
}
@media (max-width:1024px){
    
}

@media (max-width:576px){
    .video-scroller-wrapper{
        display: none;
    }
    .video-section{
        display: none;
    }
    .dd-img{
        display: flex;
        padding: var(--container-space);
    }
}</pre></body></html>