/* Based on https://github.com/jotform/before-after.js, The MIT License (MIT) Copyright (c) 2015 JotForm */
@keyframes slideOverlay {
  from {
    width: 50%;
  }
  40% {
    width: 50%;
  }
  55% {
    width: 45%;
  }
  85% {
    width: 55%;
  }
  to {
    width: 50%;
  }
}
@keyframes slideHandle {
  from {
    left: 50%;
  }
  40% {
    left: 50%;
  }
  55% {
    left: 45%;
  }
  85% {
    left: 55%;
  }
  to {
    left: 50%;
  }
}
.slider-holder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.slider-holder .resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  animation-duration: 4s;
  animation-name: slideOverlay;
}
.slider-holder .handle {
  /* Thin line seperator */
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: rgba(0, 0, 0, 0.5);
  cursor: ew-resize;
  animation-duration: 4s;
  animation-name: slideHandle;
}
.slider-holder .handle .handle-icon {
  /* Big orange knob  */
  position: absolute;
  top: 50%;
  margin: -17px 0 0 -17px;
  color: #fff;
  background: #f7931e;
  padding: 8px;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  border-radius: 40px;
}
.slider-holder .handle.ba-draggable:after {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  line-height: 50px;
  font-size: 30px;
}
.slider-holder .slider-image-holder {
  min-height: 24rem;
  background-size: cover;
  height: 100%;
  background-position: center top;
}

/*# sourceMappingURL=slider.css.map */
