
.rangeslider-wrap {
  padding-top: 30px;
  font-family: 'Arial' !important;
}

.rangeslider {
  position: relative;
  height: 11px;
  border-radius: 50px;
  width: 100%;
  background-color: gray;
}
.rangeslider__handle {
  transition: background-color .2s;
  transition: left .05s;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #00CD90;
  touch-action: pan-y;
  /*cursor: pointer;*/
  cursor: ew-resize ;
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: -8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), inset 0 0 0 2px white;
}
.rangeslider__handle__value {
  transition: background-color .2s,  box-shadow .1s, transform .1s;
  box-sizing: border-box;
  /*width: 90px;*/
  text-align: center;
  padding: 2px 8px;
  background-color: #00CD90;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  /*left: -12px;*/
  transform: translateX(-50%);
  left: 50%;
  top: -40px;
  position: absolute;
  white-space: nowrap;
  border-top: 1px solid #15A778;
  box-shadow: 0 -4px 1px rgba(0, 0, 0, 0.07), 0 -5px 20px rgba(0, 0, 0, 0.3);
}
.rangeslider__handle__value:before {
  transition: border-top-color .2s;
  position: absolute;
  bottom: -8px;
  left: calc(50% - 8px);
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid;
  border-top-color: #00CD90;
}
.rangeslider__handle__value:after {
  /*content: " ₦";*/
}
.rangeslider__fill {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  /*background-color: #00CD90;*/
  background-color: #96D600;
  border-radius: 50px;
  transition: all .05s;
}
.rangeslider__labels {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.rangeslider__labels__label {
  font-size: 0.75em;
  position: relative;
  padding-top: 10px;
  color: #949597;
}
.rangeslider__labels__label:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1px;
  height: 5px;
  border-radius: 1px;
  background-color: rgba(128, 128, 128, 0.5);
}
.rangeslider__labels__label:first-child:before, .rangeslider__labels__label:last-child:before {
  height: 4px;
  width: 4px;
  display: none;
}
.rangeslider__labels__label:first-child:before {
  background-color: #00CD90;
}
.rangeslider__labels__label:last-child:before {
  background-color: gray;
}
.rangeslider__labels__label:first-child {
  /*transform: translateX(-48%);*/
  top: -37px;
}
.rangeslider__labels__label:last-child {
  /*transform: translateX(48%);*/
  top: -37px;
}
.rangeslider.rangeslider--active .rangeslider__handle, .rangeslider.rangeslider--active .rangeslider__handle * {
  background-color: #12916A;
}
.rangeslider.rangeslider--active .rangeslider__handle *:before {
  border-top-color: #12916A;
}
.rangeslider.rangeslider--active .rangeslider__handle__value {
  /*transform: translateY(-5px);*/
  box-shadow: 0 -3px 2px rgba(0, 0, 0, 0.04), 0 -9px 25px rgba(0, 0, 0, 0.15);


  /*transform: translateX(-50%);*/
  /*left: 50%;*/
}
