﻿html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.clearfix:after,
.group:after {
  content: "";
  display: table;
  clear: both;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #514B43;
  color: #151515;
  font-family: 'Open Sans', arial, verdana, helvetica;
  font-size: 16px;
  line-height: 21px;
}

form {
  margin: 0;
  padding: 0;
  border-width: 0;
}

h1, h2, h3, h4 {
  padding: 0;
}

h1 {
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  margin: 0 0 1em 0;
}

h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  margin: 0 0 .4em 0;
}

p {
  margin: 0;
}

a img {
  border: 0;
}

a {
  color: #151515;
  font-weight: bold;
  text-decoration: underline;
}

  a:hover {
    color: #333;
  }

  a.blue {
    text-decoration: none;
    border-bottom: 2px solid #29A5DE;
  }

    a.blue:hover {
      border-bottom: 2px solid #FF8C3E;
    }

  a.orange {
    text-decoration: none;
    border-bottom: 2px solid #FF8C3E;
  }

    a.orange:hover {
      border-bottom: 2px solid #29A5DE;
    }

/* Reset browser specific styles. Don't override select, checkbox or radiobutton */
input[type=text],
input[type=password],
input[type=button],
input[type=submit],
textarea {
  -webkit-appearance: none;
}

/* Reset table styles */
table,
thead,
tbody,
tfoot,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: none;
  border-collapse: inherit;
  border-spacing: 0;
  border-color: inherit;
  vertical-align: inherit;
  text-align: left;
  font-weight: inherit;
  -webkit-border-horizontal-spacing: 0;
  -webkit-border-vertical-spacing: 0;
}

input[type=text],
input[type=password],
textarea,
select {
  font-family: 'Open Sans', arial,verdana,helvetica;
  border: 1px solid #ccc;
  background-color: #fff;
  width: 100%;
  padding: 0 0 0 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  font-size: 16px;
}

::placeholder,
:: -ms-input-placeholder,
:-ms-input-placeholder {
  color: #888;
  opacity: 1;
}

input[type=submit] {
  font-family: 'Open Sans', arial, verdana, helvetica;
  padding: 0 20px 0 20px;
  cursor: pointer;
}

input[type=text],
input[type=password],
select {
  height: 44px;
}

  select.placeholder {
    color: #888;
  }

form select option {
  color: #383F40;
}

  form select option:first-child {
    color: #383F40;
  }

.date-field {
  position: relative;
}

  .date-field .mdi {
    position: absolute;
    right: 10px;
    font-size: 24px;
    color: #ccc;
    line-height: 44px;
  }

.clear,
.clearBoth {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: -1px 0 0 0;
}

/* Prevent double submissions javascript will add the disabled-button class */
.disabled-button {
  pointer-events: none;
  opacity: 0.6;
}

.submitButton,
.button,
.button1,
.button2,
.button3 {
  display: inline-block;
  color: #fff;
  background-color: #333;
  border: 1px solid #333;
  font-size: 1em;
  height: 44px;
  line-height: 44px;
  font-weight: bold;
  padding: 0 20px 0 20px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

/* Charcoal */
.button {
  background-color: #333;
  border: 1px solid #333;
}

/* Orange */
.button1 {
  background-color: #FF8C3C;
  border: 1px solid #FF8C3C;
}

/* Blue */
.button2,
.submitButton {
  background-color: #29A5DE;
  border: 1px solid #29A5DE;
}

/* White with Blue Outline */
.button3 {
  background-color: #fff;
  border: 1px solid #29A5DE;
  color: #29A5DE;
}

  .submitButton:hover,
  .button:hover,
  .button1:hover,
  .button2:hover,
  .button3:hover,
  .button4:hover,
  .submitButton:active,
  .button:active,
  .button1:active,
  .button2:active,
  .button3:active,
  .button4:active {
    background-color: #288CAE;
    border: 1px solid #288CAE;
    color: #fff;
  }

.button-small {
  font-size: .9em;
  height: 30px;
  line-height: 30px;
  padding: 0 10px 0 10px;
  text-transform: none;
}

/* Charcoal */
.tag,
.tag1,
.tag2,
.tag3,
.tag-red {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background-color: #333;
  font-size: .8em;
  line-height: 20px;
  padding: 0 5px;
  text-decoration: none;
  border: 0px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  font-weight: normal;
}

/* Orange */
.tag1 {
  background-color: #FF8C3C;
}

/* Blue */
.tag2 {
  background-color: #29A5DE;
}

/* Gray */
.tag3 {
  background-color: #999;
}

.tag-red, .tag.tag-red {
  background-color: #ff0000;
}

  .tag:hover,
  .tag1:hover,
  .tag2:hover,
  .tag3:hover,
  .tag-red:hover {
    color: #fff;
  } {
    color: #fff;
  }

/* Impersonation Banner */
.impersonation-banner {
  text-align: center;
  padding: 10px;
  background: #905abd;
  color: #fff;
  border-bottom: 20px solid #fff;
  position: relative;
  /* Above #backgroundWhiteStripe */
  z-index: 2;
}

.impersonation-banner a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.pageCopy,
#myAccount {
  padding: 20px;
}

@media screen and (max-width: 750px) {
  .pageCopy,
  #myAccount {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

.mdi-loading {
  display: inline-block;
  font-size: 40px;
  line-height: 40px;
  -webkit-animation: spin .8s ease linear;
  animation: spin .8s ease infinite;
}

.warning-requires-confirmation .confirmation-checkbox {
margin-top: 20px;
}

.warning-requires-confirmation .confirmation-checkbox label {
  font-weight:bold;
}

.website-label,
.website-label:before {
  position:relative;
  z-index:2;
}

  .website-label:before {
    line-height: 30px;
    padding-left:10px;
  }

.website-label-development {
  border: 10px solid green;
}

  .website-label-development:before {
    content: 'DEVELOPMENT';
    color: green;
  }

.website-label-training {
  border: 10px solid orange;
}

  .website-label-training:before {
    content: 'TRAINING';
    color: orange;
  }

/******************************/
/* MAIN                       */
/******************************/
#backgroundWhiteStripe {
  height: 20px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#container1_white {
  /*width:804px;*/
  width: 980px;
  margin: 0 auto 0 auto;
  background-color: #fff;
  padding-bottom: 2px;
  /*position:relative;*/
  z-index: 2;
  -webkit-border-bottom-right-radius: 24px;
  -webkit-border-bottom-left-radius: 24px;
  -moz-border-radius-bottomright: 24px;
  -moz-border-radius-bottomleft: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}

#container1_white {
  max-width: 980px;
  width: 100%;
}

.full-width #container1_white {
  max-width: 100%;
}

#brownCurves {
  position: relative;
  width: 980px;
}

#brownCurves {
  width: 100%;
  max-width: 980px;
}

.full-width #brownCurves {
  display: none;
}

#container1_white #brownCurves span#brownCurveLeft {
  position: absolute;
  z-index: 3;
  left: -23px;
  top: 20px;
  width: 23px;
  height: 23px;
  display: inline-block;
  background-color: #fff;
  /*background-image:url(../images/header/brown-curve-left.gif);*/
}

  #container1_white #brownCurves span#brownCurveLeft > span {
    display: inline-block;
    width: 23px;
    height: 23px;
    background-color: #514B43;
    -webkit-border-top-right-radius: 24px;
    -moz-border-radius-topright: 24px;
    border-top-right-radius: 24px;
  }

#container1_white #brownCurves span#brownCurveRight {
  position: absolute;
  z-index: 3;
  width: 23px;
  height: 23px;
  right: -23px;
  top: 20px;
  display: inline-block;
  background-color: #fff;
  /*background-image:url(../images/header/brown-curve-right.gif);*/
}

  #container1_white #brownCurves span#brownCurveRight > span {
    display: inline-block;
    width: 23px;
    height: 23px;
    background-color: #514B43;
    -webkit-border-top-left-radius: 24px;
    -moz-border-radius-topleft: 24px;
    border-top-left-radius: 24px;
  }

/* Adjustments for website instances with stripe & label */
.website-label #backgroundWhiteStripe {
  height: 30px;
}

.website-label #container1_white #brownCurves span#brownCurveLeft,
.website-label #container1_white #brownCurves span#brownCurveRight {
  top: 0px;
}

#header {
  position: relative;
}

  #header img#logo {
    margin-left: 40px;
    float: left;
    margin-top: 20px;
    width: 100%;
    max-width: 404px;
    height: auto;
  }

@media screen and (max-width: 980px) {
  #header img#logo {
    margin-left: 10px;
  }
}

@media screen and (max-width: 740px) {
  #header {
    height: 64px; /* menu button plus padding */
  }

    #header img#logo {
      position: absolute;
      bottom: 0;
      width: 80%;
      width: calc(100% - 85px);
    }
}

@media screen and (max-width: 480px) {
  #header img#logo {
    margin-top: 40px;
  }
}

