/**
 * this is where _all_ variables used for styling go
 */
.announcer-block {
  margin-bottom: 10px;
  background: #fff;
  padding: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.announcer-block:hover {
  -webkit-box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.5);
     -moz-box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.5);
          box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.5);
  border: 1px solid #237E96;
}
.announcer-block .checkbox {
  margin-top: 2px;
}
.announcer-block h4 {
  margin: 0;
}
.announcer-block .title {
  margin: 5px;
}
.announcer-block .fa-inbox {
  color: #237E96;
}
.announcer-block .fa-remove {
  color: #b92c28;
}
.announcer-block .fa-check-circle-o {
  color: #00A707;
}
.announcer-list-group {
  max-height: 663px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.announcer-list-group .title {
  padding: 3px 15px;
}
.announcer-list-group .action-buttons-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  margin: 18px 4px 0;
  font-size: 13px;
  width: 50%;
}
.announcer-list-group .action-buttons-wrapper .status {
  background-color: #fff;
  padding: 5px;
  float: right;
  font-size: 16px;
  text-align: center;
  border: 0.5px solid #cac8c8;
}
.announcer-list-group .action-buttons-wrapper .action-button {
  float: right;
}
.announcer-list-group .invited {
  color: #237E96;
}
.announcer-list-group .accepted {
  color: #0d8812;
}
.announcer-list-group .rejected {
  color: #b92c28;
}
.announcer-list-group .list-group-item {
  position: relative;
}
.with-padding-20 {
  padding: 20px;
}
.big-title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 24px;
}
.custom-panel .panel-primary .panel-heading {
  background-color: #237e96;
  border-color: #237e96;
}
.color-accepted {
  color: #0d8812 !important;
}
.color-rejected {
  color: #b92c28;
}
.campaign-detail-items .col-md-6 {
  padding: 10px 15px;
}

/**
 * this is where _all_ variables used for styling go
 */
/**
 * TODO: Moe
 * all styling applied here were used for prototyping during the first week
 * make sure all styling applied here are broken down and modularized
 */
