.slider-container,
.slider-container > img,
.slider-container > .resize > img,
.slider-container > .resize > .resizable-element {
  height: 100%;
}

.ba-slider {
    position: relative;
    overflow: hidden;
}
 
.ba-slider img,
.ba-slider .resizable-element {
    width: 100%;
    display:block;
    max-width:none;
    height: 100%;
}
 
.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(23, 43, 76, 0.65);
  border-color: rgba(23, 43, 76, 0.65);
  cursor: pointer;
}
 
.ba-slider .handle:after {  /* Big orange knob  */
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  font-family: fontAwesome;
  content: "\f142";
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 64px;
  background: inherit;
  border: 3px solid;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 29px;
  padding-left: 4px;
  cursor: pointer;
  border-color: inherit;
}

.ba-slider .handle.ba-draggable:after {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    line-height: 46px;
    font-size: 20px;
    padding-left: 3px;
}
