@charset "UTF-8";
/* CONTENTS
/////////////////////////////////////
*/
/*
01. BASE
02. LAYOUT
03. MODULES
04. STATE
05. RESPONSIVE
06. CUSTOM

This stylesheet is a starting place. Include your own Base, Layout
Modules, State and Responsive styles below.

This style sheet organization is based on the SMACCS system. 
Please visit the following website for more info: http://smacss.com/
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,700,800,600,300&display=swap);
/****************************
/////////////////////////////

01. BASE

All base HTML tags that require styling

/////////////////////////////
****************************/
/* Toggle on/off for testing purposes */
/** {
    border: 1px solid red;
}
*/
body {
  background: #fff;
  font-family: 'Open Sans', arial, verdana, sans-serif;
  font-display: 'swap';
  font-size: 16px;
  line-height: 2;
  color: #34495e;
  font-weight: 400;
}
img {
  object-fit: cover;
}
ul,
ol {
  margin-bottom: 2em;
  margin-left: 1em;
  padding-left: 0;
}
ul.unstyled,
ul.inline {
  margin-left: 0;
  padding-left: 0;
}
li {
  line-height: 2;
}
ul.inline li {
  margin-right: 1em;
  display: inline-block;
}
ul.inline li.right {
  margin-left: 1em;
}
ul.list-unstyled {
  margin-left: 0;
}
a,
a:link,
a:visited {
  color: #3498db;
  text-decoration: none;
}
a:hover {
  color: #2980b9;
  /*text-decoration: underline;*/
}
p {
  margin-bottom: 1.5em;
}
hr {
  margin: 1.5em 0;
  border-top: 1px solid #999;
  border-bottom: 0;
}
/*
TYPOGRAPHY
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', arial, verdana, sans-serif;
  font-display: 'swap';
  font-weight: 400;
  color: #34495e;
}
h1 {
  font-size: 2.3em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.313em;
}
h5 {
  font-size: 1.125em;
}
h5.alternate {
  text-transform: none;
  font-family: 'Open Sans', arial, verdana, sans-serif;
  font-display: 'swap';
  color: #666;
  letter-spacing: 1px;
}
h6 {
  font-size: 1em;
  /* 16px */
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-size: 0.75em;
  color: #999;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.5em 0em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #34495e;
}
blockquote {
  color: #34495e;
  font-size: 1em;
}
blockquote.pull-right {
  float: none;
  padding: 1em;
  border: 0;
  text-align: right;
}
small,
.small {
  font-size: 0.75em;
  color: #999;
}
code,
pre {
  padding: 0 0.5em 0.2em;
  font-size: 1em;
  color: #b45155;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
code {
  padding: 0.2em 0.5em;
  background-color: #f2f2f2;
  color: #b45155;
  border: 0;
}
pre {
  color: #3498db;
  padding: 1em;
  margin: 0.75em 0;
  font-size: 1em;
  line-height: 2;
  background-color: #f2f2f2;
  border: 0;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.hero-unit {
  padding: 1em;
  font-size: 1em;
  line-height: 2;
  background: #333;
  color: #fff;
  border: 0;
  margin-bottom: 1em;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.hero-unit h1 {
  font-size: 3em;
  margin: 0;
  line-height: 1.75;
  color: #fff;
}
.text-muted {
  color: #999;
}
.text-primary {
  color: #34495e;
}
.text-warning {
  color: #f1c40f;
}
.text-danger {
  color: #b45155;
}
.text-success {
  color: #0F9D58;
}
.text-info {
  color: #1abc9c;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
input[type="radio"] {
  margin: 7px 0 0;
}
input[type="checkbox"] {
  margin: 8px 0 0;
}
.form-control[readonly] {
  background: #fff;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: pointer !important;
}
.modal-backdrop {
  opacity: 0.85 !important;
}
s {
  color: #ff4b46;
}
.invisible {
  visibility: hidden;
}
/* Will prevent iphone from zooming */
@media (max-width: 767px) {
  select.form-control {
    font-size: 16px;
  }
}
/***************************
////////////////////////////

02. LAYOUT

Styles specific to your layout or website
 
////////////////////////////
***************************/
.main-wrapper {
  position: relative;
  z-index: 100;
}
body.modal-open .main-wrapper {
  position: static;
}
.list-inline.list-flush > li:first-of-type {
  padding-left: 0.25em !important;
}
#content2Right > h1 {
  margin-top: 0em !important;
}
#content2Left .container,
#content2Right .container,
.index-content .container .container {
  width: auto;
  padding: 0em !important;
}
body > .index-content {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}
.index-content .index-content a:not(.btn),
#content2Right a:not(.btn) {
  text-decoration: underline;
}
.footer-wrapper {
  margin-top: 3em;
}
label {
  font-weight: 500;
}
iframe[name*="conversion"],
img[src*="conversion"] {
  display: none;
}
.input-daterange input {
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  border-radius: 0px !important;
}
.noscroll {
  overflow: hidden;
}
.thumbnail > img {
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.gist .gist-meta *:not([href*="/raw/"]) {
  display: none;
}
.gist .gist-meta {
  color: transparent !important;
  cursor: default;
}
.gist .gist-meta a[href*="/raw/"] {
  float: left !important;
  color: #333 !important;
}
.js-gist-file-update-container {
  max-height: 300px !important;
}
/***************************
////////////////////////////

03. MODULES

Reusable classes or components

////////////////////////////
***************************/
/* BS components */
/*
FORMS
*/
.form-control {
  color: #34495e;
  background: #fff;
  border: solid 1px #999;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
legend {
  font-family: 'Open Sans', arial, verdana, sans-serif;
  color: #34495e;
  font-weight: 500;
  border-bottom: 5px solid #3498db;
}
fieldset {
  margin-bottom: 2em;
}
fieldset:last-child {
  margin: 0;
}
input,
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #fff;
  border: 1px solid #999;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
select {
  border: 1px solid #999;
}
input:focus,
textarea:focus,
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: #3498db;
  color: #34495e;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
input[type="radio"]:focus,
input[type="checkbox"]:focus,
select:focus {
  outline: thin dotted #3498db;
  outline: 1px auto -webkit-focus-ring-color;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input[type="file"] {
  border: 0;
}
.help-block {
  font-size: 0.875em;
  color: #999;
}
form.form-inline select,
form.form-inline input[type="text"],
form.form-inline input[type="password"],
form.form-inline input[type="datetime"],
form.form-inline input[type="datetime-local"],
form.form-inline input[type="date"],
form.form-inline input[type="month"],
form.form-inline input[type="time"],
form.form-inline input[type="week"],
form.form-inline input[type="number"],
form.form-inline input[type="email"],
form.form-inline input[type="url"],
form.form-inline input[type="search"],
form.form-inline input[type="tel"],
form.form-inline input[type="color"] {
  width: 120px;
}
form.form-search {
  background: transparent;
  padding: 0;
}
form small {
  padding-left: 0.5em;
}
.input-group-addon {
  background: #3498db;
  color: #fff;
  border-color: #3498db;
}
/* 
TABLES
*/
table,
.table {
  margin-bottom: 1.5em;
  background: #fff;
}
th,
.table th,
.table th {
  padding: 1em;
  line-height: 2;
}
td,
.table td,
.table td {
  padding: 1em;
  line-height: 2;
  vertical-align: middle;
}
caption {
  font-weight: bold;
  padding: 1em;
  border: 1px solid #999;
  border-bottom: 0;
}
/* adds zebra striping */
.table-striped tbody > tr:nth-child(odd) {
  background: #f2f2f2;
}
/* enables a hover state on table rows within the tbody */
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th,
.table-striped.table-hover tbody tr:hover td,
.table-striped.table-hover tbody tr:hover th {
  background-color: #999;
}
/* makes tables more condensed by cutting cell padding in half */
.table-condensed th,
.table-condensed td,
.table-striped.table-condensed td,
.table-striped.table-condensed th {
  padding: 0.5em;
  font-size: 0.857em;
}
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: transparent;
}
.table-bordered th,
.table-bordered td {
  border: #999 1px solid;
  border-top: 0;
}
th.center,
td.center {
  text-align: center;
}
th.right,
td.right {
  text-align: right;
}
th {
  white-space: nowrap;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background: #27ae60;
  border-color: #27ae60;
  color: #fff;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background: #f39c12;
  border-color: #f39c12;
  color: #fff;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f2f2f2;
  border-color: #999;
}
body.AreaGuide .table-responsive > .table > tbody > tr > td,
body.AreaGuide .table-responsive > .table > tbody > tr > th,
body.AreaGuide .table-responsive > .table > tfoot > tr > td,
body.AreaGuide .table-responsive > .table > tfoot > tr > th,
body.AreaGuide .table-responsive > .table > thead > tr > td,
body.AreaGuide .table-responsive > .table > thead > tr > th {
  white-space: normal;
}
/*
BUTTONS
*/
/* DEFAULT BUTTON */
.btn {
  background-color: #d7d7d7;
  border: #999 solid 1px;
  color: #34495e;
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 0;
  outline: 0;
  text-decoration: none;
  white-space: nowrap;
  text-transform: none;
  text-align: center;
  text-shadow: none;
  background-image: none;
  font-family: 'Open Sans', arial, verdana, sans-serif;
  font-weight: normal;
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn:hover,
.btn:active {
  background: #999;
  color: #34495e;
  text-decoration: none;
}
.btn:focus {
  color: #fff;
}
.btn-link:focus {
  color: inherit;
  text-decoration: none;
}
/* DEFAULT BUTTON */
.btn-default,
a.btn-default {
  border: 1px solid #999;
  color: #34495e;
  background-color: #f2f2f2;
}
.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  border: 1px solid #999;
  color: #666;
  background: #d7d7d7;
}
/* PRIMARY BUTTON */
.btn-primary,
a.btn-primary {
  border: 1px solid #3498db;
  color: #fff;
  background: #3498db;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:active:focus {
  border: 1px solid #2980b9;
  color: #fff;
  background: #2980b9;
}
/* INFO BUTTON */
.btn-info,
a.btn-info {
  border: 1px solid #1abc9c;
  color: #fff;
  background: #1abc9c;
}
.btn-info:hover,
.btn-info:active,
.btn-info:focus,
.btn-info:active:focus {
  border: 1px solid #16a085;
  color: #fff;
  background: #16a085;
}
/* SUCCESS BUTTON */
.btn-success,
a.btn-success {
  border: 1px solid #0F9D58;
  color: #fff;
  background: #0F9D58;
}
.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn-success:active:focus {
  border: 1px solid #27ae60;
  color: #fff;
  background: #27ae60;
}
/* WARNING BUTTON */
.btn-warning,
a.btn-warning {
  border: 1px solid #f1c40f;
  color: #fff;
  background: #f1c40f;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:active:focus {
  border: 1px solid #f39c12;
  color: #fff;
  background: #f39c12;
}
/* DANGER BUTTON */
.btn-danger,
a.btn-danger {
  border: 1px solid #b45155;
  color: #fff;
  background: #b45155;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:active:focus {
  border: 1px solid #c0392b;
  color: #fff;
  background: #c0392b;
}
/* INVERSE BUTTON */
.btn-inverse,
a.btn-inverse {
  border: 1px solid #34495e;
  color: #fff;
  background: #34495e;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse:focus,
.btn-inverse:active:focus {
  border: 1px solid #2c3e50;
  color: #fff;
  background: #2c3e50;
}
/* LINK BUTTON */
.btn-link,
.btn-link:hover,
.btn-link:active,
.btn-link:focus,
.btn-link:active:focus {
  border: 0;
  background: transparent;
}
/* XTRA SMALL BUTTON */
.btn-xs {
  font-size: 0.625em;
}
/* SMALL BUTTON */
.btn-sm {
  font-size: 0.75em;
}
/* LARGE BUTTON */
.btn-lg {
  font-size: 1.5em;
}
/* DISABLED BUTTON */
.btn.disabled,
.btn.disabled:hover,
.btn.disabled:active,
.btn.disabled:focus,
.btn.disabled:active:focus {
  background: #999;
  color: #777;
  cursor: default;
}
/* BUTTON BLOCK */
.btn-block {
  display: block;
}
/* 
ICONS
*/
a [class^="icon-"],
a [class*=" icon-"] {
  text-decoration: none;
}
/*
DROPDOWNS
*/
.dropdown {
  position: relative;
}
.dropdown-menu {
  border: 1px solid #999;
  background: #fff;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-margin-before: 0;
}
.dropdown-menu li > a {
  margin-top: 0em;
  margin-bottom: 0em;
}
.dropdown-menu li > a:hover,
.dropdown-menu li > a:focus,
.dropdown-submenu:hover > a {
  color: #fff;
  background-color: #999;
  background-image: none;
}
.dropdown-menu .divider {
  background-color: #999;
}
.caret {
  border-top: 4px solid #fff;
}
.dropdown-header {
  color: #999;
  font-size: 0.75em;
  padding: 0.5em;
}
button.dropdown-toggle {
  min-width: 0;
}
/* 
TABS & PILLS
*/
.nav-tabs {
  border-bottom: solid 1px #999;
}
ul.nav-tabs,
ul.nav-pills {
  margin: 0;
}
.nav-tabs > li > a {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #34495e;
  background: #fff;
  border-top: solid 1px #999;
  border-left: solid 1px #999;
  border-right: solid 1px #999;
  border-bottom: solid 1px transparent;
}
.nav-tabs > li > a:hover {
  border-color: none;
  border-bottom-color: #999;
}
.nav-tabs .dropdown-menu,
.nav-pills .dropdown-menu {
  border-color: #999;
}
.nav-tabs .dropdown-menu .divider,
.nav-pills .dropdown-menu .divider {
  border-color: #999;
  background: #999;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: #f2f2f2;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #3498db;
}
.nav-tabs.nav-justified > li > a {
  border-bottom: solid 1px #999;
}
/*
NAVBARS
*/
body.Index .masthead {
  margin: 0em !important;
}
.masthead {
  margin-bottom: 0.5em !important;
}
nav.navbar {
  position: absolute;
  top: -20em;
}
.navbar {
  background: #f2f2f2;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 0em;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.navbar-nav > .active > a,
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:focus {
  color: #fff;
  background: #3498db;
}
.navbar li {
  list-style: none !important;
}
.navbar-default .navbar-brand {
  color: #34495e;
}
.navbar-brand {
  font-family: 'Open Sans', arial, verdana, sans-serif;
  text-transform: none;
  letter-spacing: -1px;
  font-size: 1.5em;
  font-weight: 900;
  background-size: contain !important;
  width: 180px;
  height: 20px;
  padding: 0em;
  padding-top: 0.25em;
}
.navbar-brand a {
  color: #34495e;
}
.navbar-brand img {
  position: absolute;
  z-index: 100;
  left: 2.5em;
  top: 0;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #2c3e50;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.75em;
  padding-right: 0.75em;
  font-size: 1em;
  text-transform: none;
  font-weight: bold;
  font-family: 'Open Sans', arial, verdana, sans-serif;
  margin-left: 2px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.navbar-form-width {
  width: 200px;
}
ul.navbar-nav {
  margin: 0;
  max-height: 2.2em;
}
.navbar-nav > li > .dropdown-menu {
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  border: solid #999 1px;
  z-index: 10000;
  left: inherit;
  right: 0;
}
.navbar-nav .dropdown-menu .divider {
  border-color: #999;
  background: #999;
}
.navbar-nav > .open > a,
.navbar-nav > .open > a:hover,
.navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #3498db;
}
.navbar-nav > li:last-of-type > a {
  padding-right: 0em !important;
}
.navbar-inverse {
  background: #333;
}
.navbar-inverse a {
  color: #fff;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background: #3498db;
}
.navbar-default {
  border: 0;
  border-bottom: 1px solid #999;
  border-radius: 0;
  -moz-border-radius: 0;
}
/* Use for fixed headers */
/*.masthead-fixed ~ .navbar-default {
    margin-top: (@font-size + 2em); 
}*/
.nav .caret,
.nav a:hover .caret {
  border-top-color: #777;
  border-bottom-color: #777;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background: #f2f2f2;
  border-color: #f2f2f2;
}
.navbar-collapse {
  padding: 0em;
}
a.menu-nav-icon {
  color: #fff;
  font-size: 20px;
}
.phone-link {
  font-size: 1.5em;
}
a.search-nav-icon {
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}
@media (min-width: 768px) {
  nav.navbar {
    position: relative;
    top: inherit;
  }
  .navbar-brand img {
    left: 15px;
  }
}
/* 
BREADCRUMBS
*/
.breadcrumb {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  padding: 0 0 0 2px!important;
  background: transparent;
  margin-bottom: 0.5em !important;
}
.breadcrumb li.active a {
  color: #333;
}
/* 
PAGER 
*/
.pager li > a,
.pager li > span {
  color: #34495e;
  background: #fff;
  border: solid 1px #999;
}
.pager li > a:hover,
.pager li > a:focus {
  color: #34495e;
  background-color: #f2f2f2;
}
/*
LABEL
*/
.label,
.badge {
  background: #fff;
}
.label-default,
.badge-default {
  color: #34495e;
  border: 1px #999 solid;
}
.label-primary,
.badge-primary {
  background: #3498db;
}
.label-success,
.badge-success {
  background: #0F9D58;
}
.label-warning,
.badge-warning {
  background: #f1c40f;
}
.label-danger,
.badge-danger {
  background: #b45155;
}
.label-info,
.badge-info {
  background: #1abc9c;
}
/* 
JUMBOTRON
*/
.jumbotron {
  background-color: none;
  background: transparent;
}
.jumbotron h1 {
  font-weight: 900;
  font-size: 3em;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #34495e;
}
.container .jumbotron {
  padding: 0;
  padding-bottom: 2em;
  padding-top: 1em;
  text-align: center;
  border-bottom: 5px solid #999;
  margin-bottom: 3em;
  border-radius: 0;
  -moz-border-radius: 0;
}
.jumbotron h3 {
  color: #666;
  font-family: 'Open Sans', arial, verdana, sans-serif;
  margin-bottom: 1em;
  font-weight: 400;
}
/* 
PROGESS BARS 
*/
.progress {
  margin-bottom: 1em;
  background: #f2f2f2;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.progress-bar {
  font-size: 1em;
  color: #fff;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.progress-bar-info,
.progress-striped .progress-bar-info {
  background-color: #1abc9c;
}
.progress-bar-success,
.progress-striped .progress-bar-success {
  background-color: #0F9D58;
}
.progress-bar-warning,
.progress-striped .progress-bar-warning {
  background-color: #f1c40f;
}
.progress-bar-danger,
.progress-striped .progress-bar-danger {
  background-color: #b45155;
}
/* 
THUMBNAILS
*/
.thumbnail,
.img-thumbnail {
  border: 1px solid #999;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.thumbnail .caption p:last-child {
  margin-bottom: 0;
}
a.thumbnail:hover,
a.thumbnail:focus {
  border: 1px solid #3498db;
}
/*
LIST GROUP
*/
ul.list-group {
  margin-left: 0;
}
.list-group-item {
  padding-top: 1em;
  padding-right: 2em;
  padding-bottom: 1em;
  padding-left: 1em;
  background: #fff;
  border: 1px solid #999;
}
a.list-group-item.active,
a.list-group-item.active:hover {
  background-color: #3498db;
  color: #fff;
}
a.list-group-item.active .list-group-item-text {
  color: #fff;
}
a.list-group-item:hover,
a.list-group-item:focus {
  background: #f2f2f2;
}
/*
PANELS
*/
.panel,
.panel-group .panel {
  margin-bottom: 1em;
  background-color: #fff;
  border: 1px solid #999;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.panel-heading {
  padding: 1em;
  background: #f2f2f2;
  border-bottom: 1px solid #999;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-border-bottom-right-radius: 0px;
  -moz-border-bottom-left-radius: 0px;
  -ms-border-bottom-right-radius: 0px;
  -ms-border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.panel-title {
  font-size: 1em;
}
.panel-footer {
  padding: 1em;
  background-color: #f2f2f2;
  border-top: 1px solid #999;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-border-top-right-radius: 0px;
  -moz-border-top-left-radius: 0px;
  -ms-border-top-right-radius: 0px;
  -ms-border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.panel .list-group .list-group-item:first-child {
  -moz-border-radius: 0;
  border-radius: 0;
}
.panel .list-group .list-group-item {
  border-width: 1px 0;
}
.list-group-item:last-child {
  margin-bottom: 0;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-border-top-right-radius: 0px;
  -moz-border-top-left-radius: 0px;
  -ms-border-top-right-radius: 0px;
  -ms-border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.panel .list-group .list-group-item:last-child {
  border-bottom: 0;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-border-top-right-radius: 0px;
  -moz-border-top-left-radius: 0px;
  -ms-border-top-right-radius: 0px;
  -ms-border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.panel-primary {
  border-color: #3498db;
}
.panel-primary .panel-heading {
  background: #3498db;
  border-color: #3498db;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-border-bottom-right-radius: 0px;
  -moz-border-bottom-left-radius: 0px;
  -ms-border-bottom-right-radius: 0px;
  -ms-border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.panel-primary .panel-footer {
  border-color: #3498db;
}
.panel-primary .panel-heading * {
  color: #fff;
}
.panel-success {
  border-color: #0F9D58;
}
.panel-success .panel-heading {
  color: #fff;
  background-color: #0F9D58;
  border-color: #0F9D58;
}
.panel-warning {
  border-color: #f1c40f;
}
.panel-warning .panel-heading {
  color: #fff;
  background-color: #f1c40f;
  border-color: #f1c40f;
}
.panel-danger {
  border-color: #b45155;
}
.panel-danger .panel-heading {
  color: #fff;
  background-color: #b45155;
  border-color: #b45155;
}
.panel-info {
  border-color: #1abc9c;
}
.panel-info .panel-heading {
  color: #fff;
  background-color: #1abc9c;
  border-color: #1abc9c;
}
/* 
WELLS
*/
.well {
  padding: 1em;
  margin-bottom: 1em;
  background-color: #f2f2f2;
  border: 1px solid #999;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.well-large {
  padding: 1.5em;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.well-small {
  padding: 0.5em;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
/*
TOOLTIP
*/
.tooltip {
  font-size: 1em;
}
.tooltip-inner {
  padding: 0.5em 1em;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
/* 
ACCORDION
*/
.accordion {
  margin-bottom: 1em;
}
.accordion-group {
  border: solid 1px #999;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.accordion-heading .accordion-toggle {
  padding: 1em;
}
.accordion-inner {
  padding: 1em;
  border-top: 1px solid #999;
}
/*
CAROUSEL
*/
.carousel-indicators {
  bottom: 0;
}
.carousel-indicators li {
  border: 1px solid #fff;
  background: #d7d7d7;
}
.carousel-indicators .active {
  background: #999;
}
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  color: #fff;
  line-height: 1.2;
  padding-left: 3em !important;
  padding-right: 3em !important;
}
.carousel-caption * {
  color: #fff !important;
}
.carousel-control {
  text-shadow: none;
}
.carousel-control.left,
.carousel-control.right {
  background-image: none;
}
a.carousel-control.left,
a.carousel-control.right {
  color: #fff;
  opacity: 1;
  text-shadow: 0px 0px 3px #000;
}
a:hover.carousel-control.left,
a:hover.carousel-control.right {
  color: #999;
}
.carousel-inner > .item > a > img {
  width: auto;
  height: 396px;
  max-height: 396px;
  margin: 0 auto;
}
.carousel-control .fa-chevron-left,
.carousel-control .fa-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .fa-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .fa-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel.gallery .carousel-outer {
  position: relative;
}
.carousel.gallery .carousel-indicators {
  margin: 10px 0 0;
  position: static;
  text-align: left;
  width: 100%;
}
.carousel.gallery .carousel-indicators li.active {
  border: 1px solid #3498db;
}
.carousel.gallery .carousel-indicators li {
  background-color: transparent;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  display: inline-block;
  height: auto;
  margin: 0em !important;
  width: auto;
  padding: 0.25em !important;
  float: left;
  border: 1px solid transparent;
}
.carousel.gallery .carousel-indicators li img {
  display: block;
  max-width: 75px;
}
/* convert bootstrap glypicons to font awesome icons already available on page*/
.glyphicon {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-chevron-left:before {
  content: "\f053";
}
.glyphicon-chevron-right:before {
  content: "\f054";
}
@media (min-width: 768px) {
  .carousel-inner > .item > a > img {
    height: 600px;
    max-height: 600px;
  }
  .carousel-control .fa-chevron-left,
  .carousel-control .fa-chevron-right {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .fa-chevron-left {
    margin-left: -15px;
  }
  .carousel-control .fa-chevron-right {
    margin-right: -15px;
  }
}
.black {
  color: #232323;
}
.black-bg {
  background: #232323;
}
.dark-gray {
  color: #333;
}
.dark-gray-bg {
  background: #333;
}
.gray {
  color: #777;
}
.gray-bg {
  background: #777;
}
.light-gray {
  color: #999;
}
.light-gray-bg {
  background: #999;
}
.off-white {
  color: #f2f2f2;
}
.off-white-bg {
  background: #f2f2f2;
}
.white {
  color: #fff;
}
.white-bg {
  background: #fff;
}
.blue {
  color: #3498db;
}
.blue-bg {
  background: #3498db;
}
.blue2 {
  color: #2980b9;
}
.blue2-bg {
  background: #2980b9;
}
.red {
  color: #b45155;
}
.red-bg {
  background: #b45155;
}
.red2 {
  color: #c0392b;
}
.red2-bg {
  background: #c0392b;
}
.yellow {
  color: #f1c40f;
}
.yellow-bg {
  background: #f1c40f;
}
.yellow2 {
  color: #f39c12;
}
.yellow2-bg {
  background: #f39c12;
}
.green {
  color: #0F9D58;
}
.green-bg {
  background: #0F9D58;
}
.green2 {
  color: #27ae60;
}
.green2-bg {
  background: #27ae60;
}
.orange {
  color: #f7931d;
}
.orange-bg {
  background: #f7931d;
}
.orange2 {
  color: #c67617;
}
.orange2-bg {
  background: #c67617;
}
.teal {
  color: #1abc9c;
}
.teal-bg {
  background: #1abc9c;
}
.teal2 {
  color: #16a085;
}
.teal2-bg {
  background: #16a085;
}
.purple {
  color: #9b59b6;
}
.purple-bg {
  background: #9b59b6;
}
.purple2 {
  color: #8e44ad;
}
.purple2-bg {
  background: #8e44ad;
}
.steel-gray {
  color: #34495e;
}
.steel-gray-bg {
  background: #34495e;
}
.steel-gray2 {
  color: #2c3e50;
}
.steel-gray2-bg {
  background: #2c3e50;
}
.off-white {
  color: #f2f2f2;
}
.off-white-bg {
  background: #f2f2f2;
}
.light-gray {
  color: #999;
}
.light-gray-bg {
  background: #999;
}
.gray {
  color: #777;
}
.gray-bg {
  background: #777;
}
.medium-gray {
  color: #666;
}
.medium-gray-bg {
  background: #666;
}
.red-bg,
.red2-bg,
.blue-bg,
.blue2-bg,
.green-bg,
.green2-bg,
.yellow-bg,
.yellow2-bg,
.orange-bg,
.orange2-bg,
.teal-bg,
.teal2-bg,
.purple-bg,
.purple2-bg,
.steel-gray-bg,
.steel-gray2-bg,
.light-gray-bg,
.gray-bg,
.medium-gray-bg {
  color: #fff;
}
/* 
LISTINGS
*/
.list-inline > li {
  padding: 1em;
}
.container-pad {
  padding: 1em;
}
.bgc-fff {
  background-color: #fff !important;
}
.brdr {
  border: 1px solid #999;
}
.fnt-smaller {
  font-size: 0.75em;
}
.fnt-lighter {
  color: #999;
}
/*
LOOPS
*/
.loop-content-title {
  margin-top: 1em !important;
}
@media (min-width: 992px) {
  .loop-content-title {
    margin-top: -0.25em !important;
  }
}
/*
PAGINATION
*/
.pagination * {
  text-decoration: none !important;
}
.pagination {
  margin-bottom: 0em !important;
  margin-left: 0em !important;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  background: transparent;
  border: 0;
}
.pagination > li > a,
.pagination > li > span {
  border: 1px solid transparent;
  border-left: 0;
  line-height: 2.25;
  min-height: 2.571em;
  background: transparent;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  -moz-border-radius: 0px 0px 0px 0px;
  -ms-border-radius: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px;
}
.pagination > li > a:hover,
.pagination > .active > a,
.pagination > .active > span {
  text-decoration: none;
  background: transparent;
  border-color: transparent;
}
.pagination > li > a:hover {
  text-decoration: underline !important;
  cursor: pointer;
  color: #f7931d;
}
.pagination > li:not(.active) > a:hover {
  /* background-color: @off-white; */
}
.pagination > li.active > a,
.pagination > li.active > a:focus,
.pagination > li.active > a:hover,
.pagination > li.active > span,
.pagination > li.active > span:focus,
.pagination > li.active > span:hover,
.pagination > li.disabled > a,
.pagination > li.disabled > a:focus,
.pagination > li.disabled > a:hover,
.pagination > li.disabled > span,
.pagination > li.disabled > span:focus,
.pagination > li.disabled > span:hover {
  background-color: transparent;
  border-color: transparent;
}
.pagination li.next-prev-link > a:focus,
.pagination li.next-prev-link > a:hover,
.pagination li.next-prev-link > span:focus,
.pagination li.next-prev-link > span:hover {
  text-decoration: underline !important;
  cursor: pointer;
  color: #f7931d;
}
.pagination li.next-prev-link > a {
  /* background: @off-white; */
  line-height: 2.25em;
}
.pagination li.active > a:before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 2.15em;
  height: 2.15em;
  left: 50%;
  margin-left: -1.08em;
  border-radius: 4em;
  border: 1px solid #3498db;
  background: #3498db;
  -moz-transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
@media (max-width: 767px) {
  .pagination > li > a {
    padding: 1em 0.75em;
  }
}
.popover {
  max-width: 500px;
  text-align: left;
}
.switch {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.switch-label-custom {
  vertical-align: top;
  color: #fff;
  font-size: 1em;
  line-height: 1.4;
  margin-left: 0.25em !important;
}
.switch + .label-custom {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 20px;
  min-height: 18px;
  min-width: 18px;
  font-weight: normal;
  cursor: pointer;
}
.switch + .label-custom::before {
  cursor: pointer;
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 12px;
  color: #1abc9c;
  content: "\a0";
  background-color: #f2f2f2;
  border: 1px solid #d7d7d7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  display: inline-block;
  text-align: center;
  height: 16px;
  line-height: 14px;
  min-width: 16px;
  margin-right: 1px;
  position: relative;
  top: -1px;
}
.switch:checked + .label-custom::before {
  display: inline-block;
  content: '\f00c';
  background-color: #f2f2f2;
  border-color: #999;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
}
/* CSS3 on/off switches */
.switch + .label-custom {
  min-height: 24px;
}
.switch + .label-custom::before {
  font-weight: normal;
  font-size: 11px;
  line-height: 17px;
  height: 20px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #f2f2f2;
  -webkit-box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #d7d7d7;
  text-align: left;
  float: left;
  padding: 0;
  width: 52px;
  text-indent: -21px;
  margin-right: 0;
  -webkit-transition: text-indent 0.3s ease;
  -o-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
  top: auto;
}
.switch.switch-bootstrap + .label-custom::before {
  font-family: FontAwesome;
  content: "\f00d";
  box-shadow: none;
  border-width: 0;
  font-size: 12px;
  background-color: #666;
  color: #f2f2f2;
  width: 32px;
  height: 18px;
  line-height: 18px;
  text-indent: 19px;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  transition: background 0.1s ease;
}
.switch.switch-bootstrap + .label-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  border-radius: 12px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  width: 14px;
  height: 14px;
  text-align: center;
  background-color: #f2f2f2;
  border: 4px solid #f2f2f2;
  -webkit-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
}
.switch.switch-bootstrap:checked + .label-custom::before {
  content: "\f00c";
  text-indent: 3px;
  color: #fff;
  border-color: #2980b9;
}
.switch-primary > .switch.switch-bootstrap:checked + .label-custom::before {
  background-color: #3498db;
}
.switch-success > .switch.switch-bootstrap:checked + .label-custom::before {
  background-color: #0F9D58;
}
.switch-danger > .switch.switch-bootstrap:checked + .label-custom::before {
  background-color: #b45155;
}
.switch-info > .switch.switch-bootstrap:checked + .label-custom::before {
  background-color: #1abc9c;
}
.switch-warning > .switch.switch-bootstrap:checked + .label-custom::before {
  background-color: #f7931d;
}
.switch.switch-bootstrap:checked + .label-custom::after {
  left: 16px;
  background-color: #fff;
  border: 4px solid #fff;
  text-shadow: 0 -1px 0 rgba(0, 200, 0, 0.25);
}
/* square */
.switch-square {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.switch-square + .label-custom {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 20px;
  min-height: 18px;
  min-width: 18px;
  font-weight: normal;
  cursor: pointer;
}
.switch-square + .label-custom::before {
  cursor: pointer;
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 12px;
  color: #1abc9c;
  content: "\a0";
  background-color: #f2f2f2;
  border: 1px solid #d7d7d7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  display: inline-block;
  text-align: center;
  height: 16px;
  line-height: 14px;
  min-width: 16px;
  margin-right: 1px;
  position: relative;
  top: -1px;
}
.switch-square:checked + .label-custom::before {
  display: inline-block;
  content: '\f00c';
  background-color: #f5f5f5;
  border-color: #999;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
}
/* CSS3 on/off switches */
.switch-square + .label-custom {
  margin: 0 4px;
  min-height: 24px;
}
.switch-square + .label-custom::before {
  font-weight: normal;
  font-size: 11px;
  line-height: 17px;
  height: 20px;
  overflow: hidden;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  background-color: #f5f5f5;
  -webkit-box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #d7d7d7;
  text-align: left;
  float: left;
  padding: 0;
  width: 52px;
  text-indent: -21px;
  margin-right: 0;
  -webkit-transition: text-indent 0.3s ease;
  -o-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
  top: auto;
}
.switch-square.switch-bootstrap + .label-custom::before {
  font-family: FontAwesome;
  content: "\f00d";
  box-shadow: none;
  border-width: 0;
  font-size: 16px;
  background-color: #999;
  color: #f2f2f2;
  width: 52px;
  height: 22px;
  line-height: 21px;
  text-indent: 32px;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  transition: background 0.1s ease;
}
.switch-square.switch-bootstrap + .label-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  border-radius: 12px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  width: 18px;
  height: 18px;
  text-align: center;
  background-color: #f2f2f2;
  border: 4px solid #f2f2f2;
  -webkit-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
}
.switch-square.switch-bootstrap:checked + .label-custom::before {
  content: "\f00c";
  text-indent: 6px;
  color: #fff;
  border-color: #2980b9;
}
.switch-primary > .switch-square.switch-bootstrap:checked + .label-custom::before {
  background-color: #3498db;
}
.switch-success > .switch-square.switch-bootstrap:checked + .label-custom::before {
  background-color: #0F9D58;
}
.switch-danger > .switch-square.switch-bootstrap:checked + .label-custom::before {
  background-color: #b45155;
}
.switch-info > .switch-square.switch-bootstrap:checked + .label-custom::before {
  background-color: #1abc9c;
}
.switch-warning > .switch-square.switch-bootstrap:checked + .label-custom::before {
  background-color: #f7931d;
}
.switch-square.switch-bootstrap:checked + .label-custom::after {
  left: 32px;
  background-color: #fff;
  border: 4px solid #fff;
  text-shadow: 0 -1px 0 rgba(0, 200, 0, 0.25);
}
.switch-square.switch-bootstrap + .label-custom::after {
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
/* Theme specific modules */
/* 
PROPERTY PAGE
*/
/* Details */
body.Property {
  /* Small Devices, Tablets */
  /* Small Devices, Tablets */
  /* Medium Devices, Desktops */
}
body.Property #property-rating-panel .lr-info-block-property-rating-header,
body.Property #property-rating-panel .lr-info-block-property-rating-propertymanager-panel {
  display: none;
}
body.Property #property-rating-panel [id$="-rating-panel"] {
  margin-bottom: 1em !important;
}
body.Property #property-rating-panel .lr-info-block-property-rating-label {
  display: none;
}
body.Property #property-rating-panel .lr-info-block-property-rating-show-reviews,
body.Property #property-rating-panel .lr-info-block-property-rating-stars {
  text-align: center;
  width: 100%;
}
body.Property #property-rating-panel img[src$="-on.png"],
body.Property #property-rating-panel img[src$="-half.png"],
body.Property #property-rating-panel img[src$="-off.png"] {
  width: 1.5em;
}
body.Property [id$="-rating-panel"] [class$="-propertymanager-panel"],
body.Property [id$="-rating-panel"] [class$="-property-panel"] {
  border: 0;
}
body.Property #property-rentalRooms,
body.Property [id$="-rating-panel"] {
  margin-bottom: 1em !important;
}
body.Property #property-rentalRooms [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  body.Property .affix {
    position: relative;
  }
  body.Property #property-rentalRooms [class*="col-"] {
    max-width: 13em;
    margin: 0 auto;
  }
  body.Property .row.mrg-bottom-2 {
    margin-bottom: 1em !important;
  }
}
@media (min-width: 768px) {
  body.Property #content2Right {
    top: -9em;
  }
}
@media (min-width: 992px) {
  body.Property #property-rentalRooms [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  body.Property #content2Right {
    top: 0;
  }
}
.property-page-title {
  margin-top: 0em !important;
  margin-bottom: 0.25em !important;
  font-weight: 600;
  font-size: 1.5em;
}
.property-page-subtitle {
  font-size: 1em;
}
.property-page-details-item {
  padding: 0em !important;
  padding-right: 2em !important;
}
.amenities-lg {
  font-size: 1.75em;
}
.prop-specs {
  font-size: 1em;
  margin-bottom: 0em !important;
  margin-left: 0.25em !important;
}
.prop-specs--container {
  display: inline-block;
  margin-right: 13px;
}
.prop-specs--container i {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2em;
}
.social-widgets > li {
  padding: 0em !important;
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
  margin-bottom: 0em;
}
.property-side-contact-manager {
  margin-bottom: 1em;
}
.property-page-section-title {
  padding-top: 1em !important;
  padding-bottom: 0.5em !important;
  border-bottom: 1px solid #d7d7d7;
  font-size: 1.75em;
}
/* Instant Quote */
.instant-quote-disclaimer {
  line-height: 1.3em;
}
.property-instant-quote .panel-heading {
  height: 6em;
}
.property-instant-quote .panel-body {
  height: 23em;
}
.property-instant-quote .panel-footer {
  height: 9em;
}
.instant-quote-table tr > td:last-of-type {
  text-align: right;
}
/* Calendar */
.outer-calendar-table {
  height: 16em;
  padding: 0em !important;
  padding-right: 0.5em !important;
  margin-bottom: 0.25em !important;
}
.property-calendar-table td {
  padding: 0.5em !important;
  font-size: 0.75em;
}
.property-calendar-legend-holder {
  clear: both;
  margin-top: 1em !important;
}
/* Alternative Properties */
.alternative-properties-wrapper .carousel-control {
  left: 50%;
  right: 50%;
}
.alternative-properties-title {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  margin-top: -2em !important;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}
.alternative-properties-title > a,
.alternative-properties-title > a:hover,
.alternative-properties-title > a:focus {
  color: #fff;
}
.alternative-properties-price {
  margin: 0em !important;
  font-size: 1.75em;
  line-height: 1;
  vertical-align: middle;
}
.alternative-properties-per-night {
  line-height: 1;
  margin-bottom: 0.5em !important;
}
.alternative-properties-carousel.carousel .alternative-properties-img > img {
  width: 100%;
  max-width: 100%;
}
.alternative-properties-price-wrapper {
  top: 0;
  position: absolute;
}
.alternative-properties-price-container {
  background: rgba(0, 0, 0, 0.5);
  padding: 1em !important;
}
.alternative-properties-price-container * {
  text-shadow: 0px 2px 3px #222;
}
.alternative-properties-price-wrapper * {
  color: #fff !important;
}
.property-page-details {
  margin-bottom: 0.5em !important;
}
/* Standard Amenities */
.property-standard-amenities--title {
  text-transform: capitalize;
  font-size: 1.25em;
}
.property-standard-amenities--amenity {
  text-transform: capitalize;
}
.property-standard-amenities--amenity-title {
  margin-left: 0.25em !important;
}
.property-standard-amenities {
  margin: 15px 0;
}
.property-standard-amenities--title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.property-standard-amenities--holder {
  overflow: hidden;
}
.property-standard-amenities--amenity.featured-amenity i,
.property-standard-amenities--amenity.standard-amenity i {
  font-size: 1.5em;
  width: 1.5em;
  display: inline-block;
  text-align: center;
  margin-left: 0.25em !important;
  vertical-align: middle;
}
.property-standard-amenities--amenity.standard-amenity i {
  font-size: 0.85em;
}
.property-standard-amenities--amenity {
  text-transform: capitalize;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.property-standard-amenities--category {
  margin-bottom: 25px;
}
.property-standard-amenities--category-title {
  font-size: 1.2em;
}
.property-standard-amenities--cateogry-items {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media (min-width: 1024px) {
  .property-standard-amenities--cateogry-items {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    padding-left: 15px;
  }
}
.standard-amenities-section {
  position: relative;
}
.standard-amenities-section--show-more a {
  margin-top: 10px;
  padding: 10px 0;
  background: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}
/* Details Menu */
.property-page-details-menu-wrapper {
  margin-bottom: 0.5em !important;
  border-bottom: 1px solid #d7d7d7;
}
.property-page-details-menu-container {
  width: 100%;
}
.btn-property-back-to-top {
  display: none !important;
}
div.property-page-details-menu-wrapper.property-page-fixed-items.affix > div > div > div > ul > li.property-page-details-menu-item.pull-right.btn-property-back-to-top {
  display: block !important;
}
.property-page-details-menu-wrapper [class*="col-"] {
  padding-left: 0em !important;
  padding-right: 0em !important;
}
.property-page-details-menu {
  margin: auto 15px;
}
.property-page-details-menu-item {
  padding-top: 0em !important;
  padding-left: 0em !important;
  padding-bottom: 0em !important;
  padding-right: 0em !important;
}
.property-page-details-menu-item a {
  display: block;
  padding: .25em .75em;
  color: #666 !important;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  text-decoration: none !important;
}
.property-page-details-menu-item-a:hover {
  background: #3498db;
  color: #f5f5f5 !important;
}
/*
.property-instant-quote-mobile{ display: none; }
*/
.bed-arrangement--title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.bed-arrangement--holder {
  width: 100%;
}
.bed-arrangement--room {
  padding: 15px;
  margin: 0 7px 7px 0;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  display: inline-block;
  text-align: left;
}
.bed-arrangement--room-icon {
  line-height: 2em;
}
.bed-arrangement--room-name {
  font-weight: 600;
}
.bed-arrangement--room-beds {
  font-weight: 400;
  line-height: 1.5em;
  font-size: .9em;
}
@media (max-width: 767px) {
  .bed-arrangement--room {
    padding: 5px 10px;
    width: 100%;
  }
  .property-instant-quote-affix {
    margin-bottom: 2em !important;
  }
  .property-page-details-menu-item {
    margin-bottom: 0.25em !important;
  }
  .property-page-details-menu-wrapper.affix {
    position: static !important;
  }
  /* .property-instant-quote-affix.affix .property-instant-quote-mobile { */
  .property-instant-quote-mobile {
    position: fixed !important;
    width: 100%;
    left: 0;
    background: #fff;
    bottom: 0;
    z-index: 1001;
    padding: 1em 0;
    border: 1px solid #d7d7d7;
    box-shadow: 0 -3px 20px rgba(35, 35, 35, 0.2);
    /*display: block !important;*/
  }
  .property-instant-quote-mobile .btn {
    box-shadow: 0 5px 9px rgba(35, 35, 35, 0.3);
    font-size: 1.25em;
  }
  .property-instant-quote-mobile .fa {
    line-height: 1.5;
  }
}
/*sm*/
@media (min-width: 768px) {
  .property-instant-quote-affix.affix {
    top: 6em;
    z-index: 1000;
    position: relative !important;
  }
  .property-page-title {
    font-size: 1.5em;
  }
  .property-page-subtitle {
    font-size: 1em;
  }
  .property-page-details-menu-wrapper.affix {
    top: 0;
    left: 0;
    right: 0;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
    background: #fff;
    box-shadow: 0 0 3px #666;
    z-index: 1001;
  }
  .affix > .property-page-details-menu-container {
    width: 718px !important;
  }
  /* Instant Quote */
  .property-instant-quote .property-instant-quote-message {
    line-height: 1.3em;
  }
  .property-instant-quote .panel-body {
    height: 23em;
  }
  .property-instant-quote-affix.affix {
    position: fixed !important;
    width: 218px;
  }
}
/*md*/
@media (min-width: 992px) {
  .property-page-title {
    font-size: 2em;
  }
  .property-page-subtitle {
    font-size: 1.125em;
  }
  .affix > .property-page-details-menu-container {
    width: 935px !important;
  }
  .property-instant-quote-affix.affix {
    position: fixed !important;
    width: 211px;
  }
}
/*lg*/
@media (min-width: 1200px) {
  .affix > .property-page-details-menu-container {
    width: 1142px !important;
  }
  /* Instant Quote */
  .property-instant-quote .panel-body {
    height: 22em;
  }
  .property-instant-quote-affix.affix {
    position: fixed !important;
    width: 262.5px;
  }
}
/*
SEARCH RESULTS & CATEGORY RESULTS
*/
/* Breadcrumbs (category results) */
.breadcrumb {
  margin: 0em !important;
  margin-bottom: 0.5em !important;
}
.communities-list-wrapper {
  margin-bottom: 1em !important;
  padding-bottom: 1em !important;
  border-bottom: 1px solid #d7d7d7;
}
/* General */
.search-avail-table-dates {
  padding-top: 0.5em !important;
}
.list-inline.search-results-list-sort {
  margin-bottom: 0em !important;
}
.list-inline.search-results-list-sort > li {
  padding: 0.5em !important;
  padding-top: 0em !important;
}
.property-list-img {
  width: 100%;
}
.property-list-code {
  display: block;
  line-height: 1.2;
}
.item-min-nights {
  display: block;
  line-height: 1.2;
}
.property-list-title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0.25em !important;
  color: #3498db;
  font-weight: 600;
  font-size: 1.1em;
}
.property-list-title > a {
  text-decoration: none !important;
}
.property-list-items-wrapper,
.property-list-details-wrapper {
  padding-top: 0.5em !important;
}
.property-list-item-wrapper {
  list-style: none;
  margin-left: 0em !important;
  margin-bottom: 0em !important;
}
.property-list-item {
  line-height: 1.5;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-results-calendar-suggestions .property-list-item {
  line-height: 1.3;
}
.property-list-compare {
  padding-top: 0.5em !important;
}
.property-list-price {
  margin: 0em !important;
}
.property-list-per-night {
  line-height: 1;
  margin-bottom: 0.5em !important;
}
.property-list-compare-text {
  font-size: 14px;
  vertical-align: middle;
}
/* Property List Row View */
.property-list-wrapper.row-view {
  margin: 0em !important;
  margin-top: 1em !important;
  padding: 0em !important;
}
.property-list-wrapper.row-view:first-of-type {
  margin-top: 0em !important;
}
.property-list-wrapper.row-view .property-list-img-wrapper {
  padding: 0em !important;
}
@media (min-width: 768px) {
  .property-list-wrapper.row-view .property-list-details-wrapper {
    border-left: 1px solid #d7d7d7;
  }
}
.property-list-wrapper.row-view .property-list-btn-wrapper {
  /*
    position: absolute;
    bottom: 0; 
    */
}
/* Property List Grid View */
.property-list-wrapper.grid-view .property-list-content-wrapper {
  border: 1px solid #d7d7d7;
  margin-bottom: 1em !important;
}
.property-list-wrapper.grid-view > ul {
  margin: 0em !important;
}
.property-list-wrapper.grid-view > ul > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}
.property-list-wrapper.grid-view .property-list-text-wrapper {
  padding: 0.75em !important;
}
.property-list-wrapper.grid-view .property-list-price-wrapper {
  padding: 0em !important;
}
.property-list-wrapper.grid-view .property-list-text-wrapper > .row:first-of-type {
  padding-top: 1em !important;
}
.property-list-wrapper.grid-view .property-list-details-wrapper > [class*="col-"]:last-of-type {
  padding-left: 0.25em !important;
}
.property-list-wrapper.grid-view .property-list-details-wrapper > [class*="col-"]:first-of-type {
  padding-right: 0.25em !important;
}
.property-list-wrapper.grid-view .property-list-footer {
  padding-left: 0.75em !important;
  padding-right: 0.75em !important;
}
div.property-on-sale {
  position: relative;
}
div.property-on-sale:before {
  content: "Save " attr(data-percent) "%";
  position: absolute;
  color: #fff;
  background: #ff4b46;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
  font-size: 0.8em;
  left: 0;
  top: 1em;
  padding: 0 1em;
  z-index: 1000;
}
.flexible-search--dates {
  margin-left: 3px;
  padding: 3px 6px;
  margin-bottom: 2px;
  margin-top: 10px;
  color: #222;
  text-align: center;
  background: #f4f4f4;
  border-radius: 5px;
  font-size: .9em;
  font-weight: 600;
}
.flexible-search--dates > i,
.flexible-search--dates > span {
  color: #0F9D58;
}
@media (min-width: 768px) {
  .flexible-search--dates {
    display: inline-block;
  }
}
.search-results-percent-booked-holder {
  background: #FEFCCA;
  padding: 15px;
  margin: 10px 0;
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s;
  /* Firefox < 16 */
  -ms-animation: fadein 2s;
  /* Internet Explorer */
  -o-animation: fadein 2s;
  /* Opera < 12.1 */
  animation: fadein 2s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
span.pre-special-price {
  color: #ff4b46;
}
@media (max-width: 767px) {
  div.property-on-sale:before {
    right: 0;
    left: auto;
  }
  .property-list-img-wrapper > .property-list-code {
    padding-left: 0em !important;
  }
  .property-list-wrapper.row-view {
    margin-top: 1em !important;
    padding: 0.5em !important;
    border: 1px solid #d7d7d7;
  }
  .property-list-items-wrapper {
    padding: 0em !important;
    margin-bottom: 1em !important;
  }
  .property-list-title {
    margin-top: -2em !important;
  }
}
@media (min-width: 768px) {
  .property-list-wrapper.row-view {
    margin-top: 1em !important;
    border: 1px solid #d7d7d7;
  }
}
@media (max-width: 991px) {
  .listing-results-h1 {
    margin-bottom: 0em !important;
  }
  .search-avail-table-dates.pull-right {
    float: left !important;
  }
  .property-list-price-wrapper {
    top: 0;
    position: absolute;
  }
  .property-list-price-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 1em !important;
  }
  .property-list-price-container * {
    text-shadow: 0px 2px 3px #222;
  }
  .property-list-price-wrapper * {
    color: #fff !important;
  }
  .property-list-title {
    padding: 0.5em !important;
    padding-left: 1em !important;
    font-size: 16px;
    margin-top: -2.5em;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    color: #fff !important;
  }
  .property-list-title > a {
    color: #fff !important;
  }
  .property-list-details-wrapper {
    border: 0;
  }
}
@media (min-width: 992px) {
  .property-list-wrapper.grid-view .property-list-text-wrapper {
    height: 14em;
  }
  .property-list-title {
    margin-top: 0em !important;
    margin-bottom: 0em !important;
  }
  .property-list-wrapper.row-view .property-list-img {
    height: 11em;
  }
  .property-list-wrapper.grid-view .property-list-img {
    height: 14em;
  }
  .search-results-calendar-suggestions .property-list-wrapper.row-view .property-list-img {
    height: 13.5em;
  }
  .property-list-wrapper.grid-view > ul > [class*="col-"]:last-of-type {
    padding-left: 0px;
    padding-right: 15px;
  }
  .property-list-wrapper.grid-view > ul > [class*="col-"]:nth-of-type(2) {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .property-list-wrapper.grid-view > ul > [class*="col-"]:first-of-type {
    padding-left: 15px;
    padding-right: 0px;
  }
  .property-list-price {
    font-size: 1.5em;
  }
  .search-results-calendar-suggestions .lr-strip-calendar td {
    font-size: 10px !important;
  }
}
@media (min-width: 1200px) {
  .property-list-code {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .btn-view-rental {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .property-list-price {
    font-size: 1.75em;
  }
}
.search-results-loading-message,
.search-results-error-message {
  margin-top: 2em !important;
  margin-bottom: 2em !important;
  padding: 0.75em !important;
  background: #f5f5f5;
  border: 1px solid #d7d7d7;
  color: #333;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  font-size: 1em;
}
/* Map */
.search-results-map-view {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #eee;
  z-index: 6000;
  padding-top: 64px;
}
.search-results-map-view-header {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 5500;
  font-size: 22px;
  color: #444;
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  overflow: auto;
}
#map_canvas {
  width: 100%;
  height: 100%;
}
.search-result-map-info-window {
  min-width: 250px;
}
.search-result-map-info-window-thumb {
  margin: 0 10px 10px 0;
  width: auto;
}
.search-result-map-info-window-float {
  float: left;
}
.search-result-map-info-window-headline {
  font-size: 16px;
  padding: 0 0 5px 0;
  font-weight: bold;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-map-info-window-details {
  font-size: 14px;
}
.search-result-map-info-window-price {
  font-size: 16px;
  padding: 3px 0 7px 0;
}
.search-result-map-info-window-location {
  font-size: 14px;
}
.search-result-map-info-window-link {
  padding: 7px 0;
  font-size: 14px;
}
.search-result-close-button {
  margin-right: 30px;
}
.search-results-map-button {
  border: 1px solid #777;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  background: #fff;
  background-image: url(https://cdn.liverez.com/3/Images/static-map-placeholder.jpg);
  height: 90px;
  position: relative;
}
.search-results-map-button:before {
  content: "View Map \f041";
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 2;
  padding: 7px 5px 4px 10px;
  background: #fff;
  color: #3498DB;
  font-family: FontAwesome, Open Sans;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}
/* columns of same height styles */
/* see: http://www.minimit.com/articles/solutions-tutorials/bootstrap-3-responsive-columns-of-same-height; */
.col-full-height {
  vertical-align: middle;
}
.row-same-height {
  display: table;
  width: 100%;
  /* fix overflow */
  table-layout: fixed;
}
.col-xs-height {
  display: table-cell;
  float: none !important;
}
@media (min-width: 768px) {
  .col-sm-height {
    display: table-cell;
    float: none !important;
  }
}
@media (min-width: 992px) {
  .col-md-height {
    display: table-cell;
    float: none !important;
  }
  .row-full-height {
    height: 100%;
  }
  .col-full-height {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-height {
    display: table-cell;
    float: none !important;
  }
}
/* vertical alignment styles */
.col-top {
  vertical-align: top;
}
.col-middle {
  vertical-align: middle;
}
.col-bottom {
  vertical-align: bottom;
}
.search-results-properties {
  position: relative;
}
.search-results--paging-container {
  margin: 60px 0;
  border: 1px solid #d7d8da;
}
.search-results--paging-container div.col-xs-3:nth-of-type(1) > a {
  border-right: 1px solid #d7d8da;
  color: #3498db;
}
.search-results--paging-container div.col-xs-3:nth-of-type(1) > a:hover {
  background: #f9f9f9;
}
.search-results--paging-container div.col-xs-3:nth-of-type(3) > a {
  border-left: 1px solid #d7d8da;
  color: #3498db;
}
.search-results--paging-container div.col-xs-3:nth-of-type(3) > a:hover {
  background: #f9f9f9;
}
.search-results--paging-container .page-status {
  font-weight: 600;
  padding: 7px;
}
.search-ui-blocker {
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.active-sort {
  color: #232323 !important;
  font-weight: 600;
  text-decoration: none !important;
  pointer-events: none;
}
.flexible-dates-inline-picker {
  border-bottom: 3px solid #999;
  margin: 5px 0 15px 0;
  background: transparent;
}
.flexible-dates-inline-picker--day {
  display: inline-block;
  background: #f2f2f2;
  padding: 5px 15px;
  text-align: center;
  margin-right: 2px;
  border-top: 4px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  line-height: 1.3em;
  text-decoration: none !important;
  color: #34495e !important;
  -webkit-transition: all 150ms;
  /* Safari */
  transition: all 150ms;
  min-width: 80px;
}
.flexible-dates-inline-picker--day:hover {
  cursor: pointer;
  background: #d7d7d7;
}
.flexible-dates-inline-picker--day-top {
  text-transform: uppercase;
  font-size: 0.8em;
}
.flexible-dates-inline-picker--day-bottom {
  font-weight: 600;
  font-size: 0.9em;
}
.flexible-dates-inline-picker--day-price {
  color: #0F9D58;
  margin-top: 3px;
  font-weight: 600;
  font-size: 1.2em;
}
.flexible-dates-inline-picker--day.active {
  background: #3498db;
  border-top: 4px solid #3498db;
  color: #fff !important;
}
.flexible-dates-inline-picker--day.active .flexible-dates-inline-picker--day-price {
  color: #fff;
}
@media (min-width: 768px) {
  .flexible-dates-inline-picker--day.active {
    background: #fff;
    border-top: 4px solid #3498db;
    margin-bottom: -5px;
    padding-bottom: 10px;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
  }
  .flexible-dates-inline-picker--day.active {
    background: #fff;
    color: #34495e !important;
    margin-bottom: -5px;
    padding-bottom: 10px;
  }
  .flexible-dates-inline-picker--day.active .flexible-dates-inline-picker--day-price {
    color: #0F9D58 !important;
  }
}
/*
SECONDARY SEARCH BOX
*/
.secondary-search {
  background: #f2f2f2;
  border: 1px solid #777;
  padding: 1em;
}
@media screen and (min-width: 767px) {
  .secondary-search {
    margin-bottom: 2em;
  }
}
.search-title {
  font-size: 1.5em;
  color: #34495e;
  text-align: center;
}
.secondary-search-main {
  margin-bottom: 1em;
}
body:not(.Index) #secondary-bedrooms {
  padding-right: 3px;
}
body:not(.Index) #secondary-bedrooms + #secondary-guests {
  padding-left: 3px;
}
#secondary-advanced {
  margin-top: 0;
}
div.secondary-advanced-checkbox {
  margin-top: 0px;
  margin-bottom: 3px;
}
div.search-amenities-container {
  margin: -5px 0;
}
#secondary-advanced > div > label {
  padding-left: 30px;
}
button.mobile-sidebar-close-button {
  position: absolute;
  top: 13px;
  right: 15px;
}
#secondary-advanced-legend {
  font-size: 18px;
  border-bottom-width: 2px;
}
.secondary-left-feature {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}
/* handles the left menu when mobile */
@media screen and (max-width: 767px) {
  .sidebar {
    position: fixed;
  }
  .sidebar-left {
    top: -9999px;
  }
  .sidebar-left.sidebar-open {
    z-index: 1010;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    overflow: hidden;
    overflow-y: scroll;
  }
  body:not(.Index) .left-inner-addon input {
    padding-left: 2.5em;
  }
}
@media (min-width: 992px) {
  body:not(.Index) #s-arrival {
    padding-right: 3px;
  }
  body:not(.Index) #s-departure {
    padding-left: 3px;
  }
  body:not(.Index) .left-inner-addon i,
  body:not(.Index) .right-inner-addon i {
    padding-top: 0.95em;
    padding-bottom: 0.95em;
    padding-right: 0.75em !important;
    padding-left: 0.75em !important;
    font-size: 0.75em;
  }
  body:not(.Index) .left-inner-addon input {
    padding-left: 1.75em !important;
  }
}
@media (min-width: 1200px) {
  body:not(.Index) #s-arrival-desktop {
    padding-right: 3px;
  }
  body:not(.Index) #s-departure-desktop {
    padding-left: 3px;
  }
  body:not(.Index) .left-inner-addon i,
  body:not(.Index) .right-inner-addon i {
    padding: 0.5em !important;
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
    font-size: 1em;
  }
  body:not(.Index) .left-inner-addon input {
    padding-left: 2em !important;
  }
}
.datepicker table tr td {
  border-radius: 0px !important;
  text-shadow: none !important;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover {
  background: transparent !important;
  color: #444 !important;
}
.datepicker table tr td.new,
.datepicker table tr td.old,
.datepicker table tr td.new:hover,
.datepicker table tr td.new.focused,
.datepicker table tr td.old:hover,
.datepicker table tr td.old.focused {
  color: #999 !important;
}
.datepicker table tr td.active:hover {
  background: #eee !important;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled.active,
.datepicker table tr td.disabled:hover,
.datepicker table tr td.active.disabled:hover {
  background: #e9e9e9 !important;
  color: #dadada !important;
}
.datepicker table tr td.active:active,
.datepicker table tr td.selected,
.datepicker table tr td.active:active:hover,
.datepicker table tr td.selected:hover {
  background: #C0C081 !important;
  color: #444444 !important;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover {
  background: #FFCC66 !important;
  color: #444444 !important;
}
div#propertyInstantQuote .datepicker table tr td.active:active.disabled,
div#propertyInstantQuote .datepicker table tr td.selected.disabled,
div#propertyInstantQuote .datepicker table tr td.disabled.range {
  color: #F37A81 !important;
  font-weight: bold;
}
.datepicker-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6000;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.datepicker-overlay i.fa-spin {
  font-size: 26px;
  color: #3498DB;
  margin-top: 60%;
}
.datepicker-dropdown {
  z-index: 9999!important;
}
a.property-instant-quote-change-dates {
  clear: both;
}
#halfPage.carousel {
  height: 50%;
}
#halfPage .carousel-inner .item,
#halfPage .carousel-inner .active,
#halfPage .carousel-inner {
  height: 520px;
}
#halfPage .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/*#halfPage.carousel .item {
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}*/
#halfPage.carousel .active.left {
  left: 0;
  z-index: 2;
}
#halfPage.carousel .next {
  left: 0;
  opacity: 1;
  z-index: 1;
}
#halfPage .carousel-control {
  z-index: 100;
}
#halfPage .fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media screen and (min-width: 992px) {
  #halfPage .carousel-indicators {
    bottom: 3em;
  }
}
@media screen and (max-width: 991px) {
  #halfPage .carousel-indicators {
    bottom: 6em;
  }
}
@media screen and (max-width: 767px) {
  #halfPage .carousel-indicators {
    bottom: 12em;
  }
}
/* Large Devices, Wide Screens */
@media (min-width: 1200px) {
  #halfPage .carousel-inner .item,
  #halfPage .carousel-inner .active,
  #halfPage .carousel-inner {
    max-height: 85vh;
  }
}
@media (max-height: 900px) {
  #halfPage .carousel-inner .item,
  #halfPage .carousel-inner .active,
  #halfPage .carousel-inner {
    max-height: 80vh;
  }
}
/*
SLIDESHOW CAPTIONS
*/
.caption-title-container,
.caption-title-container {
  position: absolute;
  z-index: 100;
  bottom: 7em;
  width: 100%;
}
.caption-title-container .caption-title {
  font-size: 5em;
  color: #fff;
  font-weight: lighter;
  text-shadow: 0 2px 2px #232323;
  margin: 0em !important;
  margin-bottom: 0.25em !important;
  text-align: center;
}
.caption-title-container i,
.caption-title-container strong {
  font-size: 1.1em;
  color: #fff;
  font-weight: bold;
}
.caption-title-container .caption-subtitle {
  font-size: 1.5em;
  color: #fff;
  margin: 0em !important;
  margin-top: -0.25em !important;
  text-shadow: 0px 2px 2px #232323;
  text-align: center;
}
/*
FOOTER
*/
.footer-wrapper {
  background: #333;
  padding-bottom: 0em;
  padding-top: 3em;
  color: #fff;
  position: relative;
  z-index: 200;
}
.footer-wrapper h1,
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper h5,
.footer-wrapper h6,
.footer-wrapper a {
  color: #fff;
}
.footer-wrapper h1,
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper h5,
.footer-wrapper h6 {
  font-size: 1.75em;
}
.footer-wrapper i {
  font-size: 2.25em;
  margin: 0 0.9em 0 0;
}
.footer-banner-bottom {
  margin-top: 2em !important;
  background-color: #232323;
  padding-top: 1em;
  font-size: 0.75em;
}
.footer-banner-bottom a {
  color: #999;
}
/*
MYREVU 2.0
*/
.myrevu-wrapper {
  margin-bottom: 2em !important;
}
.myrevu-wrapper hr {
  border-top-color: #d7d7d7;
}
.myrevu-manager-title-wraper {
  font-size: 0.8em;
}
.myrevu-manager-title-wraper p {
  margin-bottom: 0em !important;
}
.myrevu-manager-rating-wrapper .list-inline {
  float: right;
  margin-bottom: 0em !important;
}
.myrevu-manager-rating-wrapper .list-inline > li {
  position: relative;
  font-size: 0.5em;
  margin: 0em !important;
  padding-left: 0.75em !important;
  vertical-align: top;
  color: #f7931d;
}
.myrevu-manager-rating-wrapper .list-inline > li.star-off {
  color: #d7d7d7;
}
.myrevu-manager-rating-wrapper .list-inline > li .fa-star-half:before {
  margin-right: 0.4em;
}
.myrevu-testimonials-link,
.myrevu-inquiry {
  font-size: 0.8em;
}
.myrevu-inquiry {
  margin-bottom: 0em !important;
}
.btn-myrevu,
a.btn-myrevu {
  border: 1px solid #f7931d;
  color: #fff;
  background: #f7931d;
}
.btn-myrevu:hover,
.btn-myrevu:active {
  border: 1px solid #c67617;
  color: #fff;
  background: #c67617;
}
/* Small Devices, Tablets */
@media (min-width: 768px) {
  .myrevu-manager-title-wraper {
    padding-right: 0em !important;
  }
  .myrevu-manager-rating-wrapper {
    padding-left: 0em !important;
  }
}
/****************************
/////////////////////////////

MyRevu Overrides

/////////////////////////////
****************************/
img[src$="-on.png"] {
  content: url("../images/star-on.png");
}
img[src$="-half.png"] {
  content: url("../images/star-half.png");
}
img[src$="-off.png"] {
  content: url("../images/star-off.png");
}
img[src$="-on.png"],
img[src$="-half.png"],
img[src$="-off.png"] {
  width: 0.9em;
}
[id$="-rating-panel"] [class$="-rating-header"] {
  font-size: 1.2em;
}
[id$="-rating-panel"] {
  margin-bottom: 2.5em;
}
[id$="-rating-panel"] [class$="-rating-panel"] {
  padding: 0em !important;
  border: 0;
}
[id$="-rating-panel"] [class$="-propertymanager-panel"],
[id$="-rating-panel"] [class$="-property-panel"] {
  border-bottom: 1px solid #d7d7d7;
}
[id$="-rating-panel"] [class$="-panel"] {
  position: relative;
  width: 100%;
}
[id$="-rating-panel"] [class$="-label-text"] {
  font-size: 0.8em;
  line-height: 2.5em;
}
[id$="-rating-panel"] [class$="-rating-stars"] {
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}
[id$="-rating-panel"] [class$="-rating-stars"] > div {
  width: 100% !important;
}
[id$="-rating-panel"] [class$="-rating-footer"] {
  width: 100%;
}
[id$="-rating-panel"] [class$="-rating-footer"] a[href*=testimonials] {
  float: right;
  margin: 0;
}
[id$="-rating-panel"] [class$="-show-reviews"] > div {
  width: 100%;
  clear: both;
}
[id$="-rating-panel"] [class$="-show-reviews"] > div a,
[id$="-rating-panel"] [class$="-rating-footer"] a.lr-info-block-ratings-write-reviews {
  background: #f7931d;
  text-align: center;
  padding: 10px 16px;
  color: #fff;
  right: 0;
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.33;
  text-decoration: none;
}
[id$="-rating-panel"] [class$="-show-reviews"] > div a:hover,
[id$="-rating-panel"] [class$="-rating-footer"] a.lr-info-block-ratings-write-reviews:hover {
  background-color: #c67617;
  outline: none;
}
/** LEFT INDEX: Property Page Ratings **/
[id$="-rating-panel"] .lr-info-block-property-rating-show-overall-reviews,
[id$="-rating-panel"] .lr-info-block-property-rating-show-reviews {
  position: absolute;
  right: 0;
  bottom: -2.25em;
  padding: 0;
}
[id$="-rating-panel"] .lr-info-block-property-rating-panel > div {
  margin: 0 0 0.75em;
}
[id$="-rating-panel"] .lr-info-block-property-rating-show-overall-reviews a,
[id$="-rating-panel"] .lr-info-block-property-rating-show-reviews a {
  font-weight: bold;
}
/** / MYREVU CUSTOM STYLES **/
.lr-info-block-property-rating-footer {
  display: none !important;
}
@font-face {
  font-family: "lr-icons";
  src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype');
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "lr-icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lr[class^="lr-"]:before,
.lr[class*=" lr-"]:before {
  font-family: "lr-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lr-001-air-conditioning:before {
  content: "\e000";
}
.lr-002-bathroom:before {
  content: "\e001";
}
.lr-003-bed:before {
  content: "\e002";
}
.lr-004-bed-air:before {
  content: "\e003";
}
.lr-005-bed-bunk:before {
  content: "\e004";
}
.lr-006-bed-crib:before {
  content: "\e005";
}
.lr-007-bed-hammock:before {
  content: "\e006";
}
.lr-008-bed-sofa:before {
  content: "\e007";
}
.lr-009-bed-toddler:before {
  content: "\e008";
}
.lr-010-bed-water:before {
  content: "\e009";
}
.lr-011-beds:before {
  content: "\e00a";
}
.lr-012-guests:before {
  content: "\e00b";
}
.lr-013-hot-tub:before {
  content: "\e00c";
}
.lr-014-kitchen:before {
  content: "\e00d";
}
.lr-015-laundry:before {
  content: "\e00e";
}
.lr-016-non-smoking:before {
  content: "\e00f";
}
.lr-017-outdoor-grill:before {
  content: "\e010";
}
.lr-018-parking:before {
  content: "\e011";
}
.lr-019-patio:before {
  content: "\e012";
}
.lr-020-pets:before {
  content: "\e013";
}
.lr-021-pool:before {
  content: "\e014";
}
.lr-022-satellite-cable-tv:before {
  content: "\e015";
}
.lr-023-sq-ft:before {
  content: "\e016";
}
.lr-024-wheelchair:before {
  content: "\e017";
}
.lr-025-wifi:before {
  content: "\e018";
}
.lr-026-check:before {
  content: "\e019";
}
.lr-027-bed-bunk-pyramid:before {
  content: "\e01a";
}
.lr-028-trundle:before {
  content: "\e01b";
}
.lr-029-futon:before {
  content: "\e01c";
}
/*
SIDE MENU
*/
@media screen and (max-width: 767px) {
  .nav {
    float: none !important;
  }
  .navbar-default .navbar-nav * {
    color: #999 !important;
  }
  .navbar-default .navbar-nav > .open > a,
  .navbar-default .navbar-nav > .open > a:focus,
  .navbar-default .navbar-nav > .open > a:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
  .dropdown-backdrop {
    position: static;
  }
  .side-collapse-container {
    width: 100%;
    position: relative;
    left: 0;
    -webkit-transition: all 0.05s ease;
    -moz-transition: all 0.05s ease;
    -o-transition: all 0.05s ease;
    transition: all 0.05s ease;
  }
  .side-collapse-container.out {
    left: 18em;
    overflow: hidden;
  }
  .side-collapse {
    top: 0;
    padding-top: 0.75em !important;
    bottom: 0;
    left: 0;
    width: 18em;
    position: fixed;
    overflow: hidden;
    -webkit-transition: all 0.05s ease;
    -moz-transition: all 0.05s ease;
    -o-transition: all 0.05s ease;
    transition: all 0.05s ease;
    z-index: 1000;
    background: #333;
    overflow: scroll;
  }
  .side-collapse.in {
    width: 0;
  }
  .side-collapse .dropdown-menu a {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.hamburger {
  position: absolute;
  top: 0;
  z-index: 100;
  display: block;
  width: 24px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
  margin-top: 1em !important;
}
body.toggled .hamburger {
  position: fixed;
  top: 4em;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #fff;
}
.hamburger.is-closed .hamb-top {
  top: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #333;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}
.hamburger.is-open .hamb-middle {
  display: none;
}
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}
/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(250, 250, 250, 0.8);
  z-index: 1;
}
/*
IMAGE INDICATOR CAROUSEL
*/
/* Photo Gallery */
#propGallery .carousel-indicators {
  margin: 10px 0 0;
  position: static;
  text-align: left;
  width: 100%;
}
#propGallery .carousel-indicators li {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: inline-block;
  height: auto;
  margin: 0 !important;
  width: auto;
  padding: 0.25em !important;
  float: left;
  border: 1px solid transparent;
}
#propGallery .carousel-indicators li.active {
  border: 1px solid #3498db;
}
#propGallery .carousel-indicators li img {
  display: block;
  max-width: 75px;
  width: 75px;
  height: 56px;
}
#propGallery .carousel-outer {
  position: relative;
}
/* Photo Gallery Modal */
#propGalleryModal .carousel-indicators {
  bottom: 0;
  left: 0;
  margin: 10px 0 0;
  overflow: auto;
  text-align: left;
  white-space: nowrap;
  width: 100%;
  display: block !important;
}
#propGalleryModal .carousel-indicators li {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: inline-block;
  height: auto;
  margin: 0 !important;
  width: auto;
  opacity: 0.5;
  border: 0;
}
#propGalleryModal .carousel-indicators li:focus,
#propGalleryModal .carousel-indicators li:hover,
#propGalleryModal .carousel-indicators li.active {
  opacity: 1;
}
#propGalleryModal .carousel-indicators li img {
  display: block;
  max-width: 75px;
  width: 75px;
  height: 56px;
}
/* 
CAROUSEL GALLERY MODAL
*/
#propGalleryModalGallery .fill {
  max-width: 800px;
  height: 90vh;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