body {
  position: relative;
  color: #484848;
  font-family: 'Lato', -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  background: #fff;
  overflow-x: hidden;
  min-height: 120vh;
}
/* Box-sizing border-box */
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.animate-in-fadeIn.ng-enter,
.animate-in-fadeIn.ng-hide-remove.ng-hide-remove-active {
  -webkit-animation: fadeIn 250ms;
     -moz-animation: fadeIn 250ms;
       -o-animation: fadeIn 250ms;
          animation: fadeIn 250ms;
}
.animate-in-fadeInRight.ng-enter,
.animate-in-fadeInRight.ng-hide-remove.ng-hide-remove-active {
  -webkit-animation: fadeInRight 250ms;
     -moz-animation: fadeInRight 250ms;
       -o-animation: fadeInRight 250ms;
          animation: fadeInRight 250ms;
}
.animate-out-fadeOutRight.ng-leave,
.animate-out-fadeOutRight.ng-hide-add.ng-hide-add-active {
  -webkit-animation: fadeOutRight 250ms;
     -moz-animation: fadeOutRight 250ms;
       -o-animation: fadeOutRight 250ms;
          animation: fadeOutRight 250ms;
}
.animate-in-fadeInLeft.ng-enter,
.animate-in-fadeInLeft.ng-hide-remove.ng-hide-remove-active {
  -webkit-animation: fadeInLeft 250ms;
     -moz-animation: fadeInLeft 250ms;
       -o-animation: fadeInLeft 250ms;
          animation: fadeInLeft 250ms;
}
.animate-out-fadeOutLeft.ng-leave,
.animate-out-fadeOutLeft.ng-hide-add.ng-hide-add-active {
  -webkit-animation: fadeOutLeft 250ms;
     -moz-animation: fadeOutLeft 250ms;
       -o-animation: fadeOutLeft 250ms;
          animation: fadeOutLeft 250ms;
}
select option[selected="selected"] {
  background-color: #d4d4d4;
}
.search-input-container {
  position: relative;
}
.search-input-container .input-group .form-control,
.search-input-container .input-group .input-group-addon {
  border: 0 solid transparent;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.search-input-container .input-group .input-group-addon {
  background-color: #D9E021;
  color: #237E96;
  cursor: pointer;
}
.search-input-container .search-list {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  z-index: 100;
  margin-bottom: 0;
  -webkit-border-radius: 0.4em;
     -moz-border-radius: 0.4em;
          border-radius: 0.4em;
}
.search-input-container .search-list li {
  cursor: pointer;
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  -moz-transition: all .25s ease;
  transition: all .25s ease;
  background-color: #237E96;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.search-input-container .search-list li:first-child {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.search-input-container .search-list li:hover {
  color: #3f3f3f;
  background-color: #D9E021;
}
@media (min-width: 768px) {
  .search-input-container .search-list {
    -webkit-box-shadow: 0 4px 12px rgba(51, 51, 51, 0.25);
       -moz-box-shadow: 0 4px 12px rgba(51, 51, 51, 0.25);
            box-shadow: 0 4px 12px rgba(51, 51, 51, 0.25);
  }
}
@media (max-width: 768px) {
  .search-input-container .search-list {
    position: relative;
    margin-left: 0.8em;
    margin-right: 0.8em;
  }
  .search-input-container .input-group {
    padding: 0 0.8em;
  }
}
@media (min-width: 768px) {
  .search-input-container .input-group {
    min-width: 25em;
  }
}
.image-upload-container .image-container {
  display: inline-block;
  height: auto;
  text-align: center;
  padding: .25em;
}
.image-upload-container .image-container img.img-responsive {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-upload-container .image-container button {
  margin-top: 1em;
}
.query-input-navbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  border: 0.7em solid #237E96;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  background-color: #fff;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
  z-index: 999;
  margin: 0 auto;
}
.query-input-navbar.affix {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 999;
  max-width: 100%;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.query-input-navbar.affix > div.villa-icon {
  background-color: #237E96;
}
@media (max-width: 768px) {
  .query-input-navbar.affix {
    position: relative;
  }
}
.query-input-navbar > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.query-input-navbar > div.villa-icon {
  display: inline-block;
  text-align: center;
  background-color: #237E96;
  height: 34px;
  padding: .2em .5em 0;
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  -moz-transition: all .25s ease;
  transition: all .25s ease;
}
.query-input-navbar > div.villa-icon img {
  max-height: 28px;
  display: inline-block;
}
@media (min-width: 991px) {
  .query-input-navbar > div.villa-icon {
    min-width: 150px;
  }
}
@media (max-width: 768px) {
  .query-input-navbar > div.villa-icon {
    display: none;
  }
}
.query-input-navbar > div.search-input-container {
  border-right: 1px solid rgba(51, 51, 51, 0.25);
}
@media (max-width: 768px) {
  .query-input-navbar > div.search-input-container {
    border-right: 0 solid transparent;
    border-bottom: 1px solid rgba(51, 51, 51, 0.25);
  }
}
.query-input-navbar > div.date-time-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 768px) {
  .query-input-navbar > div.date-time-container {
    border-bottom: 1px solid rgba(51, 51, 51, 0.25);
  }
}
.query-input-navbar > div.date-time-container input.form-control {
  border: 0 solid transparent;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  width: 50%;
  border-right: 1px solid rgba(51, 51, 51, 0.25);
}
@media (max-width: 768px) {
  .query-input-navbar > div.date-time-container input.form-control:last-child {
    border-right: 0 solid rgba(51, 51, 51, 0.25);
  }
}
.query-input-navbar > div.select-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.query-input-navbar > div.select-container select.form-control {
  border: 0 solid transparent;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  width: 100%;
}
.query-input-navbar > div.select-container .vertical-divider {
  width: 0;
  margin-left: -1px;
  border-right: 1px solid rgba(51, 51, 51, 0.25);
}
.query-input-navbar > div.search-button-container .btn-search {
  background-color: #237E96;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  border: 1px solid #237E96;
  color: #D9E021;
}
@media (max-width: 768px) {
  .query-input-navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .query-input-navbar > div {
    width: 100%;
  }
  .query-input-navbar > div.search-input-container .search-list {
    margin-left: 0;
    margin-right: 0;
  }
  .query-input-navbar > div.search-input-container .input-group {
    padding: 0;
  }
}
.rate-muted {
  color: #CAC7C7;
}
.rate-icons {
  margin: 0;
  font-size: 2em;
  color: goldenrod;
}
.rate-icons > i {
  padding: .2em;
}
.color-box {
  width: 20px;
  height: 20px;
  float: left;
}
.color-box-label {
  float: left;
  margin-left: 4px;
  margin-right: 16px;
}
.form-box {
  border: 1px solid rgba(51, 51, 51, 0.25);
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  -webkit-box-shadow: 0 8px 16px rgba(51, 51, 51, 0.25);
     -moz-box-shadow: 0 8px 16px rgba(51, 51, 51, 0.25);
          box-shadow: 0 8px 16px rgba(51, 51, 51, 0.25);
  margin-top: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .form-box {
    border: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
  }
}
.form-title {
  font-size: 1.8em;
  margin: 0;
  margin-top: 1em;
}
@media (max-width: 768px) {
  .form-title {
    font-size: 1.4em;
  }
}
@media (max-width: 768px) {
  .btn-previous {
    margin-bottom: 1em;
  }
}
.checkbox-label {
  font-weight: normal;
}
.checkbox-label checkbox.has-label {
  float: left;
}
.checkbox-label checkbox.has-label label.desktop {
  margin-top: -0.1em;
}
.checkbox-label checkbox.has-label label.toggle:not(.toggle-small) {
  margin-top: -0.75em;
}
.checkbox-label checkbox.has-label label.toggle.toggle-small {
  margin-top: -0.1em;
}
.sub-title {
  margin-top: 0;
  color: #317dd3;
  margin-bottom: 1em;
}
.checkbox-inline.no_indent,
.checkbox-inline.no_indent + .checkbox-inline.no_indent {
  margin-left: 0;
  margin-right: 10px;
}
.checkbox-inline.no_indent:last-child {
  margin-right: 0;
}
.media-preview {
  width: 50%;
  height: 50%;
  max-height: 70px;
  max-width: 70px;
  display: inline-block;
  margin: 5px;
}
.pointer,
.table-hover-pointer tbody > tr:hover {
  cursor: pointer;
}
form.ng-submitted input.ng-invalid,
.validating input.ng-invalid,
form.ng-submitted textarea.ng-invalid,
.validating textarea.ng-invalid,
form.ng-submitted select.ng-invalid,
.validating select.ng-invalid,
form.ng-submitted div.ng-invalid,
.validating div.ng-invalid {
  border: 1px solid red;
}
form.ng-submitted .error-message,
.validating .error-message {
  color: red;
}
.error-message {
  color: red;
}
.nolist {
  list-style: none;
}
#location-map {
  width: 100%;
  height: 50vh;
}
.with-padding-20 {
  padding: 20px;
}
.with-padding-bottom-3em {
  padding-bottom: 3em;
}
.slick-slider .slick-image img {
  width: 100%;
  height: 300px;
}
@media (max-width: 768px) {
  .slick-slider .slick-image img {
    width: 100%;
    height: 150px;
  }
}
.slick-slider .slick-prev {
  left: 5px !important;
  z-index: 1;
}
.slick-slider .slick-next {
  right: 5px !important;
  z-index: 1;
}
.margin-top-10 {
  margin-top: 10px;
}
.color-primary {
  color: #237E96 !important;
}
.bg-color-primary {
  background-color: #237E96 !important;
}
.float-item {
  position: absolute;
  z-index: 1000;
}
.timeline-item {
  background: #fff;
  border: 1px solid;
  border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding: 12px;
  margin: 0 auto;
  max-width: 472px;
  min-height: 200px;
}
.background-masker {
  background: #fff;
  position: absolute;
}
/* Every thing below this is just positioning */
.background-masker.header-top {
  top: 0;
  height: 10px;
}
.background-masker.horizontal-divider {
  top: 0;
  bottom: 0;
  width: 0;
  padding-left: 0;
}
.background-masker.title-cover {
  top: 10px;
  height: 25px;
  right: 0;
  left: 200px;
}
.background-masker.empty-layer-below-title {
  top: 35px;
  right: 0;
  height: 10px;
}
.background-masker.location-cover {
  top: 45px;
  height: 15px;
}
.background-masker.empty-layer-below-location {
  top: 60px;
  height: 10px;
}
.background-masker.administrative-cover {
  top: 70px;
  height: 10px;
  right: 0;
  left: 150px;
}
.background-masker.empty-layer-bottom {
  top: 80px;
  bottom: 0;
}
.animation-bg {
  -webkit-animation-direction: alternate !important;
     -moz-animation-direction: alternate !important;
       -o-animation-direction: alternate !important;
          animation-direction: alternate !important;
  -webkit-animation-duration: 1s !important;
     -moz-animation-duration: 1s !important;
       -o-animation-duration: 1s !important;
          animation-duration: 1s !important;
  -webkit-animation-fill-mode: forwards !important;
     -moz-animation-fill-mode: forwards !important;
       -o-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  -webkit-animation-iteration-count: infinite !important;
  -moz-animation-iteration-count: infinite !important;
    -o-animation-iteration-count: infinite !important;
       animation-iteration-count: infinite !important;
  -webkit-animation-name: keyframe_1vunhnd !important;
  -moz-animation-name: keyframe_1vunhnd !important;
    -o-animation-name: keyframe_1vunhnd !important;
       animation-name: keyframe_1vunhnd !important;
  -webkit-animation-timing-function: ease-in-out !important;
  -moz-animation-timing-function: ease-in-out !important;
    -o-animation-timing-function: ease-in-out !important;
       animation-timing-function: ease-in-out !important;
  background-color: currentColor !important;
  display: inline-block !important;
  position: relative !important;
}
@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@-moz-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@-o-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.animation-container {
  height: 200px;
}
.animated-background {
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
       -o-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
     -moz-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
     -moz-animation-name: placeHolderShimmer;
       -o-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;
  background: #f6f7f8;
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
  background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background: -moz-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background: -o-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  -moz-background-size: 800px 104px;
       background-size: 800px 104px;
  height: 183px;
  position: relative;
}
.color-light-blue {
  background: #e6f1f5;
}
.color-light-red {
  background: #fff1f1;
}
.color-white {
  color: white !important;
}
.color-light-green {
  color: #5cb85c !important;
}
.bg-local-info-fg-white {
  background: #D1495B;
  color: white;
}
.bg-local-info-fg-white {
  color: #fff;
  background-color: #D1495B;
  border-color: #d43f3a;
}
.bg-local-info-fg-white:focus,
.bg-local-info-fg-white.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.bg-local-info-fg-white:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.bg-listing-fg-white {
  background: #237E96;
  color: white;
}
.form-group label {
  color: #586069;
}
.input-lg {
  font-size: 17px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.btn-md-l {
  padding: 8px 10px;
  font-size: 16px;
}
.input-lg-l {
  font-size: 18px !important;
  height: 50px !important;
}
.alert-danger {
  color: #484848;
  background-color: #ffd1c4;
}
select.input-lg,
select.input-lg-l {
  line-height: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #237E96 !important;
  color: white !important;
}
.date-time-range-color {
  background-color: #2e95b18c !important;
  color: white !important;
}
.date-time-range-color:hover {
  background-color: #53adc5f7 !important;
  color: white !important;
}
.file-upload-container {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  background: #c8dadf;
  margin-bottom: 10px;
  text-align: center;
}
.file-upload-container .file-upload-text {
  padding: 15px 20px;
  width: 100%;
  font-size: 130%;
  cursor: pointer;
}
.file-upload-container .disabled {
  cursor: not-allowed;
}
.file-upload-container input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.color-gray {
  color: #828181;
}
.color-red {
  color: #ff0000;
}
.color-red-secondary {
  color: #ff6161;
}
.color-error {
  color: #ffd1c4;
}
.color-light-black {
  color: #484848;
}
.color-text {
  color: #797979;
}
.color-light-gray {
  color: #dbdbdb;
}
.bg-error {
  color: #484848;
  background-color: #ffd1c4;
}
.color-border {
  color: #BCCBD2;
}
.border-top-default {
  border-top: 1px solid #BCCBD2;
}
.border-bottom-default {
  border-bottom: 1px solid #BCCBD2;
}
.border-top-bottom-default {
  border-bottom: 1px solid #BCCBD2;
}
.border-less {
  border: none !important;
}
.no-border-radius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.full-height {
  height: 100%;
}
.vertical-divider {
  border-right: 1px solid #BCCBD2;
  height: 100%;
}
.vertical-scroll-container {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.fixed-form-navigator-container {
  position: fixed;
  background-color: white !important;
  bottom: 0;
  padding-bottom: 15px;
  width: 100%;
}
.fixed-form-navigator-container .fixed-form-navigator {
  width: 31vw;
}
@media (max-width: 991px) {
  .fixed-form-navigator-container .fixed-form-navigator {
    width: 73.5vw;
  }
}
@media (max-width: 768px) {
  .fixed-form-navigator-container .fixed-form-navigator {
    width: 93vw;
  }
}
.homepage-image img {
  height: 400px;
  margin-top: 30px;
}
@media (max-width: 1170px) {
  .homepage-image img {
    height: 300px;
  }
}
@media (max-width: 991px) {
  .homepage-image img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .homepage-image img {
    height: 200px;
  }
}
.loading-animation img {
  height: 50px;
  margin-top: 5em;
}
.inline-block {
  display: inline-block;
}
.vertical-align-top {
  vertical-align: top;
}
.vertical-align-middle {
  vertical-align: middle;
}
.vertical-align-bottom {
  vertical-align: bottom;
}
.display-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.display-flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.currency-label {
  font-size: 90%;
}
.anchor-top {
  position: relative;
  top: -53px;
  display: block;
  width: 0;
  height: 0;
}
/* MODAL STYLES
-------------------------------*/
.filter-modal-container {
  /* modals are hidden by default */
  display: none;
  position: relative;
}
.filter-modal-container .filter-modal {
  /* modal container fixed across whole screen */
  position: absolute;
  width: 350px;
  height: 250px;
  /* z-index must be higher than .modal-background */
  z-index: 1000;
  /* enables scrolling for tall modals */
  overflow: auto;
}
.filter-modal-container .filter-modal .filter-modal-body {
  padding: 20px;
  background: #fff;
  margin-top: 5px;
  -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
          border-radius: 0px;
}
.filter-modal-container .filter-modal-background {
  /* modal background fixed across whole screen */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* semi-transparent black  */
  background-color: #000;
  opacity: 0.45;
  /* z-index must be below .modal and above everything else  */
  z-index: 900;
}
body.filter-modal-open {
  /* body overflow is hidden to hide main scrollbar when modal window is open */
}
.payment-icons img {
  width: auto;
  height: 25px;
}
#full-screen-map {
  height: 600px;
}
@media (max-width: 1170px) {
  #full-screen-map {
    height: 450px;
  }
}
@media (max-width: 768px) {
  #full-screen-map {
    height: 300px;
  }
}
.full-screen-map-button {
  position: absolute;
  z-index: 1000;
  right: 20px;
  top: 5px;
}
/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkbox-checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: #237E96;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after {
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
       transform: rotate(45deg);
}
.register-container {
  text-align: center;
  color: #237E96;
  background-color: white;
}
.register-container .panel-body {
  padding: 100px 50px;
}
.register-container .panel-body .text-title {
  font-size: 250%;
}
.register-container .panel:hover {
  background-color: #237E96;
  color: #fff;
  cursor: pointer;
}
.villa-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  background-color: #237E96;
  color: #ffffff;
  font-size: 80%;
  z-index: 1005;
}
.fixed {
  position: fixed;
}
.dot {
  height: 15px;
  width: 15px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  display: inline-block;
}
.dot-red {
  background-color: red;
}
.dot-green {
  background-color: #30e230;
}
.dot-grey {
  background-color: grey;
}
.booking-legend {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.booking-legend span {
  margin-left: 10px;
  margin-right: 10px;
}
.buy-bcredits-box tr td {
  padding: 2px;
}

.usr-lbl {
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  height: 50px;
  width: 50px;
  text-align: center;
  font-size: 18px;
  padding-top: 11px;
  color: #000;
}

.booking-detail .thread {
  margin-bottom: 10px;
}
.booking-detail .thread-user,
.booking-detail .thread-body {
  background: #eee;
  padding: 10px;
}
.booking-detail .label-default {
  background-color: #c8c8c8;
}
.booking-detail .label-done {
  background-color: #4dc030;
}

/**
 * this is where _all_ variables used for styling go
 */
.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: .35;
}
.btn:focus,
.btn:active {
  outline: none;
}
.label-primary {
  color: #fff;
  background-color: #237E96;
}
.btn-primary {
  color: #fff;
  background-color: #195b6d;
  border-color: #0e4d69;
}
.btn-primary.active {
  background-color: #1b4365;
  border-color: #063761;
}
.btn-primary:hover {
  color: #fff;
  background-color: #237E96;
  border-color: #146e96;
}
.btn-primary-outline {
  color: #195b6d;
  background-color: transparent;
  background-image: none;
  border-color: #0e4d69;
}
.btn-primary-outline.active,
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  color: #fff;
  background-color: #195b6d;
  border-color: #0e4d69;
}
.btn-secondary {
  color: #373a3c;
  background-color: #fff;
  border-color: #ccc;
}
.btn-secondary:hover {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-secondary-outline {
  color: #ccc;
  background-color: transparent;
  background-image: none;
  border-color: #ccc;
}
.btn-secondary-outline.active,
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}
.btn-success-outline {
  color: #5cb85c;
  background-color: transparent;
  background-image: none;
  border-color: #5cb85c;
}
.btn-success-outline.active,
.btn-success-outline:hover,
.btn-success-outline:focus {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}
.btn-info-outline {
  color: #5bc0de;
  background-color: transparent;
  background-image: none;
  border-color: #5bc0de;
}
.btn-info-outline.active,
.btn-info-outline:hover,
.btn-info-outline:focus {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
}
.btn-warning-outline {
  color: #f0ad4e;
  background-color: transparent;
  background-image: none;
  border-color: #f0ad4e;
}
.btn-warning-outline.active,
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
}
.btn-danger-outline {
  color: #d9534f;
  background-color: transparent;
  background-image: none;
  border-color: #d9534f;
}
.btn-danger-outline.active,
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-control {
  display: block;
  width: 100%;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ece7e7;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.form-control:focus {
  border-color: #237E96;
  outline: 0;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.btn-rounded {
  -webkit-border-radius: 20px !important;
     -moz-border-radius: 20px !important;
          border-radius: 20px !important;
}

/**
 * this is where _all_ variables used for styling go
 */
.credit {
  display: inline-block;
  width: 100px;
  padding-bottom: 10px;
  padding-right: 5px;
  text-align: right;
}
.credit-label {
  display: inline-block;
  width: 110px;
  padding-top: 5px;
  padding-right: 5px;
  text-align: right;
}
.custom-file-upload > input[type="file"] {
  display: none;
}
.custom-file-upload {
  border: 1px solid #5bc0de;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #5bc0de;
  color: #fff;
}
.custom-file-replace > input[type="file"] {
  display: none;
}
.custom-file-replace {
  border: 1px solid #5bc0de;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #5bc0de;
  color: #fff;
}
.btn-div {
  margin-left: 30px;
}
.remove-btn {
  position: absolute;
  margin-left: -70px;
  margin-top: -20px;
}
​ .commission {
  padding-right: 5px;
  text-align: right;
}
.credit-input {
  height: 33px;
  width: 200px;
  padding: 10px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border: 1px solid #ccc;
}
.tab-margin {
  margin-top: 40px;
}
.add-block {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 8px;
}

/**
 * this is where _all_ variables used for styling go
 */
.btn {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-primary {
  border: 1px solid #146e96;
  background: #237E96;
  color: #fff;
}
.btn-primary:hover {
  background: #195b6d;
}
.modal-content {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.establishment-lists {
  position: relative;
}
.establishment-block {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
}
.local-info .teaser-content {
  height: 205px;
}
.local-info .teaser-image {
  overflow: hidden;
  height: 205px;
}
.local-info .teaser-image .wish-btn:hover,
.local-info .teaser-image .share-btn:hover {
  color: #D1495B;
}
.local-info .teaser-image .bullhorn-bg {
  position: absolute;
  left: -12px;
  top: -34px;
  width: 44px;
  height: 86px;
  background: #D1495B;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 99;
}
.local-info .teaser-image .bullhorn {
  position: absolute;
  left: 1px;
  top: 1px;
  font-size: 19px;
  padding: 0 4px;
  color: #FFF;
  border: none;
  z-index: 100;
}
.local-info .teaser-image .bullhorn .fa {
  margin: 2px;
}
.establishment .teaser-content {
  height: 183px;
}
.establishment .teaser-image {
  height: 183px;
}
.establishment .teaser-image .wish-btn:hover,
.establishment .teaser-image .share-btn:hover {
  color: #237E96;
}
.establishment,
.local-info {
  margin-bottom: 10px;
  background: #fff;
  padding: 0;
  border: 1px solid #ccc;
  cursor: pointer;
}
.establishment:hover,
.local-info:hover {
  -webkit-box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.5);
     -moz-box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.5);
          box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.5);
  border: 1px solid #237E96;
}
.establishment .teaser-image,
.local-info .teaser-image {
  position: relative;
  padding: 0;
}
.establishment .teaser-image__item,
.local-info .teaser-image__item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.establishment .teaser-image_one,
.local-info .teaser-image_one {
  opacity: 1;
}
.establishment .teaser-image_two,
.local-info .teaser-image_two {
  opacity: 0;
}
.establishment .teaser-image:hover .teaser-image_one,
.local-info .teaser-image:hover .teaser-image_one {
  opacity: 0;
}
.establishment .teaser-image:hover .teaser-image_two,
.local-info .teaser-image:hover .teaser-image_two {
  opacity: 1;
}
.establishment .teaser-image img,
.local-info .teaser-image img {
  width: 100%;
  height: 100%;
  position: absolute;
}
.establishment .teaser-image img:hover,
.local-info .teaser-image img:hover {
  opacity: 0;
}
.establishment .teaser-image .wish-btn,
.local-info .teaser-image .wish-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 25px;
  padding: 0 4px;
  color: #FFF;
  border: none;
}
.establishment .teaser-image .wish-btn .fa,
.local-info .teaser-image .wish-btn .fa {
  margin: 2px;
}
.establishment .teaser-image .wish-btn:hover,
.local-info .teaser-image .wish-btn:hover {
  background: #ffffff75;
}
.establishment .teaser-image .share-btn,
.local-info .teaser-image .share-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 25px;
  padding: 0 4px;
  color: #FFF;
  border: none;
}
.establishment .teaser-image .share-btn .fa,
.local-info .teaser-image .share-btn .fa {
  margin: 2px;
}
.establishment .teaser-image .share-btn:hover,
.local-info .teaser-image .share-btn:hover {
  background: #ffffff75;
}
.establishment .teaser-image .score,
.local-info .teaser-image .score {
  position: absolute;
  padding: 10px;
  top: 10px;
  left: 10px;
  text-align: center;
  font-size: 16px;
  color: #FFF;
  background: #D9E021;
  border: none;
}
.establishment .teaser-image .score:hover,
.local-info .teaser-image .score:hover {
  background: #afb519;
}
.establishment .teaser-image .score .bold,
.local-info .teaser-image .score .bold {
  font-weight: bold;
}
.establishment .teaser-image .score .small,
.local-info .teaser-image .score .small {
  font-size: 10px;
}
.establishment .teaser-content,
.local-info .teaser-content {
  overflow: hidden;
  position: relative;
}
.establishment .teaser-content .sale,
.local-info .teaser-content .sale {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  padding: 0.25em 1em;
  font-size: 0.8em;
  background-image: url(../static/image/diagonal.png);
  -moz-background-size: 100% 100%;
       background-size: 100% 100%;
  width: 80px;
  height: 80px;
}
.establishment .teaser-content .sale .sale-text-container,
.local-info .teaser-content .sale .sale-text-container {
  width: 60px;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  text-align: center;
  top: 20px;
  right: 0;
  position: absolute;
}
.establishment .teaser-content .title .price,
.local-info .teaser-content .title .price {
  padding: 5px 10px;
  margin-top: 5px;
  color: #237E96;
  text-align: right;
}
.establishment .teaser-content .detail,
.local-info .teaser-content .detail {
  height: 80px;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  .establishment .teaser-content .detail,
  .local-info .teaser-content .detail {
    height: 130px;
  }
}
.establishment .teaser-content .tab-header,
.local-info .teaser-content .tab-header {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  border-top: 1px solid #ccc;
  overflow-x: auto;
  background: #eee;
  -webkit-overflow-scrolling: touch;
}
.establishment .teaser-content .tab-header .tab-btn,
.local-info .teaser-content .tab-header .tab-btn,
.establishment .teaser-content .tab-header .tab-btn-no-announcement,
.local-info .teaser-content .tab-header .tab-btn-no-announcement {
  float: left;
  text-align: center;
  padding: 10px 5px;
  background: #eee;
  cursor: pointer;
}
.establishment .teaser-content .tab-header .tab-btn.active-tab,
.local-info .teaser-content .tab-header .tab-btn.active-tab,
.establishment .teaser-content .tab-header .tab-btn-no-announcement.active-tab,
.local-info .teaser-content .tab-header .tab-btn-no-announcement.active-tab {
  background: #ccc;
}
.establishment .teaser-content .tab-header .tab-btn.border-left,
.local-info .teaser-content .tab-header .tab-btn.border-left,
.establishment .teaser-content .tab-header .tab-btn-no-announcement.border-left,
.local-info .teaser-content .tab-header .tab-btn-no-announcement.border-left {
  border-left: 1px solid #ccc;
}
.establishment .teaser-content .tab-header .tab-btn,
.local-info .teaser-content .tab-header .tab-btn {
  width: 33.3333%;
}
.establishment .teaser-content .tab-header .tab-btn-no-announcement,
.local-info .teaser-content .tab-header .tab-btn-no-announcement {
  width: 50%;
}
.establishment .teaser-content .last-update,
.local-info .teaser-content .last-update {
  position: absolute;
  bottom: 20px;
  right: 5px;
}
.establishment .teaser-content .last-update .local-info-link,
.local-info .teaser-content .last-update .local-info-link {
  margin-top: 6px;
  font-size: 113%;
}
.establishment .tab-container,
.local-info .tab-container {
  padding-top: 1em;
  padding-bottom: 0;
}
.establishment .tab-container .sub-tab,
.local-info .tab-container .sub-tab {
  padding: 1em;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 3px solid #CCC;
}
.establishment .tab-container .sub-tab.active,
.local-info .tab-container .sub-tab.active {
  color: #237E96;
  border-bottom: 3px solid #237E96;
}
.establishment .tab-container .image-gallery,
.local-info .tab-container .image-gallery,
.establishment .tab-container .video-container,
.local-info .tab-container .video-container {
  margin: 0;
  padding: 1em;
}
.establishment .tab-container .image-gallery video,
.local-info .tab-container .image-gallery video,
.establishment .tab-container .video-container video,
.local-info .tab-container .video-container video {
  width: 100%;
  height: auto;
}
.establishment .tab-container .slick-slide,
.local-info .tab-container .slick-slide {
  text-align: center;
}
.establishment .tab-container .slick-slide img,
.local-info .tab-container .slick-slide img {
  width: 100%;
  height: auto;
}
.establishment .tab-container .slick-prev::before,
.local-info .tab-container .slick-prev::before,
.establishment .tab-container .slick-next::before,
.local-info .tab-container .slick-next::before {
  color: #237E96;
}
.establishment .tab-container .accommodation-body,
.local-info .tab-container .accommodation-body {
  border-top: 1px solid #ccc;
  padding: 10px 0;
}
.establishment .tab-container .accommodation-body .title,
.local-info .tab-container .accommodation-body .title {
  padding-bottom: 5px;
}
.establishment .tab-container .accommodation-body .title:hover,
.local-info .tab-container .accommodation-body .title:hover {
  border-bottom: 1px solid #000;
}
.establishment .tab-container .accommodation-body select,
.local-info .tab-container .accommodation-body select {
  border: 1px solid #ccc;
  width: 40px;
}
.establishment .tab-container .accommodation-body .btn,
.local-info .tab-container .accommodation-body .btn {
  margin: 10px 0;
  width: 80%;
  background: #237E96;
  color: #fff;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.establishment .tab-container .accommodation-body .btn:hover,
.local-info .tab-container .accommodation-body .btn:hover {
  background: #195b6d;
}
.establishment .carousel,
.local-info .carousel {
  height: 100%;
}
.establishment .carousel-inner,
.local-info .carousel-inner {
  height: 283px;
}
.establishment .ftr-lst ul,
.local-info .ftr-lst ul {
  border-top: 1px solid #ccc;
  margin-top: 5px;
  padding-top: 5px;
  padding-left: 10px;
}
.establishment .ftr-lst li,
.local-info .ftr-lst li {
  list-style: none;
  padding: 5px 0;
}
.establishment .ftr-lst li .fa,
.local-info .ftr-lst li .fa {
  color: #aaa;
}
.booking-modal .title-container .indicator {
  font-size: 18px;
}
.booking-modal .child-age input {
  border: 1px solid #ccc;
  padding: 5px 10px;
  margin: 5px;
  width: 100%;
}
.review-modal .type-selector {
  min-height: 30px;
  padding: 30px 30px 10px 30px;
  background: #237E96;
  color: #fff;
}
.review-modal .type-selector:hover {
  background: #195b6d;
}
.review-modal .type-selector .fa {
  font-size: 32px;
}
.lstng-hdr {
  margin-top: 10px;
}
.lstng-hdr select {
  width: 100px;
  margin: 5px;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  padding-left: 20px;
  height: 34px;
  border: 1px solid #ccc;
}
.brk {
  border-bottom: 1px solid #237E96;
  text-align: center;
}
.brk-lbl {
  color: #333;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  top: -8px;
}
.establishment-detail .cover-image img {
  height: 550px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .establishment-detail .cover-image img {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .establishment-detail .cover-image img {
    height: 300px;
  }
}
.establishment-detail .cover-image .show-pictures-button {
  position: relative;
  bottom: 50px;
  right: 20px;
}
.establishment-detail .navigation-menu {
  padding: 10px 0;
}
.establishment-detail .navigation-menu .nav {
  border-bottom: 1px solid #e8e8e8;
}
.establishment-detail .navigation-menu .nav a {
  color: #797979;
}
.establishment-detail .navigation-menu .nav-pills > li.active > a,
.establishment-detail .navigation-menu .nav-pills > li.active > a:focus,
.establishment-detail .navigation-menu .nav-pills > li.active > a:hover {
  color: #237E96;
  background-color: white;
  border-bottom: 2px solid #237E96;
}
.establishment-detail .navigation-menu .nav-pills > li > a {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.establishment-detail .content .title-section {
  margin-bottom: 25px;
}
.establishment-detail .content .title-section h2 {
  margin-bottom: 5px;
}
.establishment-detail .content .title-section .location {
  font-size: 15px;
}
.establishment-detail .content .establishment-description {
  font-size: 16px;
  line-height: 130%;
  text-align: justify;
}
.establishment-detail .accommodation-block {
  border: 1px solid #dbdbdb;
  margin: 0 0 20px 0;
  background-color: #f7f7f7;
}
.establishment-detail .accommodation-block .accommodation-title {
  font-size: 17px;
  padding: 10px;
  color: #237E96;
  border-bottom: 1px solid #dbdbdb;
  background-color: white;
}
.establishment-detail .accommodation-block .accommodation-info {
  padding: 10px 10px;
}
.establishment-detail .accommodation-block .features-list {
  list-style-type: none;
  margin: 12px 0;
  padding: 0;
}
.establishment-detail .accommodation-block .feature-item {
  font-size: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.establishment-detail .accommodation-block .feature-item .icon {
  margin-right: 10px;
  font-size: 17px;
}
.establishment-detail .accommodation-block .feature-item .text {
  line-height: 20px;
  font-size: 14px;
}
.establishment-detail .accommodation-block .rates-block {
  padding: 0;
  overflow: hidden;
}
.establishment-detail .accommodation-block .rates-block .rate-block-title {
  margin: 10px;
}
.establishment-detail .accommodation-block .rates-block .rate-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px;
  -webkit-box-shadow: #d1d6db 0px 0px 0px 1px, rgba(0, 0, 0, 0.08) 0px 0px 2px 0px, rgba(0, 0, 0, 0.16) 0px 1px 4px 0px;
     -moz-box-shadow: #d1d6db 0px 0px 0px 1px, rgba(0, 0, 0, 0.08) 0px 0px 2px 0px, rgba(0, 0, 0, 0.16) 0px 1px 4px 0px;
          box-shadow: #d1d6db 0px 0px 0px 1px, rgba(0, 0, 0, 0.08) 0px 0px 2px 0px, rgba(0, 0, 0, 0.16) 0px 1px 4px 0px;
  background-color: white;
}
.establishment-detail .accommodation-block .rates-block .rate-block .rate-section {
  padding: 10px;
}
.establishment-detail .accommodation-block .rates-block .rate-block .rate-section.content {
  width: 45%;
}
.establishment-detail .accommodation-block .rates-block .rate-block .rate-section.price {
  width: 25%;
  -webkit-box-shadow: inset 1px 0 0 #dcdcdc;
     -moz-box-shadow: inset 1px 0 0 #dcdcdc;
          box-shadow: inset 1px 0 0 #dcdcdc;
}
.establishment-detail .accommodation-block .rates-block .rate-block .rate-section.persons {
  width: 10%;
  -webkit-box-shadow: inset 1px 0 0 #dcdcdc;
     -moz-box-shadow: inset 1px 0 0 #dcdcdc;
          box-shadow: inset 1px 0 0 #dcdcdc;
}
.establishment-detail .accommodation-block .rates-block .rate-block .rate-section.action {
  width: 20%;
  -webkit-box-shadow: inset 1px 0 0 #dcdcdc;
     -moz-box-shadow: inset 1px 0 0 #dcdcdc;
          box-shadow: inset 1px 0 0 #dcdcdc;
}
.establishment-detail .accommodation-block .rates-block .rate-block .label {
  font-size: 85%;
  margin: 3px 0;
  display: block;
}
.establishment-detail .accommodation-block .rates-block .rate-block .label.label-success {
  background-color: #d8eed5;
  color: #28871c;
  font-weight: 700;
}
.establishment-detail .accommodation-block .rates-block .rate-block .rate-price {
  font-weight: 400;
  font-size: 20px;
  color: #c21212;
  text-align: right;
}
.establishment-detail .accommodation-block .rates-block .rate-block.selected {
  border: 2px solid #237E96;
}
.establishment-detail #selected-rates {
  position: fixed;
  z-index: 1010;
  bottom: 0;
  width: 100%;
  color: white;
  font-size: 25px;
  background-color: #237E96;
}
.establishment-detail #selected-rates .selection {
  padding: 20px;
}
.establishment-detail #establishment-location,
.establishment-detail #local-info-location {
  width: 100%;
  height: 300px;
}
.calendar-availability-table-container {
  min-height: 322px;
  /* makes sure the _line_ is kept */
}
table.calendar-availability-table,
table.calendar-availability-table-day {
  table-layout: fixed;
}
table.calendar-availability-table td,
table.calendar-availability-table-day td {
  -moz-background-size: 100% 100%;
       background-size: 100% 100%;
  cursor: pointer;
}
table.calendar-availability-table th,
table.calendar-availability-table-day th {
  text-align: center;
}
table.calendar-availability-table td.not-available {
  background-color: #dedede;
  cursor: not-allowed;
}
table.calendar-availability-table td.arrival {
  background-color: #8cbd8d;
}
table.calendar-availability-table td.not-arrival {
  background-color: #d5eba8;
}
table.calendar-availability-table td.query {
  background-color: #ff9900;
}
table.calendar-availability-table td.not-available-regular-default {
  background-color: #dedede !important;
}
table.calendar-availability-table-day td.not-available {
  background-color: #dedede;
  cursor: not-allowed;
}
table.calendar-availability-table-day td.arrival {
  background-color: #51aaff;
}
table.calendar-availability-table-day td.not-arrival {
  background-color: #9bcdfd;
}
table.calendar-availability-table-day td.query {
  background-color: #fffd38;
}
table.calendar-availability-table-day td.not-available-day-default {
  background-color: #dedede !important;
}
.box-availability {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-availability__box {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24px;
     -moz-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border: 1px solid rgba(51, 51, 51, 0.25);
  margin-right: 0.5em;
}
.label-image {
  width: auto;
  max-width: 30px;
  height: 23px;
  margin: 5px 3px 5px 3px;
}
#slider-for-1 .slick-slide {
  height: 40vh;
}
[as-nav-for="#slider-for-1"] .slick-slide {
  height: 10vh;
}
#slider-for-2 .slick-slide {
  height: 50vh;
}
[as-nav-for="#slider-for-2"] .slick-slide {
  height: 15vh;
}
.container-fluid__no-padding {
  padding: 0;
}
.panel.info-block {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  padding: 20px;
}
.book-page .block-title {
  font-size: 19px;
}
.book-page .info-section {
  margin-bottom: 10px;
}
.book-page .section-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}
.book-page .section-title-sub {
  font-size: 14px;
  margin: 0;
}
.book-page .price {
  font-size: 20px;
  color: #c21212;
}
.book-page .total-price {
  font-size: 26px;
  color: #c21212;
}
.book-page .establishment-info .est-title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 20px;
}
.book-page .establishment-info .est-image-container {
  width: 100%;
}
.book-page .establishment-info .est-image-container img {
  width: 100%;
  height: auto;
  max-height: 300px;
}
.increase-decrease-input {
  border: 1px solid #dbdbdb;
  margin-bottom: 10px;
}
.increase-decrease-input .number-input {
  min-width: 42px;
  text-align: center;
  border: none;
}
.guest-input {
  min-width: 125px;
}
.establishment-anchor-top {
  position: relative;
  top: -116px;
  display: block;
  width: 0;
  height: 0;
}
@media (min-width: 768px) {
  .establishment-detail-menu-fixed {
    position: fixed;
    top: 0px;
    z-index: 1005;
    background: white;
    width: 100%;
  }
}

