* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
.v-slider {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #ebedf0;
  border-radius: 999px;
  cursor: pointer;
  margin: 30px 0;
  user-select: none;
}
.v-slider *:focus {
  outline: none;
}
.v-slider:before {
  position: absolute;
  top: -8px;
  right: 0;
  bottom: -8px;
  left: 0;
  content: '';
}
.v-slider-bar {
  position: relative;
  width: 0%;
  height: 100%;
  background-color: #1989fa;
  border-radius: inherit;
  transition: all 0.2s;
}
.v-slider__button-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(50%, -50%, 0);
  transform: translate3d(50%, -50%, 0);
  cursor: grab;
}
.v-slider__button {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}