
.lumen-wrap {

  position: relative;
  height: 100%;
  width: 100%;
}
.lumen-wrap::before, .lumen-wrap::after {
  display: block;
  position: absolute;
  z-index: 99;
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 1;
  pointer-events: none;
}

.lumen-wrap::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/icon/brightness.webp');
  background-size: cover;
  width: 40px; /* Spécifiez la largeur de l'image */
  height: 40px; /* Spécifiez la hauteur de l'image */
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.volume-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.volume-wrap::before, .volume-wrap::after {
  display: block;
  position: absolute;
  z-index: 99;
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 1;
  pointer-events: none;
}

.volume-wrap::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/icon/volume.png');
  background-size: cover;
  width: 35px; /* Spécifiez la largeur de l'image */
  height: 35px; /* Spécifiez la hauteur de l'image */
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

input[type=range] {
  cursor: pointer;
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: 120px;
  height: 50px;
  transform: translate(-50%, -50%) rotate(-90deg);
  border-radius: 1rem;
  overflow: hidden;
  cursor: row-resize;
}
input[type=range][step] {
  background-color: transparent;
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) calc(12.5% - 1px), #05051a 12.5%);
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  box-shadow: -20rem 0 0 20rem rgb(255, 255, 255);
}
input[type=range]::-moz-range-thumb {
  border: none;
  width: 0;
  box-shadow: -20rem 0 0 20rem rgba(255, 255, 255, 0.2);
}