.doubleRangeInput-container {
  --slider-height: 16px;

  position: relative;
  height: var(--slider-height);
}

.doubleRangeInput-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
  border: 2px solid #4061f0
}

.doubleRangeInput-container input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
  border: 2px solid #4061f0
}

.doubleRangeInput-container input[type="range"] {
  -webkit-appearance: none; 
  appearance: none;
  height: var(--slider-height);
  width: 100%;
  position: absolute;
  background: #4061f0;
  pointer-events: none;
}

.doubleRangeInput-container input[type="range"]:first-child {
  height: 0;
  top: 8px;
  z-index: 1;
}
