<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!calendar.css*/

#calendar-wrapper {
    margin-top: 25px;
}

#calendar-wrapper.lock-mode .fc-event:hover {
    cursor: cell;
}

.btn#toggle-lock-mode:focus {
    outline: none;
}

.fc-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lock-all-toggle {
    padding: 5px;
}

.fc-event.locking:hover {
    cursor: progress !important;
}

.fc-event.locked {
    box-shadow: 0 0 0 2px #607d8b
}

.fc-event.exclude-flagged {
    opacity: .5;
}

.fc-time-grid-event .division,
.fc-time-grid-event .fc-time {
    font-size: .85em;
}
.fc-time-grid-event .fc-time {
    float: left;
}
.fc-time-grid-event .fc-title {
    clear: left;
}

#event-info-panel {
    display: none;
    position: fixed;
    bottom: 0;
    left: 25px;
    z-index: 999999999;
    border-bottom: 0;
}
#event-info-panel .panel-body {
    font-size: 18px;
}
#event-info-panel .panel-body .home-team,
#event-info-panel .panel-body .away-team {
    float: left;
    padding: 15px;
    margin: -15px;
}
#event-info-panel .panel-body .home-team {
    background: #FF5722;
    color: white;
    margin-right:0;
}
#event-info-panel .panel-body .away-team {
    background: #9C27B0;
    color: white;
    margin-left:0;
}

.event--mouseenter .fc-event:not(.free) {
	background: #3a87ad !important;
	border: 1px solid #3a87ad !important;
}

.event--mouseenter .fc-event.team1-highlight {
	background: #FF5722 !important;
	border: 1px solid #FF5722 !important;
}

.event--mouseenter .fc-event.team2-highlight {
	background: #9C27B0 !important;
	border: 1px solid #9C27B0 !important;
}

.event--mouseenter .fc-event.playoff-highlight {
	background: #4CAF52 !important;
	border: 1px solid #4CAF52 !important;
}

.event--mouseenter .fc-event.event-highlight {
	background: linear-gradient(90deg, #FF5722 50%, #9C27B0 50%) !important;
}
</pre></body></html>