#header .menu-button {
  display: none;
  float: right;
  margin: 10px 10px 10px 0;
  font-size: 24px;
  line-height: 24px;
  padding: 9px 0 9px 0;
  color: #29A5DE;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  text-align: center;
  border: 1px solid #2A8CAF;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

  #header .menu-button:hover,
  #header .menu-button:active {
    color: #fff;
    background-color: #29A5DE;
    border: 1px solid #29A5DE;
  }

@media screen and (max-width: 740px) {
  #header .menu-button {
    display: inline-block;
  }
}

#header a#reviews-link,
#header a#facebook-link,
#header a#list-link {
  display: inline-block;
  float: right;
  margin: 48px 2px 0 0;
  padding: 2px 15px 0;
  background-color: #FF8B3D;
  font-family: 'Open Sans', Calibri, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
}

#header a#facebook-link {
  background-color: #00A7DE;
  color: #fff;
}

#header a#list-link {
  background-color: #CEBB99;
}

#header a#reviews-link {
  margin-right: 40px;
  background-color: #FF8B3D;
}

  #header a#reviews-link .mdi {
    color: #fff;
  }

    #header a#reviews-link .mdi:first-of-type {
      margin-left: 5px;
    }

@media screen and (max-width: 980px) {
  #header a#reviews-link {
    margin-right: 10px;
  }
}

@media screen and (max-width: 910px) {
  #header a#list-link .your,
  #header a#reviews-link .mdi {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  #header a#list-link .property {
    display: none;
  }
}

@media screen and (max-width: 740px) {
  #header a#facebook-link,
  #header a#list-link,
  #header a#reviews-link {
    display: none;
  }
}

div #header #contactInfo {
  height: 20px; /* push the list button down */
  font-weight: bold;
  font-size: .8em;
  line-height: 20px;
  text-align: right;
  margin-top: 3px;
  right: 0;
  position: absolute;
  z-index: 2; /* above white stripe */
}

@media screen and (max-width: 740px) {
  #header #contactInfo {
    display: none;
  }
}

#header #contactInfo #facebookLike {
  display: inline-block;
  height: 20px;
  float: right;
}

#header #contactInfo a.login,
#header #contactInfo a.admin {
  color: #666;
  display: inline-block;
  height: 20px;
  float: right;
  font-weight: normal;
}

#header #contactInfo span.seperator {
  color: #666;
  display: inline-block;
  margin: 0 7px 0 7px;
  height: 20px;
  float: right;
}

#header #contactInfo span.location {
  color: #666;
  display: inline-block;
  margin-right: 5px;
  height: 20px;
  float: right;
}

#header #contactInfo span.phone {
  color: #29A5DE;
  display: inline-block;
  margin-right: 5px;
  height: 20px;
  float: right;
}

#container2_blue {
  clear: both;
  width: 100%;
  width: calc(100% - 4px);
  margin: 0 2px 0 2px;
  background-color: #383F40;
  padding: 7px 0 7px 0;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}

#blueCurvesTop {
  position: relative;
  width: 100%;
  width: calc(100% - 4px);
}

#container3_white {
  width: 100%;
  width: calc(100% - 14px);
  margin: 0 7px 0 7px;
  background-color: #fff;
  min-height: 300px;
}

#topStripes {
  width: 100%;
  width: calc(100% - 14px);
  margin: 0 7px 0 7px;
  border-bottom: 7px solid #383F40;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

  #topStripes #topStripe1 {
    height: 7px;
    background-color: #2E6270;
  }

  #topStripes #topStripe2 {
    height: 7px;
    background-color: #2A8CAF;
  }

  #topStripes #topStripe3 {
    min-height: 7px;
    background-color: #29A5DE;
  }

.navigationContainer {
  overflow: hidden;
  white-space: nowrap;
}

#mainNavigation,
.sub-navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.sub-navigation {
  border-top: 7px solid #2A8CAF;
}

  #mainNavigation li,
  .sub-navigation li {
    margin: 0 1.5%;
    padding: 0;
    display: inline-block;
  }

@media (max-width: 860px) {
  #mainNavigation li,
  .sub-navigation li {
    margin: 0 0.9%;
  }
}

#mainNavigation li a,
.sub-navigation li a {
  font-family: 'Open Sans', Calibri, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  display: inline-block;
  color: #333;
  text-decoration: none;
  padding: 3px 0;
}

@media (max-width: 940px) {
  #mainNavigation li a,
  .sub-navigation li a {
    text-transform: none;
  }
}

@media (min-width: 741px) and (max-width: 780px) {
  #mainNavigation li a,
  .sub-navigation li a {
    font-size: 14px;
  }
}

#mainNavigation li.selected a,
#mainNavigation li a:hover,
.sub-navigation li.selected a,
.sub-navigation li a:hover {
  color: #fff;
}

.mobile-menu {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

  .mobile-menu li {
    margin: 0;
    padding: 0;
    display: block;
  }

  .mobile-menu a {
    font-family: 'Open Sans', Calibri, sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 24px;
    padding: 10px 0;
    height: 44px;
    font-weight: 600;
    display: block;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #2A8CAF;
  }

  .mobile-menu li:last-child a {
    border-bottom: 0;
  }

  .mobile-menu .selected a,
  .mobile-menu a:hover {
    color: #fff;
  }

/* Sub menu within the mobile menu */
.mobile-menu .sub-menu-item {
  background: #2a8caf;
}

.mobile-menu .sub-menu-item:not(:nth-last-child(1 of .sub-menu-item)) a { /* Not the last .sub-menu-item of this class */
  border-bottom: 1px solid #2e6270;
}


#topStripes #topStripe4 {
  height: 7px;
  background-color: #2A8CAF;
}

#topStripes #topStripe5 {
  height: 7px;
  background-color: #2E6270;
}

#bottomStripes {
  height: 21px;
  width: 100%;
  width: calc(100% - 14px);
  margin: 0 7px 0 7px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

  #bottomStripes #bottomStripe1 {
    height: 7px;
    background-color: #29A5DE;
  }

  #bottomStripes #bottomStripe2 {
    height: 7px;
    background-color: #2A8CAF;
  }

  #bottomStripes #bottomStripe3 {
    height: 7px;
    background-color: #2E6270;
  }

#footer {
  width: 100%;
  max-width: 980px;
  margin: 10px auto 0 auto;
  padding: 0 20px 30px 20px;
  font-size: .8em;
  color: #CEBB99;
  line-height: 1.4em;
}

  #footer a {
    color: #CEBB99;
    font-weight: normal;
    text-decoration: underline;
  }

    #footer a:hover {
      color: #fff;
      text-decoration: underline;
    }

  #footer #contact {
    float: left;
    width: calc(100% / 3);
  }

  #footer #browseLinks {
    float: left;
    width: calc(100% / 3);
    text-align: center;
  }

  #footer #credit {
    float: right;
    text-align: right;
    width: calc(100% / 3);
  }

  #footer img.tripFlipBadge {
    margin-top: 20px;
  }

@media screen and (max-width: 700px) {
  #footer #contact,
  #footer #credit,
  #footer #browseLinks {
    width: 100%;
    text-align: left;
  }

  #footer #credit,
  #footer #browseLinks {
    margin-top: 30px;
  }
}

/******************************/
/* MOBILE AND TABLET MODE     */
/******************************/

@media screen and (max-width: 1050px) {
  #container1_white #brownCurves {
    display: none;
  }

  #backgroundWhiteStripe {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  #container1_white {
    max-width: 1024px;
    border-radius: 0;
    -webkit-border-radius: 0;
  }

  #container2_blue {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
  }

  #topStripes {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
  }

  #container3_white {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #bottomStripes {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
  }

  #footer {
    max-width: none;
  }
}

@media screen and (max-width: 740px) {
  #mainNavigation,
  .sub-navigation,
  #topStripe4,
  #topStripe5 {
    display: none;
  }

  #topStripes {
    height: auto;
  }

  .mobile-menu-on #topStripe4,
  .mobile-menu-on #topStripe5 {
    display: block;
  }

  .mobile-menu-on #topStripes {
    padding-bottom: 7px;
  }

  .mobile-menu-on .mobile-menu {
    display: block;
  }
}

/******************************/
/* MESSAGE BOXES              */
/******************************/

.main-content-message-box {
  padding: 20px;
}

.errorMessage {
margin-bottom: 20px;
}

