.bfa-container-a89f1560 {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
    border-radius: var(--bfa-border-radius, 10px);
    --bfa-transition-speed: 100ms;
}
.bfa-container-a89f1560::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}
.bfa-container-a89f1560 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.bfa-before-a89f1560, .bfa-after-a89f1560 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bfa-before-a89f1560 {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path var(--bfa-transition-speed) ease-out;
}
.bfa-after-a89f1560 {
    z-index: 1;
}
.bfa-label-a89f1560 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
    font-size: 14px;
}
.bfa-label-before-a89f1560 {
    left: 20px;
}
.bfa-label-after-a89f1560 {
    right: 20px;
}
.bfa-divider-a89f1560 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    transition: left var(--bfa-transition-speed) ease-out;
}
.bfa-handle-a89f1560 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.bfa-handle-a89f1560::before, .bfa-handle-a89f1560::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}
.bfa-handle-a89f1560::before {
    border-width: 5px 6px 5px 0;
    border-color: transparent #333 transparent transparent;
    margin-right: 2px;
}
.bfa-handle-a89f1560::after {
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #333;
    margin-left: 2px;
}