.sliderContainer form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sliderContainer input {
  border-radius: 25px;
  margin: 5px;
}
.sliderContainer input[type=number] {
  /* flex: 10%; */
  width: 100px;
}
.sliderContainer input[type=range] {
  /* flex: 30%; */
  width: 120px;
}
.sliderContainer input[type=submit] {
  /* flex: 10%; */
  width: 80px;
  cursor: pointer;
}
/*curseur*/
.slider {
  -webkit-appearance: none;
  height: 15px;
  border-radius: 25px;
  background: silver;
  outline: none;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 15px;
  border-radius: 50%;
  background: var(--second-bg-color);;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 15px;
  border-radius: 50%;
  background: var(--second-bg-color);;
}