.faq-panel > div > .panel-default {
  margin-bottom: 10px;
}
.faq-panel > div > .panel-default > .panel-heading {
  height: auto;
  padding-bottom: 30px;
}

/**
 * this is where _all_ variables used for styling go
 */
.navbar.navbar-villa {
  margin-bottom: 0;
  background-color: #237E96;
  border-bottom: none;
}
.navbar.navbar-villa .navbar-brand {
  color: #ffffff;
}
.navbar.navbar-villa .navbar-brand img {
  height: 1.8em;
}
.navbar.navbar-villa li > a {
  color: #fff;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}
.navbar.navbar-villa li > a:hover {
  color: #fff;
}
.navbar.navbar-villa li.active > a,
.navbar.navbar-villa li.active > a:hover,
.navbar.navbar-villa li.active > a:focus {
  color: #3f3f3f;
  background-color: #D9E021;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}
.navbar.navbar-villa .dropdown.open > a,
.navbar.navbar-villa .dropdown.open > a:focus,
.navbar.navbar-villa .dropdown.open > a:hover {
  color: #3f3f3f;
  background-color: #D9E021;
}
.navbar.navbar-villa .dropdown.open .dropdown-menu,
.navbar.navbar-villa .dropdown .dropdown-menu {
  background-color: #237E96;
}
.navbar.navbar-villa .dropdown.open .dropdown-menu li > a,
.navbar.navbar-villa .dropdown .dropdown-menu li > a {
  color: #fff;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}
.navbar.navbar-villa .dropdown.open .dropdown-menu li > a:hover,
.navbar.navbar-villa .dropdown .dropdown-menu li > a:hover {
  color: #3f3f3f;
  background-color: #D9E021;
}
.navbar.navbar-villa .dropdown.open .dropdown-menu li.active > a,
.navbar.navbar-villa .dropdown .dropdown-menu li.active > a {
  color: #3f3f3f;
  background-color: #D9E021;
}
.navbar.navbar-villa img.language-flag-image {
  height: 1em;
}
.navbar.navbar-villa .navbar-toggle,
.navbar.navbar-villa .navbar-toggle:focus,
.navbar.navbar-villa .navbar-toggle:hover {
  border: 0 solid transparent;
  background-color: transparent;
}
.navbar.navbar-villa .navbar-toggle .icon-bar,
.navbar.navbar-villa .navbar-toggle:focus .icon-bar,
.navbar.navbar-villa .navbar-toggle:hover .icon-bar {
  background-color: #D9E021;
}
.navbar.navbar-villa .search-input-container {
  position: relative;
}
.navbar.navbar-villa .search-input-container .input-group {
  margin-top: 0.5em;
}
@media (max-width: 768px) {
  .navbar.navbar-villa .search-input-container .search-list {
    position: relative;
    margin-left: 0.8em;
    margin-right: 0.8em;
    margin-bottom: 1em;
  }
  .navbar.navbar-villa .search-input-container .input-group {
    padding: 0 0.8em;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .navbar.navbar-villa .search-input-container {
    margin-right: 2em;
  }
  .navbar.navbar-villa .search-input-container .input-group {
    width: 20em;
  }
}
.color-local-info {
  color: #cd6573;
}
.bg-color-local-info {
  background-color: #D1495B !important;
}
.color-bordered-local-info {
  background-color: #D1495B !important;
  border: 1px solid #D1495B !important;
}

/**
 * this is where _all_ variables used for styling go
 */
.home-container {
  width: 100%;
}
.home-container .system-info {
  margin-left: 100px;
}
.home-container .system-info .system-info-image {
  width: 80px;
  height: 80px;
  padding: 5px;
  margin-top: 20px;
}
.home-container .system-info .system-info-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1170px) {
  .home-container .system-info {
    margin-left: 15px;
  }
}
.home-container .search-container {
  max-width: 380px;
  float: right;
}
@media (max-width: 991px) {
  .home-container .search-container {
    margin: 0 auto;
    float: none;
  }
}
.display-table {
  display: table;
}
.display-table-cell {
  display: table-cell;
}
.display-table-cell.icon {
  vertical-align: top;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
.display-table-cell.text {
  vertical-align: top;
  width: 100%;
}
.home-main {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 80vh;
  margin-top: -70px;
  padding-top: 70px;
  padding-bottom: 3em;
  -moz-background-size: cover;
       background-size: cover;
}
.home-main .title-container {
  font-size: 2em;
  color: #fff;
  margin-bottom: 3em;
  text-align: center;
  line-height: 1em;
  width: 100%;
  max-width: 80%;
}
@media (max-width: 768px) {
  .home-main .title-container {
    font-size: 1.5em;
  }
}
.home-main .title-container .villafr {
  color: #247d96;
}
@media (max-width: 768px) {
  .home-main .title-container .villafr {
    margin-right: 0;
  }
}
.home-main .title-container > div:first-child {
  font-weight: bold;
}
@media (min-width: 768px) {
  .home-main .title-container > div:first-child {
    float: left;
  }
}
.home-main .title-container > div:last-child {
  font-weight: bold;
}
@media (min-width: 768px) {
  .home-main .title-container > div:last-child {
    float: right;
  }
}
.home-main .motto-container {
  width: 80%;
  color: #fff;
  padding-top: 0.75em;
}
.featured-row .featured {
  position: relative;
  cursor: pointer;
  margin-bottom: 2em;
}
.featured-row .featured .image-container {
  position: relative;
}
.featured-row .featured .image-container img {
  height: 196px;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.featured-row .featured .image-container img.hover-image {
  position: absolute;
  height: 196px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.featured-row .featured .image-container:hover img.hover-image {
  opacity: 1;
}
.featured-row .featured .info {
  position: absolute;
  right: 15px;
  left: 15px;
  bottom: 0px;
  color: #fff;
  padding: 0 16px 8px 16px;
  background-color: rgba(0, 0, 0, 0.4);
}
.featured-row .featured:hover img {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
     -moz-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.featured-row .featured .badge-instant-booking {
  position: absolute;
  top: 0;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 6px 18px;
  color: #D9E021;
  font-size: 18px;
}

/**
 * this is where _all_ variables used for styling go
 */
.landing-image .image-gallery {
  margin: 0;
  padding: 1em;
}
.landing-image .slick-slide img {
  width: 100%;
  height: 486px;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-image .slick-prev::before,
.landing-image .slick-next::before {
  color: #237E96;
}

/**
 * this is where _all_ variables used for styling go
 */
.booking-list {
  color: #797979;
}
.booking-list .booking-list-table td {
  vertical-align: middle;
  border-top: 1px solid #dbdbdb;
}
.booking-list .booking-list-table tr {
  cursor: pointer;
}
.booking-list .booking-list-table tr:hover {
  background-color: #f5f5f5;
}
.booking-list .booking-list-table .label {
  font-size: 100%;
}
.booking-list .header-block {
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
}
.booking-list .header-block .title {
  font-weight: bold;
  float: left;
  font-size: 16px;
}
.booking-list .top-action {
  float: right;
}
.booking-list .detail-title {
  font-weight: bold;
  font-size: 16px;
  padding: 5px 0;
  color: #237E96;
  cursor: pointer;
}
.booking-list .detail-title:hover {
  color: #195b6d;
}
.booking-list .establishment-image img {
  height: 50px;
  width: auto;
  min-width: 78px;
  -o-object-fit: cover;
     object-fit: cover;
}
.booking-list .reservations-button {
  cursor: pointer;
  padding: 20px 0;
}
.booking-list .reservations-button :hover {
  background-color: #237E96;
}
.booking-list .reservations-list {
  background-color: #f5f5f5de;
}
.bordered-container-with-padding {
  border: 1px solid #dbdbdb !important;
  -webkit-border-radius: 3px !important;
     -moz-border-radius: 3px !important;
          border-radius: 3px !important;
  padding: 32px 24px !important;
  margin-bottom: 10px;
}
.bordered-container-with-low-padding {
  border: 1px solid #dbdbdb !important;
  -webkit-border-radius: 3px !important;
     -moz-border-radius: 3px !important;
          border-radius: 3px !important;
  padding: 8px 6px !important;
  margin-bottom: 10px;
}
.bordered-container {
  border: 1px solid #dbdbdb !important;
  -webkit-border-radius: 3px !important;
     -moz-border-radius: 3px !important;
          border-radius: 3px !important;
}
.bordered-container.has-error {
  border-color: #b92c28 !important;
}
.booking-detail {
  margin-bottom: 40px;
  padding-right: 20px;
}
.booking-detail div {
  font-size: 15px;
}
.booking-detail .reservation-item {
  padding: 10px 20px;
  margin-bottom: 10px;
}
.booking-detail .reservation-item .accommodation-image {
  display: inline-block;
}
.booking-detail .reservation-item .accommodation-image img {
  width: 220px;
  height: 159px;
  -o-object-fit: cover;
     object-fit: cover;
}
.booking-detail .reservation-item .reservation-content {
  -webkit-box-flex: 3;
  -webkit-flex-grow: 3;
     -moz-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  padding-left: 10px;
}
.booking-detail .reservation-item .reservation-content .reservation-property {
  padding-right: 10px;
  margin-bottom: 20px;
  display: inline-block;
}
.booking-detail .reservation-item .reservation-content .reservation-property .title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
}
.booking-detail .reservation-item .reservation-content .reservation-property .description {
  font-size: 17px;
}
.booking-detail .reservation-item .price-section {
  -webkit-box-flex: 4;
  -webkit-flex-grow: 4;
     -moz-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  text-align: right;
  position: relative;
}
.booking-detail .reservation-item .price-section .action-buttons {
  position: absolute;
  bottom: 0;
  right: 0;
}
.booking-detail .listing-title {
  color: #484848 !important;
  font-size: 26px !important;
}
.progress-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 14px !important;
}
.progress-container .label {
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}
.progress-container .step {
  margin: 5px 15px;
  text-align: center;
  padding: 9px 22px;
}
.progress-container .step .step-name {
  margin-top: 10px;
}
.progress-container .step-line {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 32px;
     -moz-box-flex: 1;
      -ms-flex: 1 0 32px;
          flex: 1 0 32px;
  min-height: 1px;
  background-color: #dbdbdb;
  margin: auto;
}
.progress-container-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 14px !important;
}
.progress-container-column .label {
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}
.progress-container-column .step {
  margin: 5px 15px;
  text-align: center;
  padding: 9px 22px;
}
.progress-container-column .step .step-name {
  margin-top: 10px;
}
.progress-container-column .step-line {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 32px;
     -moz-box-flex: 1;
      -ms-flex: 1 0 32px;
          flex: 1 0 32px;
  min-width: 1px;
  background-color: #dbdbdb;
  margin: auto;
}

/**
 * this is where _all_ variables used for styling go
 */
.map-container {
  position: fixed;
  width: 41.66666667%;
  top: 0;
  right: 0;
  bottom: 0;
}
.map-container .leaflet-top .leaflet-control {
  margin-top: 10em;
}
#listing-map {
  margin-bottom: 40px;
}
#resid-selection-map {
  height: 680px;
}
.resid-selection-text-container {
  background-color: #ebeaea6b;
  height: 500px;
  padding: 10px;
}
.resid-selection-text-container .big-title {
  margin: 30px 20px;
  font-size: 50px;
}
@media (max-width: 1170px) {
  .resid-selection-text-container .big-title {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .resid-selection-text-container .big-title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .resid-selection-text-container .big-title {
    font-size: 20px;
  }
}
.resid-selection-text-container .selection-buttons {
  margin-bottom: 30px;
}
.resid-selection-text-container .description {
  margin-bottom: 20px;
  font-size: 16px;
  color: #6d6c6c;
}
.resid-selection-text-container .tags {
  margin-top: 20px;
}
.resid-selection-text-container .label-info {
  font-size: 15px;
  background-color: gray;
}
.resid-selection-map-container {
  position: relative;
}
.resid-selection-map-container .resid-selection-map {
  position: absolute;
  width: 100%;
  margin-top: 15px;
}
.resid-selection-map-container .resid-selection-map .leaflet-top .leaflet-control {
  margin-top: 10em;
}
.resid-selection-map-container .resid-selection-map-fixed {
  position: fixed;
  width: 41.66666667%;
  top: 53px;
  right: 0;
  bottom: 0;
}
.resid-selection-map-container .resid-selection-map-fixed .leaflet-top .leaflet-control {
  margin-top: 10em;
}
.list-container {
  position: absolute;
  top: 102px;
}
@media (max-width: 768px) {
  .list-container {
    position: relative;
    top: 0;
  }
}
.tab-content {
  padding-top: 1em;
}
.nav-tabs.nav-justified > .tab-selected > a,
.nav-tabs.nav-justified > .tab-selected > a:focus,
.nav-tabs.nav-justified > .tab-selected > a:hover {
  color: #ff9334;
  background-color: #dedede;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}
.panel-heading {
  position: relative;
}
.panel-heading .panel-title {
  position: relative;
  min-height: 1em;
}
.panel-heading .panel-title a {
  position: absolute;
  left: 0;
  right: 0;
  text-decoration: none;
}
.filter-container .form-control {
  margin-bottom: .5em;
}
@media (max-width: 768px) {
  .align-left-mobile .nav-tabs.nav-justified > li > a {
    text-align: left;
  }
}
.tab-icon a::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 1em;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: .5em;
}
.tab-type a::before {
  content: "\f042";
}
.tab-feature a::before {
  content: "\f0ca";
}
.tab-distance a::before {
  content: "\f277";
}
.tab-price a::before {
  content: "\f02c";
}
.general-request-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
.general-request-btn button {
  background: #237E96;
  padding: 10px;
  color: #fff;
  border: none;
  font-size: 18px;
}
.general-request-btn button:hover {
  background: #195b6d;
}
.shown {
  display: block;
}
.hidden {
  display: none;
}

/**
 * this is where _all_ variables used for styling go
 */
.form-login {
  margin-top: 8em;
  padding: 2em;
}
@media (max-width: 768px) {
  .form-login {
    padding: 0;
  }
}

.miscPadding {
  margin-left: 20px;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 900px;
    margin: 30px auto;
  }
}
.stripe-bg {
  background-color: #dbdbdb;
}
.alert-booking {
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.h4,
h4 {
  font-size: 22px;
}

/**
 * this is where _all_ variables used for styling go
 */
.admin-panel {
  position: relative;
}
.admin-panel .sidebar {
  position: absolute;
  top: 0;
  width: 20vw;
  height: 100vh;
  z-index: 99;
  overflow-y: scroll;
  background: #237E96;
  padding: 1em;
}
@media (max-width: 768px) {
  .admin-panel .sidebar {
    display: none !important;
  }
}
.admin-panel .sidebar .account-container {
  text-align: center;
}
.admin-panel .sidebar .account-container img {
  width: 100%;
  max-height: 200px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.admin-panel .sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.admin-panel .sidebar ul li {
  padding: 1em;
  border-bottom: 1px solid #1e6d81;
  border-left: 5px solid transparent;
}
.admin-panel .sidebar ul li.active,
.admin-panel .sidebar ul li:hover {
  border-left: 5px solid #D9E021;
}
.admin-panel .sidebar ul li .second-level-container {
  display: none;
  padding-left: 20px;
}
.admin-panel .sidebar ul li .second-level-container .second-level {
  border-left: none;
  padding-left: 20px;
}
.admin-panel .sidebar ul li .second-level-container .second-level a {
  font-weight: 400;
  padding: 5px;
}
.admin-panel .sidebar ul li .second-level-container .second-level a:hover {
  color: #ccc;
}
.admin-panel .sidebar ul li.has-second-level:hover .second-level-container,
.admin-panel .sidebar ul li .active-link .second-level-container {
  display: block;
}
.admin-panel .sidebar ul li a {
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
}
.admin-panel .sidebar ul li a i {
  padding-right: 0.5em;
}
.admin-panel .page-wrap {
  position: absolute;
  top: 0;
  left: 20vw;
  width: 80vw;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .admin-panel .page-wrap {
    padding-left: 2px;
    padding-right: 0px;
    left: 2vw;
    right: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .admin-panel .page-wrap div[ui-view] > .container {
    padding-right: 2px;
    left: 2vw;
    width: 100%;
  }
}

.deactivateTd {
  display: block;
}
.addBtn {
  padding-left: 0px;
}
.addInput {
  padding-left: 50px;
}
.editData {
  float: right;
  padding-top: 10px;
  color: #0275d8;
}
.addChildren {
  margin-top: 10px;
}
.childInput {
  margin-top: 10px;
  padding-left: 100px;
}

/**
 * this is where _all_ variables used for styling go
 */
.legend-box {
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
  border: 1px solid rgba(51, 51, 51, 0.75);
}
.legend-box.available.arrival-day {
  background-color: #8cbd8d;
}
.legend-box.available.arrival-day.daytime {
  background-color: #51aaff;
}
.legend-box.available.not-arrival-day {
  background-color: #d5eba8;
}
.legend-box.available.not-arrival-day.daytime {
  background-color: #9bcdfd;
}
.legend-box.disabled {
  background-color: #cccccc;
}
.legend-box.closed {
  background-color: #cccccc;
}
.planning-calendar-container .month-navigator .btn-group {
  width: 100%;
}
.planning-calendar-container .month-navigator button {
  padding: 0 18px 0 18px;
}
.planning-calendar-container .month-navigator .month-year-label {
  display: inline-block;
  font-size: 17px;
  padding-top: 3px;
  margin-left: 10px;
}
.planning-calendar-container .planning-calendar {
  width: 620px;
  background: white;
  margin: 0 auto;
  border: none;
}
.planning-calendar-container .planning-calendar .calendar-header {
  border: none;
  margin-bottom: 5px;
  text-align: center;
  color: #828181 !important;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper {
  padding: 0;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day {
  width: 92px;
  height: 92px;
  position: relative;
  cursor: pointer;
  -moz-background-clip: padding-box;
       background-clip: padding-box;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.available.arrival-day {
  background-color: #8cbd8d;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.available.not-arrival-day {
  background-color: #d5eba8;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.available.arrival-day.daytime {
  background-color: #51aaff;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.available.not-arrival-day.daytime {
  background-color: #9bcdfd;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.not-available {
  background-color: #f6c6d6;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.closed {
  background-color: #cccccc;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day.selected {
  background-color: #b8be26 !important;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day .allotment {
  margin-top: 4px;
  font-size: 24px;
}
.planning-calendar-container .planning-calendar .calendar-day-wrapper .calendar-day .calendar-day-number {
  height: 45%;
  padding: 10px 0 0 15px;
}

@media print {
  .query-input-navbar,
  .sidebar {
    display: none !important;
  }
}

.tblProfile > tbody > tr > td,
.tblProfile > tbody > tr > th {
  padding: 20px !important;
  text-align: center;
}
.header-block {
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
}
.header-block .title {
  font-weight: bold;
  float: left;
  font-size: 16px;
}

/**
 * this is where _all_ variables used for styling go
 */
#prospects .search-filter > div > div.col-lg-4.col-md-4 {
  margin-bottom: .75em;
}

.btn.fb {
  background: #3b579d;
  color: #fff;
}
.btn.fb:hover {
  background: #036;
}
.btn.gp {
  background: #d03f2c;
  color: #fff;
}
.btn.gp:hover {
  background: #900;
}
.btn.yh {
  background: #602bd5;
  color: #fff;
}
.btn.yh:hover {
  background: #4b1c99;
}
.btn.tw {
  background: #2ca8d2;
  color: #fff;
}
.btn.tw:hover {
  background: #069;
}
.btn.pt {
  background: #c51f22;
  color: #fff;
}
.btn.pt:hover {
  background: #900;
}
.btn.li {
  background: #007bb6;
  color: #fff;
}
.btn.li:hover {
  background: #036;
}
.btn.vi {
  background: #7c529e;
  color: #fff;
}
.btn.vi:hover {
  background: #339;
}
.btn.wa {
  background: #29a628;
  color: #fff;
}
.btn.wa:hover {
  background: #060;
}

.town-selector {
  margin-bottom: 15px;
}
.town-selector select {
  border: 1px solid #ccc;
  min-height: 40px;
  width: 100%;
}

.bg-w {
  background: #fff;
}
.bg-b {
  background: #000;
}
/*------ Round -------
*rnd for Round
*t for Top
*r for Right
*b for Bottom
*l for Left
*f for Full
*--------------------*/
.r-0 {
  -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
          border-radius: 0px;
}
.r-t-r-0 {
  -webkit-border-top-right-radius: 0px;
     -moz-border-radius-topright: 0px;
          border-top-right-radius: 0px;
}
.r-b-r-0 {
  -webkit-border-bottom-right-radius: 0px;
     -moz-border-radius-bottomright: 0px;
          border-bottom-right-radius: 0px;
}
.r-b-l-0 {
  -webkit-border-bottom-left-radius: 0px;
     -moz-border-radius-bottomleft: 0px;
          border-bottom-left-radius: 0px;
}
.r-t-l-0 {
  -webkit-border-top-left-radius: 0px;
     -moz-border-radius-topleft: 0px;
          border-top-left-radius: 0px;
}
.r-t-0 {
  -webkit-border-top-right-radius: 0px;
     -moz-border-radius-topright: 0px;
          border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
     -moz-border-radius-topleft: 0px;
          border-top-left-radius: 0px;
}
.r-r-0 {
  -webkit-border-top-right-radius: 0px;
     -moz-border-radius-topright: 0px;
          border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
     -moz-border-radius-bottomright: 0px;
          border-bottom-right-radius: 0px;
}
.r-b-0 {
  -webkit-border-bottom-right-radius: 0px;
     -moz-border-radius-bottomright: 0px;
          border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
     -moz-border-radius-bottomleft: 0px;
          border-bottom-left-radius: 0px;
}
.r-l-0 {
  -webkit-border-top-left-radius: 0px;
     -moz-border-radius-topleft: 0px;
          border-top-left-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
     -moz-border-radius-bottomleft: 0px;
          border-bottom-left-radius: 0px;
}
.r-3 {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.r-t-r-3 {
  -webkit-border-top-right-radius: 3px;
     -moz-border-radius-topright: 3px;
          border-top-right-radius: 3px;
}
.r-b-r-3 {
  -webkit-border-bottom-right-radius: 3px;
     -moz-border-radius-bottomright: 3px;
          border-bottom-right-radius: 3px;
}
.r-b-l-3 {
  -webkit-border-bottom-left-radius: 3px;
     -moz-border-radius-bottomleft: 3px;
          border-bottom-left-radius: 3px;
}
.r-t-l-3 {
  -webkit-border-top-left-radius: 3px;
     -moz-border-radius-topleft: 3px;
          border-top-left-radius: 3px;
}
.r-t-3 {
  -webkit-border-top-right-radius: 3px;
     -moz-border-radius-topright: 3px;
          border-top-right-radius: 3px;
  -webkit-border-top-left-radius: 3px;
     -moz-border-radius-topleft: 3px;
          border-top-left-radius: 3px;
}
.r-r-3 {
  -webkit-border-top-right-radius: 3px;
     -moz-border-radius-topright: 3px;
          border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
     -moz-border-radius-bottomright: 3px;
          border-bottom-right-radius: 3px;
}
.r-b-3 {
  -webkit-border-bottom-right-radius: 3px;
     -moz-border-radius-bottomright: 3px;
          border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
     -moz-border-radius-bottomleft: 3px;
          border-bottom-left-radius: 3px;
}
.r-l-3 {
  -webkit-border-top-left-radius: 3px;
     -moz-border-radius-topleft: 3px;
          border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
     -moz-border-radius-bottomleft: 3px;
          border-bottom-left-radius: 3px;
}
.r-5 {
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.r-t-r-5 {
  -webkit-border-top-right-radius: 5px;
     -moz-border-radius-topright: 5px;
          border-top-right-radius: 5px;
}
.r-b-r-5 {
  -webkit-border-bottom-right-radius: 5px;
     -moz-border-radius-bottomright: 5px;
          border-bottom-right-radius: 5px;
}
.r-b-l-5 {
  -webkit-border-bottom-left-radius: 5px;
     -moz-border-radius-bottomleft: 5px;
          border-bottom-left-radius: 5px;
}
.r-t-l-5 {
  -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topleft: 5px;
          border-top-left-radius: 5px;
}
.r-t-5 {
  -webkit-border-top-right-radius: 5px;
     -moz-border-radius-topright: 5px;
          border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topleft: 5px;
          border-top-left-radius: 5px;
}
.r-r-5 {
  -webkit-border-top-right-radius: 5px;
     -moz-border-radius-topright: 5px;
          border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
     -moz-border-radius-bottomright: 5px;
          border-bottom-right-radius: 5px;
}
.r-b-5 {
  -webkit-border-bottom-right-radius: 5px;
     -moz-border-radius-bottomright: 5px;
          border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
     -moz-border-radius-bottomleft: 5px;
          border-bottom-left-radius: 5px;
}
.r-l-5 {
  -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topleft: 5px;
          border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
     -moz-border-radius-bottomleft: 5px;
          border-bottom-left-radius: 5px;
}
.r-10 {
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.r-t-r-10 {
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
}
.r-b-r-10 {
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
}
.r-b-l-10 {
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
}
.r-t-l-10 {
  -webkit-border-top-left-radius: 10px;
     -moz-border-radius-topleft: 10px;
          border-top-left-radius: 10px;
}
.r-t-10 {
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
     -moz-border-radius-topleft: 10px;
          border-top-left-radius: 10px;
}
.r-r-10 {
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
}
.r-b-10 {
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
}
.r-l-10 {
  -webkit-border-top-left-radius: 10px;
     -moz-border-radius-topleft: 10px;
          border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
}
.r-f {
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
}
.r-t-f {
  -webkit-border-top-right-radius: 100%;
     -moz-border-radius-topright: 100%;
          border-top-right-radius: 100%;
  -webkit-border-top-left-radius: 100%;
     -moz-border-radius-topleft: 100%;
          border-top-left-radius: 100%;
}
.r-r-f {
  -webkit-border-top-right-radius: 100%;
     -moz-border-radius-topright: 100%;
          border-top-right-radius: 100%;
  -webkit-border-bottom-right-radius: 100%;
     -moz-border-radius-bottomright: 100%;
          border-bottom-right-radius: 100%;
}
.r-l-f {
  -webkit-border-top-left-radius: 100%;
     -moz-border-radius-topleft: 100%;
          border-top-left-radius: 100%;
  -webkit-border-bottom-left-radius: 100%;
     -moz-border-radius-bottomleft: 100%;
          border-bottom-left-radius: 100%;
}
/*------ Padding -------
*p for Padding
*t for Top
*r for Right
*b for Bottom
*l for Left
*v for Vertical
*h for Horizontal
*--------------------*/
.p-0 {
  padding: 0px !important;
}
.p-t-0 {
  padding-top: 0px !important;
}
.p-r-0 {
  padding-right: 0px !important;
}
.p-b-0 {
  padding-bottom: 0px !important;
}
.p-l-0 {
  padding-left: 0px !important;
}
.p-v-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.p-h-0 {
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.p-3 {
  padding: 3px !important;
}
.p-t-3 {
  padding-top: 3px !important;
}
.p-r-3 {
  padding-right: 3px !important;
}
.p-b-3 {
  padding-bottom: 3px !important;
}
.p-l-3 {
  padding-left: 3px !important;
}
.p-v-3 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
.p-h-3 {
  padding-right: 3px !important;
  padding-left: 3px !important;
}
.p-5 {
  padding: 5px !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-r-5 {
  padding-right: 5px !important;
}
.p-b-5 {
  padding-bottom: 5px !important;
}
.p-l-5 {
  padding-left: 5px !important;
}
.p-v-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.p-h-5 {
  padding-right: 5px !important;
  padding-left: 5px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-r-10 {
  padding-right: 10px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.p-l-10 {
  padding-left: 10px !important;
}
.p-v-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.p-h-10 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}
/*------ Margin -------
*m for Margin
*t for Top
*r for Right
*b for Bottom
*l for Left
*v for Vertical
*h for Horizontal
*--------------------*/
.m-0 {
  margin: 0px !important;
}
.m-t-0 {
  margin-top: 0px !important;
}
.m-r-0 {
  margin-right: 0px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.m-l-0 {
  margin-left: 0px !important;
}
.m-v-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.m-h-0 {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
.m-3 {
  margin: 3px !important;
}
.m-t-3 {
  margin-top: 3px !important;
}
.m-r-3 {
  margin-right: 3px !important;
}
.m-b-3 {
  margin-bottom: 3px !important;
}
.m-l-3 {
  margin-left: 3px !important;
}
.m-v-3 {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}
.m-h-3 {
  margin-right: 3px !important;
  margin-left: 3px !important;
}
.m-5 {
  margin: 5px !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-r-5 {
  margin-right: 5px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.m-l-5 {
  margin-left: 5px !important;
}
.m-v-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.m-h-5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
.m-10 {
  margin: 10px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.m-v-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.m-h-10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}
.m--10 {
  margin: -10px !important;
}
.m-t--10 {
  margin-top: -10px !important;
}
.m-r--10 {
  margin-right: -10px !important;
}
.m-b--10 {
  margin-bottom: -10px !important;
}
.m-l--10 {
  margin-left: -10px !important;
}
.m-v--10 {
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}
.m-h--10 {
  margin-right: -10px !important;
  margin-left: -10px !important;
}
.b-a {
  border: 1px solid #ccc;
}
.b-t {
  border-top: 1px solid #ccc;
}
.b-r {
  border-right: 1px solid #ccc;
}
.b-b {
  border-bottom: 1px solid #ccc;
}
.b-l {
  border-left: 1px solid #ccc;
}
.b-v {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.b-h {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
/*------ Border --------*/
.brdr-t {
  border-top: 1px solid #ccc;
}
.brdr-r {
  border-right: 1px solid #ccc;
}
.brdr-b {
  border-bottom: 1px solid #ccc;
}
.brdr-l {
  border-left: 1px solid #ccc;
}
.brdr-v {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.brdr-h {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.bld {
  font-weight: bold;
}
.col-center {
  margin-left: auto;
  margin-right: auto;
  float: none;
}
.form-required {
  font-size: 14px;
  color: #f00;
}
.margin-b {
  margin-bottom: 15px;
}
.brdr-t {
  border-top: 1px solid #ccc;
}
.g-cntr {
  margin-left: auto;
  margin-right: auto;
  float: none !important;
}

/**
 * this is where _all_ variables used for styling go
 */

.fs-btn {
  border: 1px solid #ccc;
  padding: 6px 10px;
  cursor: pointer;
  margin-bottom: 10px;
}
.fs-btn .fa {
  position: absolute;
  right: 20px;
  top: 10px;
}
.fs-btn.actv {
  background: #eee;
  margin-bottom: 0px;
}
.fs-slctr {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
  margin-bottom: 10px;
}
.fs-slctr.actv {
  display: block;
}
.fs-slctr .chld-cnt {
  padding-left: 30px;
}
