/*************************** Calendar Top Navigation **************************/
#calendar {
    margin: 0px auto;
    padding: 0px;
    margin-bottom: 50px;
}

#calendar .calendar_box {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 40px;
}
#calendar .calendar_header {
    line-height: 40px;
    vertical-align: middle;
    color:#000;
    top: 0px;
    height: 40px;
    text-align: center;
    font-family: 'Montserrat-bold', sans-serif;
    text-transform: uppercase;
}
#calendar .calendar_header .calendar_prev, #calendar .calendar_header .calendar_next {
    position: absolute;
    top: 0px;
    height: 17px;
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}
#calendar .calendar_header .calendar_title {
    font-size: 18px;
}
#calendar .calendar_header .calendar_prev {
    left: 0px;
}
#calendar .calendar_header .calendar_next {
    right: 0px;
}
/*************************** Calendar Content Cells ***************************/
#calendar .calendar_content {
    border-top: none;
}
#calendar .calendar_label {
    width: 100%;
    margin: 0px;
    padding: 0px;
    margin-top: 5px;
    margin-left: 5px;
}
#calendar .calendar_label .calendar_names {
    margin: 0px;
    padding: 0px;
    margin-right: 1px;
    list-style-type: none;
    width: 13.5%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
    color: #000;
    font-size: 15px;
    background-color: transparent;
}
#calendar .calendar_dates {
    width: 100%;
    margin: 0px;
    padding: 0px;
    margin-left: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-flow: row wrap;
}
/** overall width = width+padding-right **/
#calendar .calendar_dates .calendar_names, #calendar .calendar_dates .calendar_days, #calendar .calendar_dates .calendar_today {
    margin: 0px;
    padding: 0px;
    margin-right: 5px;
    margin-top: 5px;
    vertical-align: middle;
    list-style-type: none;
    width: 13.5%;
    display: inline-block;
    height: 180px;
    font-size: 25px;
    background-color: #DDD;
    color: #000;
    text-align: center;
}
#calendar .calendar_dates .calendar_today {
    background-color: #666666;
}
:focus {
    outline: none;
}
.calendar_clear {
    clear: both;
}

.day-box {
    background: #36b9c8;
    color:#fff;
}

.event-info {
    font-size: 12px;
    padding: 1em;
    text-align: left;
    line-height: 0.8em;
    color: #000;
}

.event-info p {
    line-height: 1.4em;
}

.event-info a {
    color:#d40075;
}

.calendar_today {
    color:#000;
}

.calendar_today .event-info a {
    color: #e9cedc;
}

.calendar_today .deadline {
    color:#d40075;
}

.deadline {
    color:#d40075; font-weight: bold;
}

