.breadcrumb_description{
    color: #fff;
}

/* before and after slider */
/* WRAPPER */
.ba-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

/* IMAGES */
.ba-image {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* OVERLAY (BEFORE IMAGE) */
.ba-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* default */
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

/* SLIDER LINE */
.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ffffff;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

/* HANDLE */
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* HANDLE ICON (optional arrows) */
.ba-handle::before,
.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border: solid #000;
    border-width: 2px 2px 0 0;
}

.ba-handle::before {
    left: 10px;
    transform: translateY(-50%) rotate(135deg);
}

.ba-handle::after {
    right: 10px;
    transform: translateY(-50%) rotate(-45deg);
}

/* HOVER EFFECT */
.ba-wrapper:hover .ba-handle {
    transform: translate(-50%, -50%) scale(1.1);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .ba-handle {
        width: 35px;
        height: 35px;
    }
}