.message-box .message-box-contents,
.errorMessage {
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

  .message-box.error-message .message-box-contents,
  .errorMessage {
    border: 3px solid #FF8C3E;
  }

.message-box.error-message h3,
.error-message h3 {
  color: #514B43;
}

.message-box.error-message p,
.error-message p {
  color: #514B43;
}

.message-box.error-message ul li,
.error-message ul li {
  color: #514B43;
}

.message-box.success-message .message-box-contents {
  border: 3px solid #29A5DE;
}

.message-box.success-message h3 {
  color: #29A5DE;
}

/******************************/
/* Divider / Tabs             */
/******************************/

.dividerStripe {
  height: 7px;
  background-color: #383F40;
}

  .dividerStripe .topTab {
    width: 200px;
    position: absolute;
    height: 18px;
    background-color: #383F40;
    margin-top: -18px;
    margin-left: 25px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

html .dividerStripe .topTabLightBlue {
  background-color: #29A5DE;
}

.dividerStripe .topTab img.topTabLeft {
  position: absolute;
  margin-left: 0px;
  margin-top: 0px;
}

.dividerStripe .topTab img.topTabRight {
  position: absolute;
  margin-left: 196px;
  margin-top: 0px;
}

.dividerStripe .topTab h2 {
  color: #CEBB9A;
  text-transform: uppercase;
  font-weight: normal;
  font-size: .9em;
  text-align: center;
  padding-top: 3px;
}

html .dividerStripe .topTabLightBlue h2 {
  color: #fff;
}

.bottomTab {
  width: 200px;
  position: absolute;
  height: 18px;
  background-color: #383F40;
  margin-top: 6px;
  margin-left: 25px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

  .bottomTab img.bottomTabLeft {
    position: absolute;
    margin-left: 0px;
    margin-top: 0px;
  }

  .bottomTab img.bottomTabRight {
    position: absolute;
    margin-left: 196px;
    margin-top: 0px;
  }

  .bottomTab h2 {
    color: #CEBB9A;
    text-transform: uppercase;
    font-weight: normal;
    font-size: .9em;
    text-align: center;
    margin-top: -3px;
  }

/******************************/
/* DATE PICKER                */
/******************************/

.ui-datepicker-trigger {
  cursor: pointer;
}

/******************************/
/* SEARCH FORM                */
/******************************/

#property-search-form {
  margin: 0 0 10px 0;
}

  #property-search-form .fields {
    margin: 0 -4px;
  }

  #property-search-form .field {
    width: 12.5%;
    display: inline-block;
    padding: 0 4px 8px 4px;
  }

@media screen and (max-width: 950px) {
  #property-search-form .field {
    width: 33.333333333%;
  }
}

@media screen and (max-width: 740px) {
  #property-search-form .field {
    width: 25%;
  }
}

@media screen and (max-width: 480px) {
  #property-search-form .field {
    width: 50%;
  }
}

#property-search-form label {
  font-size: .8em;
}

#property-search-form .nights {
  display: none;
}

#property-search-form .button2 {
}

#ui-datepicker-div {
  z-index: 9999999; /* above slideshow */
  top: 0px; /* page height bug fix as per http://dev.jqueryui.com/ticket/4753 */
}

/******************************/
/* SIMILAR PROPERTIES         */
/******************************/

#similarProperties {
}

  #similarProperties .properties {
    margin: 0 -5px;
  }

  #similarProperties .property {
    padding: 0 5px;
    width: 25%;
    float: left;
    margin: 0 0 20px 0;
  }

  #similarProperties .property:nth-child(4n+1) {
    clear:both;
  }

@media screen and (max-width: 800px) {
  #similarProperties .property {
    width: 50%;
  }

    #similarProperties .property:nth-child(4n+1) {
      clear: none;
    }

    #similarProperties .property:nth-child(2n+1) {
      clear: both;
    }
}

@media screen and (max-width: 480px) {
  #similarProperties .property {
    width: 100%;
    float:none;
  }
}

#similarProperties .property img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

#similarProperties .property .title {
  display: block;
  text-decoration: none;
  font-weight: normal;
}

/******************************/
/* CALENDAR LEGEND            */
/******************************/

.calendarLegend {
  margin: 15px 0 0 0;
  clear: both;
  padding: 10px;
  background-color: #efefef;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

  .calendarLegend .header {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .calendarLegend .legendData {
  }

  .calendarLegend .available,
  .calendarLegend .unavailable,
  .calendarLegend .unavailableLeft,
  .calendarLegend .unavailableRight,
  .calendarLegend .unavailableByOwner,
  .calendarLegend .unavailableByOrder,
  .calendarLegend .selected,
  .calendarLegend .otherMonthDay,
  .calendarLegend .minimumNight,
  .calendarLegend .maximumNight,
  .calendarLegend .preparationTime,
  .calendarLegend .holiday {
    height: 20px;
    line-height: 14px;
    width: 30px;
    margin: 0 5px 10px 0;
    display: inline-block;
    border: 2px solid #383F40;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    background-color: #fff;
  }

  .calendarLegend .unavailable {
    background-color: #514B43;
    color: #CEBB99;
  }

  .calendarLegend .unavailableByOwner {
    background-color: #FF8C3E;
    color: #000;
  }

  .calendarLegend .unavailableByOrder {
    background-color: #CEBB99;
    color: #000;
  }

  .calendarLegend .otherMonthDay {
    background-color: #ccc;
    color: #ccc;
  }

  .calendarLegend .selected {
    background-color: #FFB17D;
  }

  .calendarLegend .unavailableLeft {
    background-image: -webkit-linear-gradient(-60deg, #514B43 calc(50% - 1px), #fff 50%);
  }

  .calendarLegend .unavailableRight {
    background-image: -webkit-linear-gradient(-60deg, #fff calc(50% - 1px), #514B43 50%);
  }

  .calendarLegend .holiday {
    background-color: #16A6E5;
  }

  .calendarLegend .minimumNight {
    background-color: #6BB475;
  }

  .calendarLegend .maximumNight {
    background-color: #6BB475;
  }

  .calendarLegend .preparationTime {
    background-color: #92E9BE;
  }

  .calendarLegend .description {
    font-size: .9em;
    margin-right: 15px;
  }

/* SCROLLING CALENDAR */

.scrollingCalendar {
  position: relative;
}

  .scrollingCalendar .calendarScroll {
    width: calc(100% - 88px);
    height: 220px;
    margin-left: 44px;
    margin-right: 44px;
    overflow: auto;
    overflow-y: hidden;
    -ms-overflow-y: hidden;
  }

  .scrollingCalendar .scrollLeft,
  .scrollingCalendar .scrollRight {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
  }

  .scrollingCalendar .scrollLeft {
    left: -10px;
  }

  .scrollingCalendar .scrollRight {
    right: -10px;
  }

    .scrollingCalendar .scrollLeft:before,
    .scrollingCalendar .scrollRight:before {
      color: #29A5DE;
      font-size: 44px;
      line-height: 44px;
      opacity: 1;
    }

    .scrollingCalendar .scrollLeft:hover:before,
    .scrollingCalendar .scrollLeft:focus:before,
    .scrollingCalendar .scrollRight:hover:before,
    .scrollingCalendar .scrollRight:focus:before {
      color: #514B43;
    }

  .scrollingCalendar .calendar {
    width: 4150px;
    height: 200px;
    overflow: hidden;
    padding-right: -25px
  }

  .admin-logged-in .scrollingCalendar .calendar {
    width: 6350px;
  }

  .scrollingCalendar.scrollingCalendarAdmin .calendar {
    width: 12500px !important;
  }

  .scrollingCalendar .calendar .calendarWrapper {
    margin: 0 25px 0 0;
  }

/******************************/
/* HOME                       */
/******************************/

#home .background-container {
  background-color: #000;
  background-size: cover;
  background-position: center 100%;
  padding: 50px 0 50px 0;
}

#home #quickSearch {
  width: 400px;
  padding: 20px;
  background-color: rgba(255, 255, 255,.50);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  margin: 0 auto 0 auto;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 20px;
}

@media screen and (max-width: 480px) {
  #home .background-container {
    background-image: none;
    padding: 0;
  }

  #home #quickSearch {
    width: 100%;
    max-width: none;
    border-radius: 0;
    -webkit-border-radius: 0;
  }
}

#home #quickSearch .fields {
  margin-top: 10px;
}

#home #quickSearch .field {
  margin-bottom: 10px;
}

  #home #quickSearch .field:last-child {
    text-align: center;
    margin-bottom: 20px;
  }

#home #quickSearch .city label {
  font-weight: normal;
  display: inline-block;
  margin: 0 10px 0 0;
}

#home #quickSearch .textBox {
  width: 100%;
}

#home #quickSearch a#advancedSearch {
  font-size: .8em;
  text-align: center;
  display: none; /*display:block; */
  visibility: hidden;
}

#home #quickSearch h3 {
  font-size: .9em;
  font-weight: normal;
  text-align: center;
  margin: 0 0 5px 0;
  font-style: italic;
}

#home #quickSearch .all-homes {
  text-align: center;
  margin-top: 30px;
}

#home #welcome {
  width: calc(100% - 230px);
  float: left;
  padding: 20px 20px 30px 20px;
}

@media screen and (max-width: 850px) {
  #home #welcome {
    width: 100%;
    float: none;
  }
}

#home #welcome h1 {
  margin-bottom: 5px;
}

  #home #welcome h1 span {
    color: #29A5DE;
  }


#home #weather {
  width: 230px;
  float: right;
  padding: 20px 20px 30px 0;
  text-align:center;
}

@media screen and (max-width: 850px) {
  #home #weather {
    float: none;
    width: 100%;
  }
}

