.range_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px auto;
}

.sliders_control {
  position: relative;
  min-height: 10px;
  padding: 0px 0px 15px 0px; 
}

.form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #635a5a;
}

.dual_range_header {
  padding: 0px 0px 15px 0px; 
}

.dual_range_slider::-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;
}

.dual_range_slider::-moz-range-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;  
}

.dual_range_slider::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

.dual_range_slider::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

.dual_range_input {
  color: #8a8383;
  font-size: 12px;
  border: none;
}

.dual_range_slider {
  -webkit-appearance: none; 
  appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
}
