.input-custom {
  background-color: rgba(163, 169, 172, 0.16) !important;
  border-radius: 0px 0px 0px 0px !important;
  box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  border: 0 solid;
  border-color: none !important;
  /* color: #A3A9AC; */
}

.form-select {
  background-image: url("../../img/icons/inputs/caret-down-fill.svg") !important;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  appearance: none !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 10px;
  top: 35%;
  width: 30px;
  background-size: 30px 20px;
}

.dropContainer {
  border: 2px dashed rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 100%;
  height: 80%;
  min-height: 100px;
  /* padding: 15px; */
}

#inputCv {
  display: none;
}

.label-file {
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 10px;
}

input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type="range"]:focus {
  outline: none;
}

input[type="range"] {
  padding: 0;
  height: 5px;
  border-radius: 8px;
  color: #5c666f;
  background: #ebebeb;
  transition: background 2 50ms ease-in;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  background-color: #5c666f;
  width: 20px;
  height: 20px;
  transition: all 0.5s ease;
  border-radius: 50%;
  margin-top: -1px;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0px 0px 0px 8px rgba(92, 102, 111, 0.4); /* Ajustado para ser una versión más ligera del color #5C666F */
  border: 3px solid #fff;
}

input[type="range"]::-moz-range-thumb {
  background-color: #5c666f;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  transition: all 0.5s ease;
  box-shadow: 0px 0px 0px 8px rgba(92, 102, 111, 0.4); /* Ajustado para ser una versión más ligera del color #5C666F */
  border-radius: 50%;
}
input[type="range"]::-moz-range-thumb:hover {
  box-shadow: 0px 0px 0px 8px rgba(92, 102, 111, 0.4); /* Ajustado para ser una versión más ligera del color #5C666F */
}

input[type="range"]::-ms-thumb {
  background-color: #5c666f;
  width: 20px;
  height: 20px;
  transition: all 0.5s ease;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0px 8px rgba(92, 102, 111, 0.4); /* Ajustado para ser una versión más ligera del color #5C666F */
  border-radius: 50%;
}
input[type="range"]::-ms-thumb:hover {
  box-shadow: 0px 0px 0px 8px rgba(92, 102, 111, 0.4); /* Ajustado para ser una versión más ligera del color #5C666F */
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(
    to right,
    #5c666f 0%,
    #5c666f var(--webkit-fill-available),
    #ebebeb var(--webkit-fill-available),
    #ebebeb 100%
  );
}

input[type="range"]::-moz-range-progress {
  background-color: #5c666f;
}

input[type="range"]::-moz-range-track {
  background-color: #ebebeb;
}

input[type="range"]::-ms-fill-lower {
  background-color: #5c666f;
}

input[type="range"]::-ms-fill-upper {
  background-color: #ebebeb;
}
