.ba-container-de662837 {
    position: relative;
    width: 100%;
    overflow: hidden;
    --position: 50%;
    --slider-color: #ffffff;
    --slider-thickness: 2px;
    --handle-size: 30px;
    display: flex; /* ensures container fits image size */
}
.ba-image-de662837 {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.ba-image-before-de662837 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}
.ba-slider-de662837 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
    z-index: 10;
    appearance: none; /* needed for some browsers */
}
.ba-line-de662837 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: var(--slider-thickness);
    background: var(--slider-color);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ba-handle-de662837 {
    width: var(--handle-size);
    height: var(--handle-size);
    background: var(--slider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.ba-handle-de662837::before,
.ba-handle-de662837::after {
    content: '';
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 10%;
}
.ba-handle-de662837::before {
    transform: rotate(135deg);
    margin-right: 10%;
}
.ba-handle-de662837::after {
    transform: rotate(-45deg);
    margin-left: 10%;
}
.ba-labels-de662837 span {
    position: absolute;
    top: 15px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    z-index: 4;
    pointer-events: none;
}
.ba-label-before-de662837 { left: 15px; }
.ba-label-after-de662837 { right: 15px; }
