

.scrollVideo_widget {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0px;
    height: 0px;
    border-radius: 15px;
    background: #ffffff86;
    transition: all 0.3s ease;
    z-index: 999;
}

.scrollVideo_widget.progressActive {
    width: 10px;
    height: 100px;
}



.scrollVideo_widget .progressBar {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0;
}

.scrollVideo_widget.progressActive .progressBar {
    opacity: 1;
}

.scrollVideo_widget .progressBar .progress {
    width: 100%;
    height: 0%;
    top: 0;
    position: absolute;
    background: #fff;
    border-radius: 15px;
}


.scrollVideo_widget.refreshActive {
    width: 40px;
    height: 40px;
    background: #ffffffa6;
}

.scrollVideo_widget .refreshBar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.scrollVideo_widget .refreshBar i {
    font-size: 16px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.scrollVideo_widget.refreshActive:hover {
    background: #fff;
}

.scrollVideo_widget.refreshActive .refreshBar {
    opacity: 1;
}

.fade-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
    pointer-events: none; 
    opacity: 1; 
    transform: translateY(0);
}

.scrollVideoSmoothAsset {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1; 
    pointer-events: none; 
    opacity: 1; 
    transform: translateY(0);
}

.scrollVideoSmoothAsset.smoothAssetPos3 {
    top: unset;
    bottom: -2px;
    transform: rotate(180deg) translateY(0);
}



.scrollVideoSmoothAsset .smoothAssets {
    position:relative;
    width: 100%;
    height: 100%;

}

.scrollVideoSmoothAsset img {
    position: absolute;
    width: 100%;
    
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.video-background,
.video-background-landing,
.video-background-whowe,
.video-background-warehouse,
.video-background-transport {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.scrollVideo_widget .progress {
    transform-origin: bottom;
    will-change: height, transform;
    backface-visibility: hidden;
    -webkit-transform-origin: bottom;
    -webkit-backface-visibility: hidden;
    transition: height 0.05s linear;
}

.scroll-video-fade-overlay {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: opacity;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.scrollVideoSmoothAsset {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}



@media (prefers-reduced-motion: reduce) {
    .video-background,
    .video-background-landing,
    .video-background-whowe,
    .video-background-warehouse,
    .video-background-transport {
        will-change: auto;
    }
    
    .scroll-video-fade-overlay,
    .scrollVideo_widget .progress {
        transition: none;
        will-change: auto;
    }
}

.video-container {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

@supports (container-type: inline-size) {
    .video-container {
        container-type: inline-size;
    }
}
