.vue-slider-rail {
  background-color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.vue-slider-dot-handle {
  width: 16px;
  height: 16px;
  background-color: config("colors.white");
  &:after {
    content: "";
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    border: 2px solid config("colors.orange");
    top: 0;
    left: 0;
    border-radius: 50%;
  }
}

.vue-slider-dot-tooltip-inner {
  background-color: config("colors.orange");
  border-color: config("colors.orange");
}

.vue-slider-mark-label {
  font-size: 11px;
  font-family: config("fonts.sans");
  color: config("colors.white");
  font-weight: config("fontWeights.medium")
}

.interface-sliders-rows {
  .vue-slider-dot {
    width: 26px !important;
    height: 26px !important;
  }
  .vue-slider-dot-handle {
    width: 26px;
    height: 26px;

    &:after {
      width: 26px;
      height: 26px;
    }
  }
}
