.range_container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.sliders_control {
  position: relative;
  flex-grow: 1;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
}

#toSliderDesktop,
#fromSliderDesktop,
#toSliderBanner,
#fromSliderBanner,
#toSliderMobile,
#fromSliderMobile {
  position: relative;
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: auto;
  margin: 0;
  padding: 0;
  z-index: 2;
}

#fromSliderMobile,
#fromSliderDesktop {
  left: 0;
}

#toSliderDesktop,
#toSliderMobile {
  right: 0;
}

.form_control {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 1px #c6c6c6;
  margin-top: -5px;
  position: relative;
  z-index: 3;
}

input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

input[type="range"]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="number"] {
  color: #8a8383;
  width: 50px;
  height: 30px;
  font-size: 12px;
  border: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

.form_control_container__time {
  display: block;
  font-size: 12px;
  color: #635a5a;
  margin-bottom: 4px;
}
.form_control_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  align-items: center;
}

.form_control_container__time__input {
  width: 70px;
  height: 30px;
  font-size: 12px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.sliders_control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: #c6c6c6;
  border-radius: 4px;
  transform: translateY(-50%);
  z-index: 1;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  background: #c6c6c6;
  border-radius: 4px;
}
input[type="range"]::-moz-range-progress {
  background: #387bbe;
  height: 5px;
  border-radius: 4px;
}
input[type="range"] {
  accent-color: #387bbe;
}
