/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*******************************************************/
/* Now for my stuff */



body {
	line-height: 1.5;
}

input {
	padding: 6px 8px;
}

select {
	-webkit-appearance: menulist-button;
	height: 33px;
}

.chatbubble
{
	position: relative;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	padding: 2px;
	background: #FFFFFF;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	border-radius: 13px;
	border: #14194E solid 1px;
}

.chatbubble:after
{
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 5px 0 5px 6px;
	border-color: transparent #FFFFFF;
	display: block;
	width: 0;
	z-index: 1;
	margin-top: -5px;
	right: -6px;
	top: 60%;
}

.chatbubble:before
{
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 5px 0 5px 6px;
	border-color: transparent #14194E;
	display: block;
	width: 0;
	z-index: 0;
	margin-top: -5px;
	right: -7px;
	top: 60%;
}

.circle {
	border-radius: 50%;
	width: 65px;
	height: 65px;
	/* width and height can be anything, as long as they're equal */
}

#chatbubble {
	margin: auto;
	top: 50%;

    -ms-transform: translate(-1px, -50%); /* IE 9 */
    -webkit-transform: translate(-1px, -50%); /* Safari */
    transform: translate(-1px, -50%);
}

#chatcircle {
	background: rgba(95, 122, 255, 0.54);
	position: fixed;
	z-index: 9999;
	right: 15px;
	bottom: 150px;
}

/*
 * Calendar rendering — three layers, bottom to top:
 *
 *   Layer 1 (base):    jQuery UI handles cell backgrounds.
 *                      Disabled/past cells are naturally faded (opacity .35).
 *                      Booked/transition cells get opacity:1 so overlays render clean.
 *
 *   Layer 2 (overlay): JS-injected divs for booking indicators.
 *                      .booking-overlay = full cell solid pink (booked days)
 *                      .checkout-shape = top-left corner (guest departing)
 *                      .checkin-shape = bottom-right corner (guest arriving)
 *                      z-index: 5 — above cell background, below text.
 *
 *   Layer 3 (text):    Day number + price via the a/span inside td.
 *                      position:relative; z-index:10 — always on top.
 */

#calendarAvailability tbody td {
	position: relative;
	overflow: hidden;
}

.ui-datepicker-today {
    outline: 2px solid #07f;
    outline-offset: -2px;
}

/* Force full opacity on booking cells so overlays render clean */
#calendarAvailability td.bookedDay,
#calendarAvailability td.checkinDay,
#calendarAvailability td.checkoutDay {
    opacity: 1;
}
/* Override jQuery UI background image with pure CSS gradient on all calendar cells */
#calendarAvailability .ui-state-default {
    background: linear-gradient(to bottom, #EAF5FE 0%, #EAF5FE 50%, #E1F0FC 50%, #F0F8FE 70%, #F0F8FE 100%);
    background-image: linear-gradient(to bottom, #EAF5FE 0%, #EAF5FE 50%, #E1F0FC 50%, #F0F8FE 70%, #F0F8FE 100%);
}
/* Unbookable/disabled days: grey-toned glass effect matching the blue cell gradient style */
#calendarAvailability td.ui-datepicker-unselectable span.ui-state-default {
    background: linear-gradient(to bottom, #f0f0f0 0%, #f0f0f0 50%, #e4e4e4 50%, #f2f2f2 70%, #f2f2f2 100%);
    background-image: linear-gradient(to bottom, #f0f0f0 0%, #f0f0f0 50%, #e4e4e4 50%, #f2f2f2 70%, #f2f2f2 100%);
    border-color: #d0d0d0;
    color: #aaa;
    opacity: 1;
}

/* Layer 2: booking overlays — JS-injected divs */
.booking-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 25%;
    bottom: 25%;
    background: #aaa;
    pointer-events: none;
    z-index: 5;
}
.booking-shape {
    position: absolute;
    top: 25%;
    bottom: 25%;
    aspect-ratio: 1;
    background: #aaa;
    border-radius: 50%;
    pointer-events: none;
    z-index: 7;
}
/* Check-in: circle centered on right edge, left half visible */
.checkin-shape {
    right: 0;
    transform: translateX(50%);
}
/* Checkout: circle centered on left edge, right half visible */
.checkout-shape {
    left: 0;
    transform: translateX(-50%);
}

/* Layer 3: text always on top of overlays */
#calendarAvailability .ui-datepicker-calendar td a,
#calendarAvailability .ui-datepicker-calendar td span.ui-state-default {
    position: relative;
    z-index: 10;
}
/* Booked day text color — darker than the #aaa bar so numbers remain readable */
#calendarAvailability td.bookedDay span.ui-state-default,
#calendarAvailability td.bookedDay a.ui-state-default {
    background: transparent;
    background-image: none;
    color: #666;
}
/* Check-in day text */
#calendarAvailability td.checkinDay span.ui-state-default,
#calendarAvailability td.checkinDay a.ui-state-default {
    opacity: 1;
    background: transparent;
    background-image: none;
    color: #666;
    font-weight: bold;
}
/* Checkout day text — transparent bg so triangle overlay is visible underneath.
   Blue gradient provided by cal-base-blue div at z-index:1 instead. */
