.rangeslider,
.rangeslider__fill {
  display: block;
  border-radius: 8px;
}

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

.rangeslider--horizontal {
  height: 8px;
  width: 100%;
}

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

.rangeslider--disabled {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.rangeslider__fill {
  background: #216dfa;;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider__handle {
  position: absolute;
  text-align: center;
  bottom: -3px;
  width: 12px;
  height: 18px;
  cursor: pointer;
}
.rangeslider__handle::after,
.rangeslider__handle::before{
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  float: left;
}
.rangeslider__handle::before{
  bottom: 0;
  margin-left: -7px;
  width: 12px;
  height: 12px;
  background: #216dfa;
  border-radius: 4px 4px 14px 14px;
}
.rangeslider__handle::after{
  width: 0;
  height: 0;
  margin-left: -6px;
  top: -4px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgba(38, 114, 255,1) transparent;
}