.ev_calendar_wrap, .ev_calendar_wrap table {
	font-family: "Poppins", Sans-serif;
}
.ev_calendar_bg {
	background-color: #d9f5f8;
	border-radius: 20px 20px 0px 0px; 
	padding: 20px; 
	border-bottom: 2px solid #006675;
	position: relative;
}
.ev_calendar_bg.wait:after {
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #ffffff60 url('waiting.gif') center no-repeat;
	z-index: 10000;
}
.ev_calendar_bg h2 {
	margin: 0px 0px 30px 0px; 
	text-align: center; 
	color: #006675; 
	font-weight: 600;
}
.ev_calendar_bg .calendar_nav {
	display: flex; 
	justify-content: space-between; 
	width: 65%; 
	margin: 0px auto;
	margin-bottom: -40px;
}
.ev_calendar_bg .calendar_nav a img {
	width: 40px;
}
.ev_calendar_bg .calendar_nav a.prev img {
	transform: rotate(180deg);
}
.ev_calendar {
	/* margin-top: -40px; */
}
.ev_calendar_bg .calendar-item {
	font-size: 1.1rem;
	width: 100%;
}
.ev_calendar_bg .calendar-head {
	color: #006675;
	text-align: center;
	padding: 5px;
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 20px;
}
.ev_calendar .calendar-item table {
	border-collapse: collapse;
	width: 100%;
}
.ev_calendar .calendar-item th {
	padding: 0.7em 5px;
	text-align: center;
	color: #006675;
	font-weight: 700;
	text-transform: uppercase;
	background-color: transparent !important;
	border: none;
}
.ev_calendar .calendar-item td {
	padding: 0.7em 5px;
	text-align: center;
	background-color: transparent !important;
	border: none;
	color: #000;
	font-weight: 500;
}
.ev_calendar .calendar-day.last {
	opacity: 0.5;
}
.ev_calendar .calendar-day.today {
	font-weight: 700;
}
.ev_calendar .calendar-day.event {
	font-weight: 700;
	color: #fff;
	position: relative;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.ev_calendar .calendar-day.event.c1 {
	background-image: url('circle-1.svg');
}
.ev_calendar .calendar-day.event.c2 {
	background-image: url('circle-2.svg');
}
.ev_calendar .calendar-day.event.c3 {
	background-image: url('circle-3.svg');
}
.ev_calendar .calendar-day.event.c1.c2 {
	background-image: url('circle-12.svg');
}
.ev_calendar .calendar-day.event.c1.c3 {
	background-image: url('circle-13.svg');
}
.ev_calendar .calendar-day.event.c2.c3 {
	background-image: url('circle-23.svg');
}
.ev_calendar .calendar-day.event.c1.c2.c3 {
	background-image: url('circle-123.svg');
}
.ev_calendar_wrap .ev_legend {
	display: flex;
}
.ev_calendar_wrap .ev_legend > div {
	box-sizing: border-box;
	width: 33.3333333%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	line-height: 1.1;
	color: #006675;
	font-size: 13px;
}
.ev_calendar_wrap .ev_legend > div + div {
	border-left: 1px solid #ccc;
}
.ev_calendar_wrap .ev_legend img {
	width: 40px;
	margin-right: 10px;
}


.calendar-day.event:hover .calendar-popup {
	display: block;
}
.calendar-popup {
	display: none;
	position: absolute;
	top: 40px;
	left: 0;
	min-width: 200px;
	padding: 15px;
	background: #fff;
	text-align: left;
	font-size: 13px;
	font-weight: 400;
	z-index: 100;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	color: #000;
	white-space: nowrap;
}
.calendar-popup:before {
	content: ""; 
	border: solid transparent;
	position: absolute;    
	left: 8px;    
	bottom: 100%;
	border-bottom-color: #fff;
	border-width: 9px;
	margin-left: 0;
}

@media (max_width: 991px) {
	.ev_calendar_wrap { width: 100%; }
}
@media (max-width: 767px) {
	.ev_calendar_bg h2 {
		font-size: 18px;
	}
	.ev_calendar_bg {
		border-radius: 0;
	}
}
@media (max-width: 420px) {
	.ev_calendar_bg .calendar-head { font-size: 16px; }
	.ev_calendar_bg .calendar_nav { width: 70%; margin-bottom: -43px; }
	.ev_calendar_wrap .ev_legend img { width: 30px; margin-right: 5px; }
}