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

/*-------------------------
__datepicker_custom_style
-------------------------*/

.ui-datepicker .ui-datepicker-header{
  color: #FFF;
  background-color: #000;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover{
  transition:background-color 0.3s;
}
.ui-datepicker-prev::after,
.ui-datepicker-next::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	display: block;
	width: 12px;
	height: 12px;
	border: 2px solid;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  transition:border-color 0.3s;
}
.ui-datepicker-prev::after {
	border-color: transparent transparent #fff #fff;
  left: 8px;
}
.ui-datepicker-next::after {
	border-color: #fff #fff transparent transparent;
  right: 8px;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover{
  background-color: #FFF;
  border: none;
}
.ui-datepicker-prev:hover::after{
  border-color: transparent transparent #000 #000;
}
.ui-datepicker-next:hover::after{
  border-color: #000 #000 transparent transparent;
}
.ui-datepicker td a.ui-state-highlight {
  border: 2px solid #E71063;
}
.ui-datepicker td a.ui-state-active {
	color: #fff;
	background: #E71063;
	box-shadow: inset 0 0 0 1px #fff;
}
.ui-datepicker .ui-datepicker-buttonpane button{
	color: #fff;
  background: #000;
  border: 0 none;
}
</pre></body></html>