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

.ui-datepicker {
	display: none;
	background: #fff;
	border-radius: 3px;
	overflow: hidden;
	width: 260px;
	border: 1px solid #ccc;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
	padding: 10px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
	font-size: 14px;
}

.ui-datepicker a {
	text-decoration: none;
}

.ui-datepicker-header {
	padding: 0px 0px 10px 0px;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
	text-align: center;
}

.ui-datepicker-header a {
	color: #298ccd;
}


.ui-datepicker-header a:hover {
	color: #97b3cf;
}

.ui-datepicker-prev {
	float: left;
	cursor: pointer;
	-webkit-user-select: none;
}

.ui-datepicker-next {
	float: right;
	cursor: pointer;
	-webkit-user-select: none;
}

.ui-datepicker-calendar {
	width: 100%;
}

.ui-datepicker-calendar {
	font-size: 14px;
}
.ui-datepicker-calendar th {
	text-align: center;
	color: #999;
	font-size: 11px;
	text-transform: uppercase;
}

.ui-datepicker-calendar span,
.ui-datepicker-calendar a {
	display: block;
	color: #555;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
}

.ui-datepicker-calendar a:hover {
	background: #f2f2f2;
	color: #555;
}

.ui-datepicker-calendar td {
	text-align: center;
}

.ui-datepicker-today a {
	background: #e4f0ff;
}

.ui-datepicker-current-day a {
	color: #fff;
	background: #298ccd;
}

.ui-datepicker-current-day a:hover {
	color: #fff;
	background: #298ccd;
}

.ui-state-disabled {
	opacity: .2;
}

.ui-datepicker-other-month {
	opacity: 0.6;
}</pre></body></html>