.colorlib-social-icons a {
    padding-left: 10px;
}

.step-anchor .nav-item{
    width: 25%;
  }
  
  .sw-main{
    border: none;
  }
  
  
  /* CALENDAR STYLES */
  
  #days-of-month{
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 columnas para los días de la semana */
    grid-template-rows: repeat(6, 1fr);    /* 6 filas para mostrar todos los días del mes */
    gap: 10px;                             /* Espacio entre las celdas de la cuadrícula */
    max-width: 600px;                      /* Ancho máximo del calendario (ajústalo según tus necesidades) */
    margin: 0 auto; 
  }
  
  /* Estilos adicionales para las celdas del calendario (puedes personalizar según tus necesidades) */
  #days-of-month .date-month {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    transition: all .3s ease;
    border-radius: 4px;
    background-color: #fff;
  }
  
  /* Estilo para resaltar los fines de semana (por ejemplo, sábado y domingo) */
  #days-of-month .date-month:nth-child(7n), #days-of-month .date-month:nth-child(7n - 1) {
    background-color: #f2f2f2;
  }
  
  #days-of-month .last-date-month{
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    transition: all .3s ease;
    border-radius: 4px;
    color: #dfdfdf;
    background-color: #f2f2f2;
  }
  
  .month-days{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #days-of-month .date-month:hover{
    background-color: #cccccc;
  }
  
  #date-select{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
  }
  
  #mesSelector, #añoSelector{
    width: 10rem;
  }
  
  .btn-date{
    border: 1px solid #ccc;
    padding: .4rem .6rem;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #fff;
  }
  .btn-date:hover{
    background-color: #ccc;
  }
  #btn-date-back{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  #btn-date-next{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  #hoursToSchedule-content{
    margin: 1.2rem auto 0 auto;
    width: 600px;
  }
  
  #hoursToSchedule {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas con igual anchura */
    gap: 10px;
    margin: 1rem 0 0 0;
  }
  
  #hoursToSchedule > button {
    /* Estilos adicionales para los elementos dentro del contenedor */
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    transition: all .4 ease;
    border-radius: 6px;
  }
  
  #hoursToSchedule > button:hover{
    background-color: #ccc;
  }
  
  #date-data-title{
    text-align: center;
  }
  
  
  #hoursToSchedule > .selected{
    background-color: #500859;;
    color: #fff;
  }
  
  #days-of-month .selected{
    background-color: #500859;;
    color: #fff;
  }
  
  .imgs-options{
    width: 40px;
    margin: 5px;
    border-radius: 50%;
  }
  
  .legend{
    font-size: 13px;
    padding: 0 0 5px 0;
    color: #000000;
  }
  
  #pro-dont-have-hour{
    text-align: center;
    margin: 16px 0 0 0;
  }

.form-control{
    border: 0.5px solid;
}

#colorlib-work{
    background-color: #fff;
}

body{
  position: relative;
}

#svg-wsp{
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 50px;
  right: 15px;
  cursor: pointer;
  z-index: 99999999;
  height: 50px;
  width: 50px;
}

.input-custom {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  background: #fafafa;
  font-weight: 400;
  margin-bottom: 5px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
