/* CSS Document */


.calendarContainer {
	position: absolute;
	width: 200px;
	height: 100%;
	top: 0px;
	left: -10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px !important;

	margin: 0px;
	padding: 0px;

}

/*
	the background image can be a transparent png ig you like.
	There should be a 10px margin at the left, right and bottom sides of the mage to allow for shadows
	this means that hte actual background size is 160 x 170 
*/
.calendar {
	width: 200px;
	height: 100%;
	position: inherit;
	background: #fff; /* For browsers that do not support gradients */
    /*border: 1px;
    border-style: solid;
    border-color: #191919;	*/
    background-position:top left;

	margin: 0 0 0 10px;
	padding: 0px;
	/*_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/calendar/calendarbg.png', sizingMethod='scale'); */
	_background-image:none; 
	
}



.calendar .heading {
	text-align:center;
	position: absolute;
	
	width: 200px;
	padding: 0px;
	margin: 0px 0px 0px 0px;
	top: 3px;



}

.calendar .heading h1 {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
}

.calendar .heading .nextMonth {
	position: absolute;
	top: 0px;
	right: 22px;
	width: 9px;
	height: 11px;
	text-decoration:none;
	font-weight:bold;
	font-size: 16px;
	
}

.calendar .heading .prevMonth {
	position: absolute;
	top:0px;
	left: 14px;
	width: 9px;
	height: 11px;
	text-decoration:none;
	font-weight:bold;
	font-size: 16px;
}

.calendar .dates {
	text-align:center;
	position:absolute;
	width: 100%;
	top: 22px;
	z-index:3;
}

.calendar .dates .datesTable {
	margin: 3px auto 0px auto;
	padding: 0px;
}

.calendar .dates .datesTable th {
	border-bottom: 1px dashed #555555;
	margin-bottom: 3px;
	font-size:13px;
}

.calendar .dates .datesTable td {
	padding: 2px;
	margin: 0px;
	text-align:center;
}

.calendar .dates .datesTable td a {
	text-decoration:none;
	display: block;
	padding: 0px;
	margin: 0px;

}


/* ===== Off dates ===== */
.calendar .dates .datesTable .dateOff {
/*	background-color:#aac6e5;
	color:#333333; */
}
.calendar .dates .datesTable .dateOff a {
	color:#333333;
	text-decoration:none;
}
.calendar .dates .datesTable .dateOff a:hover{
	color:#c06014;
	background-color:#DDDDDD;
	text-decoration:none;
}

/* ===== On dates ===== */
.calendar .dates .datesTable .dateOn {
	background-color:#c06014;
	color:#fff;
}
.calendar .dates .datesTable .dateOn a{
	color:#fff;
}
.calendar .dates .datesTable .dateOn a:hover{

}

/* ===== Permenant On dates ===== */
.calendar .dates .datesTable .datePermenantOn {
	background-color:#66FF66;
	color:#fff;
}
.calendar .dates .datesTable .datePermenantOn a{
	color:#fff;
}
.calendar .dates .datesTable .datePermenantOn a:hover{

}



/* ==========================================================================
   MODERN CALENDAR SKIN (opt-in via .avail-cal on the container)
   Used by the public listing availability guide and the myaccount
   availability editor. Neutralises the absolute 190x200 layout above and
   redraws the widget as a white card: title left / month arrows right,
   bordered cells, orange unavailable days. Interactive calendars
   (datesAsLinks) get full-cell click targets.
   ========================================================================== */

.avail-cal .calendarContainer {
	position: static;
	width: auto;
	height: auto;
	font-family: inherit;
	font-size: 14px !important;
}

.avail-cal .calendar {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 14px 12px;
	background: #fff;
	border: 1px solid #ececea;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* title left, month arrows right (DOM order is links first, h1 last) */
.avail-cal .calendar .heading {
	position: static;
	width: auto;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 2px 4px 10px;
}

.avail-cal .calendar .heading h1 {
	order: -1;
	margin: 0 auto 0 0;
	font-size: 17px;
	font-weight: 700;
	color: #C06014;
}

.avail-cal .calendar .heading .prevMonth,
.avail-cal .calendar .heading .nextMonth {
	position: static;
	width: auto;
	height: auto;
	font-size: 14px;
	color: #C06014;
}

.avail-cal .calendar .heading .prevMonth:hover,
.avail-cal .calendar .heading .nextMonth:hover {
	color: #9a4a0f;
}

.avail-cal .calendar .dates {
	position: static;
	width: auto;
}

.avail-cal .datesTable {
	width: 100%;
	margin: 0;
	background: #fff;
}

.avail-cal .datesTable > tbody > tr > th,
.avail-cal .datesTable > tbody > tr > td {
	border: 1px solid #f1efeb;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	width: 14.28%;
	height: 38px;
	font-size: 13.5px;
	color: #191919;
}

.avail-cal .datesTable > tbody > tr > th {
	height: 32px;
	font-size: 12px;
	color: #4a443f;
}

/* unavailable days: the site orange */
.avail-cal .datesTable .dateOn {
	background-color: #C06014;
	color: #fff;
	font-weight: 700;
}

/* holiday-driven dates (datePermenantOn - not toggleable): soft copper
   instead of the legacy green */
.avail-cal .datesTable .datePermenantOn {
	background-color: #e89a5c;
	color: #fff;
	font-weight: 700;
}

/* interactive calendars: the link fills the whole cell */
.avail-cal .datesTable td a {
	display: block;
	width: 100%;
	line-height: 36px;
	color: inherit;
	text-decoration: none;
}

.avail-cal .datesTable td.dateOff a:hover {
	background: #faf5ed;
}

.avail-legend {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 13px;
	color: #4a443f;
}

.avail-swatch {
	display: inline-block;
	width: 13px;
	height: 13px;
	border-radius: 3px;
	vertical-align: -2px;
	margin-right: 4px;
}

.avail-swatch-free {
	background: #fff;
	border: 1px solid #8a7f75;
}

.avail-swatch-busy {
	background: #C06014;
	border: 1px solid #C06014;
}
