/*comparison*/


#comparison {
  width: 100%;
  overflow: hidden;
  position: relative; height: 100vh;
}

#comparison figure {
  position: absolute;
  background-size: cover;
  font-size: 0;
  /*width: 100%;*/
  height: 100vh;
  margin: 0;
  width: 50%;
    right: 0;
    background-position: center;

}
span.drag-text {
    position: absolute;
    top: 48%;
    z-index: 99;
    color: #000;
    text-shadow: 2px 2px #ffffff;
    left: 55%;
    font-family: 'OratorStd';
    font-weight: 500;
}

#divisor {
  background-size: cover;
  position: absolute;
  width: 50%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;
      background-position: center;
}
#divisor::before, #divisor::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: white;
  z-index: 1;
}
#divisor::before {
   /*  z-index: 1;
    content: "";
    line-height: 1;
    padding: 0.5rem;
    position: absolute;
    top: 200px;
    font-weight: normal;
    color: #fff;
    font-size: 1.11em;
    right: 250px;
    background: url(../images/kochi-caption.png) no-repeat;
    width: 346px;
    height: 142px;*/
}
#divisor::after {
  bottom: 0;
  /*box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);*/
}

#handle {
  background: url(../images/makeover.png);
    height: 260px;
    left: 50%;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 50%;
    width: 260px;
    z-index: 2;
    transform: translate3d(-50%,-50%,0);
}
/*#handle::before, #handle::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
#handle::before {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}
#handle::after {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}
*/
input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
  cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  opacity: 0;
}
input[type=range]:focus, input[type=range]:active {
  border: none;
  outline: none;

}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 280px;
    width: 280px;
    background: transparent;
    /* border: 4px solid white; */
    /* border-left: 4px dashed #fff; */
    /* box-shadow: 0 0 8px 1px rgb(0 0 0 / 30%); */
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}

