.pps_calendar {
	padding: 10px;
}
.pps_calendar .month-title {
	color: #000;
	font-size: 45px;
	text-align: center;
	padding: 20px 10px 30px 10px;
}
.pps_calendar .week-items .week-item {
	display: flex;
	flex-direction: row;
}
.pps_calendar .week-items .week-item .day {
	font-size: 16px;
	color: #A0A8A9;
	text-align: center;
	outline: 1px solid #C4C4C4;
	margin: 0 10px 10px 0;
	height: 60px;
	display: flex;
	flex: 1 1 10px;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.pps_calendar .week-items.week-items-title .day {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #63CFE3;
}
.pps_calendar .week-items .week-item .day:last-child {
	margin-right: 0;
}
.pps_calendar .week-items .week-item .day>span {
	position: relative;
	z-index: 1;
}

.pps_calendar .week-items.week-items-def div.day[data-allow="0"] {
	font-weight: 600;
	background: #fff;
	color: #A0A8A9;
	opacity: 0.5;
}
.pps_calendar .week-items.week-items-def div.day[data-allow="1"] {
	font-weight: 600;
	background: rgba(206, 235, 241, 0.75);
	cursor: pointer;
	outline: 1px solid rgba(206, 235, 241, 0.75);
}
.pps_calendar .week-items.week-items-def div.day[data-allow="1"]:hover {
	background: rgba(206, 235, 241, 1);
	box-shadow: 0 0 10px rgba(0,0,0,0.1)	
}

.reservations-calendar {
	max-width: 100%;
}