#calendarAvailability td.checkoutDay:not(.checkinDay) span.ui-state-default,
#calendarAvailability td.checkoutDay:not(.checkinDay) a.ui-state-default {
    opacity: 1;
    background: transparent;
    background-image: none;
    font-weight: bold;
}
/* Layer 1 base div: grey gradient for unbookable days that have booking overlays.
   Sits below the triangle (z-index:5) and text (z-index:10). */
.cal-base-grey {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #f0f0f0 0%, #f0f0f0 50%, #e4e4e4 50%, #f2f2f2 70%, #f2f2f2 100%);
    border: 1px solid #d0d0d0;
    pointer-events: none;
    z-index: 1;
}
/* Blue gradient base for bookable checkout days (replaces span bg which must be transparent) */
.cal-base-blue {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #EAF5FE 0%, #EAF5FE 50%, #E1F0FC 50%, #F0F8FE 70%, #F0F8FE 100%);
    border: 1px solid #c5dbec;
    pointer-events: none;
    z-index: 1;
}
/* When a selection overlay is present, make the cell content transparent so overlay shows through */
#calendarAvailability td.has-sel .ui-state-default {
    background: transparent !important;
    background-image: none !important;
}

/* Interactive selection overlays — z-index 6, above booking overlays */
.sel-el {
    position: absolute;
    pointer-events: none;
    z-index: 6;
}
.sel-bar {
    left: 0; right: 0;
    top: 25%; bottom: 25%;
}
.sel-circle-right {
    right: 0;
    transform: translateX(50%);
    top: 25%; bottom: 25%;
    aspect-ratio: 1;
    border-radius: 50%;
}
.sel-circle-left {
    left: 0;
    transform: translateX(-50%);
    top: 25%; bottom: 25%;
    aspect-ratio: 1;
    border-radius: 50%;
}
.sel-avail    { background: #3a86d4; }
.sel-conflict { background: #c0392b; }

/* Inline quote panel below the calendar */
#calendarQuote {
    margin-top: 10px;
    padding: 12px 16px;
    background: #f4faff;
    border: 1px solid #c5dbec;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
}
.cq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.cq-dates { font-weight: bold; color: #2e6e9e; }
.cq-clear { color: #aaa; text-decoration: none; font-size: 15px; }
.cq-clear:hover { color: #555; }
.cq-warn { color: #c0392b; font-style: italic; }
.cq-rows { margin-bottom: 10px; }
.cq-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #deeaf5;
}
.cq-discount { color: #2a7a2a; }
.cq-total {
    font-weight: bold;
    font-size: 14px;
    color: #2e6e9e;
    border-bottom: none;
    border-top: 1px solid #c5dbec;
    padding-top: 5px;
    margin-top: 3px;
}
.cq-book-btn {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
}

.ui-widget-content {
	margin: 0px;
}

/* =Global stuff
-------------------------------------------------------------- */

a:link {
	color: #0066cc;
	text-decoration: none;
}
a:visited {
	color: #743399;
}
a:active,
a:hover {
	color: #ff4b33;
}


/* =Header Layout 
-------------------------------------------------------------- */
.messagepop {
  background-color:#FFFFFF;
  border:1px solid #999999;
  cursor:default;
  float: left;
  display:none;
  position:relative;
  text-align:left;
  width: 300%;
  z-index:50;
  padding: 25px 25px 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.messagepop label {
	display: block;
	font-size: 14px;
}
.formQuote {
	min-width: 283px;
}

.success, .failure {
    border: solid 1px black;
    padding: 5px;	
}
.failure {
	background-color: #FEE !important;
}

#result {
    background-color: #FFF;
    position: relative;
    width: 100%;
    z-index: 50;
    margin-top: 30px;
}

input#message_submit {
	background-color: #07f;
	color: #FFF;
	font-weight: bold;
	border: none;
	font-size: 14px;
	padding: 4px 6px;
	cursor: pointer;
}

textarea#messagebody {
	width:100%;
}

body
{
	text-align: left;
	background-color: #7f7f7f;
}

#header {
	background-color: #333;
}
#header img
{
	width:100%;
}
#my-slideshow .bjqs li img
{
	width: 100%;
	height: 100%;
	object-fit: contain;
	background-color: #111;
}
#pageBG {
	background-color: #f5f5f5;
}
#container
{
	background-color: #fff;
	margin: 0 auto;
	width: 90%;
	padding: 15px 25px 15px; /* Top L/R Bottom*/
	border-style: solid;
	border-color: #CCC;
	border-width: 0px 1px 1px;

	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	color: #555;
	min-width: 850px;
	max-width: 1080px;
}

#intro label
{
	font-weight: bold;
}

#intro
{
	/* width: 100%; */
	/* overflow: auto; */
	padding: 10px 0 20px;
}

#introduction
{
	width: 100%;
}
#siteIntroBox {
	border: 2px solid #DDD;
	background-color: #F7F9FF;
	padding: 20px;

}

