@import "lesshat";

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


.handle { /* Thin line seperator */
  visibility:hidden;
  position:absolute; 
  left:100%;
  top:0;
  bottom:0;
  width:4px;
  margin-left:-2px;
 
  background: rgba(0,0,0,.5);
  cursor: ew-resize;
}
 
.handle:after {  /* Big orange knob  */
	z-index: 99;
	/* visibility:hidden; */
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
 
    content:'\21d4';
    color:white;
    font-weight:bold;
    font-size:26px;
    text-align:center;
    line-height:44px;
 
    background: #FF3336; /* @orange */
    border:1px solid #A00002; /* darken(@orange, 5%) */
    border-radius: 50%;
    transition:all 0.3s ease;
    box-shadow:
      0 2px 6px rgba(0,0,0,.3), 
      inset 0 2px 0 rgba(255,255,255,.5),
      inset 0 60px 50px -30px #FF3336; /* lighten(@orange, 20%)*/ 
}

.draggable:after {
    width: 38px;
    height: 38px;
    margin: -16px 0 0 -16px;
    line-height:38px;
    font-size:20px;
}