<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.calendar-box {
	font-family: 'Montserrat', 'Trebuchet MS', sans-serif;
	width: 430px;
	background: #fff;
	margin: 2em auto;
	overflow: hidden;
	position: relative;
	
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
		-ms-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
		 -o-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
		-ms-border-radius: 10px;
		 -o-border-radius: 10px;
			border-radius: 10px;
}
@media (max-width: 450px) {
	.calendar-box {
		width: 100%;
	}
}
.calendar-box.processing::before {
	background: rgba(255, 255, 255, 0.7);
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.calendar-box.processing::after {
	background: rgba(255, 255, 255, 0.7);
	bottom: 0;
	color: #555;
	content: 'Ð—Ð°Ñ€ÐµÐ¶Ð´Ð° ÑÐµ...';
	font-size: 1.4em;
	height: 3em;
	left: 0;
	line-height: 3em;
	margin: auto;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 50%;
	z-index: 1;
	
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
		-ms-border-radius: 10px;
		 -o-border-radius: 10px;
			border-radius: 10px;
	
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
		-ms-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
		 -o-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.calendar-box .month-box {
	padding: 0.7em;
	background: #213841;
	position: relative;
	font-weight: bold;
}
.calendar-box .month-box h4 {
	color: #eee;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	font-size: 1.4em;
	font-family: inherit;
}
.calendar-box .month-box h5 {
	color: #eee;
	font-size: 0.92em;
	text-align: center;
	font-family: inherit;
}
.calendar-box .month-box nav {
	line-height: 4.6em;
}
.calendar-box .month-box nav a {
	position: absolute;
	top: 0;
	font-size: 1.3em;
	padding: 0 1em;
	cursor: pointer;
}
.calendar-box .month-box nav a.prev-month {
	left: 0;
}
.calendar-box .month-box nav a.next-month {
	right: 0;
}
.calendar-box .week-days-box {
	background: #fe6442;
	padding: 0.8em 6%;
}
.calendar-box .week-days-box:after {
	content: '';
	display: table;
	clear: both;
}
.calendar-box .week-days-box .wd-item {
	width: 12%;
	width: calc(100% / 7);
	text-align: center;
	color: #eee;
	display: block;
	float: left;
	font-weight: bold;
}
.calendar-box .month-days-box {
	padding: 0.8em 6%;
}
.calendar-box .month-days-box:after {
	content: '';
	display: table;
	clear: both;
}
.calendar-box .month-days-box .day-box {
	width: 12%;
	width: calc(100% / 7);
	text-align: center;
	color: #213841;
	display: block;
	float: left;
	line-height: 3em;
	position: relative;
	z-index: 0;
	cursor: pointer;
}
.calendar-box .month-days-box .day-box.today {
}
.calendar-box .month-days-box .day-box.prev-month,
.calendar-box .month-days-box .day-box.next-month {
	color: #ceccc9;
}
.calendar-box .month-days-box .day-box.this-month {
}
.calendar-box .month-days-box .day-box.choosen:before,
.calendar-box .month-days-box .day-box:hover:before {
	content: '';
	height: 2.4em;
	width: 2.4em;
	border: 1px solid #fe6442;
	color: #444;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
		-ms-border-radius: 50%;
		 -o-border-radius: 50%;
			border-radius: 50%;
}
.calendar-box .month-days-box .day-box.today:before {
	content: '';
	height: 2.4em;
	width: 2.4em;
	background: #fe6442;
	border: none;
	color: #fff;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
		-ms-border-radius: 50%;
		 -o-border-radius: 50%;
			border-radius: 50%;
}
.calendar-box .month-days-box .day-box.choosen .day-number,
.calendar-box .month-days-box .day-box:hover .day-number {
	color: #444
}
.calendar-box .month-days-box .day-box.today,
.calendar-box .month-days-box .day-box.today:hover {
	background: #fff;
}
.calendar-box .month-days-box .day-box .day-number {
	position: relative;
	display: block;
}
.calendar-box .month-days-box .day-box.today .day-number,
.calendar-box .month-days-box .day-box.today:hover .day-number {
	color: #fff;
	font-weight: bold;
}
.calendar-box .month-days-box .day-box .day-number .day-events {
	position: absolute;
	bottom: 8px;
	right: 47%;
	right: calc(50% - 2px);
	height: 4px;
	width: 4px;
	background: #fe6442;
	font-size: 0;
	
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
		-ms-border-radius: 50%;
		 -o-border-radius: 50%;
			border-radius: 50%;
}
.calendar-box .month-days-box .day-box .day-number .day-events.multiple {
	-webkit-box-shadow: 4px 0 0 -1px #fe6442, -4px 0 0 -1px #fe6442;
	   -moz-box-shadow: 4px 0 0 -1px #fe6442, -4px 0 0 -1px #fe6442;
	    -ms-box-shadow: 4px 0 0 -1px #fe6442, -4px 0 0 -1px #fe6442;
	     -o-box-shadow: 4px 0 0 -1px #fe6442, -4px 0 0 -1px #fe6442;
	        box-shadow: 4px 0 0 -1px #fe6442, -4px 0 0 -1px #fe6442;
}
.calendar-box .month-days-box .day-box:hover .day-number .day-events {
	bottom: 4px;
	right: 47%;
	right: calc(50% - 5px);
	height: 10px;
	width: 10px;
	font-size: 8px;
	line-height: 10px;
	color: #fff;
	font-weight: bold;
	
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}
.calendar-box .month-days-box .day-box.today .day-number .day-events {
	background: #fff;
}
.calendar-box .month-days-box .day-box.today:hover .day-number .day-events {
	color: #fe6442;
}
#calendar-events-list-anchor {
	position: relative;
	top: -30px;
}
.events-date-title {
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.2em;
	margin-bottom: 0.5em;
}
.events-date-title .events-for-date {
}
.events-date-title .events-day-list-title-count {
	font-style: italic;
	color: #888;
}
.events-day-list {
}
.events-day-list .calendar-event-cont {
	color: #555;
	line-height: 1.5;
	padding: 0.3em 0.8em 0.6em;
	margin-top: 1.4em;
}
.events-day-list .calendar-event-cont .cec-title {
	letter-spacing: 0.05em;
	font-size: 1.5em;
	font-weight: bold;
	margin: 0 0 0.1em;
	padding-top: 0.4em;
}
.events-day-list .calendar-event-cont .cec-meta {
	color: #888;
	margin: 0.4em 0;
}
.events-day-list .calendar-event-cont .cec-meta .cecm-item {
	margin-right: 1em;
}
.events-day-list .calendar-event-cont .cec-description {
	padding-top: 0.7em
}
.events-day-list .calendar-event-cont .cec-description:after {
	content: '';
	display: table;
	clear: both;
}
.events-day-list .calendar-event-cont .cec-description .cecic-image {
	float: left;
	margin: 0 0.3em 0.3em 0;
	max-width: 30%;
}
.events-day-list .calendar-event-cont .cec-description .cecic-image img {
	max-width: 100%;
}
.events-day-list .calendar-event-cont .cec-description p {
	padding: 0;
	margin: 0.4em 0;
}
.events-day-list .calendar-event-cont .cec-description p img {
	max-width: 100%;
	height: auto !important;
}
.events-day-list .empty-list-note {
	color: #888;
	margin-bottom: 0.5em;
	display: block;
	font-size: 1.2em;
}
.events-day-list .calendar-event-cont .cec-images .cecic-item {
	display: inline-block;
	height: 100px;
	width: 100px;
	margin: 5px;
}
.events-day-list .calendar-event-cont .cec-images .cecic-item a {
	display: block;
	height: 100%;
	width: 100%;
	background: transparent no-repeat center / contain;
}
@media (max-width: 768px) {
	.events-day-list .calendar-event-cont .cec-description p img {
		max-width: 100%;
		height: auto !important;
	}
}</pre></body></html>