<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ba-slider {
    position: relative;
}

.ba-slider img {
    width: 100%;
    display: block;
    max-width: 1400px;
    height: 100%;
    object-fit: cover
}

.ba-slider .resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden
}

.ba-slider .handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    margin-left: -2px;
    display: block;
    background: rgba(255, 255, 255, .5);
    cursor: ew-resize
}

.ba-slider .handle:after {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -22px;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/images/ba-arrow.svg) center center / 25px 25px no-repeat;
    transition: all .3s ease;   
    transform: scale(1);
    z-index: 5;
}

.ba-slider .handle.ba-draggable:after {
    transform: scale(.8)
}</pre></body></html>