#profile
{
	border-radius: 50%;
	width: 115px;
	height: 115px;
}

#intro-col1, #intro-col2
{
	/* float: left; */
	/* position: relative; */
	box-sizing: border-box;
	display: inline-block;
}
#intro-col1
{
	width: 25%;
	text-align: center;
	padding-right: 10px;
	float: left;
}
#intro-col1 p {
	padding-top: 7px;
}
#intro-col2
{
	width: 75%;
}

#intro-col2 h1
{
	font-family: Futura,"Helvetica Neue",Helvetica,Arial,sans-serif;
	margin-bottom: 6.25px;
	font-size: 24px;
}

#location {
	padding-bottom: 20px;
}

#intro-subcol1, #intro-subcol2, #intro-subcol3
{
	width: 33.33333%;
	/* position: relative; */
	min-width: 170px; /* (was 207) This is nice! It casues re-flow */
	display: inline-block;
	vertical-align: top;
}
#intro-subcol1 {
	/*padding-top: 10px;*/
	/*width: 33.33333%;*/
	color: #0076ff;
}
#intro-subcol2 {
    padding-bottom: 15px;
	/*padding-top: 10px;*/
}


#bookit {
}

.entryError {
	background-color: #FEE !important;
}

#quoteArea {
	color: #000;
}
.validDate {
	font-weight: bold;
	color: darkgreen;
}
#quoteArea label {
	display: inline-block;
	font-weight: normal;
}

#quote {
	color: #07f;
	font-weight: bold;
}
#dateMsgArea {
	margin: 6px 0px;
	color: red;
}

#calendarAvailability {
	min-height: 235px;
	padding-bottom: 15px;
}

.blueButton {
	display: inline-block;
	padding: 5px 10px;
	background-color: #0076ff;
	color: #fff;
	font-size: 1.5em;
	font-weight: bolder;
}

a.blueButton:link,
a.blueButton:visited {
	color: #fff;
}
a:active,
a.blueButton:hover {
	color: #eee;
}



.selected {
	background-color: #7AF;
	outline: 2px solid #07F;
}

#vrboImg {
	background-color: #1d924c;
	height: 32px;
}
#vrboImg2 {
	padding-left: 10px;
	background-color: #1d924c;
	height: 32px;
}
#airbnbImg {
	height: 32px !important;
}

.feesInfo {
	color: #700;
	font-size: 12px;
}

.reviews {
	font-size: 12px;
	height: 16px;
	text-align: bottom;
}

