/* El viewport del carrusel */
#calendar-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Contenedor interno que se desplazará */
#calendar {
    transition: transform 0.5s ease;
}

.calendar{
    display: flex;
    width: 100%;
    color: #676b70;
    z-index: 100;
    /* overflow: scroll; */
}

.calendar__el{
    min-width: 100%;
    padding: 10px;
}

.calendar__month{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #16191c;
}

.calendar__a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 18px;
    border-radius: 50%;
    color: #0e0e0e;
}

.calendar__a.calendar__active-r,
.calendar__a.calendar__active-l{
    cursor: pointer;
}

.calendar__el:first-child .calendar__month .calendar__a:first-child,
.calendar__el:last-child .calendar__month .calendar__a:last-child{
    color: #969696;
}

.calendar__days{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar__days:nth-child(2){
    border-bottom: 1px solid #eaeaea;
}

.calendar__day{
    padding: 5px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #0e0e0e;
}

.calendar__day-number{
    padding: 4px 0;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    font-weight: normal;
    color: #333;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0);
}

.calendar__day-number-span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-radius: 50%;
}

.calendar__day-number.disabled .calendar__day-number-span{
    color: #94979c;
}

.calendar__day-number.current .calendar__day-number-span{
    color: #186cdf;
}

.calendar__day-number.selected .calendar__day-number-span{
    color: #fff;
    background-color: #0e0e0e;
}

.calendar__day-number-span:hover{
    color: #fff;
    background-color: #0e0e0e;
}

.calendar__day-number.disabled:hover .calendar__day-number-span{
    color: #94979c;
    background-color: #fff;
}

/* @media screen and (max-width: 480px) {
    .calendar__el:first-child .calendar__a,
    .calendar__el:last-child .calendar__a{
        visibility: visible;
    }

    .calendar__el:first-child .calendar__month .calendar__a:first-child,
    .calendar__el:last-child .calendar__month .calendar__a:last-child{
        visibility: hidden;
    }
} */