.calendar {
    position: relative;
}
.calendar #loading {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9998;
    background: url('../img/loading.gif') center no-repeat #FFF;
    opacity: 0.9;
    filter: alpha(opacity=90);
}
.calendar #calendar {
    width: 100%;
    margin: 0 auto;
}

/*
 * Calendar box.
 * FullCalendar 7 assigns its CSS classes via CSS modules (e.g. .fc-oH) and
 * therefore generates them new with each build. The box therefore only styles
 * its own classes, which are set via the moreLinkClass option or via custom markup.
 */
.calendar .calendarbox-title {
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
}
.calendar .calendarbox-title a {
    color: inherit;
    text-decoration: none;
}
.calendar .calendarbox-title a:hover,
.calendar .calendarbox-title a:focus {
    text-decoration: underline;
}
.calendar .calendarbox-event-count {
    display: inline-block;
    margin: 1px 2px 0;
    padding: 0 4px;
    background-color: #f89406;
    border-radius: 3px;
    color: #000;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
}
.calendar .calendarbox-event-count:hover,
.calendar .calendarbox-event-count:focus {
    color: #000;
    text-decoration: none;
}
