.rangeslider,
.rangeslider__fill {
  display: inline-block;
  
}

.rangeslider {
  background: #e6e6e6;
  position: relative;
}

.rangeslider--horizontal {
height: 30px;
width: 100%;
background: transparent;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider__fill {
  position: absolute;
border-radius: 0px;
margin-left: 10px;
}
.rangeslider--horizontal .rangeslider__fill {
top: 35%;
height: 3px;
background: #f8a516;z-index:5999;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider__empty{top: 35%;
height: 3px;
background: #808282;
position: absolute;
z-index: 0;
width: 94%;
margin-left: 10px;}
.rangeslider__handle {z-index:5000;
  
  border: none;
  cursor: pointer;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#45c2ff+0,007ebb+100 */
background: #f8a417; /* Old browsers */

  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.rangeslider__handle:active {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#45c2ff+0,007ebb+100 */
background: #45c2ff; /* Old browsers */
background: -moz-linear-gradient(-45deg,  #45c2ff 0%, #007ebb 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  #45c2ff 0%,#007ebb 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  #45c2ff 0%,#007ebb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45c2ff', endColorstr='#007ebb',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}
.rangeslider--horizontal .rangeslider__handle {
  top: 5px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}
