
.v-slider {
  position: relative;
  margin: 10px 0;
  width: 100%;
  height: 6px;
  background-color: #e4e7ed;
  cursor: pointer;
  vertical-align: middle;
  border-radius: 3px;

  .v-finished-part {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #409eff;

    &.v-disabled {
      background-color: #c0c4cc;
    }
  }

  .v-circular-part {
    position: absolute;
    top: -4px;
    width: 14px;
    height: 14px;
    border: 2px solid #409eff;
    border-radius: 50%;
    background-color: #fff;
    cursor: move;
    user-select: none;
    z-index: 2;

    &.v-disabled {
      border-color: #c0c4cc;;
      cursor: not-allowed;
    }

    &:not(.v-disabled).v-isMoving,
    &:not(.v-disabled).v-isHover {
      top: -5px;
      width: 16px;
      height: 16px;
    }

    .v-tooltip-reference {
      width: 14px;
      height: 14px;
    }
  }

  .v-stop-part {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    .v-item {
      margin: 0;
      position: absolute;
      height: 6px;
      width: 6px;
      border-radius: 50%;
      background-color: #fff;
      z-index: 1;

      .v-mark-html {
        position: absolute;
        top: 20px;
        left: 0;
        transform: translateX(-50%);

        font-size: 14px;
        color: #909399;
        font-weight: normal;
      }
    }
  }
}
