/*
Source - https://stackoverflow.com/a
Posted by JShobbyist, modified by community. See post 'Timeline' for change history
Retrieved 2026-01-06, License - CC BY-SA 4.0
*/

.range_sliders_container {
  display: grid;
  /* Creates 3 columns of equal width (1 fraction of available space) */
  grid-template-columns: 1fr 1fr 1fr;
  /* Adds space between columns */
  gap: 5%;
}

.range_container {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin: 10px 10px;
}


.sliders_control {
  position: relative;
  padding: 20px;
  width: 70%;
}


.kpform_control {
  position: relative;
  display: flex;
  width: 90%;
  justify-content: space-between;
}



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;
}

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;
}

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;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 100%;
  position: absolute;
  background-color: #da2525;
  pointer-events: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
  top: 5px;
}