#home #weather h2 {
  font-size: 1.25em;
  margin-bottom: 5px;
}

#home #weather label {
  font-size: .9em;
  font-style: italic;
  display: block;
  margin: 0 0 15px 0;
}

#home #weather .description {
  text-align: center;
  font-weight: bold;
}

#home #weather img {
  width:100%;
  height: auto;
  max-width: 150px;
  margin: -15px 0 -20px;
}

#home #weather #fullWeather {
  text-align: center;
}

  #home #weather #fullWeather a {
    font-size: .8em;
    color: #777;
    text-decoration: none;
    font-weight: normal;
  }

#home #featuredProperties {
  padding: 0 20px;
  clear: both;
}

#home .properties {
  margin: 0 -5px;
}

#home .property {
  padding: 0 5px;
  width: 25%;
  float: left;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 800px) {
  #home .property {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  #home .property {
    width: 100%;
  }
}

#home .property img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

#home .property .title {
  display: block;
  text-decoration: none;
  font-weight: normal;
}

#home .tag-special {
}

#home #moreProperties {
  text-align: center;
  padding: 10px 0 30px 0;
}

/******************************/
/* PROPERTIES                 */
/******************************/

#property-list {
  padding: 20px;
}

  #property-list .results {
    float: left;
    line-height: 44px;
  }

  #property-list .sort-container {
    float: right;
    text-align: right;
    width: 220px;
  }

    #property-list .sort-container .sort-select {
      display: inline-block;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      border: none;
      /* needed for Firefox: */
      overflow: hidden;
      width: 190px;
      padding: 0;
      text-align: right;
      text-decoration: underline;
      color: #151515;
      /* Right align text in some browsers. Reversed in the option */
      direction: rtl;
    }

      #property-list .sort-container .sort-select option {
        direction: ltr;
      }

  #property-list .error-message {
    margin: 25px 25px 25px 25px;
    padding-bottom: 10px;
  }

  #property-list #properties {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }

  #property-list .property {
    width: 33.33333333%;
    max-width: 33.33333333%;
    flex: 1 0 33.33333333%;
    padding: 0 10px;
    margin: 0 0 40px;
    position: relative;
    padding-bottom: 95px; /* leave room for absolute buttons and padding */
    border-bottom: 1px solid #ccc;
  }

    #property-list .property:nth-child(3n+1) {
      clear: both;
    }

@media screen and (max-width: 940px) {
  #property-list .property {
    width: 50%;
    max-width: 50%;
    flex: 1 0 50%;
  }

    #property-list .property:nth-child(2n+1) {
      clear: both;
    }

    #property-list .property:nth-child(3n+1) {
      clear: none;
    }
}

@media screen and (max-width: 640px) {
  #property-list .property {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    flex: 1 0 calc(100% - 20px);
    padding: 0 0 40px 0;
    margin: 0 10px 40px 10px;
  }

  #property-list .property:last-child {
    padding-bottom: 0;
    margin-bottom: 30px;
    border-bottom: 0;
  }
}

#property-list .property a {
  text-decoration: none;
  font-weight: normal;
}

  #property-list .property a:hover {
    color: inherit;
  }

#property-list .property img {
  width: 100%;
  height: auto;
}

#property-list .property-image-carousel {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
}

#property-list .slick-list {
  background: #fff url('../../Resources/jquery/slick-1.8.1/ajax-loader.gif') center center no-repeat;
}

#property-list img.slick-loading {
  display: none;
}

#property-list .slick-prev,
#property-list .slick-next {
  display: none !important;
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  align-content: center;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

#property-list .property:hover .slick-prev,
#property-list .property:hover .slick-next {
  display: block !important;
}

@media screen and (max-width: 940px) {
  #property-list .slick-prev,
  #property-list .slick-next {
    display: block !important;
  }
}

#property-list .slick-prev:hover,
#property-list .slick-prev:focus,
#property-list .slick-next:hover,
#property-list .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

#property-list .slick-prev.slick-disabled:before,
#property-list .slick-next.slick-disabled:before {
  opacity: .5;
}

#property-list .slick-prev:before,
#property-list .slick-next:before {
  font-family: 'Material Design Icons';
  font-size: 30px;
  line-height: 44px;
  color: #fff;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#property-list .slick-prev:hover:before,
#property-list .slick-next:hover:before {
  color: #eee;
}

#property-list .slick-prev {
  left: 0;
}

  #property-list .slick-prev:before {
    content: '\FB0D'; /* chevron-left-circle */
  }

#property-list .slick-next {
  right: 0;
}

  #property-list .slick-next:before {
    content: '\FB0F'; /* chevron-right-circle */
  }

#property-list h2 {
  font-size: 1em;
  margin-bottom: 4px;
  line-height: 24px;
}

#property-list .property h2 a {
  color: #29A5DE;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

#property-list h2 a:hover {
  text-decoration: underline;
}

#property-list h2 span {
  color: #151515;
  display: inline;
  margin-left: 3px;
}

#property-list img {
  margin: 0 0 5px 0;
}

#property-list .details {
  font-size: .9em;
}

#property-list p.description {
  font-size: .8em;
}

  #property-list p.description a {
    color: #666;
  }

  #property-list p.description:hover {
    color: #666;
  }

  #property-list .rate-line .capacity-bedrooms {
    font-size: .9em;
  }

  #property-list .rate-line .slash {
    margin: 0 2px;
  }

#property-list .reviewsStars {
  display: block;
}

  #property-list .reviewsStars .count {
    display: none;
  }

  #property-list .buttons a {
    text-transform: none;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    bottom:40px;
  }

    #property-list .buttons a:first-child {
      left: 10px;
    }

#property-list .buttons a:last-child {
  right:10px;
}

  #property-list .buttons a:hover {
    color:#fff;
  }

@media screen and (max-width: 640px) {
  #property-list .buttons {
    margin-top: 15px;
  }

  #property-list .buttons a {
    position: initial;
  }

    #property-list .buttons a:last-child {
      float: right;
    }
}

/******************************/
/* PROPERTY DETAILS           */
/******************************/

#propertyDetail {
  padding: 20px;
}

  #propertyDetail .video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
  }

    #propertyDetail .video-responsive iframe {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute;
    }

  #propertyDetail h1 {
    float: left;
    color: #288CB0;
    margin: 0 0 15px 0;
    font-size: 22px;
    line-height: 44px;
    max-width: calc(100% - 155px);
    font-weight: 800;
  }

    #propertyDetail h1 span.seperator {
      display: inline;
      margin: 0 0 0 5px;
      color: #151515;
    }

  #propertyDetail .book-button {
    float: right;
    margin: 0 0 15px 10px;
  }

  #propertyDetail h2 {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
  }

  #propertyDetail .errors {
    margin: 20px 20px 25px 20px;
  }

  #propertyDetail .property-images {
    -moz-box-align: center;
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
  }

    #propertyDetail .property-images .property-image-set {
        position: relative;
        width: calc(100% - 525px);
        overflow: hidden;
        height: 350px;
        margin-left: 6px;
    }

    #propertyDetail .property-images .property-image {
      position: relative;
      -moz-box-pack: center;
      -moz-box-align: center;
      display: flex;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      vertical-align: middle;
      color: inherit;
      cursor:pointer;
    }

    #propertyDetail .property-images .property-image-hero .property-image {
      width: 525px;
      height: 350px;
    }

    #propertyDetail .property-images .property-image-set .property-image {
      height: calc(50% - 3px);
    }

    #propertyDetail .property-images .property-image-set .property-image:first-child {
        margin-bottom: 6px;
    }

        /* Hide the additional slideshow images */
        #propertyDetail .property-images .property-image-set .property-image.hidden {
            display:none;
        }

    #propertyDetail .property-images .property-image img {
      display: inline-block;
      left: 0px;
      position: absolute;
      width:100%;
      height:auto;
    }

@media screen and (max-width: 850px) {
    #propertyDetail .property-images .property-image-set {
        width: calc(100% - 450px);
        height: 300px;
    }

    #propertyDetail .property-images .property-image-hero .property-image {
        width: 450px;
        height: 300px;
    }
}

@media screen and (max-width: 750px) {
    #propertyDetail .property-images .property-image-set {
        width: calc(100% - 375px);
        height: 250px;
    }

    #propertyDetail .property-images .property-image-hero .property-image {
        width: 375px;
        height: 250px;
    }
}

@media screen and (max-width: 650px) {
  #propertyDetail .property-images .property-image-set {
    width: calc(100% - 300px);
    height: 200px;
  }

  #propertyDetail .property-images .property-image-hero .property-image {
    width: 300px;
    height: 200px;
  }
}

