.wes-calendar {
	width: 100%;
	max-width: 1100px;
	margin: 20px auto;
}

.wes-calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.wes-calendar-header h3 {
	margin: 0;
	font-size: 22px;
}

.wes-cal-prev,
.wes-cal-next {
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 6px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 25px;
}

.wes-calendar-week,
.wes-calendar-grid {
	display: grid;
	grid-template-columns:
		repeat(7, minmax(0, 1fr));
}

.wes-calendar-week > div {
	text-align: center;
	font-weight: 600;
	padding: 10px 5px;
	background: #f5f5f5;
}

.wes-cal-day {
	min-height: 120px;
	border: 1px solid #ddd;
	padding: 6px;
	background: #fff;
}

.wes-cal-day.empty {
	background: #fafafa;
}

.wes-cal-number {
	font-weight: 600;
	margin-bottom: 6px;
}

.wes-cal-day.today {
	background: #e2fcf3;
}

.wes-cal-day.has-session {
	cursor: default;
}

.wes-cal-session {
	padding: 6px;
	margin-bottom: 5px;
	border-radius: 5px;
	background: #e2fcf3;
	border-left: 3px solid #1d6b4f;
	cursor: pointer;
}

.wes-cal-session:hover {
	opacity: .8;
}

.wes-cal-session-name {
	display: block;
	font-weight: 600;
}

.wes-cal-session small {
	display: block;
	margin-top: 3px;
	font-weight: 600;
}


.wes-location-tooltip {
	max-width: calc(100vw - 20px);
	white-space: normal;
	word-break: break-word;
 
	position: fixed;
	z-index: 99999;

	padding: 6px 10px;

	background: #333;
	color: #fff;

	border-radius: 5px;

	font-size: 13px;
	line-height: 1.4;

	pointer-events: none;

	box-shadow: 0 3px 10px rgba(0,0,0,.2);
}


.wes-cal-session.expired {
	opacity: .45;
	filter: grayscale(1);
}

@media(max-width: 700px){

	.wes-calendar-week > div {
		font-size: 12px;
	}

	.wes-cal-day {
		min-height: 90px;
		padding: 4px;
	}

	.wes-cal-number {
		font-size: 13px;
	}

	.wes-cal-session {
		padding: 4px;
		font-size: 12px;
	}

	.wes-cal-session small {
		font-size: x-small;
	}

}