.sectionRow {
	width: 100%;
	overflow: auto;
	padding: 15px 0px 15px; /* Top L/R Bottom*/
	border-style: solid;
	border-color: #DDD;
	border-width: 1px 0px 0px;
}
.sectionRow p {
    margin-bottom: 10px;
}

.sectionLabel {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */

	float: left;
	width: 25%;
	padding-left: 20px;
}

.sectionBody {
	overflow: hidden;
	padding-right: 20px;
}

.sectionBody h3 {
	margin: 10px 0 0;
	font-size: inherit;
	font-weight: bold;
	display: inline-block;
}

.multi-column {
	-moz-column-count: 2;
    -moz-column-gap: 0.5em;
    -webkit-column-count: 2;
    -webkit-column-gap: 0.5em;
     column-count: 2;
     column-gap: 0.5em;
}
.single-column-list {
	list-style-position: outside;
	list-style-type: disc;
    margin-left: 1.1em;
}
.rowGroup {
	width:100%;
	display: inline-block;
}
.column {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    /*float: left;*/
    display: inline-block;
    vertical-align: top;
    width: 50%;
    /*min-width: 320px;*/
}
#calendarCol {
    min-width: 320px;
    /*padding-right: 20px;*/
    box-sizing: border-box;
}

#propertyinfolist {
	font-weight: bold;
	margin-left: 10%;
	padding: 10px 0px 0px;

}
#priceinfolist {
	font-weight: bold;
}

#propertyinfolist label, #priceinfolist label {
	font-weight: normal;
/*	float: left;
	width: 10em;
	text-align: right;*/
}

.info-comment {
	font-size: smaller;
	font-weight: bold;
}

.highlighted {
	color: #0076ff;
}
.waiverHighlight {
	background-color: #FFFABB;
}


#footer, #footer1, #footer2 {
	min-height: 100px;
	margin: 0 50px;
/*	width: 100%;
*/	padding: 15px 25px 15px; /* Top L/R Bottom*/

}

.overlay {
   background:transparent; 
   position:relative;
   width:650px;
   height:500px; /* your iframe height */
   top:500px;  /* your iframe height */
   margin-top:-500px;  /* your iframe height */
}

#topBar {
	font-family: Futura,"Helvetica Neue",Helvetica,Arial,sans-serif;

	height: 34px;
	width: 100%;
	background-color: #333;
	position: fixed;
	z-index: 1000;
	text-align: right;
	padding: 8px;
}

#topBar ul {
	text-align: center;
}

#topBar li {
	display: inline-block;
	padding: 4px 20px;
	color: #fff;
}

#topBar .bookBtn:hover{
	background-color: #7AF;
	cursor: pointer;
}

#topBar li:first-child {
	background-color: #07F;
	border-radius: 8px;
	float:left;
}
#topBar li:nth-child(3) {
	float:right;
}

#topBar a:link,
#topBar a:visited {
	color: #fff;
}
#topBar a:active,
#topBar a:hover {
	color: #eee;
}
.bookBtn {
}


#topBar label {
	color: #7AF;
}

#my-slideshow {
	margin: 0 auto;
	padding-top: 50px;
}

.bjqs-prev, .bjqs-next {
	position: absolute;
	top: 50%;
}
.bjqs-next {
	right: 0;
}


ul.bjqs-controls li a {
    background-color: rgba(0,0,0,0.5);
    color: #FFF;
    padding: 20px;
}

ol.bjqs-markers {
	float: right;
	position: relative;
	bottom: 50px;
	left: 0px !important;
}

ol.bjqs-markers li {
	background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
	margin: 2px;
	width: 13px;
	height: 13px;
	display: inline-block !important; 
}

.active-marker {
	background-color: rgba(0,128,255,0.7) !important;	
}
ol.bjqs-markers li a {
	color: transparent;
}

/* Calendar layout — sits above the info list */
#calendarCol {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 14px;
}
#calendarInfo {
	list-style: none;
	padding: 0;
	margin: 0 0 10px;
}
#calendarInfo li {
	padding: 2px 0;
}

