.ba-slider {
    position: relative;
    overflow: hidden;
    }
.ba-slider img {
    width: 100% ;
    display:block;
    max-width: none !important;
}
.ba-slider .resize {
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}
.ba-slider .handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -22px;
    border: 3px solid white;
    border-radius: 100%;
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    z-index: 40;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    }
    
.ba-slider .handle:before, .ba-slider .handle:after {
    content: " ";
    display: block;
    background: white;
    position: absolute;
    z-index: 30;
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
        width: 3px;
    height: 9999px;
    left: 50%;
    margin-left: -1.5px;
}
.ba-slider .handle:before {
    bottom: 50%;
    margin-bottom: 22px;
    box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.ba-slider .handle:after {
    top: 50%;
    margin-top: 22px;
    box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.left-arrow, .right-arrow {
    top: 50%;
    margin-top: -6px;
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
}

.left-arrow {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}
.right-arrow {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}