.advContentSubHeader {
	margin-bottom: 10px;
}

.range_container {
  width: 100%;
  margin: 5px 0px 10px 0px;
}

.sliders_control {
  position: relative;
  min-height: 5px;
  width:100%;
}

.adv_form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #444444;
  margin-top: 10px;
}

.adv_form_control_sgl {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 10px;
  color: #444444;
}

multi-range input[type=range]::-webkit-slider-thumb { /* applies styling to slider thumbs */
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  width: 20px;
  height: 20px;
  background-color: #0046AD;
  border-radius: 100%;
  cursor: pointer;
  transition: all .2s ease;
}

multi-range input[type=range]::-moz-range-thumb { /* applies styling to slider thumbs */
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  width: 20px;
  height: 20px;
  background-color: #0046AD;
  border-radius: 100%;
  cursor: pointer;
  transition: all .2s ease;
}

multi-range input[type=range]::-webkit-slider-thumb:hover { /* applies styling to slider thumbs on hover*/
  background: #336bbd;
}

multi-range input[type=range]::-webkit-slider-thumb:active { /* applies styling to slider thumbs when active*/
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #336bbd;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #336bbd;
}

multi-range input[type="number"] {
  color: #666666;
  width: 50px;
  height: 13px;
  font-size: 10px;
  border: none;
}

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

multi-range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #C6C6C6;
  pointer-events: none;
  padding-left: 15px;
  z-index: 1;
}

multi-range input[type="range"].fromSlider {
  height: 0;
  z-index: 2;
  padding-left: 0;
  padding-right: 15px;
  top: 1.5px;
}

