.slider {
  width: 100%;
}
#location-slider-wrapper {
  width: calc(100% - 70px);
  -webkit-appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
/*#location-slider:after {*/
  /*content: '';*/
  /*position: absolute;*/
  /*right: 0;*/
  /*height: 2em;*/
  /*width: 2px;*/
  /*top: 100%;*/
  /*background: #d3d3d3;*/
/*}*/
/*#location-slider:before {*/
  /*content: '';*/
  /*position: absolute;*/
  /*left: 0;*/
  /*height: 2em;*/
  /*width: 2px;*/
  /*top: 100%;*/
  /*background: #d3d3d3;*/
/*}*/

.rangeslider,
.rangeslider__fill {
  display: block;
  height: .5em;
}

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

.rangeslider--horizontal {
  width: 100%;
}

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

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

.rangeslider__fill {
  background: #0db14b;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  width: 1em;
  height: 2em;
  background: #0db14b;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.4);
}


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

.rangeslider__handle__value {
  top: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #0db14b;
}
.rangeslider__handle__value:before {
  content: '';
  position: absolute;
  height: 1.2em;
  width: 2px;
  bottom: 100%;
  background: #d3d3d3;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
}
.rangeslider__handle__value:after {
  content: 'miles';
  padding-left: 5px;
}