#propGalleryModalGallery .fill.large-image-800 {
  max-width: 800px;
  height: 90vh;
}
#propGalleryModalGallery .fill.large-image-1600 {
  max-width: 1600px;
  height: 90vh;
}
.property-modal {
  text-align: center;
}
.property-modal.in {
  display: table !important;
  height: 100%;
}
.property-modal:before {
  display: inline-block;
  vertical-align: middle;
  content: " ";
  height: 100%;
}
.property-modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal-dialog {
  width: 90%;
}
.property-modal-close {
  color: #fff;
  opacity: 1;
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9999;
}
.property-modal-close:hover,
.property-modal-close:active {
  color: #fff;
  opacity: 0.75;
}
.property-modal #propGallery .carousel-indicators li.active {
  border: 1px solid #fff;
}
.property-modal.in .carousel {
  display: table-cell;
}
.property-modal .carousel-inner {
  overflow: inherit;
}
.property-modal .carousel-caption {
  bottom: 5.5em;
  background: transparent;
  width: 100%;
  padding-left: 1em !important;
  padding-right: 1em !important;
  text-align: left;
  margin: 0 auto;
  text-shadow: 0 2px 2px #232323;
}
@media (min-width: 768px) {
  .property-modal .carousel-control.left,
  .property-modal .carousel-control.right {
    width: 100%;
  }
  .modal-dialog {
    width: 99%;
  }
  .property-modal .carousel-caption {
    width: 83.33333333%;
    max-width: 800px;
    padding: 0em !important;
    bottom: 7em;
  }
}
@media (max-height: 850px) {
  .property-modal .carousel-caption {
    background: rgba(35, 35, 35, 0.5);
    padding-top: 1em !important;
    padding-bottom: 1em !important;
    bottom: 5.75em;
  }
}
/*
TESTIMONIALS
*/
.testimonial {
  padding-top: 1em !important;
  padding-bottom: 1em !important;
  margin: 0em !important;
}
.testimonial-wrapper {
  border: 1px solid #999;
  margin-top: 1em !important;
}
/* 
INDEX FEATURES
*/
.search-wrap {
  position: relative;
}
.index-features-section {
  position: relative;
  padding-top: 2em !important;
  padding-bottom: 2em !important;
  margin-bottom: 1em !important;
  border-bottom: 1px solid #d7d7d7;
}
.index-features-title {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  margin-top: -2em !important;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
  text-align: center;
}
.index-features-title > a,
.index-features-title > a:hover,
.index-features-title > a:focus {
  color: #fff;
}
.index-features-img {
  width: 100%;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 145px;
}
.index-features-control .fa {
  position: absolute;
}
.index-features-control .fa-chevron-left {
  left: 0;
  margin-left: 0em !important;
}
.index-features-control .fa-chevron-right {
  right: 0;
  margin-right: 0em !important;
}
.index-features-control a {
  width: 100%;
}
@media (max-width: 767px) {
  .index-features-section,
  .index-features-section > .container,
  .index-features-wrapper > [class*="col-"] {
    padding: 0em !important;
  }
  .index-features-item [class*="col-"]:nth-child(odd) {
    padding-right: 0em !important;
  }
  .index-features-item [class*="col-"]:nth-child(even) {
    padding-left: 0em !important;
  }
  .search-wrap {
    margin-bottom: 0em !important;
  }
}
@media (min-width: 768px) {
  .index-features-img {
    height: 115px;
  }
}
@media (min-width: 992px) {
  .index-features-img {
    height: 145px;
  }
}
@media (min-width: 1200px) {
  .index-features-img {
    height: 160px;
  }
}
/* 
PROPERTY SELECT
*/
.site-overlay {
  position: fixed;
  z-index: 1000;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(35, 35, 35, 0.75);
}
.lr-typeahead {
  color: #333 !important;
  padding: 2px;
  z-index: 1010;
  margin-bottom: 30px;
}
.lr-typeahead a {
  color: #333 !important;
  display: block;
  padding: 3px;
}
.lr-typeahead a:hover {
  background: #3498db;
  color: #fff !important;
}
/*
INTERNET EXPLORER OVERRIDES
NOTE: FOR IE 10 AND ABOVE - FOR IE 9 AND BELOW, SEE css.inc FILE
*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .property-modal .carousel-control.left,
  .property-modal .carousel-control.right {
    position: relative;
    z-index: 2000;
  }
}
/*
(CUSTOM) INTERNET EXPLORER OVERRIDES
*/
/*
INDEX SEARCHBOX
*/
.select-home-dropdown-col {
  margin-top: -0.75em !important;
}
.select-home-dropdown-col .popover-content h2,
.select-home-dropdown-col .popover-content h3,
#popoverExampleTwoHiddenContent h2,
#popoverExampleTwoHiddenContent h3 {
  display: none;
}
#popoverExampleTwoHiddenContent {
  max-width: 350px;
}
@media (min-width: 768px) {
  #popoverExampleTwoHiddenContent {
    position: absolute;
    width: 350px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #d7d7d7;
    -webkit-box-shadow: 2px 1px 3px rgba(51, 51, 51, 0.5);
    box-shadow: 2px 1px 3px rgba(51, 51, 51, 0.5);
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
}
.search-bar-container .select-home-dropdown {
  color: #fff;
}
.search-bar-container .popover-content {
  padding: 0.75em !important;
}
.search-bar-container .lr-typeahead-wrapper {
  width: 100% !important;
}
.search-bar-container .lr-typeahead {
  margin: 0em !important;
}
.index-search-popover-icon {
  color: #fff;
}
/* REMOVE DUPLICATE  */
.lr-typeahead-wrapper > .lr-typeahead-wrapper:nth-of-type(2) {
  display: none;
}
/* ADDING SCROLLBAR TO TYPEAHEAD */
div.lr-typeahead::-webkit-scrollbar {
  width: 12px;
}
div.lr-typeahead::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
div.lr-typeahead::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(238, 238, 238, 0.8);
  -webkit-box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.5);
}
div.lr-typeahead::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.4);
}
/* /ADDING SCROLLBAR TO TYPEAHEAD */
.select-home-dropdown-col .popover {
  min-width: 276px;
}
.caption-title-container,
.caption-title-container {
  bottom: 10em;
}
.index-searchbox--flexible-dates-container .popover {
  min-width: 250px;
}
.select-home-dropdown-col.flex-dates-col .checkbox-inline {
  color: #fff;
}
/* Small Devices Only */
@media (max-width: 767px) {
  .search-bar-col {
    margin: auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
/*
MODULAR LESS COMPONENTS
*/
/*
	HOZ INDEX SEARCH BOX
	*/
.search-bar-wrap {
  background: rgba(35, 35, 35, 0.5);
  padding: 1.5em 0 0.5em;
  position: relative;
  width: 100%;
  bottom: 0em;
  z-index: 100;
}
.search-bar-title {
  display: none;
}
.left-inner-addon,
.right-inner-addon {
  position: relative;
}
.left-inner-addon input {
  padding-left: 2em;
}
.right-inner-addon input {
  padding-right: 2em;
}
.left-inner-addon i,
.right-inner-addon i {
  position: absolute;
  padding: 0.5em 0.75em;
  pointer-events: none;
  color: #777;
}
body.Index .left-inner-addon i,
body.Index .right-inner-add {
  padding: 0.7em 0.75em;
}
.right-inner-addon i {
  right: 0em;
}
.s-date-mobile > div.form-group {
  margin-bottom: 0px !important;
}
.s-date-mobile:first-of-type {
  padding-right: 0px;
  padding-left: 30px;
}
.s-date-mobile:last-of-type {
  padding-right: 30px;
  padding-left: 0px;
}
#s-Availabilty .faux-row {
  margin-bottom: 10px;
}
.search-options-col [class*="col-"],
.submit-col {
  padding-left: 0.25em !important;
  padding-right: 0.25em !important;
}
.select-home-dropdown-col.flex-dates-col {
  margin-top: 0.25em !important;
  margin-bottom: 1.25em !important;
  max-height: 2em;
}
/* Small Devices Only */
@media (max-width: 767px) {
  #s-arrival,
  #s-departure {
    padding: 0em !important;
  }
  .left-inner-addon input {
    padding-left: 2.5em;
  }
}
/* Small Devices, Tablets */
@media (min-width: 768px) {
  .search-bar-wrap {
    position: absolute;
  }
  .select-home-dropdown-col.flex-dates-col {
    padding-left: 0.25em !important;
  }
}
/* Medium Devices, Desktops */
@media (min-width: 992px) {
  .search-options-col .faux-row:nth-of-type(1) {
    padding-left: 15px !important;
  }
  .submit-col {
    padding-right: 15px !important;
  }
  .select-home-dropdown-col.flex-dates-col {
    margin-top: -0.75em !important;
    margin-bottom: 0em !important;
  }
}
/* IMPORT INDEX SEARCHBOX CENTER */
#halfPage.carousel {
  height: 50%;
}
#halfPage .carousel-inner .item,
#halfPage .carousel-inner .active,
#halfPage .carousel-inner {
  height: 220px;
}
#halfPage .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#halfPage.carousel .active.left {
  left: 0;
  z-index: 2;
}
#halfPage.carousel .next {
  left: 0;
  opacity: 1;
  z-index: 1;
}
#halfPage .carousel-control {
  z-index: 100;
}
#halfPage .fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
#halfPage .carousel-indicators {
  display: none;
  bottom: 0em;
}
.caption-title-container,
.caption-title-container {
  bottom: 10em;
}
/* Small Devices, Tablets */
@media (min-width: 768px) {
  #halfPage .carousel-indicators {
    display: block;
  }
  #halfPage .carousel-indicators {
    display: block;
  }
  #halfPage .carousel-inner .item,
  #halfPage .carousel-inner .active,
  #halfPage .carousel-inner {
    height: 420px;
  }
}
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
@media (min-width: 1200px) {
  #halfPage .carousel-inner .item,
  #halfPage .carousel-inner .active,
  #halfPage .carousel-inner {
    height: 420px;
  }
}
/*
MODULAR LESS COMPONENTS
*/
/* Small Devices, Tablets */
@media (min-width: 768px) {
  #halfPage .carousel-indicators {
    display: block;
  }
}
/* Medium Devices, Desktops */
@media (min-width: 992px) {
  #halfPage .carousel-indicators {
    display: block;
    bottom: 5em;
  }
}
/* Large Devices, Wide Screens */
@media (min-width: 1200px) {
  #halfPage .carousel-inner .item,
  #halfPage .carousel-inner .active,
  #halfPage .carousel-inner {
    height: 520px;
  }
}
/*
Pattern Library
NOTE: TO TOGGLE ON, SEE TOP OF LIB.LESS AND CHANGE @pattern-lib-toggle: "off" TO @pattern-lib-toggle: "on"
*/
/*
LB0001C02
COL 2 - COL LEFT IMG
*/
/*
LB0002C02
COL 2 - COL RIGHT IMG
*/
/*
LB0003C01
COL 1 - TITLE BANNER CENTER
*/
#LB0003C01-wrapper {
  background: #3498db;
}
#LB0003C01-wrapper h2 {
  color: #fff;
  font-weight: 300;
  font-size: 3em;
  line-height: 1.5em;
}
/*
LB0004C04
COL 4 - IMAGE SHOWCASE
*/
#LB0004C04-wrapper .showcase.background-cover:nth-of-type(1) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img6.jpg);
}
#LB0004C04-wrapper .showcase.background-cover:nth-of-type(2) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img7.jpg);
}
#LB0004C04-wrapper .showcase.background-cover:nth-of-type(3) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img8.jpg);
}
#LB0004C04-wrapper .showcase.background-cover:nth-of-type(4) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img9.jpg);
}
#LB0004C04-wrapper .btn-showcase {
  margin-bottom: 8em !important;
}
.showcase.display-table-row {
  display: table-row;
}
.showcase.background-cover {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  max-width: 100%;
}
.showcase-text {
  font-weight: lighter;
  text-transform: uppercase;
  text-shadow: 0 2px 2px #232323;
}
.showcase-text.text-white {
  color: #fff;
}
.btn-showcase {
  text-decoration: none;
  text-transform: uppercase;
  margin: 0em auto !important;
  max-width: 18em;
}
.btn-showcase.btn-outline-white {
  border: 1px solid #fff;
  color: #fff;
  background: rgba(35, 35, 35, 0.1);
}
.btn-showcase:hover {
  background: rgba(35, 35, 35, 0.3);
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
}
/* Small Devices, Tablets */
@media (min-width: 768px) {
  .showcase.display-table-row {
    display: table-cell;
  }
}
/*
LB0005C01
COL 1 - PARALLAX
*/
#LB0005C01-wrapper {
  padding-top: 12em !important;
  padding-bottom: 12em !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)) top center no-repeat, url(//liveblocks.liverez.com/images/tropical/1920/1080/slide7.jpg) top center no-repeat fixed;
  background-size: cover;
  display: block;
  position: relative;
}
.parallax-title {
  font-size: 5em;
  color: #fff;
  font-weight: lighter;
  text-shadow: 0 2px 2px #232323;
  margin: 0em !important;
}
.parallax-subtitle {
  font-size: 2em;
  color: #fff;
  margin-top: 0.75em !important;
  margin-bottom: 1em !important;
  text-shadow: 0 2px 2px #232323;
}
/*
LB0006C02
COL 2 - SHOWCASE TITLE OVERLAY
*/
#LB0006C02-wrapper .showcase.background-cover:nth-of-type(1) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img1.jpg);
}
#LB0006C02-wrapper .showcase.background-cover:nth-of-type(2) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img2.jpg);
}
#LB0006C02-wrapper .showcase {
  padding: 14em !important;
}
.showcase-text.text-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(35, 35, 35, 0.4);
  padding: 1em !important;
  margin: 0em !important;
  font-size: 1.9em;
}
/*
LB0007C02
COL 2 - SHOWCASE TITLE WITH BUTTON
*/
#LB0007C02-wrapper .showcase.background-cover:nth-of-type(1) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img3.jpg);
}
#LB0007C02-wrapper .showcase.background-cover:nth-of-type(2) {
  background: url(//liveblocks.liverez.com/images/tropical/800/450/img4.jpg);
}
#LB0007C02-wrapper .showcase-text {
  padding-top: 13em !important;
}
/*
LB0008C03
COL 3 - WITH SERVICE ICONS
*/
#LB0008C03-wrapper {
  background-color: #f2f2f2;
  color: #333;
  padding-top: 3em !important;
  padding-bottom: 3em !important;
}
#LB0008C03-wrapper h3 {
  color: #3498db;
  font-size: 2em;
}
#LB0008C03-wrapper h2 {
  color: #333;
  font-size: 3.5em;
}
.service-title-border {
  border-bottom: 3px solid #3498db;
}
.service-icon {
  position: relative;
  display: block;
  text-align: center;
  width: 3em;
  height: 3em;
  margin: 0em auto !important;
  border-radius: 50em;
  font-size: 5em;
  line-height: 2.8;
  border: 3px solid #3498db;
  color: #3498db;
}
/*
LB0009C03
COL 3 - WITH IMAGES
*/
#LB0009C03-wrapper {
  background: #333;
  color: #fff;
}
#LB0009C03-wrapper h2 {
  line-height: 2em;
  color: #fff;
  font-size: 2.5em;
}
#LB0009C03-wrapper h3 {
  font-size: 1.5em;
  text-transform: uppercase;
  color: #fff;
}
.opacity-hover figure img {
  background: #fff;
}
.opacity-hover figure img {
  opacity: 1;
  -moz-transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  background-size: cover;
}
.opacity-hover figure:hover img {
  opacity: .5;
}
/*
LB0010
COL 02 - WITH TEXT
*/
#LB0010C02-wrapper h2,
#LB0010C02-wrapper h3 {
  text-transform: uppercase;
}
#LB0010C02-wrapper h2 {
  font-size: 2.5em;
}
/*
LB0011
COL 02 - Property Amenities Icons
*/
#LB0011C02-wrapper li {
  font-size: 1.5em;
}
#LB0011C02-wrapper img {
  display: inline-block;
  max-width: 1.5em;
  margin-right: 0.75em !important;
  vertical-align: middle;
}
/*
LB0012
COL 03 - Property Amenity Cols
*/
#LB0012C03-wrapper {
  /*nothing yet*/
}
.block {
  padding-left: 3em;
  padding-right: 3em;
}
.block h3 {
  font-family: 'Open Sans', arial, verdana, sans-serif;
  font-display: 'swap';
  font-weight: 900;
  text-transform: none;
  letter-spacing: -1px;
}
.footer .block h3 {
  color: #fff;
}
.block i {
  font-size: 1em;
  color: #b45155;
}
.block p {
  font-family: 'Open Sans', arial, verdana, sans-serif;
  font-display: 'swap';
  color: #666;
  font-weight: 400;
}
.footer .block p {
  color: #566b80;
}
.carousel-caption h3 {
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: none;
}
.carousel-caption h3 a {
  color: #34495e;
}
.carousel-caption h3 a:hover {
  color: #2c3e50;
}
.carousel-caption p {
  margin-bottom: 0;
}
.carousel.home-gallery {
  background: #f2f2f2;
}
.carousel.home-reviews {
  padding-bottom: 6em;
  padding-top: 3em;
}
/*.row {
    margin-left: 0;
    margin-right: 0;
}*/
.heading-secondary {
  font-family: 'Open Sans', arial, verdana, sans-serif;
  font-display: 'swap';
}
.post {
  border-bottom: 5px solid #f2f2f2;
  margin-top: 2.5em;
}
.post:first-child {
  margin-top: 0;
}
.post-img {
  padding-bottom: 1em;
}
.post-single {
  margin-top: 3em;
}
.post-img img {
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  min-width: 100%;
  height: auto;
}
.post-title {
  padding-bottom: 1em;
  line-height: 1;
}
.post-title h2 {
  font-weight: 900;
  text-transform: none;
}
.post-meta {
  color: #999;
  text-transform: none;
  font-size: 0.875em;
  line-height: 1;
}
.post-meta a {
  color: #999;
}
.post-body {
  padding-bottom: 1em;
}
.jumbotron.alternate {
  border-bottom: 0;
  padding-bottom: 0;
}
.post-pagination {
  margin-top: 1em;
  padding-bottom: 4em;
}
.post-pagination i {
  font-size: 0.875em;
}
.comments-form {
  padding-bottom: 4em;
  margin-top: 1em;
}
.comments-form input[type=text],
.comments-form textarea {
  background: #f2f2f2;
  border: 0;
}
.comments {
  background: #f2f2f2;
  padding: 4em 0;
}
.comments .block {
  border-bottom: 1px solid #999;
}
.comment-meta {
  padding-bottom: 2em;
  margin-top: 4em;
}
.comment-meta.first,
.comment-body.first {
  margin-top: 0;
}
.comment-meta h3 {
  margin-bottom: 0;
}
.comment-body {
  margin-top: 4em;
}
.comments-pagination {
  text-align: center;
  margin-top: 4em;
}
.leading {
  padding-bottom: 2em;
}
.list-style-none {
  list-style: none !important;
}
.border-none {
  border: 0;
}
/* Margin Modules */
.mrg-0 {
  margin: 0em !important;
}
.mrg-1 {
  margin: 1em !important;
}
.mrg-2 {
  margin: 2em !important;
}
.mrg-3 {
  margin: 3em !important;
}
.mrg-4 {
  margin: 4em !important;
}
.mrg-75 {
  margin: 0.75em !important;
}
.mrg-50 {
  margin: 0.5em !important;
}
.mrg-25 {
  margin: 0.25em !important;
}
.mrg-neg-1 {
  margin: -1em !important;
}
.mrg-neg-2 {
  margin: -2em !important;
}
.mrg-neg-3 {
  margin: -3em !important;
}
.mrg-neg-4 {
  margin: -4em !important;
}
.mrg-neg-75 {
  margin: -0.75em !important;
}
.mrg-neg-50 {
  margin: -0.5em !important;
}
.mrg-neg-25 {
  margin: -0.25em !important;
}
.mrg-top-0 {
  margin-top: 0em !important;
}
.mrg-top-1 {
  margin-top: 1em !important;
}
.mrg-top-2 {
  margin-top: 2em !important;
}
.mrg-top-3 {
  margin-top: 3em !important;
}
.mrg-top-4 {
  margin-top: 4em !important;
}
.mrg-top-75 {
  margin-top: 0.75em !important;
}
.mrg-top-50 {
  margin-top: 0.5em !important;
}
.mrg-top-25 {
  margin-top: 0.25em !important;
}
.mrg-top-neg-1 {
  margin-top: -1em !important;
}
.mrg-top-neg-2 {
  margin-top: -2em !important;
}
.mrg-top-neg-3 {
  margin-top: -3em !important;
}
.mrg-top-neg-4 {
  margin-top: -4em !important;
}
.mrg-top-neg-75 {
  margin-top: -0.75em !important;
}
.mrg-top-neg-50 {
  margin-top: -0.5em !important;
}
.mrg-top-neg-25 {
  margin-top: -0.25em !important;
}
.mrg-bottom-0 {
  margin-bottom: 0em !important;
}
.mrg-bottom-1 {
  margin-bottom: 1em !important;
}
.mrg-bottom-2 {
  margin-bottom: 2em !important;
}
.mrg-bottom-3 {
  margin-bottom: 3em !important;
}
.mrg-bottom-4 {
  margin-bottom: 4em !important;
}
.mrg-bottom-75 {
  margin-bottom: 0.75em !important;
}
.mrg-bottom-50 {
  margin-bottom: 0.5em !important;
}
.mrg-bottom-25 {
  margin-bottom: 0.25em !important;
}
.mrg-bottom-neg-1 {
  margin-bottom: -1em !important;
}
.mrg-bottom-neg-2 {
  margin-bottom: -2em !important;
}
.mrg-bottom-neg-3 {
  margin-bottom: -3em !important;
}
.mrg-bottom-neg-4 {
  margin-bottom: -4em !important;
}
.mrg-bottom-neg-75 {
  margin-bottom: -0.75em !important;
}
.mrg-bottom-neg-50 {
  margin-bottom: -0.5em !important;
}
.mrg-bottom-neg-25 {
  margin-bottom: -0.25em !important;
}
.mrg-left-0 {
  margin-left: 0em !important;
}
.mrg-left-1 {
  margin-left: 1em !important;
}
.mrg-left-2 {
  margin-left: 2em !important;
}
.mrg-left-3 {
  margin-left: 3em !important;
}
.mrg-left-4 {
  margin-left: 4em !important;
}
.mrg-left-75 {
  margin-left: 0.75em !important;
}
.mrg-left-50 {
  margin-left: 0.5em !important;
}
.mrg-left-25 {
  margin-left: 0.25em !important;
}
.mrg-left-neg-1 {
  margin-left: -1em !important;
}
.mrg-left-neg-2 {
  margin-left: -2em !important;
}
.mrg-left-neg-3 {
  margin-left: -3em !important;
}
.mrg-left-neg-4 {
  margin-left: -4em !important;
}
.mrg-left-neg-75 {
  margin-left: -0.75em !important;
}
.mrg-left-neg-50 {
  margin-left: -0.5em !important;
}
.mrg-left-neg-25 {
  margin-left: -0.25em !important;
}
.mrg-right-0 {
  margin-right: 0em !important;
}
.mrg-right-1 {
  margin-right: 1em !important;
}
.mrg-right-2 {
  margin-right: 2em !important;
}
.mrg-right-3 {
  margin-right: 3em !important;
}
.mrg-right-4 {
  margin-right: 4em !important;
}
.mrg-right-75 {
  margin-right: 0.75em !important;
}
.mrg-right-50 {
  margin-right: 0.5em !important;
}
.mrg-right-25 {
  margin-right: 0.25em !important;
}
.mrg-right-neg-1 {
  margin-right: -1em !important;
}
.mrg-right-neg-2 {
  margin-right: -2em !important;
}
.mrg-right-neg-3 {
  margin-right: -3em !important;
}
.mrg-right-neg-4 {
  margin-right: -4em !important;
}
.mrg-right-neg-75 {
  margin-right: -0.75em !important;
}
.mrg-right-neg-50 {
  margin-right: -0.5em !important;
}
.mrg-right-neg-25 {
  margin-right: -0.25em !important;
}
/* Padding Modules */
.pad-0 {
  padding: 0em !important;
}
.pad-1 {
  padding: 1em !important;
}
.pad-2 {
  padding: 2em !important;
}
.pad-3 {
  padding: 3em !important;
}
.pad-4 {
  padding: 4em !important;
}
.pad-75 {
  padding: 0.75em !important;
}
.pad-50 {
  padding: 0.5em !important;
}
.pad-25 {
  padding: 0.25em !important;
}
.pad-top-0 {
  padding-top: 0em !important;
}
.pad-top-1 {
  padding-top: 1em !important;
}
.pad-top-2 {
  padding-top: 2em !important;
}
.pad-top-3 {
  padding-top: 3em !important;
}
.pad-top-4 {
  padding-top: 4em !important;
}
.pad-top-75 {
  padding-top: 0.75em !important;
}
.pad-top-50 {
  padding-top: 0.5em !important;
}
.pad-top-25 {
  padding-top: 0.25em !important;
}
.pad-bottom-0 {
  padding-bottom: 0em !important;
}
.pad-bottom-1 {
  padding-bottom: 1em !important;
}
.pad-bottom-2 {
  padding-bottom: 2em !important;
}
.pad-bottom-3 {
  padding-bottom: 3em !important;
}
.pad-bottom-4 {
  padding-bottom: 4em !important;
}
.pad-bottom-75 {
  padding-bottom: 0.75em !important;
}
.pad-bottom-50 {
  padding-bottom: 0.5em !important;
}
.pad-bottom-25 {
  padding-bottom: 0.25em !important;
}
.pad-left-0 {
  padding-left: 0em !important;
}
.pad-left-1 {
  padding-left: 1em !important;
}
.pad-left-2 {
  padding-left: 2em !important;
}
.pad-left-3 {
  padding-left: 3em !important;
}
.pad-left-4 {
  padding-left: 4em !important;
}
.pad-left-75 {
  padding-left: 0.75em !important;
}
.pad-left-50 {
  padding-left: 0.5em !important;
}
.pad-left-25 {
  padding-left: 0.25em !important;
}
.pad-right-0 {
  padding-right: 0em !important;
}
.pad-right-1 {
  padding-right: 1em !important;
}
.pad-right-2 {
  padding-right: 2em !important;
}
.pad-right-3 {
  padding-right: 3em !important;
}
.pad-right-4 {
  padding-right: 4em !important;
}
.pad-right-75 {
  padding-right: 0.75em !important;
}
.pad-right-50 {
  padding-right: 0.5em !important;
}
.pad-right-25 {
  padding-right: 0.25em !important;
}
/* Width Modules */
.width-100 {
  width: 100%;
}
.width-75 {
  width: 75%;
}
.width-50 {
  width: 50%;
}
.width-25 {
  width: 25%;
}
.width-66 {
  width: 66.666666%;
}
.width-33 {
  width: 33.333333%;
}
.width-16 {
  width: 16.666667%;
}
/***************************
////////////////////////////

04. STATES

////////////////////////////
***************************/
/* 
ALERTS
*/
.alert,
.alert-danger,
.alert-success,
.alert-info,
.alert-block {
  color: #fff;
  text-shadow: none;
  border: 0;
  padding: 1em;
  margin-bottom: 1em;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.alert {
  background-color: #f1c40f;
}
.alert-danger {
  background-color: #F37A81;
}
.alert-success {
  background-color: #0F9D58;
}
.alert-info {
  background-color: #777;
}
.alert p:last-child {
  margin-bottom: 0;
}
.alert a {
  color: #f39c12;
}
.alert-danger a {
  color: #c0392b;
}
.alert-success a {
  color: #27ae60;
}
.alert-info a {
  color: #16a085;
}
.alert a:hover {
  color: #fff;
}
/*
FORM VALIDATION
*/
.has-warning .help-block,
.has-warning .control-label {
  color: #f1c40f;
}
.has-warning .form-control {
  border-color: #f1c40f;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-error .help-block,
.has-error .control-label {
  color: #b45155;
}
.has-error .form-control {
  border-color: #b45155;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-success .help-block,
.has-success .control-label {
  color: #0F9D58;
}
.has-success .form-control {
  border-color: #0F9D58;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*******************************************************
05. RESPONSIVE

media queries for speical tweaks
*******************************************************/
@media (max-width: 767px) {
  .navbar {
    padding-bottom: 8px;
  }
  .carousel img {
    max-width: 70%;
    height: auto;
  }
  .portfolio-wrapper img {
    width: 70%;
    height: auto;
  }
  .jumbotron h1 {
    font-size: 2em;
  }
  .jumbotron h3,
  .home-review h3 {
    font-size: 1em;
  }
  .block {
    padding-left: 1em;
    padding-right: 1em;
  }
  .staff-wrapper,
  .portfolio-wrapper {
    padding: 0;
  }
  .staff-wrapper .block,
  .portfolio-wrapper .block,
  .staff-wrapper .block:first-child,
  .portfolio-wrapper .block:first-child {
    border: 0;
    padding-bottom: 2em;
    padding-top: 1em;
  }
  .contact-wrapper {
    padding: 2em 0;
  }
  .contact-form {
    margin-top: 0;
  }
  .contact-submit {
    margin-top: 2em;
  }
  .border-bottom {
    border-bottom: 1px solid #999;
    margin-bottom: 2em;
  }
  .post-img img {
    max-width: 100%;
    height: auto;
  }
  .comment-meta {
    padding-bottom: 0;
    margin-top: 2em;
  }
  .comment-body {
    margin-top: 0;
  }
  .btn-lg {
    font-size: 1em;
  }
  .footer .border-bottom {
    border-color: #2c3e50;
  }
  .sub-footer {
    text-align: center;
  }
  .sub-footer .pull-right {
    float: none!important;
  }
  .sub-footer p {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .carousel img {
    max-width: 70%;
    height: auto;
  }
  .portfolio-wrapper img {
    width: 70%;
    height: auto;
  }
  .block {
    padding-left: 6em;
    padding-right: 6em;
  }
  .portfolio-wrapper .block,
  .portfolio-wrapper .block:first-child {
    border: 0;
    padding-bottom: 2em;
    padding-top: 1em;
  }
  .portfolio-wrapper {
    padding: 0;
  }
  .comment-meta {
    padding-bottom: 0;
    margin-top: 2em;
  }
  .comment-body {
    margin-top: 0;
  }
  .border-bottom {
    border-bottom: 1px solid #999;
    margin-bottom: 2em;
  }
  .footer .border-bottom {
    border-color: #2c3e50;
  }
}
@media only screen and (max-width: 991px) {
  #property-listings .property-listing {
    padding: 5px!important;
  }
  #property-listings .property-listing a {
    margin: 0;
  }
  #property-listings .property-listing .media-body {
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .block {
    padding-left: 3em;
    padding-right: 3em;
  }
  .border-bottom {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .portfolio-wrapper img {
    width: 400px;
    height: 250px;
  }
  .portfolio-wrapper {
    background: #f2f2f2;
    padding: 4em;
  }
  .portfolio-wrapper .block {
    border-bottom: solid 1px #999;
    padding-bottom: 4em;
    padding-top: 3em;
  }
  .portfolio-wrapper .block:first-child {
    border-right: solid 1px #999;
    border-bottom: solid 1px #999;
    padding-top: 3em;
    padding-bottom: 4em;
  }
  .portfolio-wrapper .last .block:first-child {
    border-bottom: 0;
  }
  #property-listings .property-listing img {
    max-width: 180px;
  }
}
/***************************
////////////////////////////

06. CUSTOM

////////////////////////////
***************************/
/***************************
////////////////////////////

GENERAL STYLING

////////////////////////////
***************************/
/*
HEADER
*/
/*
SLIDESHOW
*/
/*
SEARCH BOX
*/
/*
FEATURED
*/
/*
CONTENT
*/
/*
SIDEBAR
*/
/*
FOOTER
*/
/*
LAYOUT
*/
/***************************
////////////////////////////

PageType = "Index"

////////////////////////////
***************************/
body.Index .index-content .col-xs-12.col-sm-4.col-md-3 {
  display: none;
}
body.Index .index-content .index-content {
  width: 100%;
}
/***************************
////////////////////////////

PageType = "Property"

////////////////////////////
***************************/
body.Property {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "HomeSearch"

////////////////////////////
***************************/
body.HomeSearch div#content2Right {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
}
/***************************
////////////////////////////

PageType = "HomeCategories"

////////////////////////////
***************************/
body.HomeCategories {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Communities"

////////////////////////////
***************************/
body.Communities {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Community"

////////////////////////////
***************************/
body.Community {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Contact"

////////////////////////////
***************************/
body.Contact {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "PropertyManagement"

////////////////////////////
***************************/
body.PropertyManagement {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "AreaGuide"

////////////////////////////
***************************/
body.AreaGuide .lag-activities-list-wrapper a.btn.btn-primary {
  font-size: 0px;
}
body.AreaGuide .lag-activities-list-wrapper a.btn.btn-primary:before {
  content: 'View More';
  font-size: 14px;
  margin: 0em;
  line-height: 2em;
}
/***************************
////////////////////////////

PageType = "Specials"

////////////////////////////
***************************/
body.Specials {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "DrivingDirection"

////////////////////////////
***************************/
body.DrivingDirection {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "FAQ"

////////////////////////////
***************************/
body.FAQ {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Concierge"

////////////////////////////
***************************/
body.Concierge {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Weather"

////////////////////////////
***************************/
body.Weather {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Map"

////////////////////////////
***************************/
body.Map {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "CompareHome"

////////////////////////////
***************************/
body.CompareHome {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Links"

////////////////////////////
***************************/
body.Links {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Linktous"

////////////////////////////
***************************/
body.Linktous {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Privacy"

////////////////////////////
***************************/
body.Privacy {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Sitemap"

////////////////////////////
***************************/
body.Sitemap {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Terms"

////////////////////////////
***************************/
body.Terms {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Testimonials"

////////////////////////////
***************************/
body.Testimonials {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "Vacation Rental Home Calendars Search"

////////////////////////////
***************************/
body.Vacation.Rental.Home.Calendars.Search {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "HomeContact"

////////////////////////////
***************************/
body.HomeContact {
  /* STYLING HERE */
}
/***************************
////////////////////////////

PageType = "HomeSTF"

////////////////////////////
***************************/
body.HomeSTF {
  /* STYLING HERE */
}
/***************************
////////////////////////////

Media Queries

////////////////////////////
***************************/
/*Media Query template*/
/* Small Devices, Desktops */
/*@media(min-width : 768px) {
}*/
/* Medium Devices, Desktops */
/*@media(min-width : 992px) {
}*/
/* Large Devices, Desktops */
/*@media(min-width : 1200px) {
}*/
/*Custom page-text code*/
/*<%=GetText(00000)%>*/