@media screen and (max-width: 575px) {
    #propertyDetail .property-images .property-image-set {
        display:none;
    }

    #propertyDetail .property-images .property-image-hero .property-image {
        display: block;
        width: 100%;
        height: auto;
    }

        #propertyDetail .property-images .property-image-hero .property-image img {
            position:initial;
            width: 100%;
            height: auto;
            max-width: 525px;
        }
}

    #propertyDetail .show-carousel-button {
        position: absolute;
        right: 10px;
        bottom: 10px;
    }

  #propertyDetail .property-menu {
    margin: 0 0 30px 0;
    font-size: 16px;
    list-style: none;
    padding-left: 0;
    position: relative;
    display: flex;
    min-height: 34px;
    align-items: flex-end;
    border-bottom: 1px solid #ddd;
  }

    #propertyDetail .property-menu li {
      position: relative;
      display: flex;
      margin-right: 30px;
    }

@media screen and (max-width: 550px) {
  #propertyDetail .property-menu li {
    margin-right: 15px;
  }

  #propertyDetail .property-menu .count {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  #propertyDetail .property-menu {
    display: none;
  }


  #propertyDetail h1 {
    float: none;
    max-width: none;
  }

  #propertyDetail .book-button {
    float: none;
    margin-left: 0;
  }
}

#propertyDetail .property-menu a {
  padding-bottom: 20px;
  padding-top: 20px;
  text-decoration: none;
  color: #666;
  position: relative;
  display: flex;
  align-items: flex-end;
  text-align: left;
  font-weight: 400;
}

  #propertyDetail .property-menu .selected a,
  #propertyDetail .property-menu a:hover,
  #propertyDetail .property-menu a:focus {
    color: #151515;
  }

#propertyDetail .property-menu .selected a {
  border-bottom: 2px solid #151515;
}

#propertyDetail #overview {
  margin-bottom: 30px;
}

#propertyDetail .highlights {
  line-height: 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

#propertyDetail .highlights-additional {
  line-height: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

  #propertyDetail .highlights .highlight,
  #propertyDetail .highlights-additional .highlight {
    display: inline-block;
    margin-right: 20px;
  }

#propertyDetail #socialButtons #like {
  width: 90px;
  display: inline-block;
}

#propertyDetail .weddingButton {
  width: 350px;
  border-top: 2px solid #EF7D7D;
  border-bottom: 2px solid #EF7D7D;
  padding: 2px 0 2px 0;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  margin: 10px 0 0 80px;
  text-decoration: none;
  display: block;
}

  #propertyDetail .weddingButton span {
    display: block;
    padding: 2px 0 3px 0;
    background-color: #EF7D7D;
  }

#propertyDetail #amenities {
  margin-bottom: 30px;
}

  #propertyDetail #amenities ul {
    margin: 20px -10px 0 0;
    padding: 0;
    width: 100%;
  }

    #propertyDetail #amenities ul li {
      float: left;
      width: 33.333333333333%;
      padding: 0 10px;
      list-style-type: none;
    }

@media screen and (max-width: 900px) {
  #propertyDetail #amenities ul li {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  #propertyDetail #amenities ul li {
    float: none;
    width: 100%;
    padding: 0;
  }
}

#propertyDetail #amenities ul li label {
  color: #16A6E5;
  font-size: 1.3em;
}

#propertyDetail #amenities ul li span {
  color: #383F40;
}

#propertyDetail #rates {
  margin-bottom: 30px;
}

  #propertyDetail #rates table {
    width: 100%;
    margin: 4px 4px 0 4px;
    border: 1px solid #ccc;
  }

@media screen and (max-width: 600px) {
  #propertyDetail #rates table {
    font-size: .9em;
  }
}

#propertyDetail #rates table tr.underline th,
#propertyDetail #rates table tr.underline td {
  border-bottom: 1px solid #ccc;
}

#propertyDetail #rates table th,
#propertyDetail #rates table td {
  vertical-align: middle;
  padding: 5px 10px;
}

@media screen and (max-width: 500px) {
  #propertyDetail #rates table th,
  #propertyDetail #rates table td {
    padding: 5px 5px;
  }
}

#propertyDetail #rates table th {
  font-weight: bold;
}

#propertyDetail #rates table .header {
  text-align: right;
  border-right: 1px solid #ccc;
  font-weight: bold;
  color: #29A5DE;
}

@media screen and (max-width: 500px) {
  #propertyDetail #rates table .header {
    display: none;
  }
}

#propertyDetail #rates table .dateRange {
  text-align: left;
}

#propertyDetail #rates table .rateTypes {
  border-left: 1px solid #ccc;
  text-align: left;
}

#propertyDetail #rates .button-container {
  text-align: center;
  margin: 15px 0;
}

#propertyDetail #rates .disclaimer {
  text-align: center;
  padding: 5px;
  font-style: italic;
  font-size: .9em;
}

#propertyDetail #availability {
  margin-bottom: 30px;
}

#propertyDetail .scrollingCalendar .calendar {
  width: 6350px;
}

#propertyDetail .calendarLegend {
}

#propertyDetail .scrollingCalendar .calendar .calendarWrapper {
  margin: 0 25px 0 0;
}

#propertyDetail #inquire {
  margin-bottom: 30px;
}

#propertyDetail #inquireIntro {
  margin-bottom: 20px;
  font-style: italic;
}

#propertyDetail #inquire .left {
  width: 40%;
  float: left;
  padding: 0 10px 0 0;
}

#propertyDetail #inquire .right {
  width: 60%;
  float: right;
  padding: 0 0 0 10px;
}

@media screen and (max-width: 800px) {
  #propertyDetail #inquire .left,
  #propertyDetail #inquire .right {
    width: 100%;
    float: none;
    padding: 0;
  }
}

#propertyDetail input,
#propertyDetail textarea,
#propertyDetail select,
#propertyDetail .recaptcha-container {
  margin-bottom: 15px;
}

#propertyDetail #inquire label {
  display: block;
  color: #16A6E5;
  font-weight: bold;
}

#propertyDetail #inquire .date-nights-guests-row {
  margin: 0 -5px;
}

#propertyDetail #inquire .date,
#propertyDetail #inquire .nights,
#propertyDetail #inquire .adults,
#propertyDetail #inquire .children {
  width: 25%;
  display: inline-block;
  float: left;
  padding: 0 5px;
}

@media screen and (max-width: 500px) {
  #propertyDetail #inquire .date,
  #propertyDetail #inquire .nights,
  #propertyDetail #inquire .adults,
  #propertyDetail #inquire .children {
    width: 50%;
  }

  #propertyDetail #inquire .adults {
    clear: both;
  }
}

#propertyDetail #inquire .date .ui-datepicker-trigger {
  position: absolute;
  margin: 0 0 0 4px;
  cursor: pointer;
}

#propertyDetail #inquire .button {
  background-color: #514B43;
  display: inline-block;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 4px 40px 4px 40px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  margin-top: 15px;
  border: 0px;
}

  #propertyDetail #inquire .button:hover {
    background-color: #FF8C3E;
  }

#propertyDetail #additionalInfo {
  margin-bottom: 30px;
}

  #propertyDetail #additionalInfo .infoRow {
    margin-bottom: 20px;
  }

  #propertyDetail #additionalInfo h3 {
    color: #29A5DE;
    margin: 0;
    padding: 0;
    font-size: 1.1em;
  }

#propertyDetail #reviews {
  margin-bottom: 30px;
}

  #propertyDetail #reviews .dividerStripe {
    margin-bottom: 20px;
  }

  #propertyDetail #reviews .review {
    margin: 0 0 20px 0;
  }

  #propertyDetail #reviews .propertyRating {
    float: right;
  }

  #propertyDetail #reviews .text {
    clear: both;
  }

  #propertyDetail #reviews h3 {
    color: #29A5DE;
    margin: 0;
    font-size: 1em;
  }

  #propertyDetail #reviews .name {
    color: #888;
  }

    #propertyDetail #reviews .name a {
      text-decoration: none;
      font-style: italic;
      color: #888;
    }

      #propertyDetail #reviews .name a:hover {
        color: #FF8B3D;
      }

#propertyDetail #moreReviewsLinkContainer {
  text-align: center;
}

#propertyDetail #moreReviews {
  display: none;
}

#propertyDetail #propertyMap {
  margin-bottom: 30px;
}

  #propertyDetail #propertyMap #map {
    width: 100%;
    height: 400px;
  }

#propertyDetail #bottomButtons {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

  #propertyDetail #bottomButtons a {
    display: inline-block;
    margin: 0 5px 10px;
  }

/******************************/
/* LIGHT GALLERY FIXED SIZE   */
/******************************/

.lg-backdrop.in {
  opacity: 0.85 !important;
}

.fixed-size.lg-outer .lg-inner {
  background-color: #FFF;
}

.fixed-size.lg-outer .lg-sub-html {
  position: absolute;
  text-align: left;
}

.fixed-size.lg-outer .lg-toolbar {
  background-color: transparent;
  height: 0;
}

  .fixed-size.lg-outer .lg-toolbar .lg-icon {
    color: #FFF;
  }

.fixed-size.lg-outer .lg-img-wrap {
  padding: 12px;
}

.lg-sub-html {
  display:none;
}

