.dual-slider-element {
  width: 100%;
  margin: 20px 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.dual-slider-container {
  position: relative;
  height: 40px;
  margin-bottom: 10px;
  display: block;
}

.dual-slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background-color: #ddd;
  border-radius: 3px;
  transform: translateY(-50%);
  z-index: 0;
  cursor: pointer;
}

.dual-slider-range {
  position: absolute;
  height: 100%;
  background-color: #3498db;
  border-radius: 3px;
  z-index: 1;
}

.dual-slider-thumb {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
  z-index: 3;
  background: #3498db;
}
.dual-slider-thumb:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  background: #2980b9;
}
.dual-slider-thumb:active {
  transform: translateY(-50%) scale(1.2);
}
.dual-slider-thumb-first {
  z-index: 4;
}
.dual-slider-thumb-second {
  z-index: 3;
}

.dual-slider-input-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
}
.dual-slider-input-hidden:focus + .dual-slider-track .dual-slider-thumb-first,
.dual-slider-input-hidden:focus ~ .dual-slider-track .dual-slider-thumb-first,
.dual-slider-input-hidden:focus + .dual-slider-track .dual-slider-thumb-second,
.dual-slider-input-hidden:focus ~ .dual-slider-track .dual-slider-thumb-second {
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.dual-slider-labels {
  position: relative;
  height: 0;
}

.dual-slider-label {
  position: absolute;
  bottom: 50px;
  min-width: 40px;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}
.dual-slider-label-content {
  background: #3498db;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dual-slider-label-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #3498db;
}
.dual-slider-label-first .dual-slider-label-content {
  background: #3498db;
}
.dual-slider-label-first .dual-slider-label-arrow {
  border-top-color: #3498db;
}
.dual-slider-label-second .dual-slider-label-content {
  background: #3498db;
}
.dual-slider-label-second .dual-slider-label-arrow {
  border-top-color: #3498db;
}/*# sourceMappingURL=vue.dual.slider.element.css.map */