/*body {
    font-family: Tahoma;
}*/

.calendar-month-container {
    display: none;
}

/* .calendar-header {
    display: inline-block;
} */

.previous-month {
    font-size: 24px !important;
    margin-right: 8px;
    cursor: pointer;
}

.next-month {
    font-size: 24px !important;
    margin-left: 8px;
    cursor: pointer;
}

/* .list-view-btn,
.calendar-view-btn {
    position: absolute;
    cursor: pointer;
    border-radius: 3px;
    padding: 1px 9px;
} */

/* .list-view-btn {
    right: 72px;
    top: 60px;
} */

/* .calendar-view-btn {
    right: 50px;
    top: 60px;
} */

/* .today-btn-wrapper {
    position: absolute;
    right: 50px;
    top: 20px;
} */

/* .today-btn {
    display: inline-block;
    font-size: 20px;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    padding: 1px 9px;
    cursor: pointer;
} */

#calendar {
    width: 100%;    
}

#calendar a {
    color: #8e352e;
    text-decoration: none;
}

/* #calendar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
} */

/* #calendar li {
    display: block;
    float: left;
    width:14.342%;
    padding: 5px;
    box-sizing:border-box;
    border: 1px solid #ccc;
    margin-right: -1px;
    margin-bottom: -1px;
    overflow-y: scroll;
} */

/* #calendar ul.weekdays {
    height: 40px;
    background: #999F99;    
    font-family: 'Klavika_Medium';
} */

/* #calendar ul.weekdays li {
    text-align: center;
    color: #FFFF00;
    line-height: 20px;
    padding: 10px 6px;
    font-size: 30px;
    border: 1px solid #B1B1B1;
} */

/* #calendar .days li {
    height: 120px;
} */

#calendar .days li:hover {
    background: #d3d3d3;
}

/* #calendar .date {
    text-align: center;
    margin-bottom: 5px;
    padding: 4px;
    font-size: 16px;
    color: #000;
    width: 26px;
} */
#calendar li.current-day .date {
    background: #B1FFF3;
    border-radius: 50%;    
}
#calendar li.other-month .date {
    color: #AAAAAA;
}

/* .day.today .date {
    background: #f71515 !important;
} */

#calendar .event {
    clear: both;
    display: block;
    font-size: 13px;
    border-radius: 4px;
    padding: 5px;
    margin-top: 40px;
    margin-bottom: 5px;
    line-height: 14px;
    background: #e4f2f2;
    border: 1px solid #b5dbdc;
    color: #009aaf;
    text-decoration: none;
}

#calendar .event-desc {
    color: #666;
    margin: 3px 0 7px 0;
    text-decoration: none;  
}

#calendar .other-month {
    background: #D8D8D8;
    color: #AAAAAA;
}

/* ============================
                Mobile Responsiveness
   ============================*/

#calendar .weekdays.list-view {
    display: none;
}

#calendar .other-month.list-view {
    display: none;
}

#calendar li.list-view {
    height: auto !important;
    border: 1px solid #ededed;
    width: 100%;
    padding: 10px;
    margin-bottom: -1px;
}

#calendar .date.list-view {
    float: none;
}

@media(max-width: 768px) {

    #calendar .weekdays, #calendar .other-month {
        display: none;
    }

    #calendar li {
        height: auto !important;
        border: 1px solid #ededed;
        width: 100%;
        padding: 10px;
        margin-bottom: -1px;
    }

    #calendar .date {
        float: none;
    }
}