
.custom-bg-checkbox{
    background-color: #DEDEDE !important;
}
.custom-checkbox-days {
    display: inline-flex;
    cursor: pointer;
    border: 1px #CECECE solid;
    border-radius: 7px;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 50px;
    padding-left: 15px;
    padding-top: 6px;
    background-color: white;
    width: max-content;
    padding-right: 25px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.custom-checkbox-days input[type="checkbox"] {
    display: none; /* Ocultar el checkbox original */
}

.custom-checkbox-days label {
    display: flex;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    justify-content: flex-start;
    justify-items: center;
    align-content: flex-start;
    align-self: center;
    height: 23px;
    color: #414141;

}

.custom-checkbox-days label i {
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
}

.custom-checkbox-days label i.fa-circle {
    color: #707070; /* Color del icono sin seleccionar */
}

.custom-checkbox-days label i.fa-check-circle {
    color: #707070; /* Color del icono seleccionado */
    display: none; /* Ocultar el icono seleccionado por defecto */
}

.custom-checkbox-days input[type="checkbox"]:checked + label i.fa-circle {
    display: none; /* Ocultar el icono sin seleccionar cuando está seleccionado */
}

.custom-checkbox-days input[type="checkbox"]:checked + label i.fa-check-circle {
    display: block; /* Mostrar el icono seleccionado cuando está seleccionado */
}

.time-input {
    width: 50px;
    text-align: center;
}
.custom-time{
    display: inline-flex;
    margin: 20px 0px 0px 0px;
    width: 61px;
}
.i_up i, .i_down i{
    cursor: pointer;
}
.i_up{
    position: relative;
    top: -28px;
    left: 32px;
    color: var(--default);
}
.i_down{
    position: relative;
    left: -31px;
    top: 50px;
    color: var(--default);
}
.dot-dot{
    position: relative;
    top: 10px;
    left: 8px;
    font-weight: 700;
}


.custom-select {
  position: relative;
  display: inline-block;
  width: 260px;
  border: 1px solid #cee6f5 !important;
}

.custom-select select:focus-visible {
    border: 0px;
    outline: -webkit-focus-ring-color auto 0px;
}
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  padding: 5px 25px 5px 5px;
  font-size: 16px;
  width: 245px;
  background-color: #ffffff;
}

.custom-select i {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Estilos adicionales para el ícono de Font Awesome */
.custom-select i:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078"; /* Código del ícono de flecha hacia abajo */
  color: var(--default);
}

