/* Month header */
.month {
    padding: 20px 25px;
    width: 100%;
    background: #849fc5;
    text-align: center;
    border: 3px solid transparent;
    border-bottom: 0px;
    border-radius: 20px 20px 0px 0px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    height: 80px;

}

.month span {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;

}

/* Month list */
.month ul {
    margin: 0;
    padding: 0;

}

.month ul li {
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Previous button inside month header */
.month .prev {
    float: left;
    padding-top: 10px;
}

/* Next button */
.month .next {
    float: right;
    padding-top: 10px;
}

/* Weekdays (Mon-Sun) */
.weekdays {
    margin: 0;
    padding: 20px 0;
    background-color: #ddd;
    border: 3px solid transparent;
    border-top: 0px;
    border-bottom: 0px;
    border-radius: 0px 00px 0px 0px;
    text-align: center;
}

.weekdays li {
    display: inline-block;
    width: 12.6%;
    color: #666;
    text-align: center;
    font-size: 13px !important;

}

/* Days (1-31) */
.days {
    padding: 10px 0;
    background: #eee;
    margin: 0;
    border: 3px solid transparent;
    border-top: 0px;
    border-radius: 0px 0px 20px 20px;
    height: 400px;
    line-height: 55px;
    text-align: center;
}

.days li {
    list-style-type: none;
    display: inline-block;
    width: 12.6%;
    text-align: center;
    margin-bottom: 5px;
    font-size: 18px !important;
    color: #777;
    padding: ;
}

/* Highlight the "current" day */
.days li .active1 {
    padding: 5px 12px;
    background: #849fc5;
    color: white !important;
    border-radius: 5px;

}

.days li .active2 {
    padding: 5px 12px;
    background: #dec579;
    color: white !important;
    border-radius: 5px;
}

.days li .active3 {
    padding: 5px 12px;
    background: #42c0bf;
    color: white !important;
    border-radius: 5px;
}

.days li .active4 {
    padding: 5px 12px;
    background: #ff942aff;
    color: white !important;
    border-radius: 5px;
}

.days li .active5 {
    padding: 5px 12px;
    background: #8d5fd3ff;
    color: white !important;
    border-radius: 5px;
}

.days li .active6 {
    padding: 5px 12px;
    background: #abc837ff;
    color: white !important;
    border-radius: 5px;
}

.days li .active7 {
    padding: 5px 12px;
    background: #00ccffff;
    color: white !important;
    border-radius: 5px;
}

.days li .active8 {
    padding: 5px 12px;
    background: #ff0066ff;
    color: white !important;
    border-radius: 5px;
}

.days li .active9 {
    padding: 5px 12px;
    background: #93aca7ff;
    color: white !important;
    border-radius: 5px;
}

.days li .active10 {
    padding: 5px 12px;
    background: #808080ff;
    color: white !important;
    border-radius: 5px;
}

.days li .active11 {
    padding: 5px 12px;
    background: #e9afafff;
    color: white !important;
    border-radius: 5px;
}

.days li .active12 {
    padding: 5px 12px;
    background: #803300ff;
    color: white !important;
    border-radius: 5px;
}

.days li .active13 {
    padding: 5px 12px;
    background: #87de87ff;
    color: white !important;
    border-radius: 5px;
}

@media screen and (max-width: 1366px) {
    .weekdays li {
        display: inline-block;
        width: 12.6%;
        color: #666;
        text-align: center;
        font-size: 15px !important;
    }

    .days li {
        list-style-type: none;
        display: inline-block;
        width: 12.6%;
        text-align: center;
        margin-bottom: 5px;
        color: #777;
        font-size: 20px !important;
    }

    .weekdays li {
        display: inline-block;
        width: 12.6%;
        color: #666;
        text-align: center;
        font-size: 13px !important;

    }

    .days li {
        list-style-type: none;
        display: inline-block;
        width: 12.6%;
        text-align: center;
        margin-bottom: 5px;
        font-size: 13px !important;
        color: #777;
        padding: ;
    }
}


@media screen and (max-width: 992px) {
    .weekdays li {
        display: inline-block;
        width: 12.6%;
        color: #666;
        text-align: center;
        font-size: 10px !important;
    }

    .days li {
        list-style-type: none;
        display: inline-block;
        width: 12.6%;
        text-align: center;
        margin-bottom: 5px;
        color: #777;
        font-size: 10px !important;
    }

    .cal-mobile {
        flex: 0 0 auto;
        width: 80%;
        margin: 30px auto;
    }
}