/******************************/
/* PROPERTY RATING            */
/******************************/
.propertyRating {
}

  .propertyRating .stars-container {
    width: 5em;
    height: 1em;
    text-align: left;
    display: inline-block;
    white-space: nowrap;
    font-weight: normal;
  }

  .propertyRating .stars {
    display: inline-block;
    width: 5em;
    height: 1em;
    white-space: nowrap;
    overflow: hidden;
  }

  .propertyRating .rating {
    margin-left: 5px;
    font-size: .9em;
  }

  .propertyRating .count {
    margin-left: 3px;
    color: #888;
    font-size: .9em;
  }


/******************************/
/* ABOUT                      */
/******************************/
#about #intro {
  margin-bottom: 20px;
  text-align: justify;
}

#about h2 {
  margin: 30px 0 0 0;
  font-size: 1.2em;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
}

#about h3 {
  color: #29A5DE;
  margin-bottom: 3px;
}

#about .attraction {
  font-size: 1em;
  font-weight: normal;
  color: #383F40;
  padding: 10px;
}

  #about .attraction label {
    float: left;
    font-weight: bold;
    display: inline-block;
    text-align: right;
    width: 130px;
    margin-right: 10px;
    word-wrap: break-word;
  }

  #about .attraction span {
    float: left;
    display: inline-block;
    width: calc(100% - 140px);
    word-wrap: break-word;
  }

@media screen and (max-width: 600px) {
  #about .attraction label {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin-right: 0;
  }

  #about .attraction span {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
  }
}

#about #skipButtons {
  margin: 0 -2px;
}

#about #skipButtons a {
  float:left;
  width: calc(20% - 4px);
  display: inline-block;
  margin: 0 2px 4px 2px;
  overflow:hidden;
}

@media screen and (max-width: 800px) {
  #about #skipButtons a {
    width: calc(33.33333333333% - 4px);
  }
}

@media screen and (max-width: 480px) {
  #about #skipButtons a {
    width: calc(100% - 4px);
  }
}

/******************************/
/* POLICIES                   */
/******************************/

#policies h2 {
  margin: 20px 0 5px 0;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
  font-size: 1.2em;
}

/******************************/
/* List Your Property         */
/******************************/
  #list h1 {
    margin-bottom: 20px;
    text-align: center;
  }

  #list .reviews-cta {
    text-align: center;
    margin-bottom: 20px;
  }

  #list #intro {
    margin: 0 0 20px 0;
  }

  #list h2 {
    margin: 20px 0 10px 0;
    font-size: 1.1em;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
  }

  #list .services {
    margin: 0 0 20px 0;
  }

    #list .services ul {
      margin: 0;
      padding: 0;
    }

    #list .services li {
      margin: 3px 0 0 40px;
      padding: 0;
      color: #383F40;
    }

  #list .signature {
    margin-bottom: 30px;
    font-size: 1.2em;
    font-style: italic;
    text-align: center;
  }

    #list .signature strong {
      padding-left: 10px;
      display: inline-block;
    }

  #list .contact-info {
    text-align: center;
  }

  #list .contact-info .call-cta {
    margin-bottom: 20px;
  }

  #list .contact-info .call-cta .button {
    margin-right: 20px;
  }

  #list .description {
    margin-bottom: 20px;
  }

#list .formFields {
  max-width: 600px;
}

#list .formField {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
}

  #list .required {
    color: #FF8C3E;
    padding-left:5px;
    display:inline-block;
  }

  #list label {
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
  }

/******************************/
/* SEND TO FRIEND             */
/******************************/

#sendToFriend .group {
  margin: 0 -10px;
}

#sendToFriend .left {
  width: 50%;
  float: left;
  padding: 0 10px;
}

#sendToFriend .right {
  width: 50%;
  float: left;
  padding: 0 10px;
}

@media screen and (max-width: 480px) {
  #sendToFriend .left,
  #sendToFriend .right {
    width: 100%;
    float: none;
  }
}

#sendToFriend .right img {
  width: 100%;
  height: auto;
}

#sendToFriend .formField {
  margin: 0 0 15px 0;
}

#sendToFriend label {
  display: block;
  font-weight: bold;
  margin: 0 0 5px 0;
}

/******************************/
/* CALENDAR                   */
/******************************/

.calendar br {
  display: none;
  visibility: hidden;
}

.calendar span.calendarWrapper {
  float: left;
  margin: 0 0 25px 25px;
  width: 229px;
  display: inline-block;
}

.calendar table.monthCalendar {
  width: 229px;
  border: 2px solid #383F40;
}

  .calendar table.monthCalendar td {
    padding: 0;
    width: 29px !important;
  }

.calendar table.title {
  background-color: #514B43;
  color: #CEBB99;
}

  .calendar table.title td {
    padding: 2px;
  }

.calendar td a {
  text-decoration: none;
  font-weight: normal;
}

.calendar td.day {
  border: 2px solid #383F40;
  width: 15px;
}

.calendar td.otherMonthDay {
  border: 2px solid #383F40;
  background-color: #bbb;
  width: 15px;
  color: #bbb;
}

.calendar td.available {
  background-color: #fff;
}

.calendar td.holiday {
  background-color: #16A6E5;
}

.calendar td.minimumNight {
  background-color: #6BB475;
}

.calendar td.maximumNight {
  background-color: #6BB475;
}

.calendar td.preparationTime {
  background-color: #92E9BE;
}

.calendar td.unavailable {
  background-color: #514B43 !important; /* override selected */
}

.calendar td.unavailable,
.calendar td.unavailable-begin {
  color: #CEBB99;
  text-decoration: line-through;
}

.calendar td.unavailableOwner {
  background-color: #FF8C3E;
}

.calendar td.unavailableOwner,
.calendar td.unavailableOwner-begin {
  color: #000;
  text-decoration: line-through;
}

.calendar td.unavailableOrder {
  background-color: #CEBB99;
}

.calendar td.unavailableOrder,
.calendar td.unavailableOrder-begin {
  color: #000;
  text-decoration: line-through;
}

.calendar td.selected {
  color: #000 !important;
  background-color: #FFB17D !important;
}

.calendar td.selected:before {
  display:none;
}

/* calc(50% - 1px) is used to smooth the jagged diagonal line in chrome and some other browsers */
.calendar td.available-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #fff 52%);
}

.calendar td.available-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #fff 48%, transparent 48%);
}

.calendar td.minimumNight-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #6BB475 52%);
}

.calendar td.minimumNight-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #6BB475 48%, transparent 48%);
}

.calendar td.maximumNight-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #6BB475 52%);
}

.calendar td.maximumNight-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #6BB475 48%, transparent 48%);
}

.calendar td.preparationTime-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #92E9BE 52%);
}

.calendar td.preparationTime-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #92E9BE 48%, transparent 48%);
}

.calendar td.holiday-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #16A6E5 52%);
}

.calendar td.holiday-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #16A6E5 48%, transparent 48%);
}

.calendar td.unavailable-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #514B43 52%);
}

.calendar td.unavailable-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #514B43 48%, transparent 48%);
}

.calendar td.unavailableOwner-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #FF8C3E 52%);
}

.calendar td.unavailableOwner-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #FF8C3E 48%, transparent 48%);
}

.calendar td.unavailableOrder-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #CEBB99 52%);
}

.calendar td.unavailableOrder-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #CEBB99 48%, transparent 48%);
}

.calendar td.selected-begin {
  background-image: -webkit-linear-gradient(-55deg, transparent 52%, #FFB17D 52%) !important;
}

.calendar td.selected-end .day-inner {
  background-image: -webkit-linear-gradient(-55deg, #FFB17D 48%, transparent 48%) !important;
}




.calendar td.unavailable-end {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}

.calendar td.unavailable-begin {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}

.calendar td.unavailable-end.selected-begin {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}
.calendar td.unavailable-left.selected-begin {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}






.calendar td.unavailable a {
  color: #CEBB99;
}

.calendar td.unavailable-end a {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}

.calendar td.unavailable-begin a {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}
.calendar td.unavailable-end.selected-begin a {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}

.calendar td.unavailable-begin.selected-end a {
  color: #CEBB99;
  text-shadow: 1px 1px 0 #504A41;
}

.calendar td.unavailableOwner-end a {
  color: #000;
}

.calendar td.unavailableOwner-begin a {
  color: #000;
}

.calendar td.unavailableOrder-end a {
  color: #000;
}

.calendar td.unavailableOrder-begin a {
  color: #000;
}

.calendar td.selected a {
  color: #000 !important;
}

/* login */

.loginCreateAccountContainer {
  padding: 20px 5px;
}

.loginContainer,
.createAccountContainer {
  width: 50%;
  padding: 0 15px 20px 15px;
  float: left;
}

@media screen and (max-width: 480px) {
  .loginContainer,
  .createAccountContainer {
    width: 100%;
    float: none;
  }
}

.loginContainer label,
.createAccountContainer label {
  display: block;
}

.loginCreateAccountContainer .formField {
  margin: 0 0 10px 0;
}

/* Lost Password & Change Password Prompt */

.lostPassword,
.changePasswordPrompt {
  padding: 20px;
  max-width: 600px;
}

  .lostPassword label,
  .changePasswordPrompt label {
    display: block;
  }

  .lostPassword .formFields,
  .changePasswordPrompt .formFields {
    margin: 20px 0 0 0;
  }

  .lostPassword .formField,
  .changePasswordPrompt .formField {
    margin: 0 0 10px 0;
  }

  .changePasswordPrompt p {
    margin: 0 0 20px 0;
  }

/* Make Reservation */

#makeReservationPage {
  padding: 20px;
}

  #makeReservationPage .step-number {
    font-size: 14px;
    font-style: italic;
    line-height: 44px;
    color: #999;
    float: right;
    font-weight: normal;
    margin-left: 10px;
  }

  #makeReservationPage h1 {
    margin-bottom: 15px;
  }

  #makeReservationPage h2 {
    margin-bottom: 20px;
  }

  #makeReservationPage h2 {
    font-size: 1.1em;
    margin-bottom: 15px;
  }

  #makeReservationPage .property-images {
    display: flex;
    margin: 0 -2px 15px;
  }

    #makeReservationPage .property-images img {
      width: 33.3333333333%;
      height: auto;
      margin: 0 2px;
    }

