.ba-slider {
    position: relative;
    overflow: hidden;
}
 
.ba-slider img {
    width: 100%;
    display:block;
    max-width:none;
}
 
.ba-slider .resize {
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}


.ba-slider .handle { /* Thin line seperator */
  position:absolute; 
  left:50%;
  top:0;
  bottom:0;
  width:4px;
  margin-left:-2px;
 
  background: rgba(189,154,104,.5);
  cursor: ew-resize;
}
 
.ba-slider .handle:after {  /* Big orange knob  */
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
 
    content:'\27F7';
    color:white;
    font-weight:bold;
    font-size:26px;
    text-align:center;
    line-height:50px;
 
    background: #BD9A68; /* @orange */
	background: rgba(189,154,104,.8);
    border: 2px solid #a8895c; /* darken(@orange, 5%) */
    border-radius: 50%;
    transition:all 0.3s ease;

}

.ba-slider .handle.ba-draggable:after {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    line-height:40px;
    font-size:20px;
}
