/* Цвета событий в календаре мероприятий */
.ui-daterange--calendar td.ui-datepicker-event .ui-state-default {
	color: white;
}
.ui-daterange--calendar td.ui-datepicker-event--ended .ui-state-default {
	background: lightgray;
	border: 1px solid white;
}
.ui-daterange--calendar td.ui-datepicker-event--offline .ui-state-default {
	background: lightcoral;
	border: 1px solid white;
}
.ui-daterange--calendar td.ui-datepicker-event--online .ui-state-default {
	background: lightskyblue;
	border: 1px solid white;
}
.ui-daterange--calendar td.ui-datepicker-event--offline.ui-datepicker-event--online .ui-state-default {
	background: linear-gradient(-45deg, lightcoral 0%, lightcoral 50%, lightskyblue 50%, lightskyblue 100%);
	border: 1px solid white;
}