<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.calendarHeader {
	padding: 10px 0;
	position: relative;
	text-align: center;
	border-radius: 5px;
	background: #c00;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.calendarHeader .prevMonth, .calendarHeader .nextMonth {
	display: block;
	padding: 19px;
	position: absolute;
	top: 0;
}
.calendarHeader .prevMonth {
	left: 0;
}
.calendarHeader .nextMonth {
	right: 0;
}
.calendarHeader .prevMonth:after, .calendarHeader .nextMonth:after {
	content: '';
	border: 2px solid #fff;
	border-top: 0;
	border-left: 0;
	display: inline-block;
	width: 10px;
	height: 10px;
}
.calendarHeader .prevMonth:after {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.calendarHeader .nextMonth:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.calendarCategories {
	margin-bottom: 10px;
}
.calendarCategories ul {
	display: table;
	width: 100%;
}
.calendarCategories li {
	display: table-cell;
}
.calendarCategories li {
	padding-right: 5px;
}
.calendarCategories li:last-child {
	padding-right: 0;
}
.calendarCategories a {
	display: block;
	padding: 5px 2px;
	background: #ccc;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	border-radius: 5px;
	margin-bottom: 10px;
}
.calendarCategories .active a {
	background: #666;
}

.fc-state-highlight {
	background: #eee !important;
}
.fc-day-header {
	text-transform: uppercase;
}
.fc-content .fc-event {
	background: #c00;
	border: 1px solid currentColor;
}
.fc-event, .fc-event:hover {
	color: #fff !important;
}
.fc-view {
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.fc-view-container.loading .fc-view {
	opacity: 0.3;
	-webkit-transition: opacity 0s;
	-moz-transition: opacity 0s;
	-o-transition: opacity 0s;
	transition: opacity 0s;
}
.fc-view-container .loadingIndicator {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	display: none;
}
.fc-view-container.loading .loadingIndicator {
	display: block;
}
.fc-view-container .loadingIndicator img {
	width: 128px;
	height: 128px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -64px;
	margin-left: -64px;
	-webkit-animation: rotating-function 1.5s linear infinite;
	-moz-animation: rotating-function 1.5s linear infinite;
	-ms-animation: rotating-function 1.5s linear infinite;
	-o-animation: rotating-function 1.5s linear infinite;
	animation: rotating-function 1.5s linear infinite;
}

@-webkit-keyframes rotating-function {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes rotating-function {
	from {
		-moz-transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(360deg);
	}
}
@-ms-keyframes rotating-function {
	from {
		-ms-transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
	}
}
@-o-keyframes rotating-function {
	from {
		-o-transform: rotate(0deg);
	}
	to {
		-o-transform: rotate(360deg);
	}
}
@keyframes rotating-function {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
</pre></body></html>