@media screen and (max-width: 480px) {
  #makeReservationPage .property-images img {
    width: 50%;
  }

    #makeReservationPage .property-images img:nth-child(3) {
      display: none;
    }
}

#makeReservationPage .rates-content {
  padding: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #ccc;
  max-width: 550px;
  margin: 0 0 30px;
}

@media screen and (max-width: 480px) {
  #makeReservationPage .rates-content {
    padding: 0;
    border: 0;
  }
}

#makeReservationPage #rate p#noOrder {
  padding: 5px;
  font-style: italic;
}

#makeReservationPage #rate .buttonRow {
  display: none;
  text-align: center;
  margin-top: 20px;
}

  #makeReservationPage #rate .buttonRow .button3 {
    font-size: 24px;
    padding: 0 10px;
  }

#makeReservationPage #rate .ajaxLoading {
  text-align: center;
  margin: 25px 0 25px 0;
  display: none;
}

#makeReservationPage ul.totals {
  padding: 5px;
  margin: 0;
  list-style-type: none;
}

@media screen and (max-width: 480px) {
  #makeReservationPage ul.totals {
    padding: 0;
  }
}

  #makeReservationPage ul.totals li {
    padding: 0;
    margin: 0;
  }

    #makeReservationPage ul.totals li.total {
      font-weight: bold;
      border-top: 2px solid #000;
    }

    #makeReservationPage ul.totals li label.name {
      display: inline-block;
      max-width: 200px;
      width: 50%;
    }

    #makeReservationPage ul.totals li label.amount {
      display: inline-block;
      max-width: 200px;
      width: 50%;
      text-align: right;
    }

#makeReservationPage #dateOptions {
  margin-bottom: 15px;
}

  #makeReservationPage #dateOptions .fields {
    margin: 0 -5px;
  }

  #makeReservationPage #dateOptions .field {
    float: left;
    display: inline-block;
    padding: 0 5px;
  }

  #makeReservationPage #dateOptions .nights-field {
    width: 30%;
  }

  #makeReservationPage #dateOptions .date-field {
    width: 35%;
  }

@media screen and (max-width: 480px) {
  #makeReservationPage #dateOptions .nights-field {
    display: none;
  }

  #makeReservationPage #dateOptions .date-field {
    width: 50%;
  }
}

#makeReservationPage .calendarScroll .ajaxLoading {
  text-align: center;
  margin: 78px 0 0 0;
  display: none;
}

#makeReservationPage .scrollingCalendar .calendarScroll {
  width: calc(100% - 108px);
  margin-left: 54px;
}

#makeReservationPage .scrollingCalendar .calendar {
  padding-right: -10px
}

#makeReservationPage .scrollingCalendar .scrollLeft {
  left: 0px;
}

#makeReservationPage .scrollingCalendar .scrollRight {
  right: 0px;
}

#makeReservationPage .calendarLegend {
  margin-bottom: 30px;
  padding: 10px 10px 0 10px;
}

  #makeReservationPage .calendarLegend .header {
    display: none
  }

#makeReservationPage .error-message {
  margin: 10px 10px 15px 10px;
}

/* Begin Columns & Sticky Rates */

#makeReservationPage #columns-wrapper {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}

#makeReservationPage #rates-column {
  order: 2;
  width: 35%;
}

#makeReservationPage .rates-content {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  padding: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #ccc;
}

#makeReservationPage #options-column {
  order: 1;
  width: 60%;
  width: calc(65%);
  padding-right: 45px;
}

@media screen and (max-width: 600px) {
  #makeReservationPage #columns-wrapper {
    -ms-box-orient: inherit;
    display: block;
  }

  #makeReservationPage #rates-column {
    width: 100%;
  }

  #makeReservationPage .rates-content {
    position: unset;
    max-width: 400px;
    margin: 0 0 30px;
  }

  #makeReservationPage #options-column {
    width: 100%;
    padding-right: 0;
  }
}

/* End Columns */

#makeReservationPage #feeOptions .fields {
  margin: 0 0 30px 0;
}

#makeReservationPage #feeOptions .field {
  margin: 0 0 5px 0;
}

#makeReservationPage #feeOptions .dropDownField select {
  width: 55px;
}

#makeReservationPage #feeOptions .promoField label,
#makeReservationPage #feeOptions .dropDownField label {
  display: inline-block;
}

#makeReservationPage #feeOptions .promoField .textBox {
  width: 105px;
  margin: 0 0 0 10px;
}

#makeReservationPage #feeOptions .field label {
  font-size: 1em;
  font-weight: normal;
  color: #333;
}

#makeReservationPage #feeOptions .eventFields .eventMessage {
  margin-bottom: 20px;
}

#makeReservationPage #feeOptions .eventFields .dropDownField select {
  width: auto;
}

#makeReservationPage #accidentalDamageWaiverDetailsModal {
  display: none;
}

#makeReservationPage .buttons {
  margin-top: 10px;
}

#makeReservationPage .submitButton {
  font-size: 1.3em;
}

#makeReservationPage .accidentalDamageWaiverDetailsModal {
  display: none;
}

/******************************/
/* CHECKOUT                   */
/******************************/
#checkout {
  padding: 20px;
}

  #checkout .error-message {
    border: 1px solid #29A5DE;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 20px;
  }

  #checkout .error-message h3 {
    color: #29A5DE;
  }

  #checkout .error-message ul {
    list-style-type: circle;
    margin-left: 30px;
  }

  #checkout ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

    #checkout ul li {
      margin: 0;
      padding: 0;
    }

  /* Hide create account option */
  #checkout .accountOptions {
    display: none;
  }

  #checkout a:not(.submitButton) {
    color: #29A5DE;
    text-decoration: underline;
  }

    #checkout a:not(.submitButton):hover {
      color: #333;
    }

  #checkout ul.accountOptions {
    margin: 0 0 10px 0;
    font-size: .9em;
  }

  #checkout ul.accountOptions {
    margin: 0 0 10px 0;
    font-size: .9em;
  }

  #checkout #account .field-button {
    clear: both;
  }

  #checkout .section {
    margin-bottom: 30px;
  }

  #checkout span#siteseal {
    float:right;
    margin: 40px 10px 0 10px;
  }

  #checkout img.tripFlipBadge {
    float:right;
    margin: 40px 0 0 0;
  }


@media screen and (max-width: 600px) {
  #checkout span#siteseal,
  #checkout img.tripFlipBadge {
    display: none;
  }
}

  #checkout .section h2 {
    margin-bottom: 15px;
  }

  #checkout .fields {
    margin: 0 -10px;
  }

  #checkout .field {
    float: left;
    width: 33.3333333333%;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  #checkout .field-double {
    width: 66.6666666666%;
  }

  #checkout .field-full {
    width: 100%;
  }

@media screen and (max-width: 700px) {
  #checkout .field {
    width: 50%;
  }

  #checkout .field-double,
  #checkout .field-full {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #checkout .field {
    width: 100%;
  }
}

#checkout .field label {
  display: block;
  font-size: .9em;
  color: #383F40;
  margin: 0;
  font-weight: bold;
}

#checkout #account ul li input {
  display: inline-block;
  margin-right: 5px;
}

#checkout .orderItem {
  position: relative;
}

  #checkout .orderItem img {
  }

  #checkout .orderItem .name {
    margin-left: 20px;
    font-weight: bold;
  }

  #checkout .orderItem .price,
  #checkout .orderItem .quantity,
  #checkout .orderItem .quantityPrice {
    display: none;
  }

  #checkout .orderItemOptions {
    margin: 20px 0 0 0;
  }

  #checkout .orderItemOption {
    padding: 3px 0;
    border-bottom: 1px solid #ddd;
  }

  #checkout .orderItemOption:last-child {
    border-bottom: 0;
  }

    #checkout .orderItemOption .optionName {
      display: inline-block;
      width: 60%;
      max-width: 250px;
      padding-right: 10px;
    }

    #checkout .orderItemOption .optionChoiceNameAndPrice {
      display: inline-block;
      width: 40%;
    }

    #checkout .orderItemOption .optionChoicePrice {
      display: inline-block;
      padding-right: 5px;
    }

    #checkout .orderItemOption .optionChoiceName {
      display: inline-block;
    }

