<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.calendarMainContainer {
	
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
		
}


.calendarMain {

	
}

/* container for the mobile date and arrows */

.dateContainer {
	
	display: flex;
	padding: 0 20px 20px 20px;
	/*border: 1px solid red;*/
	
}

	

.calWasPrice {
	
	text-decoration: line-through;
	
}

.calThisPrice {
	
	font-weight: bold;
	color: white;
	font-size: 21px;
	
}


/* The date header eg May 2019 */

.calDate {

	background: #426313;
	color: white;
	border-radius: 20px;
	font-size: 35px;
	margin: auto;
	text-align: center;
	margin-top: 10px;
	width: 80%;
	padding: 7px;

}

/* Forward and back handles */

.nextMonth, .prevMonth, .nextMonthMobile, .prevMonthMobile {

	font-size: 60px;
	color: #426313;
	box-sizing: border-box;
	min-width: 30px;
	padding: 5px;
	cursor: pointer;
	
}

.nextMonthMobile, .prevMonthMobile {
	display: none;
}

.prevMonth {

	margin-right: 10px;
	
	
}

/* Calendar styling */

table.calendar {
	
	border-left:1px solid #5b5b5b;
	border-radius: 4px;
	
}

tr.calendar-row	{

	height: 80px;

}

tr.calendar-row-head	{

	height: 40px;


}

td.calendar-day	{
	
	font-size: 13px;
	position:relative;
	

}

/* Colour if there's a booking on this day */

td.calendar-day-highlighted	{
	
	background: #90bc4f;
	font-size:13px;
	position:relative;

}



* html div.calendar-day {
	
	height:80px;
	
	
}

td.calendar-day:hover {
	
	background:#eceff5;
	
}

td.calendar-day-np	{
	
	background:#eee;
	min-height:80px;
} * html div.calendar-day-np { height:80px; }

.calendarBooking {

	font-size: 16px;
	text-align: center;
	padding: 15px;
	
}

td.calendar-day-head {
	
	background: #849B1B;
	font-weight:bold;
	text-align:center;
	padding: 10px;
	border-bottom:1px solid #5b5b5b;
	border-top:1px solid #5b5b5b;
	border-right:1px solid #5b5b5b;
	color: white;	
	
}

div.day-number, div.day-number-highlighted {

	position: absolute;
	background: #b2b2b2;
	padding:5px;
	color:#fff;
	font-weight:bold;
	/*float: left;*/
	/*margin: -10px -5px 0 0;*/
	top: 2px;
	left: 2px;
	text-align:center;

}

/* Number of day when there's a booking on this day */

div.day-number-highlighted {

	background: #416112;

}

/* shared */
td.calendar-day, td.calendar-day-np {

	padding:5px;
	border-bottom:1px solid #5b5b5b;
	border-right:1px solid #5b5b5b;
	
	

}

td.calendar-day-highlighted {

	padding: 10px 5px;
	border-bottom:1px solid #5b5b5b;
	border-right:1px solid #5b5b5b;
	cursor: pointer;

}



td.calendar-day-highlighted:hover {

	background: #94bc5a;

}




table.calendar {
	table-layout: fixed;
	width: 100%;
}


/*
##########################################

Media Queries

##########################################
*/

@media only screen and (max-width: 800px) {
	
	.calDate{
		font-size: 24px;
	}
	
	.prevMonth, .nextMonth {
		
		display: none;
		
	}
	
	.calendarArrowLeft {
		font-size: 80px;
		margin-right: 10px;
		margin-top: 15px;
	}
	
	.calendarArrowRight {
		font-size: 80px;
		margin-left: 5px;
		margin-top: 15px;
	}
	
	.prevMonthMobile, .nextMonthMobile {
		
		display: block;
		font-size: 45px;
		
	}
	
	tr.calendar-row	{

		height: 70px;
	
	}
	
	
	.calThisPrice {
	
		font-size: 16px;
		
	}
	
	.calendarBooking {
		padding: 15px 1px 1px 1px;
	}
	
	div.day-number, div.day-number-highlighted {

		padding: 2px 5px;
		top: 2px;
		left: 2px;
	
	
	}
	

	.calendarBooking	{

		/*border: 1px solid red;*/
		

	
	}
	
	td.calendar-day-highlighted {
		
		padding: 10px 0;
	
	}
	

}




@media only screen and (max-width: 400px) {

	td.calendar-day-head {
		
		background: #849B1B;
		font-weight: normal;
		text-align:center;
		padding: 5px;
			
	}</pre></body></html>