.range_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* margin: 10px; */
  margin-top: 20px;
}

.sliders_control {
  position: relative;
  min-height: 20px;
}

.form_control {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: #635a5a;
}

.form_control_container{
  text-align: center;
  display: flex;
}

.form_control_container__time{
  width: 50px;
}

.inp_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;
}

input[type=range]::-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;  
}

.inp_range::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

.inp_range::-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;
}

.form_control_container__time__input {
  color: #8a8383;
  width: 65px;
  height: 30px;
  font-size: 14px;
  border: none;
  text-align: center;
}

/* .form_control_container__time__input::-webkit-inner-spin-button, 
.form_control_container__time__input::-webkit-outer-spin-button {  
   opacity: 1;
} */

.inp_range {
  -webkit-appearance: none; 
  appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
}