/* Calendar widget sizing */
#calendarAvailability .ui-datepicker {
	width: 100%;
	font-size: 16px;
}
#calendarAvailability .ui-datepicker-header {
	padding: 8px 0;
}
#calendarAvailability .ui-datepicker-calendar {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
#calendarAvailability .ui-datepicker-calendar th {
	font-size: 14px;
	padding: 6px 0;
	width: calc(100% / 7);
}
#calendarAvailability .ui-datepicker-calendar td {
	height: 64px;
	width: calc(100% / 7);
	padding: 0;
	box-sizing: border-box;
}
/* Date number at top; position:relative + z-index:10 set in the calendar section above */
#calendarAvailability .ui-datepicker-calendar td a,
#calendarAvailability .ui-datepicker-calendar td span.ui-state-default {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	padding-top: 8px;
}
/* Price pinned to bottom of cell — td is the positioned ancestor */
#calendarAvailability .day-price {
	display: block;
	font-size: 11px;
	text-align: center;
	opacity: 0.85;
	line-height: 1;
	margin-top: 4px;
}
#calendarAvailability .bookedDay .day-price,
#calendarAvailability .ui-datepicker-unselectable .day-price {
	display: none;
}
/* Checkout days are bookable — show the price (unless also a check-in = same-day turnover) */
#calendarAvailability td.checkoutDay:not(.checkinDay) .day-price {
	display: block;
}

.mapFrame {
	width: 100%;
	height: 500px;
}

/*
#bookit
{
    background-color: rgba(60,63,64,0.9);
    border: 0;
    color: #fff;
    width: 315px;
    height: 40px;
    padding: 0 20px;
    text-transform: capitalize;
    z-index: 1001;
    position: relative;
    top: -40px;
}

#price
{
	float: left;
    padding: 6px 0;
}

#price span
{
	font-size: 24px;
	font-weight: normal;
	line-height: 1.1;
	font-family: Circular,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

#price-period
{
	float:right;
	padding: 9px 0;
}
#price-period span
{
    font-size: 14px;
    line-height: 1.43;
    font-family: Circular,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
*/

@media all and (max-width: 900px) {
	#container {
		width: initial;
		/* 		padding: 5px 10px; */
		/*padding: 0;*/
		margin: 0 0px;
		min-width: initial;
	}

	.messagepop {
		width: 65vw;
	}
}

@media only all and (max-width: 704px) {
	#intro-subcol1, #intro-subcol2, #intro-subcol3 {
		min-width: 165px;
	}

	#topBar label {
		display: none;
	}

	#introduction .sectionLabel {
	    display: none;
	}
	#profile {
		width: 70px;
		height: 70px;
	}
	.messagepop {
		width: 90vw;
		left: -23vw;
	}

	.multi-column {
		list-style-position: outside;
		list-style-type: disc;
		margin-left: 1.1em;
		-moz-column-count: initial;
		-moz-column-gap: initial;
		-webkit-column-count: initial;
		-webkit-column-gap: initial;
		column-count: initial;
		column-gap: initial;
	}
	ol.bjqs-markers li {
		display: none !important;
	}
}

@media all and (max-width: 550px) {
	#topBar li {
		font-size: 75%;
	}
	#topBar {
		height: 27px;
	}
	#my-slideshow {
		padding-top: 43px;
	}
}

@media all and (max-width: 480px) {
	#topBar li {
		padding: 4px 10px;
	}

	#introduction {
		display: none;
	}

	/* Cramming a bit for the iPhone, shrink my profile pic */
	#profile {
		width: 70px;
		height: 70px;
	}

	#intro-subcol1, #intro-subcol2, #intro-subcol3
	{
		width: initial;
		float: left;
		position: relative;
	}

	.sectionLabel {
	    float: none;
	    width: inherit;
	    font-size: 25px;
	    font-weight: bold;
	    padding: 0 0 20px;
	    /* text-align: center; */
	}

	div#intro-subcol2 {
	    margin-bottom: 20px;
	}

/*	.messagepop {
	  background-color:#FFFFFF;
	  border:1px solid #999999;
	  cursor:default;
	  display:block;
	  position:relative;
	  text-align:left;
	  width:650px;
	  z-index:50;
	  padding: 25px 25px 20px;
	}
*/
/*

	#intro-col2 h1 {
		font-size: 40px;
	}

	#location {
		font-size: 30px;
	}
*/}