#checkout .totals {
  margin: 0;
  padding: 0;
}

  #checkout .totals li {
    padding: 3px 0;
    border-bottom: 1px solid #ddd;
  }

    #checkout .totals li:last-child,
    #checkout .totals li:nth-last-child(2),
    #checkout .totals li:nth-last-child(3) {
      border-bottom: 0;
    }

    #checkout .totals li:first-child {
      border-top: 2px solid #ccc;
      padding-top: 7px;
      margin-top: 7px;
    }

    #checkout .totals li:nth-last-child(2) {
      border-top: 2px solid #151515;
      padding-top: 7px;
      margin-top: 7px;
    }

    #checkout .totals li .name {
      display: inline-block;
      width: 60%;
      max-width: 250px;
      padding-right: 10px;
    }

    #checkout .totals li .amount {
      width: 40%;
    }


  #checkout .totals .fiftyPercentNote {
    margin-top: 10px;
    font-style: italic;
  }

#checkout input.securityCode {
  width: 80px;
}

#checkout p.paymentDisclaimer {
  font-style: italic;
  margin-top: 5px;
}

#checkout .termsAndConditionsField {
  margin-top: 10px;
}

#checkout #buttons {
  text-align: center;
  margin-bottom: 10px;
}

  #checkout #buttons a.submit {
    background-color: #FF8C3E;
    display: inline-block;
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    padding: 8px 30px 8px 30px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    border: 0px;
  }

    #checkout #buttons a.submit:hover {
      background-color: #514B43;
    }

/* RECEIPT */

html #receipt {
  padding: 20px;
}

/******************************/
/* MY ACCOUNT                 */
/******************************/

#myAccount .grid {
  width: 100%;
  margin: 0 0 15px 0;
}

#myAccount .gridHeader {
  font-weight: bold;
  border-bottom: 2px solid #333;
}

#myAccount .grid .rightJustify {
  text-align: right;
}

#myAccount .grid .gridItem {
  border-bottom: 1px solid #999;
  padding: 5px 0 5px 0;
}

/******************************/
/* SUBMIT REVIEW              */
/******************************/

#submitReview #leftColumn {
  width: 50%;
  float: left;
  padding: 0 15px 0 0;
}

  #submitReview #rightColumn {
    width: 50%;
    float: left;
    padding: 0 0 0 15px;
  }


@media screen and (max-width: 600px ) {
  #submitReview #rightColumn,
  #submitReview #leftColumn {
    width: 100%;
    float: none;
    padding: 0;
  }
}

#submitReview .field {
  margin: 0 0 15px 0;
}

#submitReview .fields label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

#submitReview .required {
  color: #FF8C3E;
}

#submitReview .ratingStars {
  height: 30px;
  margin: 0 0 12px 0;
}

#submitReview .date-field {
  width: 150px;
}

/* https://www.cssscript.com/five-star-rating-system-with-pure-css-and-radio-button-hack/ */

#submitReview .rating {
  overflow: hidden;
  vertical-align: bottom;
  display: inline-block;
  width: auto;
  height: 44px;
  width: 220px;
}

  #submitReview .rating > input {
    opacity: 0;
    margin-right: -100%;
  }

  #submitReview .rating > label {
    position: relative;
    display: block;
    float: right;
    font-size: 44px;
    line-height: 44px;
    color: #ccc;
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
  }

    #submitReview .rating > label:hover,
    #submitReview .rating > label:hover ~ label,
    #submitReview .rating:not(:hover) > :checked ~ label {
      color: #151515;
    }

/******************************/
/* SUBMIT OWNER REVIEW        */
/******************************/

#submitOwnerReview #leftColumn {
  width: 50%;
  float: left;
  padding: 0 15px 0 0;
}

  #submitOwnerReview #rightColumn {
    width: 50%;
    float: left;
    padding: 0 0 0 15px;
  }


@media screen and (max-width: 600px ) {
  #submitOwnerReview #rightColumn,
  #submitOwnerReview #leftColumn {
    width: 100%;
    float: none;
    padding: 0;
  }
}

#submitOwnerReview .field {
  margin: 0 0 15px 0;
}

#submitOwnerReview .fields label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

#submitOwnerReview .required {
  color: #FF8C3E;
}

#submitOwnerReview .ratingStars {
  height: 30px;
  margin: 0 0 12px 0;
}

#submitOwnerReview .date-field {
  width: 150px;
}

/* https://www.cssscript.com/five-star-rating-system-with-pure-css-and-radio-button-hack/ */

#submitOwnerReview .rating {
  overflow: hidden;
  vertical-align: bottom;
  display: inline-block;
  width: auto;
  height: 44px;
  width: 220px;
}

  #submitOwnerReview .rating > input {
    opacity: 0;
    margin-right: -100%;
  }

  #submitOwnerReview .rating > label {
    position: relative;
    display: block;
    float: right;
    font-size: 44px;
    line-height: 44px;
    color: #ccc;
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
  }

    #submitOwnerReview .rating > label:hover,
    #submitOwnerReview .rating > label:hover ~ label,
    #submitOwnerReview .rating:not(:hover) > :checked ~ label {
      color: #151515;
    }

/******************************/
/* REVIEWS PAGE               */
/******************************/

#reviewsPage h1 {
}

#reviewsPage #reviews .reviewRow {
  margin: 0 0 35px 0;
}

#reviewsPage #reviews .review {
}

#reviewsPage #reviews .property {
  width: 132px;
  float: right;
  padding: 0 0 10px 20px;
  background: #fff;
}

#reviewsPage #reviews h3 {
  color: #29A5DE;
  font-size: 1.1em;
  margin-bottom: 0;
}

  #reviewsPage #reviews h3 label {
    padding-right: 10px;
  }

#reviewsPage #reviews .propertyRating {
  display: inline-block;
  color: #151515;
}

#reviewsPage #reviews .name {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
  margin: 5px 0;
}

  #reviewsPage #reviews .name a {
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
  }

    #reviewsPage #reviews .name a:hover {
      color: #FF8B3D;
    }

#reviewsPage #reviews a.propertyImage {
  display: block;
  margin: 0 0 3px 0;
}

#reviewsPage #reviews a.propertyDetails {
  display: block;
}

/******************************/
/* OWNER REVIEWS PAGE         */
/******************************/

#ownerReviewsPage h1 {
}

#ownerReviewsPage #reviews .reviewRow {
  margin: 0 0 35px 0;
}

#ownerReviewsPage #reviews .review {
}

#ownerReviewsPage #reviews h3 {
  color: #29A5DE;
  font-size: 1.1em;
  margin-bottom: 0;
}

  #ownerReviewsPage #reviews h3 label {
    padding-right: 10px;
  }

#ownerReviewsPage #reviews .propertyRating {
  display: inline-block;
  color: #151515;
}

#ownerReviewsPage #reviews .name {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
  margin: 5px 0;
}

  #ownerReviewsPage #reviews .name a {
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
  }

    #ownerReviewsPage #reviews .name a:hover {
      color: #FF8B3D;
    }


/******************************/
/* PAGER                      */
/******************************/

.pager {
  font-weight: bold;
}

  .pager a {
    text-decoration: none;
  }

  .pager .current,
  .pager .pageNumber,
  .pager .nextLink,
  .pager .previousLink,
  .pager .ellipses {
    display: inline-block;
    background-color: #29A5DE;
    padding: 0 10px 0 10px;
    text-align: center;
    color: #fff;
    height: 44px;
    line-height: 44px;
    min-width: 44px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-bottom: 10px;
    margin: 0 10px 10px 0;
  }

  .pager .ellipses {
    background: none;
    color: #151515;
    font-weight: normal;
    width: auto;
  }

  .pager .current {
    background-color: #ccc;
    color: #666;
  }


  .pager a:hover,
  .pager a:active {
    background-color: #333;
    color: #fff;
  }

/* thank you page */

#thankYou p {
  margin: 0 0 15px 0;
}


/******************************/
/* Print                      */
/******************************/

@media print {
  #backgroundWhiteStripe,
  #header,
  #blueCurvesTop,
  #topStripes,
  #bottomStripes,
  #blueCurveBottomLeft,
  #blueCurveBottomRight,
  #footer {
    display: none !important;
  }

  #container1_white,
  #container2_blue,
  #container3_white,
  #content,
  .pageCopy {
    margin: 0 !important;
    padding: 0 !important;
  }

  .report-menu,
  .report-menu li,
  .report-menu li a {
    margin: 0 !important;
    padding: 0 !important;
  }

    .report-menu li {
      display: none !important;
    }

      .report-menu li.selected {
        display: block !important;
      }
}
