@charset "UTF-8";
/* VALIDATION */
.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  line-height: 18px;
  cursor: pointer;
  z-index: 5000;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  background: #b31919;
  position: relative;
  z-index: 5001;
  color: #fff;
  width: 150px;
  font-size: 11px;
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-transform: initial;
  font-weight: 500;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

body[dir=rtl] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.ui-datepicker {
  display: none;
  padding: 10px;
  font: 400 14px/1 "Lato WF", sans-serif, Arial, sans-serif;
  color: #000;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker {
    font-size: 12px;
  }
}
body > .ui-datepicker {
  z-index: 30;
}
.ui-datepicker:after {
  display: block;
  content: "";
  height: 0;
  overflow: hidden;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker {
    width: calc(100% - 20px);
  }
}

.ui-datepicker-header {
  position: relative;
  font-size: 1.5em;
  line-height: 1em;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-header {
    letter-spacing: 1px;
  }
}
.ui-datepicker-header .ui-datepicker-month {
  vertical-align: middle;
}
.ui-datepicker-header .ui-datepicker-year {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  height: auto;
  font-size: 0.9em;
  line-height: inherit;
  font-weight: 300;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0;
  background: inherit;
  vertical-align: middle;
}

.ui-datepicker-prev, .ui-datepicker-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 20;
}
.ui-datepicker-prev:after, .ui-datepicker-next:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  transition: border-color 350ms;
}
.ui-datepicker-prev.ui-state-disabled, .ui-datepicker-next.ui-state-disabled {
  opacity: 0.3;
}

.ui-datepicker-prev {
  left: 0;
}
.ui-datepicker-prev:after {
  left: 10px;
  border-right: 0;
  border-top: 0;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
}
.ui-datepicker-prev:not(.ui-state-disabled):hover:after {
  border-bottom-color: #bcaa90;
  border-left-color: #bcaa90;
}

.ui-datepicker-next {
  right: 0;
}
.ui-datepicker-next:not(.ui-state-disabled):hover:after {
  border-top-color: #bcaa90;
  border-right-color: #bcaa90;
}

.ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 252px;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-calendar {
    width: 100%;
  }
}
.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.ui-datepicker-calendar th {
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-calendar th {
    border-bottom: 1px solid #D8D8D8;
  }
}
.ui-datepicker-calendar td {
  font-size: 1em;
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  color: rgba(0, 0, 0, 0.05);
}
.ui-datepicker-calendar td.ui-datepicker-other-month span:hover, .ui-datepicker-calendar td.ui-state-disabled span:hover {
  color: inherit;
  background: none;
}
.ui-datepicker-calendar a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: color 350ms, background-color 350ms;
}
.ui-datepicker-calendar .ui-datepicker-today a {
  background: #3E7C9B;
}
.ui-datepicker-calendar .ui-datepicker-highlight a {
  background: #EDEEEC;
}
.ui-datepicker-calendar .ui-datepicker-highlight.checkin-date a, .ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a, .ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-state-default:hover {
  background: #000;
  color: #fff;
}

.ui-datepicker-trigger {
  position: relative;
  background: none;
}
.ui-datepicker-trigger:hover svg {
  fill: #3E7C9B;
}

.flatpickr-calendar {
  opacity: 0;
  display: none;
  text-align: center;
  padding: 10px;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  width: 307.875px;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 4px 13px rgba(0, 0, 0, 0.1);
}
.flatpickr-calendar.noCalendar {
  padding-top: 0;
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
}

.flatpickr-calendar.static {
  left: 0;
  top: 100%;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: block;
}
@media only screen and (max-width: 767px) {
  .flatpickr-wrapper {
    max-width: 100%;
  }
  .flatpickr-wrapper .flatpickr-calendar {
    width: 100%;
  }
}

.flatpickr-months {
  display: flex;
  position: relative;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: #000;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  flex: 1;
}
.flatpickr-months .flatpickr-month .flatpickr-monthDropdown-months {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  width: auto;
  padding: 0;
  text-transform: initial;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
  fill: #000;
  transition: fill 0.1s;
  pointer-events: none;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: rgba(0, 0, 0, 0.7);
}
.flatpickr-months .flatpickr-prev-month.disabled,
.flatpickr-months .flatpickr-next-month.disabled {
  opacity: 0.2;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  height: 14px;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.numInputWrapper span:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
}

.numInputWrapper span.arrowUp {
  top: 50%;
  margin-top: -14px;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #000;
}
.numInputWrapper span.arrowUp:hover:after {
  border-bottom-color: rgba(0, 0, 0, 0.7);
}

.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
}
.numInputWrapper span.arrowDown:hover:after {
  border-top-color: rgba(0, 0, 0, 0.7);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  display: inline-block;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 1.5em;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: inherit;
  text-align: center;
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  padding: 0;
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

.flatpickr-current-month input.cur-year {
  display: inline-block;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: initial;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: text;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1.6em 0;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 0.7em;
  background: transparent;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: 700;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  opacity: 1;
}

.flatpickr-day {
  display: inline-block;
  position: relative;
  background: none;
  border: 1px solid transparent;
  color: #000;
  cursor: pointer;
  width: 14.2857143%;
  margin: 0;
  height: 3.143em;
  font-size: 1em;
  line-height: 3.143em;
  font-weight: 400;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.flatpickr-day.today {
  background: #3E7C9B;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus,
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #EDEEEC;
  border-color: #EDEEEC;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #000;
  color: #fff;
  border-color: #000;
}

.flatpickr-day.selected:last-of-type {
  background: red !important;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #000;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #EDEEEC, 5px 0 0 #EDEEEC;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: #EDEEEC;
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.3);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #EDEEEC, 5px 0 0 #EDEEEC;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #EDEEEC;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: #EDEEEC;
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  overflow: hidden;
}

.flatpickr-rContainer {
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #000;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #000;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #000;
  font-size: 14px;
  position: relative;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #000;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #EDEEEC;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*
 * Timepicker stylesheet
 * Highly inspired from datepicker
 * FG - Nov 2010 - Web3R 
 *
 * version 0.0.3 : Fixed some settings, more dynamic
 * version 0.0.4 : Removed width:100% on tables
 * version 0.1.1 : set width 0 on tables to fix an ie6 bug
 */
.ui-timepicker-inline {
  display: inline;
}

#ui-timepicker-div {
  padding: 10px;
  font: 400 14px/1 "Lato WF", sans-serif, Arial, sans-serif;
  color: #000;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.12);
}

.ui-timepicker-table {
  display: inline-table;
  width: 0;
}

.ui-timepicker-table table {
  margin: 0.15em 0 0 0;
  border-collapse: collapse;
}

.ui-timepicker-hours, .ui-timepicker-minutes {
  padding: 0 10px;
}

td.ui-timepicker-hours {
  border-right: 1px solid #D8D8D8;
}

.ui-timepicker-title {
  color: #000;
  font-size: 1.5em;
  line-height: 30px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
}

.ui-timepicker-table th.periods {
  width: 30px;
  padding-right: 10px;
  color: #000;
  font-size: 0.7em;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* span for disabled cells */
.ui-timepicker-table td span {
  display: block;
  text-decoration: none;
}

/* anchors for clickable cells */
.ui-timepicker-hour-cell, .ui-timepicker-minute-cell {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
}
.ui-timepicker-hour-cell a, .ui-timepicker-minute-cell a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
}
.ui-timepicker-hour-cell a:hover, .ui-timepicker-hour-cell a.ui-state-active, .ui-timepicker-minute-cell a:hover, .ui-timepicker-minute-cell a.ui-state-active {
  background: #000;
  color: #fff;
}

/* buttons and button pane styling */
.ui-timepicker .ui-timepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-timepicker .ui-timepicker-buttonpane button {
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

/* The close button */
.ui-timepicker .ui-timepicker-close {
  float: right;
}

/* the now button */
.ui-timepicker .ui-timepicker-now {
  float: left;
}

/* the deselect button */
.ui-timepicker .ui-timepicker-deselect {
  float: left;
}

.ui-selectmenu-button {
  position: relative;
  display: block;
  width: auto !important;
  height: 40px;
  line-height: 40px;
  border: thin solid #d1d1d1;
  font-size: 14px;
  text-align: left;
  color: #53565a;
  background: #fff;
  transition: all 0.2s;
}
.ui-selectmenu-button::-moz-placeholder {
  color: #292C2D;
}
.ui-selectmenu-button::placeholder {
  color: #292C2D;
}
.ui-selectmenu-button .ui-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #292C2D;
}
.ui-selectmenu-button:hover .ui-icon {
  border-top-color: #54baba;
}
.ui-selectmenu-button .ui-selectmenu-text {
  display: block;
  height: 100%;
  padding: 0 30px 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-selectmenu-button .ui-selectmenu-text strong {
  font-weight: 700;
}

.ui-selectmenu-menu {
  position: absolute;
  z-index: 9999999;
  display: none;
  max-height: 258px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.ui-selectmenu-menu.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-menu li .ui-menu-item-wrapper {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  color: #000;
}
.ui-selectmenu-menu li .ui-state-active {
  background: #eee;
  cursor: pointer;
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

@font-face {
  font-family: "HeBS-Icons";
  src: url("../fonts/HeBS-Icons.woff2?8uvq96") format("woff2"), url("../fonts/HeBS-Icons.woff?8uvq96") format("woff");
  font-weight: normal;
  font-style: normal;
}
[class^=rooms-icon-], [class*=" rooms-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "HeBS-Icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rooms-icon-theatre-set-up:before {
  content: "\e937";
}

.rooms-icon-classroom-set-up:before {
  content: "\e938";
}

.rooms-icon-cabaret-set-up:before {
  content: "\e939";
}

.rooms-icon-boardroom-set-up:before {
  content: "\e93a";
}

.rooms-icon-u-shaped-set-up:before {
  content: "\e93b";
}

.rooms-icon-banquet-set-up:before {
  content: "\e93c";
}

.rooms-icon-dinner-dance-set-up:before {
  content: "\e93d";
}

.rooms-icon-reception-set-up:before {
  content: "\e93e";
}

.rooms-icon-ceremony-set-up:before {
  content: "\e93f";
}

.rooms-icon-natural-daylight:before {
  content: "\e940";
}

.rooms-icon-outlets-sockets:before {
  content: "\e941";
}

.rooms-icon-direct-dial-point:before {
  content: "\e942";
}

.rooms-icon-video-conferencing:before {
  content: "\e943";
}

.rooms-icon-air-conditioning:before {
  content: "\e944";
}

.rooms-icon-wi-fi:before {
  content: "\e945";
}

.rooms-icon-blackout-shades:before {
  content: "\e946";
}

.rooms-icon-visual-equipment:before {
  content: "\e947";
}

.rooms-icon-audio-equipment:before {
  content: "\e948";
}

.rooms-icon-flipchart-presentation-equipment:before {
  content: "\e949";
}

.rooms-icon-tv-point:before {
  content: "\e94a";
}

.rooms-icon-overhead-projector:before {
  content: "\e94b";
}

.rooms-icon-data-projector:before {
  content: "\e94c";
}

.rooms-icon-balcony:before {
  content: "\e900";
}

.rooms-icon-city-view:before {
  content: "\e901";
}

.rooms-icon-beds:before {
  content: "\e902";
}

.rooms-icon-flat-screen-tv:before {
  content: "\e903";
}

.rooms-icon-hair-dryer:before {
  content: "\e904";
}

.rooms-icon-iron:before {
  content: "\e905";
}

.rooms-icon-ac:before {
  content: "\e906";
}

.rooms-icon-king-bed:before {
  content: "\e907";
}

.rooms-icon-kitchen:before {
  content: "\e908";
}

.rooms-icon-minibar:before {
  content: "\e909";
}

.rooms-icon-smoke-free:before {
  content: "\e90a";
}

.rooms-icon-occupancy:before {
  content: "\e90b";
}

.rooms-icon-ocean-view:before {
  content: "\e90c";
}

.rooms-icon-personal_items:before {
  content: "\e90d";
}

.rooms-icon-pool-view:before {
  content: "\e90e";
}

.rooms-icon-room-service:before {
  content: "\e90f";
}

.rooms-icon-safe:before {
  content: "\e910";
}

.rooms-icon-single-room:before {
  content: "\e911";
}

.rooms-icon-smoking:before {
  content: "\e912";
}

.rooms-icon-size:before {
  content: "\e913";
}

.rooms-icon-pulloutsofa:before {
  content: "\e914";
}

.rooms-icon-twin-room:before {
  content: "\e915";
}

.rooms-icon-wifi:before {
  content: "\e916";
}

.rooms-icon-adaroom:before {
  content: "\e917";
}

.rooms-icon-airport-shuttle-paid:before {
  content: "\e918";
}

.rooms-icon-amusement-park:before {
  content: "\e919";
}

.rooms-icon-bar:before {
  content: "\e91a";
}

.rooms-icon-beach:before {
  content: "\e91b";
}

.rooms-icon-business-center:before {
  content: "\e91c";
}

.rooms-icon-elevator:before {
  content: "\e91d";
}

.rooms-icon-environmentally-friendly:before {
  content: "\e91e";
}

.rooms-icon-fitness:before {
  content: "\e91f";
}

.rooms-icon-golf:before {
  content: "\e921";
}

.rooms-icon-indoor-pool:before {
  content: "\e922";
}

.rooms-icon-landmark:before {
  content: "\e923";
}

.rooms-icon-outdoor-pool:before {
  content: "\e924";
}

.rooms-icon-pet-friendly:before {
  content: "\e926";
}

.rooms-icon-pool:before {
  content: "\e927";
}

.rooms-icon-restaurant:before {
  content: "\e928";
}

.rooms-icon-shuttle:before {
  content: "\e92a";
}

.rooms-icon-spa:before {
  content: "\e92b";
}

.rooms-icon-ticket-services:before {
  content: "\e92c";
}

.rooms-icon-valet:before {
  content: "\e92d";
}

.rooms-icon-water-park:before {
  content: "\e92e";
}

.rooms-icon-coffeemaker:before {
  content: "\e92f";
}

.rooms-icon-highfloor:before {
  content: "\e930";
}

.rooms-icon-airport-shuttle-free:before {
  content: "\e931";
}

.rooms-icon-view:before {
  content: "\e932";
}

.rooms-icon-tv:before {
  content: "\e933";
}

.rooms-icon-minifridge:before {
  content: "\e934";
}

.rooms-icon-pets:before {
  content: "\e935";
}

.rooms-icon-valet-only:before {
  content: "\e936";
}

.rooms-icon-accessibility-features:before {
  content: "\e917";
}

.rooms-icon-parking:before {
  content: "\e94d";
}

label.custom-checkbox, label.custom-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
label.custom-checkbox input, label.custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

label.custom-radio {
  padding-left: 35px;
  min-height: 30px;
}
label.custom-radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #D8D8D8;
  border-radius: 50%;
}
label.custom-radio:after {
  content: "";
  position: absolute;
  border: none;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 15px;
  transform: translate(-50%, -50%) scale(2);
  border-radius: 50%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: transform 175ms 116.6666666667ms, opacity 175ms, visibility 175ms;
  pointer-events: none;
}
label.custom-radio.checked:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 116.6666666667ms, opacity 116.6666666667ms, visibility 116.6666666667ms;
}

label.custom-checkbox {
  padding-left: 40px;
  min-height: 30px;
}
label.custom-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: #F4F4F4;
  border: 1px solid #D8D8D8;
}
label.custom-checkbox:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: transform 175ms 116.6666666667ms, opacity 175ms, visibility 175ms;
  pointer-events: none;
}
label.custom-checkbox.checked:after {
  transform: rotate(-45deg) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 116.6666666667ms, opacity 116.6666666667ms, visibility 116.6666666667ms;
}

@media only screen and (max-width: 767px) {
  html.rewards-widget-visible {
    overflow: hidden;
  }
}
.rewards-widget {
  display: block;
  position: fixed;
  top: -100%;
  height: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  font: 300 16px/1.5em "Lato WF", sans-serif, Arial, sans-serif;
  transition: top 350ms, opacity 350ms, visibility 350ms;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .rewards-widget {
    font-size: 14px;
  }
}
.rewards-widget-visible .rewards-widget {
  top: 130px;
  visibility: visible;
  opacity: 1;
  transition: top 350ms, opacity 350ms, visibility 0ms;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget-visible .rewards-widget {
    top: 0;
    z-index: 150;
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget-visible.scrolled-header-view .rewards-widget {
    top: 70px;
  }
  .rewards-widget-visible .support-top-bar + #header + .rewards-widget {
    top: 28px;
  }
}
.rewards-widget .inner-wrapper {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.rewards-widget .sides-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #fff;
  color: #000;
  padding: 35px 80px 45px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .sides-wrapper {
    min-height: 100%;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rewards-widget .sides-wrapper {
    padding: 35px 40px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .rewards-widget .sides-wrapper {
    padding: 35px 20px 25px;
  }
}
.rewards-widget .rewards-widget-close-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .rewards-widget-close-button {
    bottom: auto;
    right: auto;
    top: 20px;
    left: 20px;
  }
}
.rewards-widget .rewards-widget-close-button .text {
  font: 700 12px/24px "Lato WF", sans-serif, Arial, sans-serif;
  text-transform: uppercase;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .rewards-widget-close-button .text {
    display: none;
  }
}
.rewards-widget .rewards-widget-close-button .close-icon {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .rewards-widget-close-button .close-icon {
    margin: 0;
    width: 15px;
    height: 15px;
  }
}
.rewards-widget .rewards-widget-close-button .text + .close-icon {
  margin-left: 10px;
}
.rewards-widget h3 {
  color: #000;
  font-size: 1.47vw;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 1088.4353741497px) {
  .rewards-widget h3 {
    font-size: 16px;
  }
}
@media (min-width: 1360.5442176871px) {
  .rewards-widget h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget h3 {
    font-size: 16px;
  }
}
.rewards-widget input[type=submit], .rewards-widget .signup-short-form-trigger {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 20px;
  overflow: visible;
  background-color: #000;
  color: #fff;
  font: 900 14px/50px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-text-align-last: auto;
       text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .rewards-widget input[type=submit], .rewards-widget .signup-short-form-trigger {
    height: 38px;
    line-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}
.rewards-widget input[type=submit]:hover, .rewards-widget input[type=submit]:active, .rewards-widget .signup-short-form-trigger:hover, .rewards-widget .signup-short-form-trigger:active {
  background-color: #bcaa90;
  color: #000;
}
.rewards-widget .signin-side, .rewards-widget .signup-side {
  width: 50%;
  padding-top: 10px;
  padding-bottom: 30px;
  max-width: 500px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-side, .rewards-widget .signup-side {
    width: 100%;
  }
}
.rewards-widget .heading-bar {
  display: none;
  position: relative;
  width: 100%;
  text-align: center;
  line-height: 0;
  font-size: 0;
  border-bottom: 1px solid #000;
  padding: 0 25px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .heading-bar {
    display: block;
  }
}
.rewards-widget .heading-bar .login-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.rewards-widget .signup-short-form-trigger {
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.rewards-widget .signin-form, .rewards-widget .signup-short-form {
  display: block;
  position: relative;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}
.rewards-widget .signin-form label, .rewards-widget .signup-short-form label {
  font: 300 12px/15px "Lato WF", sans-serif, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.rewards-widget .signin-form label em, .rewards-widget .signup-short-form label em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 7px;
}
.rewards-widget .signin-form p, .rewards-widget .signup-short-form p {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form p, .rewards-widget .signup-short-form p {
    margin-bottom: 20px;
  }
}
.rewards-widget .signin-form p.align-right, .rewards-widget .signup-short-form p.align-right {
  text-align: right;
}
.rewards-widget .signin-form p span.group label, .rewards-widget .signup-short-form p span.group label {
  display: block;
}
.rewards-widget .signin-form p span.group label input, .rewards-widget .signup-short-form p span.group label input {
  margin-right: 0.4em;
}
.rewards-widget .signin-form p span.group label, .rewards-widget .signin-form p .custom-checkbox, .rewards-widget .signin-form p .custom-radio, .rewards-widget .signup-short-form p span.group label, .rewards-widget .signup-short-form p .custom-checkbox, .rewards-widget .signup-short-form p .custom-radio {
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.rewards-widget .signin-form .form-builder-group, .rewards-widget .signup-short-form .form-builder-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group, .rewards-widget .signup-short-form .form-builder-group {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form .form-builder-group, .rewards-widget .signup-short-form .form-builder-group {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.rewards-widget .signin-form .form-builder-group > p, .rewards-widget .signup-short-form .form-builder-group > p {
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p, .rewards-widget .signup-short-form .form-builder-group > p {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form .form-builder-group > p, .rewards-widget .signup-short-form .form-builder-group > p {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.rewards-widget .signin-form .form-builder-group > p > *, .rewards-widget .signup-short-form .form-builder-group > p > * {
  width: 100%;
}
.rewards-widget .signin-form .form-builder-group > p.w-66, .rewards-widget .signup-short-form .form-builder-group > p.w-66 {
  width: calc(66.66% - 20px);
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-66, .rewards-widget .signup-short-form .form-builder-group > p.w-66 {
    width: calc(66.66% - 40px);
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget .signin-form .form-builder-group > p.w-66-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-66-on-desk {
    width: calc(66.66% - 20px);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-66-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-66-on-desk {
    width: calc(66.66% - 40px);
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form .form-builder-group > p.w-66-on-mob, .rewards-widget .signup-short-form .form-builder-group > p.w-66-on-mob {
    width: calc(66.66% - 10px);
  }
}
.rewards-widget .signin-form .form-builder-group > p.w-50, .rewards-widget .signup-short-form .form-builder-group > p.w-50 {
  width: calc(50% - 20px);
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-50, .rewards-widget .signup-short-form .form-builder-group > p.w-50 {
    width: calc(50% - 40px);
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget .signin-form .form-builder-group > p.w-50-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-50-on-desk {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-50-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-50-on-desk {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form .form-builder-group > p.w-50-on-mob, .rewards-widget .signup-short-form .form-builder-group > p.w-50-on-mob {
    width: calc(50% - 20px);
  }
}
.rewards-widget .signin-form .form-builder-group > p.w-33, .rewards-widget .signup-short-form .form-builder-group > p.w-33 {
  width: calc(33.33% - 20px);
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-33, .rewards-widget .signup-short-form .form-builder-group > p.w-33 {
    width: calc(33.33% - 40px);
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget .signin-form .form-builder-group > p.w-33-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-33-on-desk {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-33-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-33-on-desk {
    width: calc(33.33% - 40px);
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form .form-builder-group > p.w-33-on-mob, .rewards-widget .signup-short-form .form-builder-group > p.w-33-on-mob {
    width: calc(33.33% - 10px);
  }
}
.rewards-widget .signin-form .form-builder-group > p.w-20, .rewards-widget .signup-short-form .form-builder-group > p.w-20 {
  width: calc((33.33% - 40px) * 0.66 + 10px);
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-20, .rewards-widget .signup-short-form .form-builder-group > p.w-20 {
    width: calc((33.33% - 80px) * 0.66 + 20px);
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget .signin-form .form-builder-group > p.w-20-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-20-on-desk {
    width: calc((33.33% - 40px) * 0.66 + 10px);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-20-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-20-on-desk {
    width: calc((33.33% - 80px) * 0.66 + 20px);
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form .form-builder-group > p.w-20-on-mob, .rewards-widget .signup-short-form .form-builder-group > p.w-20-on-mob {
    width: calc((33.33% - 40px) * 0.66 + 10px);
  }
}
.rewards-widget .signin-form .form-builder-group > p.w-10, .rewards-widget .signup-short-form .form-builder-group > p.w-10 {
  width: calc((33.33% - 40px) * 0.33);
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-10, .rewards-widget .signup-short-form .form-builder-group > p.w-10 {
    width: calc((33.33% - 80px) * 0.33);
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget .signin-form .form-builder-group > p.w-10-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-10-on-desk {
    width: calc((33.33% - 40px) * 0.33);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1366px) {
  .rewards-widget .signin-form .form-builder-group > p.w-10-on-desk, .rewards-widget .signup-short-form .form-builder-group > p.w-10-on-desk {
    width: calc((33.33% - 80px) * 0.33);
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-form .form-builder-group > p.w-10-on-mob, .rewards-widget .signup-short-form .form-builder-group > p.w-10-on-mob {
    width: calc((33.33% - 40px) * 0.33);
  }
}
.rewards-widget .signin-form input[type=text], .rewards-widget .signin-form input[type=date], .rewards-widget .signin-form input[type=password], .rewards-widget .signin-form textarea, .rewards-widget .signin-form select, .rewards-widget .signin-form .input-overlay, .rewards-widget .signup-short-form input[type=text], .rewards-widget .signup-short-form input[type=date], .rewards-widget .signup-short-form input[type=password], .rewards-widget .signup-short-form textarea, .rewards-widget .signup-short-form select, .rewards-widget .signup-short-form .input-overlay {
  display: inline-block;
  color: inherit;
  border: 1px solid #D8D8D8;
  background: #F4F4F4;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
  letter-spacing: normal;
  padding: 0 15px;
  resize: none;
}
.rewards-widget .signin-form .input-overlay, .rewards-widget .signup-short-form .input-overlay {
  opacity: 0;
  margin-top: -40px;
}
.rewards-widget .signin-form .select-wrapper, .rewards-widget .signup-short-form .select-wrapper {
  width: 100%;
}
.rewards-widget .signin-form textarea, .rewards-widget .signup-short-form textarea {
  height: 120px;
  overflow: auto;
  line-height: 20px;
  padding: 15px;
}
.rewards-widget .signin-form input[type=checkbox],
.rewards-widget .signin-form input[type=radio], .rewards-widget .signup-short-form input[type=checkbox],
.rewards-widget .signup-short-form input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
.rewards-widget .signin-form input[type=radio], .rewards-widget .signup-short-form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .rewards-widget .signin-form input[type=radio], .rewards-widget .signup-short-form input[type=radio] {
    margin-top: 0;
  }
}
.rewards-widget .signin-form .group input[type=radio], .rewards-widget .signup-short-form .group input[type=radio] {
  margin-top: 0;
}
.rewards-widget .signin-form .controls p, .rewards-widget .signup-short-form .controls p {
  text-align: center;
}
.rewards-widget .signin-form input[type=submit], .rewards-widget .signin-form button[type=button], .rewards-widget .signup-short-form input[type=submit], .rewards-widget .signup-short-form button[type=button] {
  background-color: #bcaa90;
  color: #000;
}
.rewards-widget .signin-form input[type=submit]:hover, .rewards-widget .signin-form input[type=submit]:active, .rewards-widget .signin-form button[type=button]:hover, .rewards-widget .signin-form button[type=button]:active, .rewards-widget .signup-short-form input[type=submit]:hover, .rewards-widget .signup-short-form input[type=submit]:active, .rewards-widget .signup-short-form button[type=button]:hover, .rewards-widget .signup-short-form button[type=button]:active {
  background-color: #000;
  color: #fff;
}
.rewards-widget .signin-form input[type=submit].fit-fields-height, .rewards-widget .signin-form button[type=button].fit-fields-height, .rewards-widget .signup-short-form input[type=submit].fit-fields-height, .rewards-widget .signup-short-form button[type=button].fit-fields-height {
  height: 40px;
  line-height: 40px;
}
@media only screen and (min-width: 1024px) {
  .rewards-widget .signin-side {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signin-side {
    padding-right: 70px;
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-side .content h3 {
    display: none;
  }
}
.rewards-widget .signin-side .signin-form input[type=submit] {
  margin-top: 25px;
}
.rewards-widget .signin-side .signin-form.error input[type=text], .rewards-widget .signin-side .signin-form.error input[type=password] {
  border-color: #bc1e1d;
}
.rewards-widget .signin-side .signin-form.error:before {
  content: attr(data-error-msg);
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  background: #bc1e1d;
  color: #fff;
  font-size: 11px;
  z-index: 100;
}
.rewards-widget .signin-side .forgot-password-link {
  font: 400 11px/19px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.rewards-widget .signin-side .forgot-password-link:hover {
  text-decoration: underline;
}
.rewards-widget .signin-side .signup-short-form-trigger {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signin-side .signup-short-form-trigger {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget .signup-side {
    padding-left: 40px;
    border-left: 1px solid #000;
  }
}
@media only screen and (min-width: 1366px) {
  .rewards-widget .signup-side {
    padding-left: 70px;
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signup-side {
    display: none;
  }
}
.rewards-widget .signup-side .signup-short-form-close-button {
  display: none;
  display: none;
  position: relative;
  display: inline-block;
  max-width: 100%;
  min-height: 25px;
  color: #000;
  font: 700 11px/26px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1.5px;
  padding-left: 35px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signup-side .signup-short-form-close-button {
    position: absolute;
    left: 0;
    bottom: 15px;
  }
  .rewards-widget .signup-side .signup-short-form-close-button .text {
    display: none;
  }
}
.rewards-widget .signup-side .signup-short-form-close-button .circled-arrow-icon {
  display: inline-block;
  position: relative;
  pointer-events: none;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.rewards-widget .signup-side .content {
  max-width: 960px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signup-side .content h3 {
    display: none;
  }
}
.rewards-widget .signup-side .content p {
  margin-bottom: 20px;
}
.rewards-widget .signup-side .content ol, .rewards-widget .signup-side .content ul {
  list-style: disc;
  margin-left: 10px;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.rewards-widget .signup-side .signup-short-form {
  display: none;
}
.rewards-widget .signup-side .signup-short-form input[type=submit] {
  background-color: #000;
  color: #fff;
}
.rewards-widget .signup-side .signup-short-form input[type=submit]:hover, .rewards-widget .signup-side .signup-short-form input[type=submit]:active {
  background-color: #bcaa90;
  color: #000;
}
.rewards-widget .signup-side nav {
  margin-top: 40px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signup-side nav {
    margin-top: 20px;
  }
}
.rewards-widget .signup-side nav * {
  margin-right: 45px;
  margin-bottom: 10px;
}
.rewards-widget .signup-side nav *:last-child {
  margin-right: 0;
}
.rewards-widget .signup-side .learn-more-link {
  font: 700 16px/24px "Lato WF", sans-serif, Arial, sans-serif;
  color: #000;
  text-transform: capitalize;
}
.rewards-widget .signup-side .additional-info-2 {
  margin-top: 30px;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget .signup-side .additional-info-2 {
    margin-top: 20px;
  }
}
.rewards-widget.rw-signup-short-form-visible .signin-side {
  display: none;
}
.rewards-widget.rw-signup-short-form-visible .signup-side {
  border-left: none;
}
@media only screen and (min-width: 1024px) {
  .rewards-widget.rw-signup-short-form-visible .signup-side {
    display: flex;
    max-width: none;
    flex-grow: 1;
    padding-left: 0;
  }
  .rewards-widget.rw-signup-short-form-visible .signup-side .heading-bar {
    display: block;
    width: auto;
    border-right: 1px solid #000;
    border-bottom: none;
    padding: 0 40px 0 0;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1366px) {
  .rewards-widget.rw-signup-short-form-visible .signup-side .heading-bar {
    padding-right: 70px;
    margin-right: 70px;
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget.rw-signup-short-form-visible .signup-side .heading-bar .login-icon, .rewards-widget.rw-signup-short-form-visible .signup-side .heading-bar h3 {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-widget.rw-signup-short-form-visible .signup-side .heading-bar .signup-short-form-close-button {
    bottom: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-widget.rw-signup-short-form-visible .signup-side {
    display: block;
  }
}
.rewards-widget.rw-signup-short-form-visible .signup-side .signup-short-form, .rewards-widget.rw-signup-short-form-visible .signup-side .signup-short-form-close-button {
  display: block;
}
.rewards-widget.rw-signup-short-form-visible .signup-side .signup-short-form-trigger, .rewards-widget.rw-signup-short-form-visible .signup-side .additional-info-1, .rewards-widget.rw-signup-short-form-visible .signup-side .additional-info-2 {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .rewards-widget.rw-signup-short-form-visible .signup-side .additional-info-2 {
    display: block;
  }
}
.rewards-widget.rw-signup-short-form-visible .signup-side nav {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  html.hamburger-navigation-visible {
    overflow: hidden;
  }
}
#hamburger-navigation {
  display: none;
  position: fixed;
  right: -100%;
  top: 0;
  padding-top: 94px;
  height: 100%;
  width: 100%;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: right 350ms, visibility 350ms, opacity 350ms;
  z-index: 150;
}
@media only screen and (max-width: 1023px) {
  #hamburger-navigation {
    display: block;
  }
}
.hamburger-navigation-visible #hamburger-navigation {
  right: 0;
  visibility: visible;
  opacity: 1;
  transition: visibility 0ms, opacity 0ms;
}
#hamburger-navigation .inner-wrapper {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#hamburger-navigation .main-menu {
  position: relative;
}
#hamburger-navigation .main-menu .menu li {
  position: relative;
  line-height: 0;
}
#hamburger-navigation .main-menu .menu a, #hamburger-navigation .main-menu .menu .more-dropdown-trigger {
  display: block;
  padding: 0 20px;
  display: inline-block;
  font: 400 20px/24px "Lato WF", sans-serif, Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  vertical-align: middle;
}
#hamburger-navigation .main-menu .menu a:hover, #hamburger-navigation .main-menu .menu a.active, #hamburger-navigation .main-menu .menu .more-dropdown-trigger:hover, #hamburger-navigation .main-menu .menu .more-dropdown-trigger.active {
  text-decoration: underline;
}
#hamburger-navigation .main-menu .menu.level-1 > li {
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 350ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li {
  opacity: 1;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(1) {
  transition-delay: 60ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(2) {
  transition-delay: 120ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(3) {
  transition-delay: 180ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(4) {
  transition-delay: 240ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(5) {
  transition-delay: 300ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(6) {
  transition-delay: 360ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(7) {
  transition-delay: 420ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(8) {
  transition-delay: 480ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(9) {
  transition-delay: 540ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(10) {
  transition-delay: 600ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(11) {
  transition-delay: 660ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(12) {
  transition-delay: 720ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(13) {
  transition-delay: 780ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(14) {
  transition-delay: 840ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(15) {
  transition-delay: 900ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(16) {
  transition-delay: 960ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(17) {
  transition-delay: 1020ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(18) {
  transition-delay: 1080ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(19) {
  transition-delay: 1140ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(20) {
  transition-delay: 1200ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(21) {
  transition-delay: 1260ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(22) {
  transition-delay: 1320ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(23) {
  transition-delay: 1380ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(24) {
  transition-delay: 1440ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(25) {
  transition-delay: 1500ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(26) {
  transition-delay: 1560ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(27) {
  transition-delay: 1620ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(28) {
  transition-delay: 1680ms;
}
.hamburger-navigation-visible #hamburger-navigation .main-menu .menu.level-1 > li:nth-child(29) {
  transition-delay: 1740ms;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a, #hamburger-navigation .main-menu .menu.level-1 > li > .more-dropdown-trigger {
  max-width: 250px;
}
#hamburger-navigation .main-menu .menu.submenu {
  display: none;
  position: relative;
  overflow: hidden;
  max-height: 0;
  margin: 10px 0 0 10px;
  padding: 0;
  transition: max-height 222ms cubic-bezier(0, 1, 0, 1);
}
#hamburger-navigation .main-menu .menu.submenu li {
  margin-bottom: 10px;
}
#hamburger-navigation .main-menu .menu.submenu a, #hamburger-navigation .main-menu .menu.submenu .more-dropdown-trigger {
  font-size: 16px;
  font-weight: 300;
}
#hamburger-navigation .main-menu .menu.submenu.level-3 a {
  font-size: 14px;
}
#hamburger-navigation .main-menu .parent.expanded > .submenu {
  display: block;
  max-height: 800px;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 444ms;
}
#hamburger-navigation .main-menu .plus {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
#hamburger-navigation .main-menu .plus .horizontal, #hamburger-navigation .main-menu .plus .vertical {
  position: absolute;
  transition: all 333ms ease-in-out;
  transform: rotate(-90deg);
  background-color: #000;
  top: 0;
}
#hamburger-navigation .main-menu .plus .horizontal {
  width: 15px;
  height: 1px;
  margin-left: 4px;
  margin-top: 11px;
}
#hamburger-navigation .main-menu .plus .vertical {
  width: 1px;
  height: 15px;
  margin-left: 11px;
  margin-top: 4px;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .vertical, #hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: rotate(90deg);
  background: #000 !important;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#hamburger-navigation .hamburger-navigation-close-button {
  position: absolute;
  top: 20px;
  left: 20px;
}
#hamburger-navigation .hamburger-navigation-close-button .close-icon {
  width: 15px;
  height: 15px;
}

.selection-panels {
  flex-grow: 1;
  width: 100%;
  max-height: calc(100% - 70px);
  padding: 50px 0;
  overflow: hidden;
  background-color: #fff;
}
@media only screen and (max-width: 1023px) {
  .selection-panels {
    padding: 0;
    background-color: transparent;
  }
  .property-selection-panel-visible .selection-panels, .dates-selection-panel-visible .selection-panels, .code-selection-panel-visible .selection-panels {
    position: fixed;
    top: 0;
    bottom: 0;
    padding-top: 50px;
    left: 0;
    width: 100%;
    max-height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }
}
.full-booking-widget-visible .selection-panels {
  display: block;
}
.selection-panels .inner-wrapper {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.selection-panels .top-bar {
  display: none;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .selection-panels .top-bar {
    display: block;
  }
}
.selection-panels .top-bar .close-button {
  position: absolute;
  top: -5px;
  right: 0;
}
.selection-panels .top-bar .close-button .close-icon {
  width: 16px;
  height: 16px;
}
.selection-panels .top-bar h3 {
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 400;
}
.selection-panels .top-bar p {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
}

.property-selection-panel {
  overflow: hidden;
  height: 0;
  visibility: hidden;
}
@media only screen and (max-width: 1023px) {
  .property-selection-panel {
    background-color: #fff;
  }
}
.property-selection-panel-visible .property-selection-panel {
  height: auto;
  visibility: visible;
  transform: none;
  padding: 0 60px;
}
@media only screen and (min-width: 1366px) {
  .property-selection-panel-visible .property-selection-panel {
    padding: 0 80px;
  }
}
@media only screen and (max-width: 1023px) {
  .property-selection-panel-visible .property-selection-panel {
    height: 100%;
    padding: 20px;
    overflow-y: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .property-selection-panel .properties-search-widget {
    display: none;
  }
}
.property-selection-panel .properties-search-widget .search-field {
  margin: 0 auto;
}

.dates-selection-panel {
  overflow: hidden;
  height: 0;
  visibility: hidden;
}
@media only screen and (max-width: 1023px) {
  .dates-selection-panel {
    background-color: #fff;
    overflow-y: auto;
  }
}
.dates-selection-panel-visible .dates-selection-panel {
  height: auto;
  visibility: visible;
  transform: none;
  padding: 0 30px;
}
@media only screen and (max-width: 1023px) {
  .dates-selection-panel-visible .dates-selection-panel {
    height: 100%;
    padding: 20px;
  }
}

.booking-datepicker .ui-datepicker {
  display: flex !important;
  width: 100% !important;
  max-width: 1190px;
  margin: 0 auto;
  position: relative;
  justify-content: center;
  box-shadow: none;
  background: none;
  padding: 30px;
  border-bottom: 1px solid #D8D8D8;
}
@media only screen and (min-width: 1024px) {
  .booking-datepicker .ui-datepicker {
    padding: 30px 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker {
    display: block !important;
    padding: 10px 0;
    border-bottom: none;
  }
}
.booking-datepicker .ui-datepicker .ui-datepicker-group {
  width: 50%;
  padding: 0 4em;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-group {
    padding: 0 1em;
  }
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-group {
    padding: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-group + .ui-datepicker-group {
    border-left: 1px solid #D8D8D8;
  }
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-group + .ui-datepicker-group {
    margin-top: 30px;
  }
}
.booking-datepicker .ui-datepicker .ui-datepicker-calendar {
  width: 100%;
}
.booking-datepicker .ui-datepicker .ui-datepicker-calendar th, .booking-datepicker .ui-datepicker .ui-datepicker-calendar td {
  line-height: 44px;
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-calendar th, .booking-datepicker .ui-datepicker .ui-datepicker-calendar td {
    line-height: 40px;
  }
}
.booking-datepicker .ui-datepicker .ui-datepicker-header {
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 768px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-header {
    position: static;
  }
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-header {
    text-align: left;
    padding: 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .booking-datepicker .ui-datepicker .ui-datepicker-prev, .booking-datepicker .ui-datepicker .ui-datepicker-next {
    top: auto;
    bottom: calc((100% - 2.5em) / 2);
    width: 38px;
    height: 38px;
  }
  .booking-datepicker .ui-datepicker .ui-datepicker-prev:after, .booking-datepicker .ui-datepicker .ui-datepicker-next:after {
    left: 6px;
    top: 6px;
    width: 26px;
    height: 26px;
  }
}

.options-selection-panel {
  overflow: hidden;
  text-align: center;
  height: 0;
  visibility: hidden;
}
.options-selection-panel-visible .options-selection-panel {
  height: auto;
  visibility: visible;
  transform: none;
  padding: 0 30px;
}
.options-selection-panel h3 {
  font-size: 2.65vw;
  line-height: 1.22em;
  font-weight: 300;
}
@media (max-width: 905.6603773585px) {
  .options-selection-panel h3 {
    font-size: 24px;
  }
}
@media (min-width: 1358.4905660377px) {
  .options-selection-panel h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .options-selection-panel h3 {
    font-size: 24px;
    line-height: 1.25em;
  }
}
.options-selection-panel p {
  font-size: 1.76vw;
  line-height: 1.2em;
  font-weight: 300;
}
@media (max-width: 1022.7272727273px) {
  .options-selection-panel p {
    font-size: 18px;
  }
}
@media (min-width: 1363.6363636364px) {
  .options-selection-panel p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .options-selection-panel p {
    font-size: 18px;
  }
}

.options-selector h4 {
  font-size: 2vw;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .options-selector h4 {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .options-selector h4 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .options-selector h4 {
    font-size: 24px;
  }
}
.options-selector .option {
  position: relative;
}
.options-selector .option .notice {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 10px 0;
  font-size: 12px;
  line-height: 2;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.options-selection-panel .options-selector {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.options-selection-panel .options-selector .option + .option {
  border-left: 1px solid #D8D8D8;
}
.options-selection-panel .options-selector .option {
  flex-grow: 1;
  width: 100%;
  max-width: 325px;
  padding: 15px 15px 35px;
}
.options-selection-mobile-panel .options-selector .option + .option {
  border-top: 1px solid #D8D8D8;
}
.options-selection-mobile-panel .options-selector h4 {
  font-size: 16px;
  margin-bottom: 0;
}
.options-selection-mobile-panel .options-selector .option {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.options-selection-mobile-panel .options-selector .option .notice {
  padding: 0 15px;
  font-size: 11px;
}

.options-selection-mobile-panel {
  display: none;
  position: relative;
  padding: 15px;
  border: 2px solid #bcaa90;
}
.options-selection-mobile-panel-visible .options-selection-mobile-panel {
  display: block;
  margin-bottom: 15px;
}
.options-selection-mobile-panel .options-selection-mobile-panel-close-button {
  position: absolute;
  right: 15px;
  top: 12px;
}
.options-selection-mobile-panel .options-selection-mobile-panel-close-button .close-icon {
  width: 15px;
  height: 15px;
}
.options-selection-mobile-panel h3 {
  font: 700 13px/17px "Lato WF", sans-serif, Arial, sans-serif;
  text-transform: uppercase;
}

.amount-widget {
  text-align: center;
}
.amount-widget .number {
  display: inline-block;
  vertical-align: middle;
  font-size: 3vw;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 800px) {
  .amount-widget .number {
    font-size: 24px;
  }
}
@media (min-width: 1366.6666666667px) {
  .amount-widget .number {
    font-size: 41px;
  }
}
@media only screen and (max-width: 767px) {
  .amount-widget .number {
    font-size: 30px;
  }
}
.amount-widget button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 44px;
  text-indent: -9999px;
  overflow: hidden;
}
.amount-widget button:before, .amount-widget button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
}
.amount-widget button:before {
  width: 13px;
  height: 1px;
}
@media only screen and (min-width: 1366px) {
  .amount-widget button:before {
    width: 15px;
    height: 1px;
  }
}
.amount-widget button:after {
  width: 1px;
  height: 13px;
}
@media only screen and (min-width: 1366px) {
  .amount-widget button:after {
    width: 1px;
    height: 15px;
  }
}
.amount-widget button.minus:after {
  content: none;
}

.code-selection-panel {
  overflow: hidden;
  text-align: center;
  height: 0;
  visibility: hidden;
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel {
    background-color: #fff;
    text-align: left;
  }
}
.code-selection-panel-visible .code-selection-panel {
  height: auto;
  visibility: visible;
  transform: none;
  padding: 30px;
}
@media only screen and (min-width: 1024px) {
  .code-selection-panel-visible .code-selection-panel {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel-visible .code-selection-panel {
    padding: 20px;
    height: 100%;
  }
}
.code-selection-panel .code-selector .code-types {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel .code-selector .code-types {
    display: none;
  }
}
.code-selection-panel .code-selector .code-type-button {
  color: #000;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  transition: color 350ms;
}
.code-selection-panel .code-selector .code-type-button:hover {
  color: #000;
}
.code-selection-panel .code-selector .code-type-button.active {
  color: #000;
  text-decoration: underline;
}
.code-selection-panel .code-selector .code-inputs {
  margin-top: 30px;
  display: inline-block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 87.5ms, visibility 87.5ms;
}
.code-selection-panel .code-selector .code-inputs.visible {
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 87.5ms;
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel .code-selector .code-inputs {
    height: auto;
    opacity: 1;
    visibility: visible;
    display: block;
    margin-top: 50px;
  }
}
.code-selection-panel .code-selector .code-input-wrapper {
  display: none;
}
.code-selection-panel .code-selector .code-input-wrapper.visible {
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel .code-selector .code-input-wrapper.visible {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel .code-selector .code-input-wrapper {
    display: block;
    margin-bottom: 15px;
  }
}
.code-selection-panel .code-selector .code-label {
  display: block;
}
.code-selection-panel .code-selector .code-input {
  width: 210px;
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel .code-selector .code-input {
    width: 100%;
  }
}
.code-selection-panel .code-selector .clear-code-button {
  display: none;
  margin: 25px auto 0;
  color: #000;
  background: none;
}
.code-selection-panel .code-selector .clear-code-button:hover, .code-selection-panel .code-selector .clear-code-button.active {
  color: #3E7C9B;
  background: none;
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel .code-selector .clear-code-button {
    display: block;
  }
}
.code-selection-panel .code-selector .apply-code {
  height: 40px;
  line-height: 40px;
}
@media only screen and (max-width: 1023px) {
  .code-selection-panel .code-selector .apply-code {
    width: 100%;
    margin-top: 35px;
  }
}
.code-selection-panel .code-selector .apply-code-button-message {
  position: absolute;
  max-width: 200px;
  transform: translateY(-10px);
  padding: 5px 10px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
.code-selection-panel .code-selector .apply-code-button-message:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.properties-search-by-regions {
  position: relative;
  width: 100%;
  font: 300 16px/1 "Lato WF", sans-serif, Arial, sans-serif;
  color: #000;
  text-align: left;
}
* + .properties-search-by-regions {
  margin-top: 40px;
}
.properties-search-by-regions.loading {
  min-height: 200px;
}
.properties-search-by-regions .filter-bar {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.properties-search-by-regions .filter-bar .filter-bar-label {
  display: inline-block;
  margin-right: 10px;
  font-weight: 400;
}
.properties-search-by-regions .filter-bar .select-wrapper {
  margin: 5px;
}
.properties-search-by-regions .filter-bar .selected-filters {
  display: block;
}
@media only screen and (max-width: 767px) {
  .properties-search-by-regions .filter-bar .selected-filters {
    width: 100%;
  }
}
.properties-search-by-regions .filter-bar .selected-filter-entry {
  display: inline-block;
  margin: 5px;
  height: 44px;
  font: 400 11px/40px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1px;
  padding: 0 10px;
  text-align: left;
  border: 2px solid #bcaa90;
  transition: color 350ms, background-color 350ms;
}
@media only screen and (max-width: 767px) {
  .properties-search-by-regions .filter-bar .selected-filter-entry {
    max-width: calc(50% - 10px);
    height: 33px;
    line-height: 33px;
  }
}
.properties-search-by-regions .filter-bar .selected-filter-entry .remove-button {
  margin-left: 20px;
  vertical-align: middle;
  line-height: initial;
}
.properties-search-by-regions .filter-bar .selected-filter-entry .remove-button > span {
  display: inline-block;
}
.properties-search-by-regions .filter-bar .selected-filter-entry .remove-button .close-icon {
  width: 14px;
  height: 14px;
}
@media only screen and (max-width: 767px) {
  .properties-search-by-regions .filter-bar .selected-filter-entry .remove-button {
    margin-left: 10px;
  }
}
.properties-search-by-regions .filter-bar .clear-all-button {
  display: inline-block;
  font-weight: 400;
  margin-left: 20px;
  text-decoration: underline;
  color: #7E6B51;
}
@media only screen and (max-width: 767px) {
  .properties-search-by-regions .filter-bar .clear-all-button {
    margin: 5px;
  }
}
.properties-search-by-regions button {
  text-align: inherit;
  font: inherit;
}
.properties-search-by-regions .region-button:after, .properties-search-by-regions .city-button:after, .properties-search-by-regions .property-button:after {
  display: inline-block;
  content: attr(data-title);
  font-weight: 400;
  width: 0;
  max-height: 1em;
  overflow: hidden;
  visibility: hidden;
}
.properties-search-by-regions.expanded > .region-button, .properties-search-by-regions.expanded > .city-button, .properties-search-by-regions.expanded > .property-button {
  font-weight: 400;
}
.properties-search-by-regions h4 {
  font: 600 12px/15px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.properties-search-by-regions .info-trigger {
  position: relative;
  cursor: pointer;
  padding: 15px 10px 0 10px;
}
.properties-search-by-regions .info-trigger .link {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px 8px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: underline;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms;
}
.properties-search-by-regions .info-trigger .link:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.properties-search-by-regions .info-trigger .link:hover, .properties-search-by-regions .info-trigger .link:focus {
  text-decoration: none;
  opacity: 1;
  pointer-events: auto;
}
.properties-search-by-regions .info-trigger:hover .link, .properties-search-by-regions .info-trigger:focus .link {
  opacity: 1;
  pointer-events: auto;
}
.properties-search-by-regions .properties-count {
  display: inline-block;
  padding-left: 2px;
  font-weight: 300;
}
.properties-search-by-regions .world-parts-level {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .world-parts-level {
    display: block;
    max-width: 500px;
  }
}
.properties-search-by-regions .world-part-entry > .info-trigger {
  display: inline-block;
}
.properties-search-by-regions .collapse-world-part-button {
  display: none;
  position: absolute;
  left: -35px;
  top: 5px;
}
.properties-search-by-regions .collapse-world-part-button .svg-icon {
  width: 25px;
  height: 25px;
  transform: rotate(180deg);
  vertical-align: top;
}
.properties-search-by-regions .world-part-button {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  font-size: 1.8vw;
  line-height: 1.133em;
  font-weight: 300;
}
@media only screen and (min-width: 1366px) {
  .properties-search-by-regions .world-part-button {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .world-part-button {
    margin-bottom: 10px;
    padding: 0 0 0 35px;
  }
}
@media only screen and (max-width: 767px) {
  .properties-search-by-regions .world-part-button {
    max-width: calc(100% - 33px);
    font-size: 22px;
  }
}
.properties-search-by-regions .world-part-button .arrow-icon {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.properties-search-by-regions .world-part-entry {
  order: 1;
  flex-shrink: 0;
  width: calc(33.33% - 27px);
  position: relative;
  margin-left: 40px;
}
@media only screen and (min-width: 1366px) {
  .properties-search-by-regions .world-part-entry {
    width: calc(33.33% - 40px);
    margin-left: 60px;
  }
}
.properties-search-by-regions .world-part-entry:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .world-part-entry {
    display: inline-block;
    width: 100%;
    margin: 15px 0;
  }
}
.properties-search-by-regions .world-part-entry.expanded {
  order: 0;
  width: 100%;
}
.properties-search-by-regions .world-part-entry.expanded .world-part-button {
  width: auto;
  border-color: #000;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .world-part-entry.expanded .world-part-button {
    border: none;
  }
}
.properties-search-by-regions .world-part-entry.expanded .world-part-button .arrow-icon {
  transform: translateY(-50%) rotate(-90deg);
}
@media only screen and (min-width: 1024px) {
  .properties-search-by-regions .world-part-entry.expanded .collapse-world-part-button {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .world-part-entry.expanded .region-level {
    display: block;
  }
}
.properties-search-by-regions .region-level {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .region-level {
    display: none;
    padding-left: 35px;
  }
}
.properties-search-by-regions .region-button {
  flex-shrink: 0;
  align-self: flex-start;
  width: 100%;
  font-size: 18px;
  line-height: 1.222em;
  padding: 14px 25px 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.properties-search-by-regions .region-button:hover {
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .region-button {
    font-size: 14px;
    padding: 11px 25px 11px 0;
    border: none;
  }
}
.properties-search-by-regions .region-entry {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .region-entry {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
}
.properties-search-by-regions .region-entry > .info-trigger {
  align-self: flex-start;
  margin: 3px 0 0 -23px;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .region-entry > .info-trigger {
    position: absolute;
    margin: -3px 0 0 -23px;
  }
  .properties-search-by-regions .region-entry > .info-trigger .link {
    transform: translateX(0);
    left: auto;
    right: 0;
  }
  .properties-search-by-regions .region-entry > .info-trigger .link:before {
    transform: translateX(0);
    left: auto;
    right: 11px;
  }
}
.properties-search-by-regions .region-entry.expanded .region-button {
  flex-shrink: 0;
  width: calc(33.33% - 30px);
  font-weight: 400;
}
@media only screen and (min-width: 1366px) {
  .properties-search-by-regions .region-entry.expanded .region-button {
    width: calc(33.33% - 60px);
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .region-entry.expanded .region-button {
    width: 100%;
  }
}
.properties-search-by-regions .region-entry.expanded .cities-col {
  display: block;
}
.properties-search-by-regions .cities-col {
  display: none;
  flex-shrink: 0;
  width: 33.33%;
  min-height: 700px;
  position: relative;
  padding: 0 30px;
}
@media only screen and (min-width: 1366px) {
  .properties-search-by-regions .cities-col {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .cities-col {
    width: 100%;
    min-height: 0;
    padding: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .cities-col h4 {
    display: none;
  }
}
.properties-search-by-regions .city-button {
  padding: 12px 0;
}
.properties-search-by-regions .city-button:hover {
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .city-button {
    font-size: 12px;
    line-height: 1;
    position: relative;
    width: 100%;
    font-weight: 400;
    padding: 18px 25px 18px 0;
  }
}
.properties-search-by-regions .city-button .svg-icon {
  display: none;
  position: absolute;
  width: 7px;
  height: 4px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .city-button .svg-icon {
    display: block;
  }
}
.properties-search-by-regions .city-link {
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  color: #000;
  font: 400 11px/1 "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: opacity 350ms, visibility 0ms;
}
.properties-search-by-regions .city-link:hover, .properties-search-by-regions .city-link:focus {
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .city-link {
    font-size: 8px;
    margin-top: -5px;
  }
}
.properties-search-by-regions .city-entry {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .city-entry {
    display: block;
  }
}
.properties-search-by-regions .city-entry > .info-trigger {
  align-self: flex-start;
  margin: -2px 0 0 0;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .city-entry > .info-trigger {
    position: absolute;
    margin: 2px 0 0 -23px;
  }
  .properties-search-by-regions .city-entry > .info-trigger .link {
    transform: translateX(0);
    left: auto;
    right: 0;
  }
  .properties-search-by-regions .city-entry > .info-trigger .link:before {
    transform: translateX(0);
    left: auto;
    right: 11px;
  }
}
.properties-search-by-regions .city-entry.expanded .city-button {
  font-weight: 400;
}
.properties-search-by-regions .city-entry.expanded .city-button .svg-icon {
  transform: translateY(-50%) rotate(180deg);
}
.properties-search-by-regions .city-entry.expanded .city-link {
  visibility: visible;
  margin-bottom: 12px;
  opacity: 1;
  height: auto;
  pointer-events: auto;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .city-entry.expanded .city-link {
    margin-bottom: 5px;
  }
}
.properties-search-by-regions .city-entry.expanded .properties-col {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .city-entry.expanded .properties-col {
    border-bottom: 1px solid #000;
  }
}
.properties-search-by-regions .properties-col {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  padding-left: 30px;
  border-left: 1px solid #000;
}
@media only screen and (min-width: 1366px) {
  .properties-search-by-regions .properties-col {
    padding-left: 60px;
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .properties-col {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    padding-left: 0;
    border-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .properties-col h4 {
    display: none;
  }
}
.properties-search-by-regions .property-button {
  display: inline-block;
  color: inherit;
  width: 100%;
  padding: 12px 0;
  text-decoration: none;
}
.properties-search-by-regions .property-button:hover, .properties-search-by-regions .property-button:active {
  font-weight: 400;
}
.properties-search-by-regions .property-button:hover:before, .properties-search-by-regions .property-button:active:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #000;
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .property-button {
    font-size: 12px;
    line-height: 1;
    padding: 18px 13px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 1023px) {
  .properties-search-by-regions .property-button:hover {
    background-color: #bcaa90;
  }
}
.properties-search-by-regions .property-info {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  right: -20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  line-height: 0;
  align-items: flex-start;
  width: 275px;
  background-color: #fff;
  transition: opacity 350ms, right 350ms;
}
@media only screen and (max-width: 767px) {
  .properties-search-by-regions .property-info {
    display: none;
  }
}
.properties-search-by-regions .property-info .thumbnail {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.65);
}
.properties-search-by-regions .property-info .thumbnail:before {
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 46%;
}
.properties-search-by-regions .property-info .info {
  width: 100%;
  flex-shrink: 0;
  align-self: flex-start;
  padding: 14px 20px;
  border: 1px solid #3E7C9B;
  border-top: none;
}
.properties-search-by-regions .property-info .property-title {
  font-size: 1.76vw;
  line-height: 1em;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 909.0909090909px) {
  .properties-search-by-regions .property-info .property-title {
    font-size: 16px;
  }
}
@media (min-width: 1363.6363636364px) {
  .properties-search-by-regions .property-info .property-title {
    font-size: 24px;
  }
}
.properties-search-by-regions .property-info p {
  font-size: 14px;
  line-height: 1.5em;
}
.properties-search-by-regions .property-entry.property-info-visible .property-button {
  font-weight: 400;
}
.properties-search-by-regions .property-entry.property-info-visible .property-button:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #000;
}
.properties-search-by-regions .property-entry.property-info-visible .property-info {
  visibility: visible;
  opacity: 1;
  right: 0;
  z-index: 20;
}

@media only screen and (min-width: 1366px) {
  .specials-slideshow-section .content-wrapper, .specials-slideshow-section .slideshow-container {
    padding: 0 120px;
  }
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .slideshow-container {
    padding: 0;
  }
}
.specials-slideshow-section .slideshow-container.loading {
  min-height: 34vw;
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .slideshow-container.loading {
    min-height: 100vw;
  }
}
.specials-slideshow-section .slideshow-wrapper:not(.swiper-wrapper) {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .slideshow-button {
    top: 38vw;
  }
}
.specials-slideshow-section .slide {
  position: relative;
  width: calc(50% - 10px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .slide {
    width: 100%;
    height: 100%;
  }
}
.specials-slideshow-section .thumbnail {
  background-color: #EDEEEC;
  position: relative;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.specials-slideshow-section .thumbnail[loading=lazy]:not([data-loaded=true]):before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #3E7C9B;
  border-bottom-color: #3E7C9B;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.specials-slideshow-section .thumbnail:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 76%;
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .thumbnail:after {
    padding-bottom: 76vw;
  }
}
.specials-slideshow-section .content {
  position: relative;
  flex-grow: 1;
  min-height: 180px;
  margin: -150px 50px 0;
  padding: 30px 25px 15px;
  color: #000;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: normal;
  background-color: #fff;
  box-shadow: 0 2px 9px 0 #B6B6B6;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials-slideshow-section .content {
    margin: -120px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .content {
    margin: -70px 20px 0;
    padding: 25px 20px;
    text-align: center;
  }
}
.specials-slideshow-section .title {
  font-size: 1.9vw;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 1052.6315789474px) {
  .specials-slideshow-section .title {
    font-size: 20px;
  }
}
@media (min-width: 1368.4210526316px) {
  .specials-slideshow-section .title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .title {
    font-size: 20px;
  }
}
.specials-slideshow-section .sub-title {
  font-size: 1.32vw;
  line-height: 1.222em;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 5px;
}
@media (max-width: 1060.6060606061px) {
  .specials-slideshow-section .sub-title {
    font-size: 14px;
  }
}
@media (min-width: 1363.6363636364px) {
  .specials-slideshow-section .sub-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .sub-title {
    font-size: 14px;
  }
}
.specials-slideshow-section .description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .description {
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
  }
}
.specials-slideshow-section .buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .buttons {
    margin-top: 5px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .specials-slideshow-section .buttons > * {
    margin: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .read-more {
    order: 1;
  }
}
.specials-slideshow-section .price {
  display: inline-block;
  font: 300 24px/20px "Lato WF", sans-serif, Arial, sans-serif;
  color: inherit;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .specials-slideshow-section .price {
    width: 100%;
    flex-shrink: 0;
    text-decoration: underline;
  }
}

@media only screen and (min-width: 1366px) {
  .rooms-slideshow-section .content-wrapper, .rooms-slideshow-section .slideshow-container {
    padding: 0 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .rooms-slideshow-section .slideshow-container {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .slideshow-container {
    padding: 0;
  }
}
.rooms-slideshow-section .slideshow-container.loading {
  min-height: 500px;
}
.rooms-slideshow-section .slideshow-button {
  top: calc(50% - 25px);
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .slideshow-button {
    top: 24vw;
  }
}
.rooms-slideshow-section .slide {
  position: relative;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .slide {
    display: block;
  }
}
.rooms-slideshow-section .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .thumbnail {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .rooms-slideshow-section .thumbnail:before {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    padding-bottom: 48%;
  }
}
.rooms-slideshow-section .slide-content {
  position: relative;
  flex-grow: 1;
  max-width: 400px;
  margin: 34% 60px 0 0;
  box-shadow: 0 2px 9px 0 #B6B6B6;
  font-weight: 300;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .slide-content {
    max-width: none;
    margin: -20px 20px 0 20px;
  }
}
.rooms-slideshow-section .content {
  padding: 30px 30px 40px;
  color: #000;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: normal;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .content {
    padding: 25px 20px;
    text-align: center;
  }
}
.rooms-slideshow-section .title {
  font-size: 1.9vw;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 1052.6315789474px) {
  .rooms-slideshow-section .title {
    font-size: 20px;
  }
}
@media (min-width: 1368.4210526316px) {
  .rooms-slideshow-section .title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .title {
    font-size: 20px;
  }
}
.rooms-slideshow-section p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section p {
    font-size: 14px;
    font-weight: 400;
  }
}
.rooms-slideshow-section .buttons {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.rooms-slideshow-section .buttons .button {
  flex-grow: 1;
}
.rooms-slideshow-section .buttons .button + .button {
  border-left: 1px solid #fff;
}
.rooms-slideshow-section .price-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .price-range {
    display: block;
  }
}
.rooms-slideshow-section .price-range:not(:first-child) {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .price-range:not(:first-child) {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow-section .price-range .price {
    width: 100%;
  }
}

.corporate-events .content-wrapper {
  display: flex;
}
@media only screen and (min-width: 1024px) {
  .corporate-events .content-wrapper {
    padding: 0 40px 0 80px;
  }
}
@media only screen and (min-width: 1366px) {
  .corporate-events .content-wrapper {
    padding: 0 40px 0 120px;
  }
}
@media only screen and (max-width: 1023px) {
  .corporate-events .content-wrapper {
    display: block;
  }
}
.corporate-events .events-category-selector {
  max-width: 184px;
}
.corporate-events .section-content {
  width: 33%;
  flex-shrink: 0;
  padding: 40px 40px 0 0;
}
@media only screen and (min-width: 1366px) {
  .corporate-events .section-content {
    padding: 40px 65px 0 0;
  }
}
@media only screen and (max-width: 1023px) {
  .corporate-events .section-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.corporate-events .section-link {
  display: block;
  margin-top: 20px;
}
.corporate-events .events-container {
  width: 67%;
  height: 54vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .corporate-events .events-container {
    width: 100%;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .corporate-events .events-container {
    height: 70vw;
  }
}
@media only screen and (max-width: 767px) {
  .corporate-events .events-container {
    display: block;
    height: auto;
  }
}
.corporate-events .event-entry {
  position: relative;
  width: 50%;
  height: 50%;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .corporate-events .event-entry {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}
.corporate-events .event-entry .img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 20px;
  bottom: 25px;
  background-color: #000;
}
.corporate-events .event-entry .content {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: calc(100% - 20px);
  margin: 0 0 14px 0;
  padding: 15px 30px 35px 15px;
  background-color: #fff;
  box-shadow: 0 2px 9px 0 #B6B6B6;
  font-weight: 300;
  z-index: 1;
}
@media only screen and (min-width: 1366px) {
  .corporate-events .event-entry .content {
    max-width: 285px;
    margin-bottom: 14px;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .corporate-events .event-entry .content {
    margin-top: 70%;
    padding-right: 15px;
    max-width: calc(100% - 40px);
  }
}
.corporate-events .event-entry .title {
  font: 600 16px/20px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.corporate-events .event-entry .read-more {
  position: absolute;
  right: -40px;
  bottom: -14px;
}
@media only screen and (min-width: 1366px) {
  .corporate-events .event-entry .read-more {
    right: auto;
    left: calc(100% - 30px);
  }
}
@media only screen and (max-width: 767px) {
  .corporate-events .event-entry .read-more {
    right: -20px;
  }
}
@media only screen and (min-width: 768px) {
  .corporate-events .event-entry:nth-child(2) {
    width: 50%;
    height: calc(50% - 50px);
  }
  .corporate-events .event-entry:nth-child(2) .img-wrap {
    left: -20px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1366px) {
  .corporate-events .event-entry:nth-child(2) .img-wrap {
    left: -105px;
  }
}
@media only screen and (min-width: 768px) {
  .corporate-events .event-entry:nth-child(2) .content {
    max-width: calc(100% - 65px);
    margin: 0 0 14px 45px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1366px) {
  .corporate-events .event-entry:nth-child(2) .content {
    max-width: 285px;
    margin-bottom: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .corporate-events .event-entry:nth-child(3) {
    width: calc(50% - 40px);
    height: 76%;
    margin-top: 35px;
    margin-left: auto;
  }
  .corporate-events .event-entry:nth-child(3) .content {
    max-width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 768px) and (min-width: 1366px) {
  .corporate-events .event-entry:nth-child(3) .content {
    max-width: 255px;
  }
}

@media only screen and (min-width: 1366px) {
  .full-width-image-right-text-tile .content-wrapper {
    padding: 0 120px;
  }
}
@media only screen and (min-width: 1366px) {
  .full-width-image-right-text-tile .slideshow-container {
    padding: 0 70px;
  }
}
@media only screen and (max-width: 767px) {
  .full-width-image-right-text-tile .slideshow-container {
    padding: 0;
  }
}
.full-width-image-right-text-tile .slideshow-container.loading {
  min-height: 43vw;
  max-height: 700px;
}
@media only screen and (max-width: 767px) {
  .full-width-image-right-text-tile .slideshow-button {
    top: 21vw;
  }
}
.full-width-image-right-text-tile .slide {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .full-width-image-right-text-tile .slide {
    display: block;
  }
}
.full-width-image-right-text-tile .slide:before {
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 43%;
}
@media only screen and (max-width: 767px) {
  .full-width-image-right-text-tile .slide:before {
    display: none;
  }
}
.full-width-image-right-text-tile .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1024px) {
  .full-width-image-right-text-tile .thumbnail {
    right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .full-width-image-right-text-tile .thumbnail {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: 0;
    padding-bottom: 43vw;
  }
}
.full-width-image-right-text-tile .thumbnail:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.full-width-image-right-text-tile .slide > .title {
  display: none;
  position: relative;
  align-self: flex-end;
  width: 50%;
  max-width: calc(100% - 275px);
  margin: 0;
  padding: 20px;
  color: #fff;
  z-index: 1;
}
@media only screen and (min-width: 1366px) {
  .full-width-image-right-text-tile .slide > .title {
    display: none;
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .full-width-image-right-text-tile .slide > .title {
    display: none;
  }
}
.full-width-image-right-text-tile .content {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 325px;
  margin: 65px 6px 65px auto;
  padding: 50px 30px 30px;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 #B6B6B6;
  text-align: center;
  font-weight: 300;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .full-width-image-right-text-tile .content {
    margin: 20px 20px 20px auto;
    padding: 40px 20px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .full-width-image-right-text-tile .content {
    display: inline-block;
    width: auto;
    max-width: none;
    margin: -50px 20px 6px;
    padding: 15px 15px 25px;
    font-size: 14px;
  }
}
.full-width-image-right-text-tile .content .title {
  display: block;
  width: 100%;
  font: inherit;
  font-weight: 400;
}
.full-width-image-right-text-tile .top-text {
  width: 100%;
  position: relative;
  padding-top: 35px;
}
.full-width-image-right-text-tile .top-text:before {
  content: "“";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0.25;
  font-size: 3.5em;
  font-family: none;
}
.full-width-image-right-text-tile .horizontal-divider {
  max-width: 65px;
}
.full-width-image-right-text-tile .top-bottom {
  width: 100%;
}

@media only screen and (min-width: 1366px) {
  .image-with-text-tile .content-wrapper, .image-with-text-tile .slideshow-container {
    padding: 0 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .image-with-text-tile .slideshow-container {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .slideshow-container {
    padding: 0;
  }
}
.image-with-text-tile .slideshow-button {
  top: calc(50% - 25px);
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .slideshow-button {
    top: 24vw;
  }
}
.image-with-text-tile .slide {
  position: relative;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .slide {
    display: block;
  }
}
.image-with-text-tile .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .thumbnail {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .image-with-text-tile .thumbnail:before {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    padding-bottom: 48%;
  }
}
.image-with-text-tile .slide-content {
  position: relative;
  flex-grow: 1;
  max-width: 400px;
  margin: 34% 60px 0 0;
  box-shadow: 0 2px 9px 0 #B6B6B6;
  font-weight: 300;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .slide-content {
    max-width: none;
    margin: -20px 20px 0 20px;
  }
}
.image-with-text-tile .content {
  padding: 30px 30px 40px;
  color: #000;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: normal;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .content {
    padding: 25px 20px;
    text-align: center;
  }
}
.image-with-text-tile .title {
  font-size: 1.9vw;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 1052.6315789474px) {
  .image-with-text-tile .title {
    font-size: 20px;
  }
}
@media (min-width: 1368.4210526316px) {
  .image-with-text-tile .title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .title {
    font-size: 20px;
  }
}
.image-with-text-tile p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile p {
    font-size: 14px;
    font-weight: 400;
  }
}
.image-with-text-tile .buttons {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .image-with-text-tile .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.image-with-text-tile .buttons .button {
  flex-grow: 1;
  max-width: 50%;
}
.image-with-text-tile .buttons .button + .button {
  border-left: 1px solid #fff;
}

.inline-tabs {
  overflow: hidden;
}
.inline-tabs .tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.inline-tabs .tabs .tab-trigger {
  margin-left: 1px;
  background: #EDEEEC;
  color: #000;
}
.inline-tabs .tabs .tab-trigger:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tabs .tab-trigger {
    margin-bottom: 1px;
  }
}
.inline-tabs .tabs .tab-trigger:hover, .inline-tabs .tabs .tab-trigger.active {
  background: #3E7C9B;
  color: #fff;
}
.inline-tabs .tabs-content {
  padding: 50px 0;
  background: #EDEEEC;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tabs-content {
    padding: 20px 0;
  }
}
.inline-tabs .tabs-content > .center-column {
  max-width: 1334px;
}
.inline-tabs .tab-content {
  max-width: 1024px;
  height: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms;
}
.inline-tabs .tab-content.visible {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.inline-tabs .tab-content .slideshow {
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slideshow {
    overflow: hidden;
  }
}
.inline-tabs .tab-content .slide {
  padding: 0 50px;
}
.inline-tabs .tab-content .slide.swiper-slide {
  opacity: 0.4;
  transition: opacity 0.8s ease-in-out;
}
.inline-tabs .tab-content .slide.swiper-slide-active {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slide {
    padding: 0;
  }
}
.inline-tabs .tab-content .slide .slide-headings {
  max-width: calc(100% - 70px);
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .inline-tabs .tab-content .slide .slide-headings {
    max-width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slide .slide-headings {
    max-width: calc(100% - 50px);
  }
}
.inline-tabs .tab-content .slide .slide-headings h2, .inline-tabs .tab-content .slide .slide-headings h3 {
  color: #000;
  line-height: 1.2em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slide .slide-headings h2, .inline-tabs .tab-content .slide .slide-headings h3 {
    white-space: normal;
    overflow: visible;
  }
}
.inline-tabs .tab-content .slide .slide-headings h2 {
  font-size: 2.05vw;
  font-weight: 400;
}
@media (max-width: 780.487804878px) {
  .inline-tabs .tab-content .slide .slide-headings h2 {
    font-size: 16px;
  }
}
@media (min-width: 1365.8536585366px) {
  .inline-tabs .tab-content .slide .slide-headings h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slide .slide-headings h2 {
    font-size: 16px;
  }
}
.inline-tabs .tab-content .slide .slide-headings h3 {
  font-size: 1.7vw;
  font-weight: 300;
}
@media (max-width: 823.5294117647px) {
  .inline-tabs .tab-content .slide .slide-headings h3 {
    font-size: 14px;
  }
}
@media (min-width: 1294.1176470588px) {
  .inline-tabs .tab-content .slide .slide-headings h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slide .slide-headings h3 {
    font-size: 14px;
  }
}
.inline-tabs .tab-content .slide .slide-headings + .slide-content {
  margin-top: 20px;
}
.inline-tabs .tab-content .slide .slide-content {
  display: flex;
  flex-wrap: wrap;
}
.inline-tabs .tab-content .slide .image-thumb {
  position: relative;
  width: 100%;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.inline-tabs .tab-content .slide .image-thumb:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 56.25%;
}
.inline-tabs .tab-content .slide .description {
  display: flex;
  align-items: center;
  max-width: 80%;
  margin: -50px -50px 0 auto;
  padding: 25px 30px;
  background: #fff;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slide .description {
    flex-wrap: wrap;
    max-width: calc(100% - 20px);
    padding: 15px 20px;
    margin: -20px 0 0 auto;
  }
  .inline-tabs .tab-content .slide .description > p {
    width: 100%;
  }
}
.inline-tabs .tab-content .slide .description .button {
  min-width: 160px;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .tab-content .slide .description .button {
    min-width: 0;
    margin-left: auto;
    margin-top: 20px;
  }
}
.inline-tabs .slideshow-button {
  top: 0;
  transform: translateY(0);
}
.inline-tabs .slideshow-button.previous {
  transform: translateY(0) rotate(180deg);
  left: auto;
  right: 100px;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .slideshow-button.previous {
    right: 40px;
  }
}
.inline-tabs .slideshow-button.next {
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .inline-tabs .slideshow-button.next {
    right: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .full-width-image-bottom-text .content-wrapper {
    padding: 0 120px;
  }
}
.full-width-image-bottom-text .slideshow-button {
  top: 20vw;
}
@media only screen and (max-width: 767px) {
  .full-width-image-bottom-text .slideshow-button {
    top: 37vw;
  }
}
.full-width-image-bottom-text .slideshow-pagination {
  position: absolute;
  top: calc(40vw - 90px);
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .full-width-image-bottom-text .slideshow-pagination {
    top: calc(74vw - 50px);
  }
}
.full-width-image-bottom-text .slide {
  width: 100%;
  flex-shrink: 0;
  height: auto;
}
.full-width-image-bottom-text .slide-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  padding-bottom: 40vw;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .full-width-image-bottom-text .slide-thumbnail {
    padding-bottom: 74vw;
  }
}
.full-width-image-bottom-text .slide-content {
  position: relative;
  width: 65%;
  max-width: 885px;
  margin: calc(40vw - 60px) 0 25px 0;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #E2F0F3;
  font-weight: 300;
  z-index: 1;
}
@media only screen and (min-width: 1366px) {
  .full-width-image-bottom-text .slide-content {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .full-width-image-bottom-text .slide-content {
    width: auto;
    margin: calc(74vw - 20px) 20px 20px 20px;
  }
}
.full-width-image-bottom-text .slide-title {
  margin-bottom: 0;
}
.full-width-image-bottom-text .slide-button {
  position: absolute;
  right: 20px;
  bottom: -25px;
}

@media only screen and (min-width: 1366px) {
  .image-with-text-on-the-right > .center-column {
    padding: 0 100px;
  }
}
.image-with-text-on-the-right .slideshow-container.loading {
  min-height: 500px;
}
.image-with-text-on-the-right .slideshow-container .slide {
  height: auto;
  flex-shrink: 0;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .image-with-text-on-the-right .slideshow-container .slide {
    display: block;
  }
}
.image-with-text-on-the-right .slideshow-container .slide-content {
  width: 31%;
  padding: 30px 0 0 40px;
  font-weight: 300;
}
@media only screen and (min-width: 1366px) {
  .image-with-text-on-the-right .slideshow-container .slide-content {
    padding: 30px 0 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .image-with-text-on-the-right .slideshow-container .slide-content {
    width: 44%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .image-with-text-on-the-right .slideshow-container .slide-content {
    width: 100%;
    padding: 10px 0;
  }
}
.image-with-text-on-the-right .slideshow-container .slide-content .section-title {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1366px) {
  .image-with-text-on-the-right .slideshow-container .slide-content .section-title {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 900px) {
  .image-with-text-on-the-right .slideshow-container .slide-content .section-title {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .image-with-text-on-the-right .slideshow-container .slide-content .section-title {
    margin-bottom: 20px;
  }
}
.image-with-text-on-the-right .slideshow-container .slide-content .slide-title {
  text-transform: none;
}
.image-with-text-on-the-right .slideshow-container .slide-content .slide-title + h3, .image-with-text-on-the-right .slideshow-container .slide-content .slide-title + h4 {
  text-transform: uppercase;
  margin-top: -10px;
}
.image-with-text-on-the-right .slideshow-container .slide-thumbnail {
  width: 69%;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1024px) and (max-height: 900px) {
  .image-with-text-on-the-right .slideshow-container .slide-thumbnail {
    width: 55%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .image-with-text-on-the-right .slideshow-container .slide-thumbnail {
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .image-with-text-on-the-right .slideshow-container .slide-thumbnail {
    width: 100%;
  }
}
.image-with-text-on-the-right .slideshow-container .slide-thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
@media only screen and (min-width: 1024px) and (max-height: 900px) {
  .image-with-text-on-the-right .slideshow-container .slide-thumbnail:before {
    padding-bottom: 40vh;
  }
}
.image-with-text-on-the-right .navigation-slideshow-container .navigation-slide {
  height: auto;
  flex-shrink: 0;
  transition: opacity 350ms;
  cursor: pointer;
}
.image-with-text-on-the-right .navigation-slideshow-container .navigation-slide.swiper-slide:not(.swiper-slide-thumb-active) {
  opacity: 0.5;
}
.image-with-text-on-the-right .navigation-slideshow-container .slide-title {
  font: 700 16px/20px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.image-with-text-on-the-right .navigation-slideshow-container .slide-title:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) and (max-height: 900px) {
  .image-with-text-on-the-right .navigation-slideshow-container .slide-title:not(:last-child) {
    margin-bottom: 5px;
  }
}
.image-with-text-on-the-right .navigation-slideshow-container .slide-thumbnail {
  margin-top: 10px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1024px) and (max-height: 900px) {
  .image-with-text-on-the-right .navigation-slideshow-container .slide-thumbnail {
    margin-top: 5px;
  }
}
.image-with-text-on-the-right .navigation-slideshow-container .slide-thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 52%;
}
@media only screen and (min-width: 1024px) and (max-height: 900px) {
  .image-with-text-on-the-right .navigation-slideshow-container .slide-thumbnail:before {
    padding-bottom: 15vh;
  }
}
@media only screen and (max-width: 767px) {
  .image-with-text-on-the-right .slideshow-button {
    top: calc(30vw - 20px);
  }
  .image-with-text-on-the-right .slideshow-button.previous {
    left: 20px;
  }
  .image-with-text-on-the-right .slideshow-button.next {
    right: 20px;
  }
}

@media only screen and (min-width: 1366px) {
  .text-with-thumb-slideshow .content-wrapper {
    padding: 0 120px;
  }
}
.text-with-thumb-slideshow .slideshow-container {
  display: flex;
}
@media only screen and (min-width: 1366px) {
  .text-with-thumb-slideshow .slideshow-container {
    padding: 0 120px;
  }
}
@media only screen and (max-width: 767px) {
  .text-with-thumb-slideshow .slideshow-container {
    padding: 0;
    display: block;
  }
}
.text-with-thumb-slideshow .slideshow-pagination {
  text-align: left;
  margin-top: 50px;
  white-space: normal;
}
@media only screen and (max-width: 767px) {
  .text-with-thumb-slideshow .slideshow-pagination {
    text-align: center;
  }
  .text-with-thumb-slideshow .slideshow-pagination .swiper-pagination-text {
    margin: 5px;
    font-size: 10px;
  }
}
.text-with-thumb-slideshow .left-side {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .text-with-thumb-slideshow .left-side {
    width: 100%;
  }
}
.text-with-thumb-slideshow .right-side {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .text-with-thumb-slideshow .right-side {
    width: 100%;
  }
}
.text-with-thumb-slideshow .right-side .slideshow {
  height: 100%;
}
.text-with-thumb-slideshow .slide {
  height: auto;
  flex-shrink: 0;
}
.text-with-thumb-slideshow .slide-content {
  padding: 60px 80px 60px 0;
  font-weight: 300;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .text-with-thumb-slideshow .slide-content {
    padding: 40px 40px 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .text-with-thumb-slideshow .slide-content {
    padding: 20px;
  }
}
.text-with-thumb-slideshow .slide-content .title {
  text-transform: uppercase;
}
.text-with-thumb-slideshow .slide-content .sub-title {
  font-size: 1.6vw;
  text-transform: none;
}
@media (max-width: 1125px) {
  .text-with-thumb-slideshow .slide-content .sub-title {
    font-size: 18px;
  }
}
@media (min-width: 1375px) {
  .text-with-thumb-slideshow .slide-content .sub-title {
    font-size: 22px;
  }
}
.text-with-thumb-slideshow .slide-content .title + .sub-title {
  margin-top: -10px;
}
.text-with-thumb-slideshow .slide-thumbnail {
  height: 100%;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.text-with-thumb-slideshow .slide-thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 70%;
}

.experiences .content-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .experiences .content-wrapper {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .experiences .content-wrapper {
    display: block;
  }
}
.experiences .section-content {
  order: 1;
  padding-left: 30px;
  max-width: 32%;
  font-weight: 300;
}
@media only screen and (min-width: 1366px) {
  .experiences .section-content {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .experiences .section-content {
    padding-left: 0;
    max-width: none;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .experiences .section-content {
    padding-left: 0;
    max-width: none;
  }
}
.experiences .images {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .experiences .images {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .experiences .images {
    display: block;
  }
}
.experiences .images .col:nth-child(1) {
  width: calc(55.5% - 5px);
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .experiences .images .col:nth-child(1) {
    width: 100%;
  }
}
.experiences .images .col:nth-child(2) {
  width: calc(44.5% - 5px);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .experiences .images .col:nth-child(2) {
    width: 100%;
  }
}
.experiences .images .img-tile + .img-tile {
  margin-top: 20px;
}
.experiences .images .img-tile {
  display: inline-block;
  position: relative;
  font-size: 0;
  line-height: 0;
  padding: 0 20px 25px 0;
}
@media only screen and (max-width: 767px) {
  .experiences .images .img-tile {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .experiences .images .img-tile .img-wrap {
    height: 0;
    padding-bottom: 65%;
  }
}
.experiences .images .img-tile .img-wrap img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 767px) {
  .experiences .images .img-tile .img-wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    z-index: 0;
  }
}
.experiences .images .img-tile .button {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .experiences .images .img-tile .button {
    right: -10px;
    bottom: -10px;
  }
}
html:not(.property) .experiences .images .img-tile .button {
  background-color: #D2ECDB;
  color: #fff;
}
html:not(.property) .experiences .images .img-tile .button svg {
  fill: #fff;
}
html:not(.property) .experiences .images .img-tile .button:hover, html:not(.property) .experiences .images .img-tile .button:active {
  background-color: #000;
}
.experiences .images .col:nth-child(1) .img-tile:nth-child(1) {
  padding: 0 40px 25px 0;
  max-width: 76.5%;
}
@media only screen and (max-width: 767px) {
  .experiences .images .col:nth-child(1) .img-tile:nth-child(1) {
    max-width: none;
    padding: 0;
  }
}
.experiences .images .col:nth-child(1) .img-tile:nth-child(1) .button {
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .experiences .images .col:nth-child(1) .img-tile:nth-child(1) .button {
    right: -10px;
  }
}

.property-cards-slideshow-section {
  overflow: hidden;
}
@media only screen and (min-width: 1366px) {
  .property-cards-slideshow-section .content-wrapper {
    padding: 0 120px;
  }
}
.property-cards-slideshow-section .slideshow-container {
  padding: 0 60px;
}
@media only screen and (min-width: 1024px) {
  .property-cards-slideshow-section .slideshow-container {
    padding: 0 140px;
  }
}
@media only screen and (min-width: 1366px) {
  .property-cards-slideshow-section .slideshow-container {
    padding: 0 180px;
  }
}
@media only screen and (max-width: 767px) {
  .property-cards-slideshow-section .slideshow-container {
    padding: 0 50px;
  }
}
.property-cards-slideshow-section .slideshow-container.loading {
  min-height: 500px;
}
.property-cards-slideshow-section .slideshow {
  overflow: visible;
}
.property-cards-slideshow-section .slideshow-wrapper:not(.swiper-wrapper) {
  justify-content: center;
}
.property-cards-slideshow-section .slide {
  width: calc(33.33% - 20px);
  flex-shrink: 0;
  height: auto;
  transition: opacity 350ms;
}
.property-cards-slideshow-section .slide.swiper-slide:not(.swiper-slide-visible) {
  opacity: 0.2;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .property-cards-slideshow-section .slide {
    width: calc(50% - 20px);
  }
}
.property-cards-slideshow-section .slide:not(.swiper-slide) + .slide:not(.swiper-slide) {
  margin-left: 20px;
}

.info-cards-slideshow-section {
  overflow: hidden;
}
@media only screen and (min-width: 1366px) {
  .info-cards-slideshow-section .content-wrapper {
    padding: 0 120px;
  }
}
.info-cards-slideshow-section .slideshow-container {
  padding: 0 60px;
}
@media only screen and (min-width: 1024px) {
  .info-cards-slideshow-section .slideshow-container {
    padding: 0 140px;
  }
}
@media only screen and (min-width: 1366px) {
  .info-cards-slideshow-section .slideshow-container {
    padding: 0 180px;
  }
}
@media only screen and (max-width: 767px) {
  .info-cards-slideshow-section .slideshow-container {
    padding: 0 50px;
  }
}
.info-cards-slideshow-section .slideshow-container.loading {
  min-height: 500px;
}
.info-cards-slideshow-section .slideshow {
  overflow: visible;
}
.info-cards-slideshow-section .slideshow-wrapper:not(.swiper-wrapper) {
  justify-content: center;
}
.info-cards-slideshow-section .slide {
  width: calc(33.33% - 20px);
  flex-shrink: 0;
  height: auto;
  transition: opacity 350ms;
}
.info-cards-slideshow-section .slide.swiper-slide:not(.swiper-slide-visible) {
  opacity: 0.2;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .info-cards-slideshow-section .slide {
    width: calc(50% - 20px);
  }
}
.info-cards-slideshow-section .slide:not(.swiper-slide) + .slide:not(.swiper-slide) {
  margin-left: 20px;
}

@media only screen and (min-width: 1024px) {
  .properties-by-categories-section .properties-by-categories-wrapper {
    padding: 0 120px;
  }
}
@media only screen and (min-width: 1366px) {
  .properties-by-categories-section .properties-by-categories-wrapper {
    padding: 0 175px;
  }
}

.events-slideshow-section {
  overflow: hidden;
}
@media only screen and (min-width: 1366px) {
  .events-slideshow-section .content-wrapper {
    padding: 0 120px;
  }
}
.events-slideshow-section .slideshow-container {
  padding: 0 60px;
}
@media only screen and (min-width: 1024px) {
  .events-slideshow-section .slideshow-container {
    padding: 0 140px;
  }
}
@media only screen and (min-width: 1366px) {
  .events-slideshow-section .slideshow-container {
    padding: 0 180px;
  }
}
@media only screen and (max-width: 767px) {
  .events-slideshow-section .slideshow-container {
    padding: 0 50px;
  }
}
.events-slideshow-section .slideshow {
  overflow: visible;
}
.events-slideshow-section .slideshow-wrapper:not(.swiper-wrapper) {
  justify-content: space-between;
}
.events-slideshow-section .slide {
  width: calc(33.33% - 20px);
  flex-shrink: 0;
  height: auto;
  transition: opacity 350ms;
  background-color: #E2F0F3;
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  line-height: 0;
  align-items: flex-start;
}
.events-slideshow-section .slide.swiper-slide:not(.swiper-slide-visible) {
  opacity: 0.2;
}
.events-slideshow-section .slide .thumbnail {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.events-slideshow-section .slide .thumbnail:before {
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%;
}
.events-slideshow-section .slide .thumbnail time {
  width: 100%;
  flex-shrink: 0;
  padding: 14px 16px;
  color: #fff;
  font-size: 1.76vw;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 1136.3636363636px) {
  .events-slideshow-section .slide .thumbnail time {
    font-size: 20px;
  }
}
@media (min-width: 1363.6363636364px) {
  .events-slideshow-section .slide .thumbnail time {
    font-size: 24px;
  }
}
.events-slideshow-section .slide .thumbnail time a {
  color: inherit;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .events-slideshow-section .slide .thumbnail time {
    font-size: 20px;
    padding: 11px 15px;
  }
}
.events-slideshow-section .slide .info {
  width: 100%;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: auto;
  padding: 25px 16px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .events-slideshow-section .slide .info {
    padding: 15px;
  }
}
.events-slideshow-section .slide .event-title {
  font-size: 1.18vw;
  line-height: 1.25em;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1271.186440678px) {
  .events-slideshow-section .slide .event-title {
    font-size: 15px;
  }
}
@media (min-width: 1355.9322033898px) {
  .events-slideshow-section .slide .event-title {
    font-size: 16px;
  }
}
.events-slideshow-section .slide .event-title:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .events-slideshow-section .slide .event-title {
    font-size: 15px;
  }
}
.events-slideshow-section .slide .event-descr {
  font-size: 16px;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  .events-slideshow-section .slide .event-descr {
    font-size: 14px;
  }
}
.events-slideshow-section .slide .stick-to-bottom-button {
  width: 100%;
  flex-shrink: 0;
  align-self: flex-end;
}
.events-slideshow-section .slide:not(.swiper-slide) + .slide:not(.swiper-slide) {
  margin-left: 20px;
}

@media only screen and (min-width: 1366px) {
  .three-tiles-in-row .content-wrapper.center-column {
    padding: 0 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .three-tiles-in-row .tiles-container.center-column {
    padding: 0 60px;
  }
}
.three-tiles-in-row .tiles-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -20px -10px;
}
@media only screen and (max-width: 767px) {
  .three-tiles-in-row .tiles-wrapper {
    margin: 0;
  }
}
.three-tiles-in-row .tile {
  width: calc(33.33% - 20px);
  margin: 20px 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .three-tiles-in-row .tile {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .three-tiles-in-row .tile {
    width: 100%;
    margin: 10px 0;
  }
}
.three-tiles-in-row .tile .thumbnail {
  position: relative;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.three-tiles-in-row .tile .thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 80%;
}
.three-tiles-in-row .tile .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 180px;
  margin: -90px 20px 0 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 #B6B6B6;
  font-weight: 300;
  z-index: 1;
}
.three-tiles-in-row .tile .title {
  font-size: 1.76vw;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 1022.7272727273px) {
  .three-tiles-in-row .tile .title {
    font-size: 18px;
  }
}
@media (min-width: 1363.6363636364px) {
  .three-tiles-in-row .tile .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .three-tiles-in-row .tile .title {
    font-size: 18px;
    line-height: 1.1em;
  }
}
.three-tiles-in-row .tile .link {
  margin-top: auto;
}

.icons-list {
  text-align: center;
  font-weight: 300;
  overflow: hidden;
}
.icons-list .slideshow-container.center-column {
  padding: 0 60px;
}
@media only screen and (min-width: 1024px) {
  .icons-list .slideshow-container.center-column {
    padding: 0 155px;
  }
}
@media only screen and (max-width: 767px) {
  .icons-list .slideshow-container.center-column {
    padding: 0 50px;
  }
}
.icons-list .slideshow-container.loading {
  min-height: 300px;
}
.icons-list .slideshow-container .slideshow {
  overflow: visible;
}
.icons-list .slide {
  flex-shrink: 0;
  width: calc((100% - 30px) * 0.25);
  height: auto;
  padding: 10px;
  transition: opacity 350ms;
}
.icons-list .slide.swiper-slide:not(.swiper-slide-visible) {
  opacity: 0.2;
}
.icons-list .slide .content-wrapper {
  padding: 20px;
  box-shadow: 0 2px 9px 0 transparent;
  transition: box-shadow 350ms;
}
@media only screen and (min-width: 1366px) {
  .icons-list .slide .content-wrapper {
    padding: 30px;
  }
}
.icons-list .slide .content-wrapper > a {
  text-decoration: none;
  color: inherit;
}
.icons-list .slide .img-wrap {
  width: 62%;
  max-width: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #EDEEEC;
  transition: background-color 350ms;
}
.icons-list .slide .img-wrap:not(:last-child) {
  margin-bottom: 15px;
}
.icons-list .slide .img-wrap img {
  display: block;
  width: 100%;
}
.icons-list .slide h3 {
  font: 700 16px/20px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.icons-list .slide h3:not(:last-child) {
  margin-bottom: 15px;
}
.icons-list .slide .slide-text {
  line-height: 1.25em;
  opacity: 0;
  transition: opacity 350ms;
}
.icons-list .slide:hover .content-wrapper {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.5);
}
.icons-list .slide:hover .img-wrap {
  background-color: #EBF1F5;
}
.icons-list .slide:hover .slide-text {
  opacity: 1;
}
.icons-list .slide:not(.swiper-slide) + .slide:not(.swiper-slide) {
  margin-left: 10px;
}
.icons-list .slideshow-pagination {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .icons-list .slideshow-pagination {
    margin-bottom: 0;
  }
}

.contacts-section {
  position: relative;
  background-color: #FAFAFA;
}
@media only screen and (min-width: 1366px) {
  .contacts-section .content-wrapper.center-column {
    padding: 0 120px;
  }
}
.contacts-section .section-content {
  width: 50%;
  padding: 30px 80px 40px 0;
}
@media only screen and (min-width: 1366px) {
  .contacts-section .section-content {
    padding-right: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contacts-section .section-content {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contacts-section .section-content {
    width: 100%;
    padding: 10px 0;
  }
}
.contacts-section .contacts-logo {
  max-width: 150px;
  max-height: 150px;
}
.contacts-section .contact-entry {
  margin-top: 35px;
  font-weight: normal;
  display: flex;
}
.contacts-section .contact-entry:not(:last-child) {
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .contacts-section .contact-entry:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .contacts-section .contact-entry {
    margin-top: 20px;
    justify-content: center;
  }
}
.contacts-section .contact-entry .icon-col {
  width: 30px;
  flex-shrink: 0;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .contacts-section .contact-entry .icon-col {
    display: none;
  }
}
.contacts-section .contact-entry .icon-col .svg-icon {
  max-width: 100%;
}
.contacts-section .contact-entry .icon-col .svg-icon.map-icon {
  width: 19px;
  height: 26px;
}
.contacts-section .contact-entry .icon-col .svg-icon.whatsapp-icon {
  width: 24px;
  height: 24px;
}
.contacts-section .contact-entry h3 {
  font: 700 16px/20px "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.contacts-section .contact-entry a {
  text-decoration: none;
}
.contacts-section .contact-entry a:hover {
  text-decoration: underline;
}
.contacts-section .section-button:not(:first-child) {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .contacts-section .section-button:not(:first-child) {
    margin-top: 20px;
  }
}
.contacts-section .section-button:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .contacts-section .section-button:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contacts-section .section-decoration {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contacts-section .section-decoration {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 0;
    padding-bottom: 61%;
  }
}
.contacts-section .section-decoration.img-wrap {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.brand-logos-widget {
  display: flex;
  justify-content: center;
  text-align: center;
}
* + .brand-logos-widget {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget {
    display: block;
  }
}
.brand-logos-widget .brand-entry a, .brand-logos-widget .brand-entry button, .brand-logos-widget .sub-brand-entry a, .brand-logos-widget .sub-brand-entry button {
  display: block;
  width: 100%;
  color: #3E7C9B;
  text-decoration: none;
}
.brand-logos-widget .brand-entry a:hover, .brand-logos-widget .brand-entry button:hover, .brand-logos-widget .sub-brand-entry a:hover, .brand-logos-widget .sub-brand-entry button:hover {
  color: #000;
}
.brand-logos-widget .brand-entry a:hover img, .brand-logos-widget .brand-entry button:hover img, .brand-logos-widget .sub-brand-entry a:hover img, .brand-logos-widget .sub-brand-entry button:hover img {
  opacity: 0.7;
}
.brand-logos-widget .brands-list {
  flex-grow: 1;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .brands-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.brand-logos-widget .brands-list .brand-entry {
  position: relative;
  margin: 0 auto;
  padding: 15px;
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .brands-list .brand-entry {
    position: static;
    width: 50%;
  }
}
.brand-logos-widget .brands-list .brand-entry.expanded .sub-brands-list-wrap {
  display: block;
  left: calc(100% + 20px);
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .brands-list .brand-entry.expanded .sub-brands-list-wrap {
    left: 50%;
  }
}
.brand-logos-widget .brands-list .brand-entry .brand-logo {
  width: 100%;
  max-width: 140px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.arabella-hotel-golf-spa {
  max-width: 120px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.fifty-four-on-bath {
  max-width: 55px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.suncoast-towers {
  max-width: 75px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.holiday-inn-sandton-rivonia-road {
  max-width: 77px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.sunsquare {
  max-width: 60px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.garden-court {
  max-width: 73px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.stayeasy {
  max-width: 120px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.hi-hotels {
  max-width: 62px;
}
.brand-logos-widget .brands-list .brand-entry .brand-logo.sun1 {
  max-width: 78px;
}
.brand-logos-widget .brands-list .brand-entry .brand-title {
  font-size: 18px;
  line-height: 1em;
  font-weight: 400;
}
.brand-logos-widget .brands-list .sub-brands-list-wrap {
  display: none;
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 270px;
  padding: 35px 15px;
  background-color: #fff;
  border: 2px solid #bcaa90;
  z-index: 1;
  transition: left 350ms;
}
@media only screen and (min-width: 1366px) {
  .brand-logos-widget .brands-list .sub-brands-list-wrap {
    width: 370px;
    padding: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .brands-list .sub-brands-list-wrap {
    left: calc(50% - 20px);
    transform: translateX(-50%);
  }
}
.brand-logos-widget .brands-list .sub-brands-list-wrap:before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 20px;
  width: 0;
  height: 0;
  border-right: 20px solid #bcaa90;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .brands-list .sub-brands-list-wrap:before {
    display: none;
  }
}
.brand-logos-widget .brands-list .sub-brands-close-button {
  position: absolute;
  right: 15px;
  top: 15px;
  width: auto;
}
.brand-logos-widget .brands-list .sub-brands-close-button .svg-icon {
  width: 16px;
  height: 16px;
}
.brand-logos-widget .brands-list .sub-brands-list {
  margin-top: 20px;
}
.brand-logos-widget .brands-list .sub-brand-title {
  font: 400 18px/1.222em "Lato WF", sans-serif, Arial, sans-serif;
}
.brand-logos-widget .brands-list .sub-brand-entry + .sub-brand-entry {
  position: relative;
  padding-top: 15px;
  margin-top: 15px;
}
.brand-logos-widget .brands-list .sub-brand-entry + .sub-brand-entry:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #bcaa90;
}
.brand-logos-widget .service-level-title {
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 10px;
  font-size: 1.3vw;
  line-height: 1em;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #FAFAFA;
}
@media (max-width: 1076.9230769231px) {
  .brand-logos-widget .service-level-title {
    font-size: 14px;
  }
}
@media (min-width: 1384.6153846154px) {
  .brand-logos-widget .service-level-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .service-level-title {
    margin-bottom: 20px;
  }
}
.brand-logos-widget .service-level-entry {
  max-width: 410px;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .service-level-entry {
    max-width: none;
    width: 100%;
    padding: 30px 0;
  }
}
@media only screen and (min-width: 768px) {
  .brand-logos-widget .service-level-entry.two-columns-brands-list {
    width: 38%;
  }
  .brand-logos-widget .service-level-entry.two-columns-brands-list .brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand-logos-widget .service-level-entry.two-columns-brands-list .brands-list .brand-entry {
    margin: 0;
    width: 50%;
  }
  .brand-logos-widget .service-level-entry:nth-child(even) .service-level-title {
    background-color: #EDEEEC;
  }
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .service-level-entry + .service-level-entry {
    border-top: 1px solid #EDEEEC;
  }
}
.brand-logos-widget .service-level-entry + .service-level-entry .brands-list {
  border-left: 1px solid #EDEEEC;
}
@media only screen and (max-width: 767px) {
  .brand-logos-widget .service-level-entry + .service-level-entry .brands-list {
    border-left: none;
  }
}
#search-page-content .brand-logos-widget {
  padding-bottom: 100px;
}
#search-page-content .brand-logos-widget .service-level-title {
  padding: 0 10px;
  font-size: 2.05vw;
  line-height: 1.215em;
  text-transform: none;
  background: none;
}
@media (max-width: 975.6097560976px) {
  #search-page-content .brand-logos-widget .service-level-title {
    font-size: 20px;
  }
}
@media (min-width: 1365.8536585366px) {
  #search-page-content .brand-logos-widget .service-level-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #search-page-content .brand-logos-widget .service-level-title {
    text-align: left;
  }
}

@media only screen and (min-width: 1366px) {
  .brand-logos-section .center-column {
    padding: 0 100px;
  }
}
@media only screen and (min-width: 1024px) {
  #main-content + .brand-logos-section {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 1024px) {
  #main-content + .brands-by-regions-map-section {
    margin-top: 50px;
  }
}

.brands-by-regions-map {
  position: relative;
}
.brands-by-regions-map .widget-title {
  display: inline-block;
}
.brands-by-regions-map .widget-title:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (max-width: 1023px) {
  .brands-by-regions-map .widget-title:not(:last-child) {
    margin-left: 0;
    width: 100%;
  }
}
.brands-by-regions-map .service-level-marks {
  display: inline-flex;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .brands-by-regions-map .service-level-marks {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.brands-by-regions-map .service-level-marks .service-level-mark + .service-level-mark {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .brands-by-regions-map .service-level-marks .service-level-mark + .service-level-mark {
    margin-left: 10px;
  }
}
.brands-by-regions-map .service-level-marks .service-level-mark {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .brands-by-regions-map .service-level-marks .service-level-mark {
    margin: 5px 10px;
  }
}
.brands-by-regions-map .service-level-marks .service-level-mark:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
  background-color: #000;
}
.brands-by-regions-map .service-level-marks .service-level-mark.full-service:before {
  background-color: #BCAA90;
}
.brands-by-regions-map .service-level-marks .service-level-mark.select-service:before {
  background-color: #FFFFFF;
  border: 1px solid #DCDDDE;
}
.brands-by-regions-map .service-level-marks .service-level-mark.budget:before {
  background-color: #FAB915;
}
.brands-by-regions-map .maps-triggers {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .brands-by-regions-map .maps-triggers {
    justify-content: center;
  }
}
.brands-by-regions-map .maps-triggers .map-trigger {
  margin-bottom: 0;
  font-size: 1.76vw;
}
@media (max-width: 1022.7272727273px) {
  .brands-by-regions-map .maps-triggers .map-trigger {
    font-size: 18px;
  }
}
@media (min-width: 1590.9090909091px) {
  .brands-by-regions-map .maps-triggers .map-trigger {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .brands-by-regions-map .maps-triggers .map-trigger {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .brands-by-regions-map .maps-triggers .map-trigger {
    font-size: 12px;
  }
}
.brands-by-regions-map .maps-triggers .map-trigger:hover, .brands-by-regions-map .maps-triggers .map-trigger.active {
  color: #7E6B51;
  text-decoration: underline;
}
.brands-by-regions-map .maps-triggers .vertical-divider {
  height: auto;
  min-height: 40px;
  background-color: #EDEEEC;
}
@media only screen and (max-width: 767px) {
  .brands-by-regions-map .maps-triggers .vertical-divider {
    margin: 0 5px;
    min-height: 20px;
  }
}
.brands-by-regions-map .maps:not(:first-child) {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .brands-by-regions-map .maps:not(:first-child) {
    margin-top: 25px;
  }
}

.world-part-map {
  display: none;
  position: relative;
  margin: 0 auto;
}
.world-part-map[data-world-part=south-africa] {
  max-width: 900px;
}
.world-part-map[data-world-part=rest-of-africa] {
  max-width: 876px;
}
.world-part-map[data-world-part=middle-east-indian-ocean] {
  max-width: 426px;
}
.world-part-map .height-holder {
  display: inline-block;
  width: 1px;
  height: 0;
}
.world-part-map svg.svg-map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  fill: #000;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st0 {
  fill: none;
  stroke: #000000;
  stroke-width: 0.243;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st1 {
  fill: #FFFFFF;
  fill-opacity: 0.75;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st2 {
  fill: #D1D3D4;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st3 {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 0.409;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st4 {
  fill: #C7C8CA;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st5 {
  fill: #C0C2C4;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st6 {
  fill: #E6E7E8;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st7 {
  fill: #DCDDDE;
}
.world-part-map svg.svg-map[data-world-part=south-africa] .st8 {
  fill: #BCBEC0;
}
.world-part-map svg.svg-map[data-world-part=rest-of-africa] .st0 {
  fill: #DCDDDE;
}
.world-part-map svg.svg-map[data-world-part=rest-of-africa] .st1 {
  fill: none;
  stroke: #FFFFFF;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.world-part-map svg.svg-map[data-world-part=rest-of-africa] .st2 {
  fill: #C7C8CA;
}
.world-part-map svg.svg-map[data-world-part=rest-of-africa] .st3 {
  fill: none;
}
.world-part-map svg.svg-map[data-world-part=middle-east-indian-ocean] .st0 {
  fill: #DCDDDE;
  stroke: #FFFFFF;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.world-part-map svg.svg-map[data-world-part=middle-east-indian-ocean] .st1 {
  fill: #DCDDDE;
}
.world-part-map svg.svg-map text {
  fill: #000;
  font-size: 10px;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  pointer-events: none;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier] circle {
  fill: #000;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier] circle:hover {
  opacity: 0.5;
  transition: opacity 350ms;
  cursor: pointer;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier] text {
  fill: #fff;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier][data-service-level=luxury] circle {
  fill: #000;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier][data-service-level=full-service] circle {
  fill: #BCAA90;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier][data-service-level=full-service] text {
  fill: #000;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier][data-service-level=select-service] circle {
  fill: #FFFFFF;
  stroke: #DCDDDE;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier][data-service-level=select-service] text {
  fill: #000;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier][data-service-level=budget] circle {
  fill: #FAB915;
}
.world-part-map svg.svg-map g[data-service-level][data-regions-classifier][data-service-level=budget] text {
  fill: #000;
}

.properties-info-block {
  display: none;
  width: 100%;
  max-width: 342px;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1023px) {
  .properties-info-block {
    max-width: 280px;
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .properties-info-block {
    padding: 5px 10px;
  }
}
.properties-info-block.visible {
  display: block;
  position: absolute;
  z-index: 99;
}
.properties-info-block .property-entry {
  padding: 10px 0;
  border-bottom: 1px solid #EDEEEC;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .properties-info-block .property-entry {
    padding: 5px 0;
  }
}
.properties-info-block .property-entry:last-child {
  border-bottom: none;
}
.properties-info-block .property-entry h3 {
  margin-bottom: 5px;
}
.properties-info-block .property-entry h3 .info-trigger {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font: 400 14px/1 "Lato WF", sans-serif, Arial, sans-serif;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .properties-info-block .property-entry h3 .info-trigger {
    font-size: 12px;
  }
}
.properties-info-block .property-entry h3 .arrow-icon {
  width: 7px;
  height: 12px;
  margin-left: 10px;
  transform: rotate(90deg) translate(0, 3px);
}
.properties-info-block .property-entry .property-info {
  display: none;
  font: 300 12px/14px "Lato WF", sans-serif, Arial, sans-serif;
}
@media only screen and (max-width: 1023px) {
  .properties-info-block .property-entry .property-info {
    font-size: 10px;
  }
}
.properties-info-block .property-entry .property-info span, .properties-info-block .property-entry .property-info a {
  display: block;
}
.properties-info-block .property-entry.expanded .info-trigger {
  color: #7E6B51;
  text-decoration: underline;
}
.properties-info-block .property-entry.expanded .arrow-icon {
  transform: rotate(-90deg) translate(0, -3px);
}
.properties-info-block .property-entry.expanded .property-info {
  display: block;
}

.tripadvisor-feed-widget {
  font: 14px "Arial";
  color: #666666;
}
.tripadvisor-feed-widget .rating {
  position: relative;
  min-width: 90px;
  height: 14px;
  text-align: left;
  font-style: normal;
}
.tripadvisor-feed-widget .rating > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
}
.tripadvisor-feed-widget .overall-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .tripadvisor-feed-widget .overall-info {
    justify-content: center;
  }
}
.tripadvisor-feed-widget .overall-info .tripadvisor-logo {
  margin-right: 15px;
}
.tripadvisor-feed-widget .overall-info .tripadvisor-logo:hover {
  opacity: 0.8;
}
.tripadvisor-feed-widget .overall-info .tripadvisor-logo img {
  wwidth: 100%;
  max-width: 165px;
}
@media only screen and (max-width: 767px) {
  .tripadvisor-feed-widget .overall-info .tripadvisor-logo img {
    max-width: 100px;
  }
}
.tripadvisor-feed-widget .overall-info .rating {
  flex-shrink: 0;
  position: relative;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .tripadvisor-feed-widget .overall-info .rating {
    margin-right: 0;
  }
}
.tripadvisor-feed-widget .overall-info a {
  color: #3E7C9B;
}
.tripadvisor-feed-widget .overall-info a:hover {
  color: #666666;
}
.tripadvisor-feed-widget .overall-info .stats {
  flex-shrink: 0;
  display: flex;
  color: inherit;
  font-size: 15px;
  line-height: 20px;
  font-style: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .tripadvisor-feed-widget .overall-info .stats {
    width: 100%;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 15px;
  }
}
.tripadvisor-feed-widget .overall-info .stats .stat {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #D8D8D8;
}
@media only screen and (max-width: 767px) {
  .tripadvisor-feed-widget .overall-info .stats .stat {
    width: 100%;
    margin: 10px 0;
    padding: 0;
    border-left: none;
  }
}
.tripadvisor-feed-widget .overall-info .stats .stat:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}
.tripadvisor-feed-widget .overall-info .stats strong {
  font-weight: 700;
}
.tripadvisor-feed-widget .overall-info .stats .certificate {
  display: inline-flex;
  flex-shrink: 0;
}
.tripadvisor-feed-widget .overall-info .stats .certificate img {
  wwidth: 100%;
  max-width: 16px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .tripadvisor-feed-widget .overall-info .stats .certificate img {
    max-width: 12px;
    margin-right: 5px;
  }
}
.tripadvisor-feed-widget .feed .error {
  color: inherit;
}
.tripadvisor-feed-widget .rating { /* Covers 1.0 - 1.9 */
  /* 2.0 - 2.9 */
}
.tripadvisor-feed-widget .rating.s-0:after {
  content: "\e00d\e00d\e00d\e00d\e00d";
}
.tripadvisor-feed-widget .rating.s-1:after {
  content: "\e00c\e00d\e00d\e00d\e00d";
}
.tripadvisor-feed-widget .rating.s-2:after {
  content: "\e00b\e00d\e00d\e00d\e00d";
}
.tripadvisor-feed-widget .rating.s-3:after {
  content: "\e00b\e00c\e00d\e00d\e00d";
}
.tripadvisor-feed-widget .rating.s-4:after {
  content: "\e00b\e00b\e00d\e00d\e00d";
}
.tripadvisor-feed-widget .rating.s-5:after {
  content: "\e00b\e00b\e00c\e00d\e00d";
}
.tripadvisor-feed-widget .rating.s-6:after {
  content: "\e00b\e00b\e00b\e00d\e00d";
}
.tripadvisor-feed-widget .rating.s-7:after {
  content: "\e00b\e00b\e00b\e00c\e00d";
}
.tripadvisor-feed-widget .rating.s-8:after {
  content: "\e00b\e00b\e00b\e00b\e00d";
}
.tripadvisor-feed-widget .rating.s-9:after {
  content: "\e00b\e00b\e00b\e00b\e00c";
}
.tripadvisor-feed-widget .rating.s-10:after {
  content: "\e00b\e00b\e00b\e00b\e00b";
}
.tripadvisor-feed-widget .rating:before, .tripadvisor-feed-widget .rating:after {
  display: inline-block;
  font-variant: normal;
  font-size: inherit;
  line-height: 1;
  font-family: "Tripadvisor_regular";
  -ms-transform: rotate(-0.001deg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
}
.tripadvisor-feed-widget .rating:before {
  color: #fff;
  display: block;
  content: "\e00a\e00a\e00a\e00a\e00a";
}
.tripadvisor-feed-widget .rating:after {
  position: absolute;
  top: 0;
  left: 0;
  color: #3E7C9B;
}

/* COMMON STYLES */
.rooms-page-section {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .rooms-page-section {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1366px) {
  .rooms-page-section .center-column {
    padding: 0 100px;
  }
}

.rooms .top-bar {
  display: flex;
  padding: 0 20px;
}
.rooms .top-bar .rooms-category-selector {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .rooms .top-bar .rooms-category-selector {
    margin: 0 auto;
  }
}
.rooms .top-bar .category-selector .button {
  display: none;
}
.rooms .top-bar .category-selector .select-wrapper {
  display: block;
}
@media only screen and (max-width: 767px) {
  .rooms .top-bar {
    display: block;
    text-align: center;
  }
}
.rooms .rooms-categories {
  padding: 0 20px;
}
.rooms .rooms-categories .category-descr {
  display: none;
  padding-bottom: 20px;
}
.rooms .rooms-categories .category-descr.active {
  display: block;
}
.rooms .rooms-entry {
  display: flex;
  width: 100%;
  min-height: 260px;
  margin-bottom: 0;
  padding: 10px 20px;
  background-color: rgba(62, 124, 155, 0.1);
}
@media only screen and (max-width: 767px) {
  .rooms .rooms-entry {
    display: block;
    height: auto;
  }
}
.rooms .rooms-entry:first-child {
  padding-top: 20px;
}
.rooms .rooms-entry:last-child {
  padding-bottom: 20px;
}
.rooms .rooms-entry .thumbnail {
  position: relative;
  width: 360px;
  font-size: 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms .rooms-entry .thumbnail {
    width: 36%;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .rooms-entry .thumbnail {
    display: block;
    width: 100%;
  }
  .rooms .rooms-entry .thumbnail img {
    position: relative;
    display: block;
  }
}
.rooms .rooms-entry .description {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 360px);
  padding: 20px;
  background-color: #fff;
  font-weight: 300;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms .rooms-entry .description {
    width: 64%;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .rooms-entry .description {
    width: 100%;
  }
}
.rooms .rooms-entry .description .descr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rooms .rooms-entry .description .descr-row.room-header {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(62, 124, 155, 0.1);
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .description .descr-row.room-header {
    display: block;
    padding: 0 0 10px;
  }
}
.rooms .rooms-entry .description .descr-row.room-descr {
  align-items: flex-start;
  margin-bottom: auto;
  padding: 20px 0;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .description .descr-row.room-descr {
    display: block;
    padding: 10px 0;
  }
}
.rooms .rooms-entry .description .descr-row.room-nav {
  border-top: 1px solid rgba(62, 124, 155, 0.1);
}
.rooms .rooms-entry .description h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .description h3 {
    width: 100%;
  }
}
.rooms .rooms-entry .description .amenities {
  margin-left: auto;
  width: 65%;
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .description .amenities {
    width: 100%;
    text-align: left;
  }
}
.rooms .rooms-entry .description .amenities span {
  font-weight: 400;
}
.rooms .rooms-entry .description p {
  width: 46%;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .description p {
    width: 100%;
    margin-bottom: 10px;
  }
}
.rooms .rooms-entry .description .features {
  width: 46%;
  margin-left: 40px;
}
.rooms .rooms-entry .description .features span {
  display: block;
  font-size: 14px;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .description .features {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .description .features {
    width: auto;
    display: inline-block;
    margin: 0 auto;
    text-align: left;
  }
}
.rooms .rooms-entry .description .rooms-item-gallery {
  font-size: 0;
}
.rooms .rooms-entry .description nav {
  display: inline-block;
}
.rooms .rooms-entry .description .links {
  margin-left: auto;
}
.rooms .rooms-entry .description .links a {
  position: relative;
  color: #7E6B51;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
}
.rooms .rooms-entry .description .links a:hover {
  color: #000;
}
.rooms .rooms-entry .description .booking-info {
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  .rooms .rooms-entry .description .booking-info {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  img.current-page-thumbnail {
    width: 100%;
    margin-bottom: 20px;
  }
}
.room-options {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
  .room-options {
    text-align: left;
  }
}
.room-options .room-column {
  min-width: 280px;
  margin-right: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .room-options .room-column {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .room-options .room-column h4 {
    margin-bottom: 10px;
  }
}
.room-options ul.room-option-list {
  display: inline-block;
  text-align: left;
}
.room-options ul.room-option-list.features li {
  padding-left: 0;
}
.room-options ul.room-option-list.features li::before {
  display: none;
}
.room-options ul.room-option-list li {
  margin-top: 5px;
}
.room-options ul.room-option-list li span {
  margin-right: 10px;
}

.room-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.room-links .button {
  display: block;
  margin-right: 10px;
}
.room-links .links {
  display: block;
  margin: 0 20px;
}
.room-links .links a {
  position: relative;
  color: #7E6B51;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
}
.room-links .links a:hover {
  color: #000;
}
@media only screen and (max-width: 767px) {
  .room-links {
    display: block;
  }
  .room-links .button {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1366px) {
  .feeds-section .content-wrapper {
    padding: 0 120px;
  }
}

@media only screen and (min-width: 768px) {
  .feeds-slideshow-container {
    padding-right: 0;
    padding-bottom: 60px;
  }
}
.feeds-slideshow-container.loading {
  min-height: 320px;
}
@media only screen and (min-width: 768px) {
  .feeds-slideshow-container.loading {
    min-height: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .feeds-slideshow-container .slideshow-button {
    bottom: 0;
    top: auto;
    transform: translateY(0);
  }
  .feeds-slideshow-container .slideshow-button.previous {
    left: auto;
    right: 70px;
    transform: rotate(180deg);
  }
  .feeds-slideshow-container .slideshow-button.next {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .feeds-slideshow-container .slideshow-button.previous {
    left: 20px;
  }
  .feeds-slideshow-container .slideshow-button.next {
    right: 20px;
  }
  .feeds-slideshow-container .slideshow-button svg {
    stroke: #000;
  }
}
.feeds-slideshow-container .feed-item:not(.swiper-slide) + .feed-item:not(.swiper-slide) {
  margin-left: 20px;
}
.feeds-slideshow-container .feed-item {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  font-size: 12px;
  line-height: 1.8em;
  font-weight: 300;
  overflow: hidden;
  background: #000;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .feeds-slideshow-container .feed-item {
    width: 280px;
    height: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .feeds-slideshow-container .feed-item {
    width: 100%;
  }
}
.feeds-slideshow-container .feed-item .feed-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: opacity 350ms;
}
.feeds-slideshow-container .feed-item .feed-thumb div {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .feeds-slideshow-container .feed-item:hover .feed-thumb {
    opacity: 0.5;
  }
}
.feeds-slideshow-container .feed-item .feed-descr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.feeds-slideshow-container .feed-item .feed-type {
  position: relative;
  width: 19px;
  height: 19px;
  margin-bottom: 10px;
}
.feeds-slideshow-container .feed-item .feed-type svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  transition: fill 350ms;
}
.feeds-slideshow-container .feed-item.blog .feed-type {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .feeds-slideshow-container .feed-item:hover .feed-type svg {
    fill: #3E7C9B;
  }
}
.feeds-slideshow-container .feed-item .feed-text {
  display: inline-block;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  color: #fff;
  opacity: 0;
  transition: opacity 350ms;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feeds-slideshow-container .feed-item.no-thumb .feed-text, .feeds-slideshow-container .feed-item.blog .feed-text {
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .feeds-slideshow-container .feed-item:hover .feed-text {
    opacity: 1;
  }
}
.feeds-slideshow-container .feed-item .feed-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.feeds-slideshow-container .feed-item.blog .feed-thumb {
  display: none;
}
@media only screen and (min-width: 1366px) {
  .brands-grid .center-column {
    padding: 0 120px;
  }
}
.brands-grid .brand-category {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .brands-grid .brand-category {
    display: block;
  }
}
.brands-grid .category-title {
  flex-grow: 0;
  text-align: left;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .brands-grid .category-title {
    width: 100%;
  }
}
.brands-grid .brand-logos-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .brands-grid .brand-logos-list {
    width: 100%;
  }
}
.brands-grid .brand-logos-list .brand-logo {
  margin: 2%;
  width: 20%;
  max-width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .brands-grid .brand-logos-list .brand-logo {
    max-width: 25%;
  }
}
.brands-grid .brand-logos-list .brand-logo img {
  max-width: 100%;
  max-height: 150px;
}
.brands-grid .tab-content {
  display: none;
}
@media only screen and (max-width: 767px) {
  .brands-grid .category-titles-tabs {
    text-align: center;
  }
}
.brands-grid .category-titles-tabs .heading {
  font-family: "Lato WF", sans-serif;
  font-weight: 400;
  font-size: 37px;
  line-height: 37px;
  color: #000;
  margin-bottom: 20px;
}
.brands-grid .category-titles-tabs .titles {
  display: inline;
}
.brands-grid .category-titles-tabs .titles .category-title {
  margin-right: 20px;
  font-weight: 700;
  font-size: 11px;
  line-height: 19px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Lato WF", sans-serif;
  cursor: pointer;
  display: inline;
}
.brands-grid .category-titles-tabs .titles .category-title.active {
  color: #7E6B51;
  text-decoration: underline;
}

/* COMMON */
.venues .categories-descr .category-descr {
  display: none;
}
.venues .categories-descr .category-descr.active {
  display: block;
}

.single-venue .venue-thumb img {
  display: block;
  width: 100%;
}
.single-venue .layouts {
  margin: 0 0 15px;
}
.single-venue .layouts span {
  display: inline-block;
  width: 60px;
  height: 60px;
  font-size: 35px;
  position: relative;
  cursor: pointer;
  border-left: 1px solid #ebebeb;
}
.single-venue .layouts span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #898989;
}
.single-venue .layouts span:hover {
  background: #e57c00;
}
.single-venue .layouts span:hover:before {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .single-venue .layouts span:hover {
    background: none;
  }
  .single-venue .layouts span:hover:before {
    color: #898989;
  }
}
.single-venue .layouts span:after {
  content: attr(data-name);
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  color: #fff;
  line-height: 60px;
  white-space: nowrap;
  padding: 0 20px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0.2s;
  text-transform: uppercase;
}
.single-venue .layouts span:hover:after {
  opacity: 1;
  height: 60px;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .single-venue .layouts span:hover:after {
    display: none;
  }
}

/* Template 1 */
.venue.template1 {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  border: 1px solid #ebebeb;
}
.venue.template1 .background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 390px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .background {
    position: relative;
    height: 300px;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
  }
}
.venue.template1 .background .venue-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.venue.template1 .background .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template1 .background .amenities-sliders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  transition: top 0s linear 0.1s, opacity 0.1s linear 0s;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery.active {
  opacity: 1;
  top: 0;
  transition: top 0s linear 0s, opacity 0.1s linear 0s;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .caption {
  position: absolute;
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 42px;
  overflow: hidden;
  text-transform: uppercase;
  max-width: 80%;
  z-index: 2;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container figure {
  width: 100%;
  height: 100%;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 10px;
  z-index: 4;
  white-space: nowrap;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets {
    right: auto;
    left: 20px;
  }
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets .swiper-pagination-bullet {
  display: inline-block;
  vertical-align: top;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  background: #fff;
  cursor: pointer;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: red;
}
.venue.template1 .buttons {
  position: absolute;
  bottom: 0;
  left: calc(100% + 60px);
  z-index: 3;
  white-space: nowrap;
  font-size: 0;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons {
    position: static;
    margin-top: 10px;
  }
}
.venue.template1 .buttons a {
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a {
    width: auto;
  }
}
.venue.template1 .buttons a + a {
  margin-left: 1px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a + a {
    margin-left: 0;
  }
}
.venue.template1 .buttons a + a:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: -1px;
  bottom: 0px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a + a:before {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .venue.template1 .buttons a + a {
    margin-left: 10px;
  }
}
.venue.template1 .content {
  width: 390px;
  padding: 40px 25px 15px 30px;
  color: #524a48;
  font-size: 16px;
  line-height: 22px;
  background: #fff;
  font-weight: 200;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .content {
    width: auto;
    background: transparent;
    z-index: 5;
    position: relative;
    box-sizing: border-box;
    padding-top: 60px;
  }
}
.venue.template1 .content h3 {
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}
.venue.template1 .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template1 .content h3 a:hover {
  color: #4B494C;
}
.venue.template1 .content h4 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 20px 0;
}
.venue.template1 .content .links {
  margin-top: 15px;
  height: 30px;
  width: 360px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .content .links {
    position: static;
    width: 100%;
    height: auto;
  }
}
.venue.template1 .content .links a {
  display: block;
  float: left;
  height: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 17px;
}
.venue.template1 .content .links a:first-child {
  padding-left: 0;
}
.venue.template1 .content .links a:last-child {
  padding-right: 0;
}
.venue.template1 .content .links a + a {
  margin-left: 1px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .content .links a {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    margin-top: 20px;
    font-size: 14px;
  }
}
.venue.template1 .layouts {
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  font-size: 0;
  z-index: 4;
  height: 100%;
}
.venue.template1 .layouts.multiline {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts {
    right: 0;
    left: auto;
  }
}
.venue.template1 .layouts .main-list {
  width: 60px;
  height: 100%;
  white-space: nowrap;
  overflow-y: hidden;
  float: left;
  background: #fff;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts .main-list {
    float: right;
  }
}
.venue.template1 .layouts .additional-list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 120px;
  opacity: 0;
  line-height: 0;
  padding: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.venue.template1 .layouts .additional-list span {
  float: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts .additional-list {
    left: auto;
    right: 0;
  }
}
.venue.template1 .layouts .toggle {
  display: none;
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}
.venue.template1 .layouts .toggle div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.venue.template1 .layouts .toggle div:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #4B494C;
  transform: rotate(90deg);
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts .toggle {
    right: 0;
  }
}
.venue.template1 .layouts.multiline .toggle {
  display: block;
}
.venue.template1 .layouts.multiline.expand .toggle div:before {
  background: #4B494C;
  transform: translate(-50%, -50%) rotate(0deg);
  height: 2px;
  margin-top: 1px;
  margin-left: 0;
  color: #898989;
}
.venue.template1 .layouts span {
  display: block;
  width: 60px;
  height: 60px;
  font-size: 35px;
  cursor: pointer;
  text-align: center;
}
.venue.template1 .layouts span:before {
  line-height: 60px;
}
.venue.template1 .layouts span:hover:before, .venue.template1 .layouts span.active:before {
  color: #0033b4;
}
.venue.template1 .layouts span.rooms-icon {
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}
.venue.template1 .layouts.expand .additional-list {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition: opacity 0.2s, visibility 0s ease 0s;
}
.venue.template1 .layouts.expand .toggle div {
  transform: rotate(45deg);
}
.venue.template1 .layouts.expand .toggle div:before, .venue.template1 .layouts.expand .toggle div:after {
  content: "";
  display: block;
  background: #4B494C;
  position: absolute;
}
.venue.template1 .layouts.expand .toggle div:before {
  width: 30px;
  height: 2px;
  top: 29px;
  right: 15px;
}
.venue.template1 .layouts.expand .toggle div:after {
  width: 2px;
  height: 30px;
  top: 15px;
  right: 29px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts.expand span > .rooms-icon-text {
    right: 120px;
  }
}

/* Template 2 */
.venue.template2 {
  overflow: hidden;
  margin: 45px 0;
}
.venue.template2 .tab-buttons {
  overflow: hidden;
}
.venue.template2 .tab-buttons span {
  display: block;
  float: left;
  width: 120px;
  height: 45px;
  line-height: 45px;
  color: #aa9b7c;
  font-size: 16px;
  font-weight: 700;
  border-right: 1px solid #ebebeb;
  cursor: pointer;
  background: #f6f6f3;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .tab-buttons span {
    width: 33.3%;
  }
}
.venue.template2 .tab-buttons span:hover, .venue.template2 .tab-buttons span.active {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .tab-buttons span .hide-on-mobile {
    display: none;
  }
}
.venue.template2 .content {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 10px 10px 10px 25px;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .content {
    padding-left: 10px;
  }
}
.venue.template2 .content .tabs {
  float: left;
  min-height: 350px;
  width: 435px;
  padding-top: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .venue.template2 .content .tabs {
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .venue.template2 .content .tabs {
    float: none;
    width: 100%;
    min-height: 0;
    margin-bottom: 20px;
    padding-left: 10px;
  }
}
.venue.template2 .content .tabs .tab {
  display: none;
}
.venue.template2 .content .tabs .tab.active {
  display: block;
}
.venue.template2 .content .tabs h3 {
  font-size: 24px;
  margin: 0 0 15px;
}
.venue.template2 .content .tabs h3 a {
  color: inherit;
  text-decoration: none;
}
.venue.template2 .content .tabs h3 a:hover {
  text-decoration: underline;
}
.venue.template2 .content .tabs h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 10px;
}
.venue.template2 .content .tabs p {
  font-size: 13px;
  line-height: 22px;
  color: #7d7d7d;
}
.venue.template2 .content .tabs .layouts {
  overflow: hidden;
}
.venue.template2 .content .tabs .layouts span {
  width: 50%;
  float: left;
  font-size: 13px;
  color: #7d7d7d;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
}
.venue.template2 .content .tabs .layouts span:before {
  vertical-align: middle;
  margin-right: 20px;
  font-size: 40px;
  color: #aa9b7c;
}
@media only screen and (max-width: 1023px) {
  .venue.template2 .content .tabs .layouts span:before {
    font-size: 30px;
  }
}
.venue.template2 .content .background {
  position: absolute;
  top: 10px;
  left: 465px;
  right: 10px;
  bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .venue.template2 .content .background {
    left: 53%;
  }
}
@media only screen and (max-width: 767px) {
  .venue.template2 .content .background {
    position: static;
    height: 200px;
    width: 100%;
  }
}
.venue.template2 .content .background img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template2 .buttons {
  background: #013668;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .buttons {
    padding: 8px 0;
  }
}
.venue.template2 .buttons .inner-wrapper {
  float: right;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .buttons .inner-wrapper {
    float: none;
  }
}
.venue.template2 .buttons .inner-wrapper a {
  display: block;
  float: left;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0 30px;
}
.venue.template2 .buttons .inner-wrapper a + a {
  border-left: 1px solid #26537b;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .buttons .inner-wrapper a {
    padding: 0 10px;
    float: none;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    margin: 10px 0;
  }
  .venue.template2 .buttons .inner-wrapper a:last-child {
    border-right: 1px solid #26537b;
  }
}
.venue.template2 .buttons .inner-wrapper a:hover {
  text-decoration: underline;
}

/* VENUES TEMPLATE 3 */
.venue.template3 {
  margin: 40px 0;
  overflow: hidden;
}
.venue.template3 .venue-phone {
  display: block;
  float: right;
  width: 290px;
  height: 50px;
  border-bottom: 1px solid #ebebeb;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  position: relative;
  background: #f8f8f8;
}
.venue.template3 .venue-phone:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 23px;
  width: 23px;
  background: url(images/phone.svg) no-repeat 0 0;
  margin-right: 13px;
}
.venue.template3 .inquiry {
  display: block;
  float: right;
  width: 290px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  position: relative;
  background: #e57c00;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .inquiry {
    float: none;
    margin: 0 auto;
  }
}
.venue.template3 .content-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.venue.template3 .content-wrapper .venue-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 290px;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .venue-thumb {
    position: static;
    height: 200px;
    width: 100%;
  }
}
.venue.template3 .content-wrapper .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template3 .content-wrapper .content {
  width: 290px;
  padding: 15px 40px 120px 20px;
  float: right;
  font-size: 14px;
  line-height: 22px;
  color: #a8a8a7;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .content {
    width: 100%;
    padding-bottom: 20px;
  }
}
.venue.template3 .content-wrapper .content h3 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: normal;
}
.venue.template3 .content-wrapper .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template3 .content-wrapper .content h3 a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .content .amenities {
    text-align: center;
  }
}
.venue.template3 .content-wrapper .content .amenities span {
  display: inline-block;
  height: 36px;
  width: 36px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  font-size: 25px;
  position: relative;
  margin: 0 13px 13px 0;
}
.venue.template3 .content-wrapper .content .amenities span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.venue.template3 .content-wrapper .content .links {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .content .links {
    position: static;
  }
}
.venue.template3 .content-wrapper .content .links a {
  display: inline-block;
  vertical-align: middle;
  height: 14px;
  line-height: 14px;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
}
.venue.template3 .content-wrapper .content .links a + a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #979797;
}
.venue.template3:nth-child(even) .venue-phone {
  float: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template3:nth-child(even) .venue-phone {
    float: none;
    margin: 0 auto;
  }
}
.venue.template3:nth-child(even) .content-wrapper .venue-thumb {
  left: 290px;
  right: 0;
}
.venue.template3:nth-child(even) .content-wrapper .content {
  padding: 15px 20px 120px 20px;
  float: left;
}
.venue.template3:nth-child(even) .inquiry {
  float: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template3:nth-child(even) .inquiry {
    float: none;
    margin: 0 auto;
  }
}

/* TEMPLATE 4 */
.venue.template4 {
  width: 100%;
  margin-bottom: 40px;
}
.venue.template4 .background {
  overflow: hidden;
  position: relative;
}
.venue.template4 .background .venue-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.venue.template4 .background .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template4 .background .content {
  float: left;
  width: 390px;
  padding: 30px 40px 40px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  background: rgba(0, 0, 0, 0.6);
  font-weight: 200;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .background .content {
    float: none;
    width: 100%;
    padding-bottom: 100px;
  }
}
.venue.template4 .background .content h3 {
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
.venue.template4 .background .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template4 .background .content h4 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 20px 0;
  color: #fff;
}
.venue.template4 .background .buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .background .buttons {
    bottom: 10px;
    top: auto;
    left: 0;
    width: 100%;
  }
}
.venue.template4 .background .buttons a {
  float: left;
  border-radius: 0;
}
.venue.template4 .background .buttons a + a {
  margin-left: 1px;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .background .buttons a {
    display: inline-block;
    float: none;
  }
  .venue.template4 .background .buttons a + a {
    margin-left: 10px;
  }
}
.venue.template4 .bottom {
  position: relative;
  height: 62px;
  background: #fff;
  border: 1px solid #ebebeb;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .bottom {
    height: auto;
  }
}
.venue.template4 .bottom .links {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 360px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .bottom .links {
    position: static;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }
}
.venue.template4 .bottom .links a {
  display: block;
  float: left;
  height: 60px;
  width: 33%;
  font-size: 15px;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
.venue.template4 .bottom .links a + a {
  border-left: 1px solid #ebebeb;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .bottom .links a {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    margin-top: 20px;
  }
}
.venue.template4 .layouts {
  position: absolute;
  top: 0;
  right: 0;
  left: 390px;
  height: 60px;
  text-align: right;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}
.venue.template4 .layouts.multiline {
  right: 60px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts.multiline {
    margin-right: 60px;
  }
}
.venue.template4 .layouts .main-list {
  width: 100%;
  height: 100%;
  position: relative;
  white-space: nowrap;
}
.venue.template4 .layouts .additional-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  line-height: 0;
  padding: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.venue.template4 .layouts .toggle {
  display: none;
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  background: #fff;
}
.venue.template4 .layouts .toggle div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.venue.template4 .layouts .toggle div:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.venue.template4 .layouts.multiline .toggle {
  display: block;
}
.venue.template4 .layouts span {
  display: inline-block;
  width: 60px;
  height: 60px;
  font-size: 35px;
  position: relative;
  cursor: pointer;
}
.venue.template4 .layouts span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #898989;
}
.venue.template4 .layouts span:hover {
  background: #e57c00;
}
.venue.template4 .layouts span:hover:before {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts span:hover {
    background: none;
  }
  .venue.template4 .layouts span:hover:before {
    color: #898989;
  }
}
.venue.template4 .layouts span + span {
  border-left: 1px solid #ebebeb;
}
.venue.template4 .layouts span:after {
  content: attr(data-name);
  display: block;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 700;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  color: #fff;
  line-height: 60px;
  white-space: nowrap;
  padding: 0 20px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0.2s;
  text-transform: uppercase;
}
.venue.template4 .layouts span:hover:after {
  opacity: 1;
  height: 60px;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts span:hover:after {
    display: none;
  }
}
.venue.template4 .layouts.expand .additional-list {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition: opacity 0.2s, visibility 0s ease 0s;
}
.venue.template4 .layouts.expand .toggle div {
  transform: rotate(45deg);
}
.venue.template4 .layouts.expand .toggle div:before, .venue.template4 .layouts.expand .toggle div:after {
  content: "";
  display: block;
  background: #ebebeb;
  position: absolute;
}
.venue.template4 .layouts.expand .toggle div:before {
  width: 30px;
  height: 2px;
  top: 29px;
  right: 15px;
}
.venue.template4 .layouts.expand .toggle div:after {
  width: 2px;
  height: 30px;
  top: 15px;
  right: 29px;
}

/* VENUES TEMPLATE 5 */
.venue.template5 {
  margin: 80px 0;
}
.venue.template5 .venue-thumb {
  width: 100%;
  height: 300px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .venue-thumb {
    height: 200px;
  }
}
.venue.template5 .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template5 .inner-wrapper {
  height: 140px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper {
    height: auto;
  }
}
.venue.template5 .inner-wrapper .layouts {
  width: 280px;
  height: 140px;
  float: left;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts {
    width: 100%;
    height: auto;
    float: none;
  }
}
.venue.template5 .inner-wrapper .layouts .main-list {
  position: relative;
  z-index: 2;
  height: 140px;
  width: 280px;
  overflow: hidden;
  background: #ebebeb;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts .main-list {
    height: auto;
    width: 100%;
    background: #f6f6f6;
  }
}
.venue.template5 .inner-wrapper .layouts .additional-list {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.venue.template5 .inner-wrapper .layouts .additional-list span {
  border-right: 1px solid #ebebeb;
  border-left: 0;
}
.venue.template5 .inner-wrapper .layouts .toggle {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55px;
  height: 70px;
  margin: 0;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  background: #ebebeb;
}
.venue.template5 .inner-wrapper .layouts .toggle div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.venue.template5 .inner-wrapper .layouts .toggle div:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ae9c58;
}
.venue.template5 .inner-wrapper .layouts .toggle div:hover:before {
  color: #000;
}
.venue.template5 .inner-wrapper .layouts.multiline .toggle {
  display: block;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts.multiline .toggle {
    display: none;
  }
}
.venue.template5 .inner-wrapper .layouts span {
  display: block;
  width: 56px;
  height: 70px;
  float: left;
  border-left: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
  line-height: 69px;
  text-align: center;
}
.venue.template5 .inner-wrapper .layouts span:last-child {
  border-right: 1px solid #f6f6f6;
  width: 57px;
}
.venue.template5 .inner-wrapper .layouts span:before {
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  color: #8b8b8b;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts span {
    height: 50px;
    line-height: 50px;
  }
}
.venue.template5 .inner-wrapper .layouts.multiline.expand .additional-list {
  display: block;
  background: #f6f6f6;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts.multiline.expand .additional-list {
    display: none;
  }
}
.venue.template5 .inner-wrapper .layouts.multiline.expand .toggle {
  bottom: 1px;
  height: 69px;
}
.venue.template5 .inner-wrapper .content {
  position: absolute;
  left: 280px;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 15px 20px 20px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content {
    position: static;
  }
}
.venue.template5 .inner-wrapper .content h3 {
  color: #ae9c58;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}
.venue.template5 .inner-wrapper .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template5 .inner-wrapper .content h3 a a:hover {
  text-decoration: underline;
}
.venue.template5 .inner-wrapper .content p {
  font-size: 14px;
  line-height: 22px;
  color: #a8a8a7;
  margin: 10px 0;
}
.venue.template5 .inner-wrapper .content .links {
  overflow: hidden;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .links {
    text-align: center;
  }
}
.venue.template5 .inner-wrapper .content .links > a {
  float: left;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #ae9c58;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .links > a {
    float: none;
    display: inline-block;
  }
}
.venue.template5 .inner-wrapper .content .links > a + a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #ae9c58;
}
.venue.template5 .inner-wrapper .content .amenities {
  margin-right: 180px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .amenities {
    margin-right: 0;
    text-align: center;
  }
}
.venue.template5 .inner-wrapper .content .amenities span {
  display: inline-block;
  height: 36px;
  width: 36px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 9px 9px 0;
  color: #151515;
}
.venue.template5 .inner-wrapper .content .amenities span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.venue.template5 .inner-wrapper .content .buttons {
  float: right;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .buttons {
    float: none;
    margin: 20px 0;
    text-align: center;
  }
}
.venue.template5 .inner-wrapper .content .buttons a {
  color: #ae9c58;
  font-size: 15px;
  text-transform: uppercase;
  padding: 0 25px;
  border-radius: 3px;
  border: 1px solid #ae9c58;
  background: none;
}
.venue.template5 .inner-wrapper .content .buttons a:hover {
  background: #ae9c58;
  color: #fff;
}

#footer {
  display: block;
  position: relative;
  padding: 40px 0px 15px;
  background-color: #000;
  color: #fff;
  font-size: 0;
  line-height: 0;
  z-index: 10;
}
@media only screen and (max-width: 1023px) {
  #footer {
    padding: 45px 0 95px;
    text-align: center;
  }
}
#footer .horizontal-divider {
  display: block;
  height: 1px;
  margin: 20px auto;
  border: none;
  background-color: #fff;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  #footer .horizontal-divider {
    margin: 10px auto;
  }
}
#footer .top-part, #footer .bottom-part {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  #footer .top-part, #footer .bottom-part {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1366px) {
  #footer .top-part, #footer .bottom-part {
    padding: 0 120px;
  }
}
@media only screen and (min-width: 1024px) {
  #footer .top-part, #footer .bottom-part {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
#footer > .horizontal-divider {
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 1023px) {
  #footer > .horizontal-divider {
    margin: 40px 20px;
  }
}
#footer a {
  color: inherit;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .top-part .horizontal-divider {
  width: 100%;
  flex-shrink: 0;
  color: #3F3F3F;
  background-color: #3F3F3F;
}
@media only screen and (max-width: 1023px) {
  #footer .top-part .horizontal-divider {
    margin: 50px 0;
  }
}
@media only screen and (min-width: 1024px) {
  #footer .top-part .positioning-helper {
    width: 100%;
    max-width: calc(70% - 5px);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-grow: 1;
  }
  #footer .top-part .positioning-helper .addresses, #footer .top-part .positioning-helper .reservation-phones, #footer .top-part .positioning-helper .social-links {
    width: calc(45% - 10px);
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .footer-logo {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-logo {
    max-width: calc(30% - 5px);
  }
}
.footer-logo img {
  display: block;
  width: 100%;
  max-width: 215px;
  height: auto;
}

.footer-stayconnected {
  width: 100%;
  display: flex;
  justify-content: end;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .footer-stayconnected {
    max-width: calc(70% - 5px);
  }
}
@media only screen and (max-width: 1023px) {
  .footer-stayconnected {
    display: block;
  }
  .footer-logo + .footer-stayconnected {
    margin-top: 50px;
  }
}
.footer-stayconnected .heading {
  display: inline-block;
  width: calc(50% - 5px);
  font: 300 18px/22px "Lato WF", sans-serif;
}
@media only screen and (max-width: 1023px) {
  .footer-stayconnected .heading {
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.footer-stayconnected .heading h2 {
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  .footer-stayconnected .heading h2 {
    font-weight: 400;
  }
}
.footer-stayconnected .footer-stayconnected-form {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 1023px) {
  .footer-stayconnected .footer-stayconnected-form {
    display: inline-block;
    width: calc(100% - 20px);
  }
}
.footer-stayconnected .footer-stayconnected-form .form-elements {
  display: flex;
}
.footer-stayconnected .footer-stayconnected-form input[type=text] {
  flex-grow: 1;
  display: inline-block;
  vertical-align: top;
  height: 44px;
  padding: 0 15px;
  background: #fff;
  color: #000;
  font: 400 14px/44px "Lato WF", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1023px) {
  .footer-stayconnected .footer-stayconnected-form input[type=text] {
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    padding: 0 10px;
  }
}
.footer-stayconnected .footer-stayconnected-form input[type=text]::-webkit-input-placeholder {
  color: #000;
}
.footer-stayconnected .footer-stayconnected-form input[type=text]:-moz-placeholder {
  color: #000;
}
.footer-stayconnected .footer-stayconnected-form input[type=text]::-moz-placeholder {
  color: #000;
}
.footer-stayconnected .footer-stayconnected-form input[type=text]:-ms-input-placeholder {
  color: #000;
}
.footer-stayconnected .footer-stayconnected-form input[type=text]:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer-stayconnected .footer-stayconnected-form input[type=text]:focus:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer-stayconnected .footer-stayconnected-form input[type=text]:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer-stayconnected .footer-stayconnected-form input[type=text]:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer-stayconnected .footer-stayconnected-form input[type=submit] {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 20px;
  overflow: visible;
  background-color: #bcaa90;
  color: #000;
  font: 900 14px/44px "Lato WF", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-text-align-last: auto;
  text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-stayconnected .footer-stayconnected-form input[type=submit]:hover, .footer-stayconnected .footer-stayconnected-form input[type=submit]:active {
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .footer-stayconnected .footer-stayconnected-form input[type=submit] {
    height: 38px;
    line-height: 38px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 0 10px;
  }
}

.addresses {
  font: 700 11px/22px "Lato WF", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: inherit;
  margin-top: 15px;
  margin-bottom: 50px;
  padding-right: 10px;
}
.property .addresses {
  text-transform: none;
}
@media only screen and (max-width: 1023px) {
  .addresses {
    margin: 0 0 30px;
  }
}
.addresses .postal-address {
  display: block;
}

.reservation-phones {
  font: 700 11px/14px "Lato WF", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: inherit;
  margin-top: 15px;
  margin-bottom: 50px;
}
.property .reservation-phones {
  text-transform: none;
}
@media only screen and (max-width: 1023px) {
  .reservation-phones {
    margin: 0 0 30px;
  }
}
.reservation-phones .phones-group + .phones-group {
  margin-top: 10px;
}
.reservation-phones .gds-info span {
  padding-right: 5px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
.reservation-phones .gds-info span:after {
  content: "";
  background-color: white;
  width: 1px;
  height: 10px;
  position: absolute;
  right: -2px;
  top: 2px;
}
.reservation-phones .gds-info span:last-child:after {
  content: none;
}
.reservation-phones h5 {
  margin-bottom: 10px;
}
.property .reservation-phones h5 {
  display: inline-block;
  margin-bottom: 0;
}

#footer .social-links {
  display: flex;
  margin-bottom: 20px;
}
#footer .social-links .Twitter {
  height: 18.5px;
  margin-top: 2px;
}
@media only screen and (max-width: 1023px) {
  #footer .social-links {
    justify-content: center;
    margin: 0 0 35px;
  }
}
#footer .social-links li {
  margin: 0 7px;
}
#footer .social-links li:first-child {
  margin-left: 0;
}
#footer .social-links li:last-child {
  margin-right: 0;
}
#footer .social-links a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  overflow: hidden;
}
#footer .social-links a svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: #fff;
  transition: fill 350ms;
}
#footer .social-links a:hover svg, #footer .social-links a:active svg {
  opacity: 0.7;
}

.footer-logos {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1366px) {
  .footer-logos {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 1023px) {
  .footer-logos {
    margin: 0 0 35px;
  }
}

.footer-tripadvisor {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .footer-tripadvisor {
    display: inline-flex;
  }
}
.footer-tripadvisor .tripadvisor-logo {
  width: 120px;
  height: 22px;
}
@media only screen and (min-width: 1366px) {
  .footer-tripadvisor .tripadvisor-logo {
    width: 144px;
    height: 24px;
  }
}
.footer-tripadvisor .tripadvisor-logo svg {
  fill: #fff;
}
.footer-tripadvisor .v-divider {
  display: block;
  width: 1px;
  height: auto;
  margin: 0 5px;
  border: none;
  color: #3F3F3F;
  background-color: #3F3F3F;
}
.footer-tripadvisor .tripadvisor-certificate {
  font: 400 12px/1 "Lato WF", sans-serif;
  color: inherit;
  align-self: center;
}
@media only screen and (min-width: 1366px) {
  .footer-tripadvisor .tripadvisor-certificate {
    font-size: 14px;
  }
}

.safe-travels-logo {
  display: inline-block;
  max-width: 70px;
  margin-right: 8px;
}
@media only screen and (max-width: 1023px) {
  .safe-travels-logo {
    margin: 4px;
  }
}
.safe-travels-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-tripadvisor + .safe-travels-logo {
  margin-top: 20px;
}
@media only screen and (min-width: 1366px) {
  .footer-tripadvisor + .safe-travels-logo {
    margin-top: 0;
    margin-left: 20px;
  }
}

#footer-menu {
  margin-top: 15px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  #footer-menu {
    max-width: calc(30% - 5px);
    flex-grow: 1;
  }
}
#footer-menu ul {
  line-height: 0;
  font-size: 0;
}
@media only screen and (min-width: 1024px) {
  #footer-menu ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
#footer-menu a {
  display: block;
  margin-bottom: 20px;
  font: 700 11px/1 "Lato WF", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}
@media only screen and (min-width: 1024px) {
  #footer-menu a {
    margin-right: 20px;
  }
}
#footer-menu a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 1024px) {
  .additional-footer-menu {
    max-width: calc(70% - 5px);
    text-align: right;
    order: 1;
  }
}
.additional-footer-menu li {
  display: inline-block;
}
@media only screen and (min-width: 1024px) {
  .additional-footer-menu li {
    margin: 0 0 15px 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .additional-footer-menu li {
    width: 100%;
    margin: 0 0 20px;
  }
}
.additional-footer-menu a, .additional-footer-menu .more-dropdown-trigger {
  display: block;
  font: 700 11px/1 "Lato WF", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}
.additional-footer-menu a:hover, .additional-footer-menu .more-dropdown-trigger:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .additional-footer-menu .more-dropdown-trigger {
    display: inline-block;
    vertical-align: top;
  }
}
.additional-footer-menu .parent {
  position: relative;
}
.additional-footer-menu .parent .plus {
  display: none;
  position: absolute;
  height: 24px;
  width: 24px;
  cursor: pointer;
  margin-top: -5px;
  margin-left: 3px;
}
@media only screen and (max-width: 767px) {
  .additional-footer-menu .parent .plus {
    display: inline-block;
  }
}
.additional-footer-menu .parent .plus .horizontal, .additional-footer-menu .parent .plus .vertical {
  position: absolute;
  transition: all 333ms ease-in-out;
  transform: rotate(-90deg);
  background-color: #fff;
  top: 0;
}
.additional-footer-menu .parent .plus .horizontal {
  width: 13px;
  height: 1px;
  margin-left: 4px;
  margin-top: 10px;
}
.additional-footer-menu .parent .plus .vertical {
  width: 1px;
  height: 13px;
  margin-left: 10px;
  margin-top: 4px;
}
.additional-footer-menu .parent .parent.expanded > .plus > .vertical, .additional-footer-menu .parent .parent.expanded > .plus > .horizontal {
  transform: rotate(90deg);
  background: #000 !important;
}
.additional-footer-menu .parent .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
.additional-footer-menu .submenu {
  position: absolute;
  right: 0;
  bottom: 100%;
  padding: 15px 10px;
  min-width: 180px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms, visibility 0ms;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .additional-footer-menu .submenu {
    position: relative;
    background: #000;
    height: 0;
    overflow: hidden;
    padding: 0;
  }
}
.additional-footer-menu .submenu li {
  margin-left: 0;
}
.additional-footer-menu .submenu a {
  color: #000 !important;
  display: block;
  padding: 0 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
@media only screen and (max-width: 767px) {
  .additional-footer-menu .submenu a {
    color: #fff !important;
  }
}
.additional-footer-menu li:hover .submenu, .additional-footer-menu .expanded .submenu {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .additional-footer-menu li:hover .submenu, .additional-footer-menu .expanded .submenu {
    height: auto;
    padding: 15px 0;
  }
}

.copyright {
  display: inline-block;
  font: 700 11px/14px "Lato WF", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .copyright {
    max-width: calc(30% - 5px);
  }
}
@media only screen and (max-width: 1023px) {
  .copyright {
    margin-top: 50px;
  }
}

.newsletter-signup {
  position: fixed;
  right: -500px;
  top: 0;
  max-width: 422px;
  height: 100%;
  background-color: white;
  z-index: 101;
  padding: 106px 40px 20px;
  overflow: auto;
  transition: all 0.3s ease;
  visibility: hidden;
}
.newsletter-signup.open {
  right: 0;
  visibility: visible;
}
.newsletter-signup .container .close-button {
  text-decoration: none;
  margin-right: 20px;
  background: transparent;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  right: 40px;
  width: 16px;
  height: 16px;
  top: 50px;
}
.newsletter-signup .container .close-button:before, .newsletter-signup .container .close-button:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1px;
  transition: height 0.2s ease-out;
  border-radius: 3px;
  border: 1px solid;
}
.newsletter-signup .container .close-button:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.newsletter-signup .container .close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.newsletter-signup .container .close-button:hover:before, .newsletter-signup .container .close-button:hover:after, .newsletter-signup .container .close-button:focus:before, .newsletter-signup .container .close-button:focus:after {
  height: 2px;
}
.newsletter-signup .container .header {
  margin-bottom: 60px;
}
.newsletter-signup .container .header .h2 {
  margin-bottom: 20px;
}
.newsletter-signup .container .form-button .button {
  width: 100%;
}
.newsletter-signup .container .success {
  display: none;
}
.newsletter-signup .container .sidebar-title {
  color: #7E6B51;
  font-family: "Lato WF", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.newsletter-signup .container .sidebar-header {
  color: #000;
  font-family: "Lato WF", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}
.newsletter-signup [id*=form_form_] .form-builder-group .form-builder-field {
  width: 100% !important;
}
.newsletter-signup [id*=form_form_] .form-builder-group .form-builder-field label input[type=checkbox] {
  display: none;
}
.newsletter-signup [id*=form_form_] .form-builder-group .form-builder-field input[type=submit] {
  width: 100% !important;
}
.newsletter-signup [id*=form_form_] .form-builder-group .form-builder-field label.checkbox-label {
  padding-left: 40px;
  min-height: 30px;
}
.newsletter-signup [id*=form_form_] .form-builder-group .form-builder-field label.checkbox-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: #F4F4F4;
  border: 1px solid #D8D8D8;
}
.newsletter-signup [id*=form_form_] .form-builder-group .form-builder-field label.checkbox-label:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: transform 175ms 116.6666666667ms, opacity 175ms, visibility 175ms;
  pointer-events: none;
}
.newsletter-signup [id*=form_form_] .form-builder-group .form-builder-field label.checkbox-label.checked:after {
  transform: rotate(-45deg) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 116.6666666667ms, opacity 116.6666666667ms, visibility 116.6666666667ms;
}

#hebs-gallery {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  /* FULL SIZE IMAGE */
  /* FULL SIZE IMAGE -> Navigation */
  /* FULL SIZE IMAGE -> Loading */
  /* THUMBNAILS */
  /* THUMBNAILS -> Navigation */
  /* INFO */
}
#hebs-gallery .galleria {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#hebs-gallery .close-button {
  position: absolute;
  right: 20px;
  top: 12px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}
#hebs-gallery .close-button:hover {
  opacity: 0.8;
}
#hebs-gallery .close-button svg {
  fill: #fff;
}
#hebs-gallery .galleria-container {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
}
#hebs-gallery .select-wrapper {
  position: relative;
  float: left;
  margin: 5px 0 0 20px;
  z-index: 2;
}
#hebs-gallery .galleria-stage {
  position: absolute;
  top: 40px;
  bottom: 120px;
  left: 0;
  right: 0;
  padding: 20px 72px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  #hebs-gallery .galleria-stage {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  #hebs-gallery .galleria-stage {
    bottom: 0;
  }
}
#hebs-gallery .galleria-stage .galleria-image img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#hebs-gallery .galleria-container.touch .galleria-stage {
  padding: 0;
}
#hebs-gallery.no-controls .galleria-stage {
  bottom: 0;
  padding: 20px;
}
#hebs-gallery.no-controls .galleria-image-nav {
  display: none;
}
@media only screen and (max-width: 1023px) {
  #hebs-gallery .galleria-image-nav {
    display: none;
  }
}
#hebs-gallery .galleria-image-nav-left, #hebs-gallery .galleria-image-nav-right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 31px;
  height: 61px;
  margin-top: -30px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../../../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-image-nav-left {
  left: 20px;
  background-position: 0 -37px;
}
#hebs-gallery .galleria-image-nav-left:hover {
  background-position: -51px -37px;
}
#hebs-gallery .galleria-image-nav-left:active {
  background-position: -102px -37px;
}
#hebs-gallery .galleria-image-nav-right {
  right: 20px;
  background-position: 0 -118px;
}
#hebs-gallery .galleria-image-nav-right:hover {
  background-position: -51px -118px;
}
#hebs-gallery .galleria-image-nav-right:active {
  background-position: -102px -118px;
}
#hebs-gallery .galleria-loader {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
}
#hebs-gallery .galleria-loader:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #3E7C9B;
  border-bottom-color: #3E7C9B;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hebs-gallery.no-controls .galleria-thumbnails-container {
  display: none;
}
#hebs-gallery .galleria-thumbnails-container {
  height: 120px;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: #000;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  #hebs-gallery .galleria-thumbnails-container {
    display: none;
  }
}
#hebs-gallery .galleria-carousel .galleria-thumbnails-list {
  margin-left: 52px;
  margin-right: 52px;
}
#hebs-gallery .galleria-thumbnails {
  margin: 20px auto 0;
}
#hebs-gallery .galleria-thumbnails .galleria-image {
  height: 80px !important;
  width: 80px !important;
  background: #000;
  margin: 0 6px 0 0;
  float: left;
  cursor: pointer;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active {
  border: 3px solid #fff;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active img {
  margin: -3px 0 0 -3px;
}
#hebs-gallery .galleria-thumb-nav-left, #hebs-gallery .galleria-thumb-nav-right {
  display: none;
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 21px;
  height: 21px;
  margin-top: -10px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../../../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-carousel .galleria-thumb-nav-left, #hebs-gallery .galleria-carousel .galleria-thumb-nav-right {
  display: block;
}
#hebs-gallery .galleria-thumb-nav-left.disabled, #hebs-gallery .galleria-thumb-nav-right.disabled {
  opacity: 0.5;
  cursor: default;
}
#hebs-gallery .galleria-thumb-nav-left {
  left: 15px;
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:hover {
  background-position: -26px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:active {
  background-position: -57px -199px;
}
#hebs-gallery .galleria-thumb-nav-left.disabled {
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-right {
  right: 15px;
  background-position: 5px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:hover {
  background-position: -26px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:active {
  background-position: -57px -240px;
}
#hebs-gallery .galleria-thumb-nav-right.disabled {
  background-position: 5px -240px;
}
#hebs-gallery .galleria-info {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 40px;
}
#hebs-gallery .galleria-info .galleria-info-description {
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 300px;
  right: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#share-this-site-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAAA1BMVEUAAACnej3aAAAAAXRSTlOzEo46UAAAAA5JREFUeAFjoACMglEAAAJAAAGccJWlAAAAAElFTkSuQmCC");
  background: rgba(0, 0, 0, 0.7);
}
#share-this-site-overlay .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 140px;
  padding: 20px;
  margin: -90px 0 0 -230px;
  background: #327d7d;
}
#share-this-site-overlay .close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../../../images/common.svg") 0 0 no-repeat;
  cursor: pointer;
  z-index: 2;
}
#share-this-site-overlay .close-button:hover {
  background-position: -37px 0;
}
#share-this-site-overlay .close-button:active {
  background-position: -74px 0;
}

#share-this-site {
  padding: 0;
  margin: 0 5px 5px;
  width: 420px;
}
#share-this-site li {
  float: left;
  width: 130px;
  margin: 0 5px;
  font-size: 0;
}
#share-this-site a {
  position: relative;
  display: block;
  height: 16px;
  margin: 5px 0;
  padding-left: 20px;
  font: 12px/16px "Lato WF", sans-serif, Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #f7fcfc;
}
#share-this-site a:hover {
  color: #6dc7c7;
}
#share-this-site a .icon {
  float: left;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: url(images/share.png) 0 0 no-repeat;
}
#share-this-site a.share_facebook .icon {
  background-position: 0 0;
}
#share-this-site a.share_facebook:hover .icon {
  background-position: -36px 0;
}
#share-this-site a.share_twitter .icon {
  background-position: 0 -36px;
}
#share-this-site a.share_twitter:hover .icon {
  background-position: -36px -36px;
}
#share-this-site a.share_tumblr .icon {
  background-position: 0 -72px;
}
#share-this-site a.share_tumblr:hover .icon {
  background-position: -36px -72px;
}
#share-this-site a.share_linkedin .icon {
  background-position: 0 -108px;
}
#share-this-site a.share_linkedin:hover .icon {
  background-position: -36px -108px;
}
#share-this-site a.share_digg .icon {
  background-position: 0 -144px;
}
#share-this-site a.share_digg:hover .icon {
  background-position: -36px -144px;
}
#share-this-site a.share_delicious .icon {
  background-position: 0 -180px;
}
#share-this-site a.share_delicious:hover .icon {
  background-position: -36px -180px;
}
#share-this-site a.share_stumbleupon .icon {
  background-position: 0 -216px;
}
#share-this-site a.share_stumbleupon:hover .icon {
  background-position: -36px -216px;
}
#share-this-site a.share_orkut .icon {
  background-position: 0 -252px;
}
#share-this-site a.share_orkut:hover .icon {
  background-position: -36px -252px;
}
#share-this-site a.share_myspace .icon {
  background-position: 0 -288px;
}
#share-this-site a.share_myspace:hover .icon {
  background-position: -36px -288px;
}
#share-this-site a.share_yammer .icon {
  background-position: 0 -324px;
}
#share-this-site a.share_yammer:hover .icon {
  background-position: -36px -324px;
}
#share-this-site a.share_pinterest .icon {
  background-position: 0 -360px;
}
#share-this-site a.share_pinterest:hover .icon {
  background-position: -36px -360px;
}
#share-this-site a.share_bebo .icon {
  background-position: 0 -396px;
}
#share-this-site a.share_bebo:hover .icon {
  background-position: -36px -396px;
}
#share-this-site a.share_live .icon {
  background-position: 0 -432px;
}
#share-this-site a.share_live:hover .icon {
  background-position: -36px -432px;
}
#share-this-site a.share_google .icon {
  background-position: 0 -468px;
}
#share-this-site a.share_google:hover .icon {
  background-position: -36px -468px;
}
#share-this-site a.share_email .icon {
  background-position: 0 -504px;
}
#share-this-site a.share_email:hover .icon {
  background-position: -36px -504px;
}

.content-lightbox {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: visibility 350ms, opacity 350ms, top 0ms 350ms, left 0ms 350ms;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.content-lightbox.visible {
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: visibility 0ms, opacity 350ms, top 0ms, left 0ms;
}
.content-lightbox .inner-wrapper {
  position: relative;
  padding: 80px;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .content-lightbox .inner-wrapper {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .content-lightbox .inner-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.content-lightbox .content-wrapper {
  position: relative;
  max-width: 940px;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
  overflow: auto;
  padding-top: 52px;
  padding-bottom: 60px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .content-lightbox .content-wrapper {
    padding-bottom: 40px;
  }
}
.content-lightbox .content-lightbox-close-button {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 20;
}
@media only screen and (max-width: 767px) {
  .content-lightbox .content-lightbox-close-button {
    top: 20px;
    right: 20px;
    width: 22px;
    height: 22px;
  }
}
.content-lightbox .content-lightbox-close-button:hover {
  background-color: #3E7C9B;
}
.property .content-lightbox .content-lightbox-close-button {
  background: #3E7C9B;
}
.property .content-lightbox .content-lightbox-close-button:hover {
  background: #000;
}
.content-lightbox .content-lightbox-close-button .svg-icon {
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 767px) {
  .content-lightbox .content-lightbox-close-button .svg-icon {
    width: 12px;
    height: 12px;
  }
}
.content-lightbox .content-lightbox-close-button .svg-icon svg {
  fill: #fff;
}
.content-lightbox .content {
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-lightbox .lightbox-content-loading-blocker {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(237, 238, 236, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 175ms, visibility 175ms;
  z-index: 10;
}
.content-lightbox .lightbox-content-loading-blocker.active {
  opacity: 1;
  visibility: visible;
}
.content-lightbox .lightbox-content-loading-blocker.active:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #3E7C9B;
  border-bottom-color: #3E7C9B;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content-lightbox.full-width .inner-wrapper {
  padding: 80px 20px;
}
@media only screen and (max-width: 767px) {
  .content-lightbox.full-width .inner-wrapper {
    padding: 0;
    display: block;
  }
}
.content-lightbox.full-width .content-wrapper {
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .content-lightbox.full-width .content-wrapper {
    min-height: 100vh;
  }
}

.newsletter-lightbox .content-wrapper {
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
  min-width: auto;
  max-height: 100%;
  max-width: 1100px;
  overflow-y: visible;
  overflow-x: visible;
}
.newsletter-lightbox .content-wrapper .left-image {
  width: 58%;
}
.newsletter-lightbox .content-wrapper .left-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .newsletter-lightbox .content-wrapper .left-image {
    display: none;
  }
}
.newsletter-lightbox .content-wrapper .right-content {
  width: 42%;
  overflow: visible;
}
@media only screen and (max-width: 1023px) {
  .newsletter-lightbox .content-wrapper .right-content {
    width: 100%;
  }
}
.newsletter-lightbox .content-wrapper .right-content .content {
  padding-top: 28px;
  padding-inline: 40px;
}
.newsletter-lightbox .content-wrapper .right-content h2 {
  color: #000000;
  font-family: "Lato WF", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0em;
}
.newsletter-lightbox .content-wrapper .right-content p {
  color: #000000;
  font-family: "Lato WF", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.01em;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] legend {
  display: none;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] h3 {
  display: none;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] label {
  font-family: "Lato WF", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0.01em;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] label p {
  font-family: "Lato WF", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-transform: initial;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] label.custom-checkbox {
  padding-left: 30px;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] label.custom-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #F4F4F4;
  border: 1px solid #D8D8D8;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] label[for*=inputcheckbox] {
  align-items: start;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] label[for*=inputcheckbox] em {
  top: 5px;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] input[type=text],
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] input[type=email],
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] input[type=phone],
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] input[type=datepicker],
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] textarea,
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] select,
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] .input-overlay {
  background-color: #F4F4F4;
  border-color: #D9D8D8;
  width: 100%;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
  width: 100%;
}
.newsletter-lightbox .content-wrapper .right-content [id*=form_form_] input[type=submit] {
  min-width: 100%;
  height: 45px;
  line-height: 45px;
}

.poi {
  overflow: hidden;
}

.poi-overlay .category-selector {
  margin: 0 0 20px 0;
}
.poi-overlay .category-selector .button[class*=icon-]:before {
  background: url("../../../images/poi/icons.svg") no-repeat -50px -50px;
  content: "";
  display: inline-block;
  height: 50px;
  width: 50px;
  vertical-align: top;
}
.poi-overlay .category-selector .button.icon-restaurants-bars:before {
  background-position: -5px -5px;
}
.poi-overlay .category-selector .button.icon-shopping:before {
  background-position: -65px -5px;
}
.poi-overlay .category-selector .button.icon-zoo:before {
  background-position: -125px -5px;
}
.poi-overlay .category-selector .button.icon-theme-parks:before {
  background-position: -185px -5px;
}
.poi-overlay .category-selector .button.icon-wineries:before {
  background-position: -245px -5px;
}
.poi-overlay .category-selector .button.icon-breakfast:before {
  background-position: -305px -5px;
}
.poi-overlay .category-selector .button.icon-attractions:before {
  background-position: -365px -5px;
}
.poi-overlay .category-selector .button.icon-places-for-children:before {
  background-position: -425px -5px;
}
.poi-overlay .category-selector .button.icon-museums:before {
  background-position: -485px -5px;
}
.poi-overlay .category-selector .button.icon-national-monuments:before {
  background-position: -545px -5px;
}
.poi-overlay .category-selector .button.icon-farmer-markets:before {
  background-position: -605px -5px;
}
.poi-overlay .category-selector .button.icon-nightlife:before {
  background-position: -665px -5px;
}
.poi-overlay .category-selector .button.icon-arts-culture:before {
  background-position: -725px -5px;
}
.poi-overlay .category-selector .button.icon-hospitals:before {
  background-position: -785px -5px;
}
.poi-overlay .category-selector .button.icon-banks:before {
  background-position: -845px -5px;
}
.poi-overlay .category-selector .button.icon-spas:before {
  background-position: -905px -5px;
}
.poi-overlay .category-selector .button.icon-gardens:before {
  background-position: -965px -5px;
}
.poi-overlay .category-selector .button.icon-cafes:before {
  background-position: -1025px -5px;
}
.poi-overlay .category-selector .button.icon-entertainment:before {
  background-position: -1085px -5px;
}
.poi-overlay .category-selector .button.icon-golf:before {
  background-position: -1145px -5px;
}
.poi-overlay .category-selector .button.icon-romantic-spots:before {
  background-position: -1205px -5px;
}
.poi-overlay .category-selector .button.icon-hidden-gems:before {
  background-position: -1265px -5px;
}
.poi-overlay .category-selector .button.icon-corporate-offices:before {
  background-position: -1325px -5px;
}
.poi-overlay .category-selector .button.icon-outdoors:before {
  background-position: -1385px -5px;
}
.poi-overlay .category-selector .button.icon-lakes:before {
  background-position: -1445px -5px;
}
.poi-overlay .category-selector .button.icon-rivers:before {
  background-position: -1505px -5px;
}
.poi-overlay .category-selector .button.icon-beaches:before {
  background-position: -1565px -5px;
}
.poi-overlay .category-selector .button.icon-hiking:before {
  background-position: -1625px -5px;
}
.poi-overlay .category-selector .button.icon-places-of-worship:before {
  background-position: -1685px -5px;
}
.poi-overlay .category-selector .button.icon-sports:before {
  background-position: -1745px -5px;
}
.poi-overlay .category-selector .button.icon-universities:before {
  background-position: -1805px -5px;
}

.poi-zoom {
  color: #fff;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}
.poi-zoom .poi-zoom-button {
  display: block;
  vertical-align: top;
  position: relative;
  background: #3E7C9B;
  color: #fff;
  height: 41px;
  width: 41px;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
}
.poi-zoom .poi-zoom-button:after {
  content: "";
  background: #fff;
  display: block;
  width: 18px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poi-zoom .poi-zoom-button.zoom-in {
  margin-bottom: 2px;
}
.poi-zoom .poi-zoom-button.zoom-in:before {
  content: "";
  background: #fff;
  display: block;
  width: 1px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.poi-map {
  height: 540px;
}

.poi-map-wrapper {
  position: relative;
}

.points-table {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .points-table {
    margin-top: 20px;
  }
}
.points-table th {
  background-color: #EDEEEC;
}
.points-table th, .points-table td {
  font-size: 12px;
  background: none;
}
.points-table th.phone, .points-table td.phone {
  white-space: nowrap;
}
.points-table .expand-point-description {
  text-align: left;
}
.points-table .expand-point-description:hover {
  color: #7E6B51;
}
.points-table .point-description {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms, visibility 350ms;
}
.points-table .point-description.visible {
  display: block;
  opacity: 1;
  visibility: visible;
}
.points-table .point-description .button {
  height: 38px;
  line-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}
.points-table .show-on-map {
  text-align: center;
}
.points-table .show-on-map .show-on-map-trigger:hover svg {
  stroke: #7E6B51;
}

.hide-distance .map-content .poi-distance {
  display: none;
}

button.show-on-map-trigger {
  text-align: left;
}

#map {
  height: 600px;
}
#map .map-content {
  background: #fff;
  color: #000;
  padding: 20px;
  position: relative;
  width: 265px;
  box-shadow: 0 2px 6px 0 #B6B6B6;
  font: 400 13px/16px "Lato WF", sans-serif, Arial, sans-serif;
}
#map .leaflet-popup.leaflet-zoom-animated {
  bottom: 27px !important;
}
#map .leaflet-control-attribution {
  display: none;
}
#map .leaflet-popup-content-wrapper {
  background: transparent;
  box-shadow: none !important;
}
#map .leaflet-popup-content {
  margin: 0px !important;
}

#sun-map {
  height: 600px;
}
#sun-map .button {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0;
  padding: 0 32px;
  background-color: #000;
  color: #FAB915 !important;
  height: 60px;
  font: 600 30px/60px "Bebas Neue", serif;
  text-transform: uppercase;
  -moz-text-align-last: auto;
  text-align-last: auto;
  text-decoration: underline;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sun-map .map-content .get-direction {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  /*width: 100%;*/
}
#sun-map .leaflet-control-attribution {
  display: none !important;
}
#sun-map .leaflet-popup.leaflet-zoom-animated {
  bottom: 37px !important;
}

.leaflet-control-attribution {
  display: none !important;
}

#localAttraction {
  height: 500px;
}

.main-icon {
  z-index: 999 !important;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  box-shadow: none !important;
}

.leaflet-top.leaflet-left {
  display: none !important;
}

.leaflet-popup-content {
  width: 100% !important;
}

a.leaflet-control-zoom-in {
  background: #bcaa90;
  color: #fff;
  border: #bcaa90 !important;
}
a.leaflet-control-zoom-in a:hover {
  background: #bcaa90;
  color: #fff;
}

a.leaflet-control-zoom-out {
  background: #bcaa90;
  color: #fff;
  border: #bcaa90 !important;
}
a.leaflet-control-zoom-out a:hover {
  background: #bcaa90;
  color: #fff;
}

.leaflet-bar a:hover, .leaflet-bar a:focus {
  background: #bcaa90 !important;
  color: #fff !important;
}

.leaflet-control-zoom.leaflet-bar.leaflet-control a {
  color: #fff !important;
}

/* contact us info */
#contact-us-map {
  height: 100%;
  position: absolute;
  width: 50%;
  left: 50%;
}
@media only screen and (max-width: 767px) {
  #contact-us-map {
    width: 100%;
    left: 0;
    position: relative;
  }
}
#contact-us-map .leaflet-top.leaflet-left {
  display: none !important;
}
#contact-us-map a.leaflet-control-zoom-in {
  background: #bcaa90;
  color: #fff;
  border: #bcaa90 !important;
}
#contact-us-map a.leaflet-control-zoom-in a:hover {
  background: #bcaa90;
  color: #fff;
}
#contact-us-map a.leaflet-control-zoom-out {
  background: #bcaa90;
  color: #fff;
  border: #bcaa90 !important;
}
#contact-us-map a.leaflet-control-zoom-out a:hover {
  background: #bcaa90;
  color: #fff;
}
#contact-us-map .leaflet-bar a:hover, #contact-us-map .leaflet-bar a:focus {
  background: #bcaa90 !important;
  color: #000 !important;
}
#contact-us-map .leaflet-control-zoom.leaflet-bar.leaflet-control a {
  color: #fff !important;
}
#contact-us-map .leaflet-container a {
  color: #fff !important;
}
#contact-us-map a.button.get-direction {
  color: #fff;
}

.leaflet-popup-content {
  margin: 0px !important;
}

/*
.leaflet-container a {
   // color: #fff !important;
}
*/
.leaflet-popup.leaflet-zoom-animated {
  bottom: 17px !important;
}

/*
.leaflet-control-zoom.leaflet-bar.leaflet-control a {
   // color: #000 !important;
}
*/
.show-on-map-pin {
  max-width: 20px;
  width: 100%;
  overflow: hidden;
}

.search-map {
  overflow: hidden;
}
.search-map .infoBox > img {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  z-index: 5;
}

.map-container {
  height: 600px;
  z-index: 9;
}

.search-map .leaflet-popup-content {
  width: 301px !important;
}
.search-map .leaflet-popup-content-wrapper {
  border: 3px solid #bcaa90;
  border-radius: 0px;
}
.search-map .info-card {
  background-color: white;
}
.search-map .info-card .thumbnail {
  height: 100px;
}
.search-map .learn-more-link {
  color: black;
}

.accordion-row {
  background-color: #bcaa90;
  text-align: left;
}
.accordion-row .accordion-title {
  width: 100%;
  display: flex;
  margin-bottom: 0;
  align-items: center;
  text-align: left;
  background-color: inherit;
  padding: 13px 20px;
  color: #fff;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 1.76vw;
  line-height: 1.215em;
  font-weight: 300;
  cursor: pointer;
}
@media (max-width: 1136.3636363636px) {
  .accordion-row .accordion-title {
    font-size: 20px;
  }
}
@media (min-width: 1590.9090909091px) {
  .accordion-row .accordion-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .accordion-row .accordion-title {
    padding: 10px;
    font-size: 14px;
  }
}
.accordion-row .accordion-title:after {
  content: "+";
  margin-left: auto;
  width: 30px;
  height: 30px;
  font-size: 64px;
  font-weight: 200;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .accordion-row .accordion-title:after {
    width: 20px;
    height: 20px;
    font-size: 40px;
  }
}
.accordion-row .accordion-title .accordion-entries-count {
  flex-shrink: 0;
  margin: 0 20px;
  font-size: 18px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  white-space: nowrap;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .accordion-row .accordion-title .accordion-entries-count {
    margin: 0 5px;
    font-size: 14px;
    line-height: 30px;
    width: 30px;
  }
}
.accordion-row .accordion-copy {
  display: none;
  background-color: #fff;
  padding: 20px 15px;
  border: 5px solid #bcaa90;
  border-top: none;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .accordion-row .accordion-copy {
    padding: 15px 5px;
  }
}
.accordion-row .accordion-copy .description-top {
  margin-bottom: 20px;
}
.accordion-row .accordion-copy .description-top .description {
  border-bottom: 1px solid #bcaa90;
  padding: 15px 0;
}
.accordion-row .accordion-copy .description-bottom {
  margin-top: 20px;
}
.accordion-row .accordion-copy .description-bottom .description {
  border-top: 1px solid #bcaa90;
  padding: 15px 0;
}
.accordion-row.expanded {
  background-color: #3F3F3F;
}
.accordion-row.expanded .accordion-title:after {
  content: "-";
}
.accordion-row.expanded .accordion-copy {
  border-color: #3F3F3F;
}

.accordion-row + .accordion-row {
  margin-top: 2px;
}

.property-with-rates .property-info h4 {
  font-size: 1.32vw;
  line-height: 1.222em;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1060.6060606061px) {
  .property-with-rates .property-info h4 {
    font-size: 14px;
  }
}
@media (min-width: 1363.6363636364px) {
  .property-with-rates .property-info h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .property-with-rates .property-info h4 {
    font-size: 14px;
  }
}
.property-with-rates .top-block + .bottom-block {
  margin-top: 15px;
}
.property-with-rates .top-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .property-with-rates .top-block .expand-property-with-rates-button {
    align-self: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .property-with-rates .top-block .expand-property-with-rates-button .expand-icon {
    width: 15px;
    height: 15px;
  }
}
.property-with-rates .bottom-block {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .property-with-rates .bottom-block {
    flex-wrap: wrap;
  }
}
.property-with-rates .left-side {
  max-width: 362px;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .property-with-rates .left-side {
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .property-with-rates .left-side {
    width: 100%;
    max-width: none;
  }
}
.property-with-rates .left-side .property-img {
  width: 100%;
}
.property-with-rates .right-side {
  flex-grow: 1;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .property-with-rates .right-side {
    margin-left: 0;
  }
}
.property-with-rates .controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .property-with-rates .controls {
    justify-content: space-between;
    margin-top: 20px;
  }
}
.property-with-rates .controls > .button, .property-with-rates .controls .custom-bold {
  margin: 5px 20px 5px 0;
}
@media only screen and (max-width: 767px) {
  .property-with-rates .controls > .button, .property-with-rates .controls .custom-bold {
    margin: 5px;
  }
}
.property-with-rates .controls .additional-text {
  margin-right: 20px;
}
@media only screen and (max-width: 1023px) {
  .property-with-rates .controls .additional-text {
    width: 100%;
  }
}

.property-with-rates + .property-with-rates {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #bcaa90;
}

.room-with-rates {
  width: 100%;
}
.room-with-rates .rate-types-row, .room-with-rates .rate-values-row {
  display: flex;
  justify-content: flex-end;
  padding: 15px 0;
  border-top: 1px solid #E2F0F3;
}
.room-with-rates .w-35 {
  width: 35%;
  flex-grow: 0;
  flex-shrink: 0;
}
.room-with-rates .w-30 {
  width: 30%;
  flex-grow: 0;
  flex-shrink: 0;
}
.room-with-rates .rate-type {
  font-size: 1.8vw;
  line-height: 1.5em;
  font-weight: 300;
  text-transform: uppercase;
  color: #7E6B51;
  text-align: right;
}
@media (max-width: 666.6666666667px) {
  .room-with-rates .rate-type {
    font-size: 12px;
  }
}
@media (min-width: 888.8888888889px) {
  .room-with-rates .rate-type {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .room-with-rates .rate-type {
    font-size: 10px;
  }
}
.room-with-rates .room-name {
  margin-right: auto;
}
.room-with-rates .rate-value {
  color: #7E6B51;
  font-size: 1.8vw;
  line-height: 1.2em;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 777.7777777778px) {
  .room-with-rates .rate-value {
    font-size: 14px;
  }
}
@media (min-width: 1555.5555555556px) {
  .room-with-rates .rate-value {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .room-with-rates .rate-value {
    font-size: 14px;
  }
}

#property-with-rates-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999;
}
@media only screen and (max-height: 600px) {
  #property-with-rates-popup-overlay {
    overflow: auto;
  }
}
#property-with-rates-popup-overlay .property-with-rates-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
@media only screen and (max-height: 600px) {
  #property-with-rates-popup-overlay .property-with-rates-popup {
    height: auto;
  }
}
#property-with-rates-popup-overlay .property-with-rates-popup .center-column {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  #property-with-rates-popup-overlay .property-with-rates-popup .center-column {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#property-with-rates-popup-overlay .property-with-rates-popup-container {
  position: relative;
  padding: 0 30px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #property-with-rates-popup-overlay .property-with-rates-popup-container {
    padding: 0;
  }
}
#property-with-rates-popup-overlay .property-with-rates-popup-container .property-with-rates-popup-close {
  position: absolute;
  top: 30px;
  right: 60px;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  #property-with-rates-popup-overlay .property-with-rates-popup-container .property-with-rates-popup-close {
    right: 30px;
  }
  #property-with-rates-popup-overlay .property-with-rates-popup-container .property-with-rates-popup-close .svg-icon svg {
    fill: #fff;
  }
}
#property-with-rates-popup-overlay .slideshow {
  position: static;
}
#property-with-rates-popup-overlay .slide {
  border: 15px solid #E2F0F3;
}
#property-with-rates-popup-overlay .slide .expand-property-with-rates-button {
  display: none;
}
#property-with-rates-popup-overlay .slide .top-block {
  margin-right: 30px;
  padding-top: 0;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #property-with-rates-popup-overlay .slide .top-block {
    margin-right: 0;
  }
}
#property-with-rates-popup-overlay .slide .left-side {
  min-width: 40%;
}
@media only screen and (max-width: 767px) {
  #property-with-rates-popup-overlay .slide .left-side {
    width: 100%;
    min-width: auto;
    height: 170px;
  }
}
#property-with-rates-popup-overlay .slide .left-side a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#property-with-rates-popup-overlay .slide .right-side {
  padding: 30px;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  #property-with-rates-popup-overlay .slide .right-side {
    padding: 20px;
  }
}
#property-with-rates-popup-overlay .property-with-rates + .property-with-rates {
  margin-top: 0;
  padding: 0;
}
#property-with-rates-popup-overlay .slideshow-button.previous {
  left: 0px;
}
#property-with-rates-popup-overlay .slideshow-button.next {
  right: 0px;
}
@media only screen and (max-width: 767px) {
  #property-with-rates-popup-overlay .property-with-rates .controls {
    flex-wrap: wrap;
  }
  #property-with-rates-popup-overlay .slideshow-button {
    display: none;
  }
}

@media only screen and (min-width: 1366px) {
  .properties-with-rates-accordion > .center-column {
    padding: 0 100px;
  }
}

.tripadvisor-rating {
  display: flex;
}
.tripadvisor-rating .tripadvisor-logo-short, .tripadvisor-rating .tripadvisor-rating-circles {
  display: block;
}
.tripadvisor-rating .tripadvisor-rating-circles {
  width: 60px;
  height: 12px;
  margin: 0 0 10px 3px;
}

.tripadvisor-rating-circles {
  background: url("../images/ta-rating-circles.svg") 0 0 no-repeat;
}
[data-ta-rating="1"] .tripadvisor-rating-circles {
  background-position: 0 -12px;
}
[data-ta-rating="2"] .tripadvisor-rating-circles {
  background-position: 0 -24px;
}
[data-ta-rating="3"] .tripadvisor-rating-circles {
  background-position: 0 -36px;
}
[data-ta-rating="4"] .tripadvisor-rating-circles {
  background-position: 0 -48px;
}
[data-ta-rating="5"] .tripadvisor-rating-circles {
  background-position: 0 -60px;
}
[data-ta-rating="6"] .tripadvisor-rating-circles {
  background-position: 0 -72px;
}
[data-ta-rating="7"] .tripadvisor-rating-circles {
  background-position: 0 -84px;
}
[data-ta-rating="8"] .tripadvisor-rating-circles {
  background-position: 0 -96px;
}
[data-ta-rating="9"] .tripadvisor-rating-circles {
  background-position: 0 -108px;
}
[data-ta-rating="10"] .tripadvisor-rating-circles {
  background-position: 0 -120px;
}
[data-ta-rating^="2."] .tripadvisor-rating-circles {
  background-position: 0 -24px;
}
[data-ta-rating^="3."] .tripadvisor-rating-circles {
  background-position: 0 -36px;
}
[data-ta-rating^="4."] .tripadvisor-rating-circles {
  background-position: 0 -48px;
}
[data-ta-rating^="5."] .tripadvisor-rating-circles {
  background-position: 0 -60px;
}
[data-ta-rating^="6."] .tripadvisor-rating-circles {
  background-position: 0 -72px;
}
[data-ta-rating^="7."] .tripadvisor-rating-circles {
  background-position: 0 -84px;
}
[data-ta-rating^="8."] .tripadvisor-rating-circles {
  background-position: 0 -96px;
}
[data-ta-rating^="9."] .tripadvisor-rating-circles {
  background-position: 0 -108px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  text-indent: -9999px;
  border-radius: 50%;
  background: #3E7C9B;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: opacity 350ms;
}
.play-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-12px, -20px);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid rgba(255, 255, 255, 0.5);
}
.play-button.small {
  width: 40px;
  height: 40px;
}
.play-button.small:after {
  transform: translate(-6px, -10px);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767px) {
  .play-button {
    width: 40px;
    height: 40px;
  }
  .play-button:after {
    transform: translate(-6px, -10px);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid rgba(255, 255, 255, 0.5);
  }
}
.play-button:hover {
  opacity: 1;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq-section-category {
  margin-bottom: 40px;
}

.faq-section-category-descr {
  text-align: center;
}

.faq-section-item .faq-section-question {
  position: relative;
  cursor: pointer;
  padding: 20px 50px 20px 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #DDE0E7;
}

.faq-section-item .faq-section-question:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  height: 30px;
  width: 30px;
  margin-top: -15px;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
}

.faq-section-item.active .faq-section-question:after {
  content: "-";
}

.faq-section-item .faq-section-answer {
  display: none;
  overflow: hidden;
  padding: 20px 20px 0 20px;
  background: rgba(246, 247, 249, 0.4);
}

.faq-section-item .faq-section-answer .thumb {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.faq-section-item .faq-section-answer .descr {
  overflow: hidden;
}

.faq-section .faq-section-category-descr {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .faq-section .faq-section-category-descr {
    text-align: center;
  }
}
.faq-section .faq-section-category-descr h3 {
  font-weight: 400;
  color: #bcaa90;
}
.faq-section .faq-section-item:first-child .faq-section-question {
  border-top: 1px solid #D8D8D8;
}
.faq-section .faq-section-item .faq-section-question {
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
}
.faq-section .faq-section-item .faq-section-answer {
  padding: 20px 15px;
  border-bottom: 1px solid #D8D8D8;
  font-weight: 400;
}

#timer {
  text-align: center;
  line-height: 1;
  z-index: 20;
  margin: 20px auto;
}
#timer .timer-wrapper {
  overflow: hidden;
}
#timer .timer-wrapper > * {
  display: inline-block;
}
#timer .header {
  margin-bottom: 10px;
  text-transform: uppercase;
  font: 400 25px/28px "Lato WF", sans-serif;
  font-style: normal;
  text-align: left;
}
#timer .t {
  border: 1px solid #000;
  border-radius: 4px;
  float: left;
  width: 118px;
  margin-right: 15px;
  position: relative;
  text-align: center;
}
#timer .t:before, #timer .t:after {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  left: -1px;
  top: 54px;
  background: #000;
  z-index: 1;
}
#timer .t:after {
  right: -26px;
  left: auto;
  width: 36px;
}
#timer .t .time {
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 100px;
  height: 87px;
  color: #bcaa90;
  z-index: 1;
  font-family: "Lato WF", sans-serif;
  text-transform: uppercase;
  font-size: 4vw;
}
@media (max-width: 500px) {
  #timer .t .time {
    font-size: 20px;
  }
}
@media (min-width: 1750px) {
  #timer .t .time {
    font-size: 70px;
  }
}
#timer .t .time b {
  font-weight: normal;
}
#timer .t strong {
  text-transform: uppercase;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 12px;
  display: block;
  line-height: 14px;
  color: #666666;
  margin-bottom: 7px;
}
#timer .t.s {
  margin-right: 0;
}
#timer .t.s:after {
  width: 11px;
  right: -1px;
}
#timer .t.nobefore {
  margin-right: 0;
}
#timer .t.nobefore .minutes:before {
  display: none;
}
@media only screen and (max-width: 767px) {
  #timer .timer-wrapper {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
  }
  #timer .t {
    float: none;
    width: 100%;
    margin-right: 10px;
  }
  #timer .t strong {
    font-size: 10px;
  }
  #timer .t .time {
    height: 50px;
    line-height: 65px;
  }
  #timer .t:before, #timer .t:after {
    content: none;
  }
  #timer .header {
    text-align: center;
  }
}

.page-content .careers .narrow {
  width: 20%;
}

.google-map {
  position: relative;
}
.google-map:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #3E7C9B;
  border-bottom-color: #3E7C9B;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.google-map.loaded:before {
  content: none;
}

.hotel-location-map, .poi-map-canvas {
  height: 444px;
  background: #FAFAFA;
}
.hotel-location-map p, .poi-map-canvas p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.2;
}
.hotel-location-map .button, .poi-map-canvas .button {
  display: block;
}
.hotel-location-map .map-content, .poi-map-canvas .map-content {
  overflow: hidden;
}

.map-content {
  background: #fff;
  color: #000;
  padding: 20px;
  position: relative;
  width: 265px;
  box-shadow: 0 2px 6px 0 #B6B6B6;
  font: 400 13px/16px "Lato WF", sans-serif, Arial, sans-serif;
}
.map-content h3 {
  font: 400 16px/1 "Lato WF", sans-serif, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.map-content h3, .map-content p {
  margin-bottom: 10px;
}
.map-content .get-direction {
  height: 30px;
  line-height: 30px;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  width: 100%;
}
.map-content:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  width: 0;
  height: 0;
  border-right: 15px solid #fff;
  border-bottom: 15px solid transparent;
}

.google-map .info-card {
  background: #fff;
  color: #000;
  position: relative;
  border: 2px solid #bcaa90;
  width: 280px;
  font: 300 14px/24px "Lato WF", sans-serif, Arial, sans-serif;
}
.google-map .info-card .thumbnail:before {
  padding-bottom: 50%;
}
.google-map .info-card .info {
  padding-bottom: 0;
}
.google-map .info-card h3, .google-map .info-card p {
  margin-bottom: 20px;
}

.pressroom .button:not(:first-child).active {
  background-color: #000;
}

.pressroom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -20px -10px;
}
@media only screen and (max-width: 767px) {
  .pressroom-list {
    margin: 0;
  }
}
.pressroom-list .pressroom-item {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: calc(33.33% - 20px);
  margin: 20px 10px;
}
@media only screen and (min-width: 1366px) {
  .pressroom-list .pressroom-item {
    width: calc(25% - 20px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pressroom-list .pressroom-item {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom-list .pressroom-item {
    width: 100%;
    margin: 10px 0;
  }
}
.pressroom-list .pressroom-item .thumbnail {
  position: relative;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.pressroom-list .pressroom-item .thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 80%;
}
.pressroom-list .pressroom-item .description {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 180px;
  margin: -90px 20px 0 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 #B6B6B6;
  font-weight: 300;
  z-index: 1;
}
.pressroom-list .pressroom-item .description h3 {
  font-size: 1.76vw;
  line-height: 1.1;
  margin-bottom: 10px;
}
@media (max-width: 1022.7272727273px) {
  .pressroom-list .pressroom-item .description h3 {
    font-size: 18px;
  }
}
@media (min-width: 1363.6363636364px) {
  .pressroom-list .pressroom-item .description h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .pressroom-list .pressroom-item .description h3 {
    font-size: 18px;
    line-height: 1.1em;
  }
}
.pressroom-list .pressroom-item .description time {
  color: #3E7C9B;
  display: block;
  margin: 5px 0;
}
.pressroom-list .pressroom-item .description p {
  margin-bottom: auto;
}
.pressroom-list .pressroom-item nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pressroom-list .pressroom-item .pdf {
  color: #3E7C9B;
  margin: 10px 0 0;
  display: block;
  position: relative;
  line-height: 16px;
  padding-left: 0 !important;
}
.pressroom-list .pressroom-item .pdf:hover {
  color: #000;
}
.pressroom-list .pressroom-item .view-gallery {
  display: block;
  margin: 10px 0 0;
}

.form {
  display: inline-block;
  width: 100%;
  max-width: 820px;
  position: relative;
  margin-bottom: 20px;
}
.form fieldset + fieldset {
  margin-top: 40px;
}
.form h3 {
  color: #7E6B51;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 1.4vw;
  line-height: 1.2em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 1142.8571428571px) {
  .form h3 {
    font-size: 16px;
  }
}
@media (min-width: 1428.5714285714px) {
  .form h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .form h3 {
    font-size: 16px;
  }
}
.form label {
  display: block;
  margin-bottom: 5px;
  font: 300 14px/18px "Lato WF", sans-serif, Arial, sans-serif;
  text-transform: uppercase;
  text-align: left;
}
.form label em {
  position: relative;
  display: inline-block;
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 7px;
}
.form p, .form .form-builder-group p, .form .g-recaptcha {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .form p, .form .form-builder-group p, .form .g-recaptcha {
    margin-bottom: 20px;
  }
}
.form p.align-right, .form .form-builder-group p.align-right, .form .g-recaptcha.align-right {
  text-align: right;
}
.form p.has-bg, .form .form-builder-group p.has-bg, .form .g-recaptcha.has-bg {
  background-color: #EDEEEC;
}
.form p span.group, .form .form-builder-group p span.group, .form .g-recaptcha span.group {
  display: block;
  min-height: 40px;
  line-height: 40px;
}
.form p span.group label, .form .form-builder-group p span.group label, .form .g-recaptcha span.group label {
  display: inline-flex;
  margin: 0 20px 0 0;
  font: 400 14px/1.3 "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: normal;
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  .form p span.group label, .form .form-builder-group p span.group label, .form .g-recaptcha span.group label {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
  }
}
.form p span.group input, .form .form-builder-group p span.group input, .form .g-recaptcha span.group input {
  margin-right: 0.4em;
}
.form .g-recaptcha {
  overflow: hidden;
}
.form .form-builder-group {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 1023px) {
  .form .form-builder-group {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.form .form-builder-group > p, .form .form-builder-group > h3, .form .form-builder-group > ul, .form .form-builder-group > .group-for-duplicating > p, .form .form-builder-group > .g-recaptcha {
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 1023px) {
  .form .form-builder-group > p, .form .form-builder-group > h3, .form .form-builder-group > ul, .form .form-builder-group > .group-for-duplicating > p, .form .form-builder-group > .g-recaptcha {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.form .form-builder-group > p > *, .form .form-builder-group > h3 > *, .form .form-builder-group > ul > *, .form .form-builder-group > .group-for-duplicating > p > *, .form .form-builder-group > .g-recaptcha > * {
  width: 100%;
}
.form .form-builder-group > p.w-66, .form .form-builder-group > h3.w-66, .form .form-builder-group > ul.w-66, .form .form-builder-group > .group-for-duplicating > p.w-66, .form .form-builder-group > .g-recaptcha.w-66 {
  width: calc(66.66% - 20px);
}
@media only screen and (min-width: 1024px) {
  .form .form-builder-group > p.w-66-on-desk, .form .form-builder-group > h3.w-66-on-desk, .form .form-builder-group > ul.w-66-on-desk, .form .form-builder-group > .group-for-duplicating > p.w-66-on-desk, .form .form-builder-group > .g-recaptcha.w-66-on-desk {
    width: calc(66.66% - 20px);
  }
}
@media only screen and (max-width: 1023px) {
  .form .form-builder-group > p.w-66-on-mob, .form .form-builder-group > h3.w-66-on-mob, .form .form-builder-group > ul.w-66-on-mob, .form .form-builder-group > .group-for-duplicating > p.w-66-on-mob, .form .form-builder-group > .g-recaptcha.w-66-on-mob {
    width: calc(66.66% - 10px);
  }
}
.form .form-builder-group > p.w-50, .form .form-builder-group > h3.w-50, .form .form-builder-group > ul.w-50, .form .form-builder-group > .group-for-duplicating > p.w-50, .form .form-builder-group > .g-recaptcha.w-50 {
  width: calc(50% - 20px);
}
@media only screen and (min-width: 1024px) {
  .form .form-builder-group > p.w-50-on-desk, .form .form-builder-group > h3.w-50-on-desk, .form .form-builder-group > ul.w-50-on-desk, .form .form-builder-group > .group-for-duplicating > p.w-50-on-desk, .form .form-builder-group > .g-recaptcha.w-50-on-desk {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 1023px) {
  .form .form-builder-group > p.w-50-on-mob, .form .form-builder-group > h3.w-50-on-mob, .form .form-builder-group > ul.w-50-on-mob, .form .form-builder-group > .group-for-duplicating > p.w-50-on-mob, .form .form-builder-group > .g-recaptcha.w-50-on-mob {
    width: calc(50% - 20px);
  }
}
.form .form-builder-group > p.w-33, .form .form-builder-group > h3.w-33, .form .form-builder-group > ul.w-33, .form .form-builder-group > .group-for-duplicating > p.w-33, .form .form-builder-group > .g-recaptcha.w-33 {
  width: calc(33.33% - 20px);
}
@media only screen and (min-width: 1024px) {
  .form .form-builder-group > p.w-33-on-desk, .form .form-builder-group > h3.w-33-on-desk, .form .form-builder-group > ul.w-33-on-desk, .form .form-builder-group > .group-for-duplicating > p.w-33-on-desk, .form .form-builder-group > .g-recaptcha.w-33-on-desk {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 1023px) {
  .form .form-builder-group > p.w-33-on-mob, .form .form-builder-group > h3.w-33-on-mob, .form .form-builder-group > ul.w-33-on-mob, .form .form-builder-group > .group-for-duplicating > p.w-33-on-mob, .form .form-builder-group > .g-recaptcha.w-33-on-mob {
    width: calc(33.33% - 10px);
  }
}
.form .form-builder-group > p.w-20, .form .form-builder-group > h3.w-20, .form .form-builder-group > ul.w-20, .form .form-builder-group > .group-for-duplicating > p.w-20, .form .form-builder-group > .g-recaptcha.w-20 {
  width: calc((33.33% - 40px) * 0.66 + 10px);
}
@media only screen and (min-width: 1024px) {
  .form .form-builder-group > p.w-20-on-desk, .form .form-builder-group > h3.w-20-on-desk, .form .form-builder-group > ul.w-20-on-desk, .form .form-builder-group > .group-for-duplicating > p.w-20-on-desk, .form .form-builder-group > .g-recaptcha.w-20-on-desk {
    width: calc((33.33% - 40px) * 0.66 + 10px);
  }
}
@media only screen and (max-width: 1023px) {
  .form .form-builder-group > p.w-20-on-mob, .form .form-builder-group > h3.w-20-on-mob, .form .form-builder-group > ul.w-20-on-mob, .form .form-builder-group > .group-for-duplicating > p.w-20-on-mob, .form .form-builder-group > .g-recaptcha.w-20-on-mob {
    width: calc((33.33% - 40px) * 0.66 + 10px);
  }
}
.form .form-builder-group > p.w-10, .form .form-builder-group > h3.w-10, .form .form-builder-group > ul.w-10, .form .form-builder-group > .group-for-duplicating > p.w-10, .form .form-builder-group > .g-recaptcha.w-10 {
  width: calc((33.33% - 40px) * 0.33);
}
@media only screen and (min-width: 1024px) {
  .form .form-builder-group > p.w-10-on-desk, .form .form-builder-group > h3.w-10-on-desk, .form .form-builder-group > ul.w-10-on-desk, .form .form-builder-group > .group-for-duplicating > p.w-10-on-desk, .form .form-builder-group > .g-recaptcha.w-10-on-desk {
    width: calc((33.33% - 40px) * 0.33);
  }
}
@media only screen and (max-width: 1023px) {
  .form .form-builder-group > p.w-10-on-mob, .form .form-builder-group > h3.w-10-on-mob, .form .form-builder-group > ul.w-10-on-mob, .form .form-builder-group > .group-for-duplicating > p.w-10-on-mob, .form .form-builder-group > .g-recaptcha.w-10-on-mob {
    width: calc((33.33% - 40px) * 0.33);
  }
}
.form input[type=text], .form input[type=date], .form input[type=datepicker], .form input[type=password], .form textarea, .form select, .form .input-overlay {
  display: inline-block;
  color: #000;
  border: 1px solid #D8D8D8;
  background: #F4F4F4;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
  letter-spacing: normal;
  padding: 0 15px;
  resize: none;
}
.form input[type=text]::-webkit-input-placeholder, .form input[type=date]::-webkit-input-placeholder, .form input[type=datepicker]::-webkit-input-placeholder, .form input[type=password]::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder, .form select::-webkit-input-placeholder, .form .input-overlay::-webkit-input-placeholder {
  color: #000;
}
.form input[type=text]:-moz-placeholder, .form input[type=date]:-moz-placeholder, .form input[type=datepicker]:-moz-placeholder, .form input[type=password]:-moz-placeholder, .form textarea:-moz-placeholder, .form select:-moz-placeholder, .form .input-overlay:-moz-placeholder {
  color: #000;
}
.form input[type=text]::-moz-placeholder, .form input[type=date]::-moz-placeholder, .form input[type=datepicker]::-moz-placeholder, .form input[type=password]::-moz-placeholder, .form textarea::-moz-placeholder, .form select::-moz-placeholder, .form .input-overlay::-moz-placeholder {
  color: #000;
}
.form input[type=text]:-ms-input-placeholder, .form input[type=date]:-ms-input-placeholder, .form input[type=datepicker]:-ms-input-placeholder, .form input[type=password]:-ms-input-placeholder, .form textarea:-ms-input-placeholder, .form select:-ms-input-placeholder, .form .input-overlay:-ms-input-placeholder {
  color: #000;
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=date]:focus::-webkit-input-placeholder, .form input[type=datepicker]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder, .form select:focus::-webkit-input-placeholder, .form .input-overlay:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form input[type=text]:focus:-moz-placeholder, .form input[type=date]:focus:-moz-placeholder, .form input[type=datepicker]:focus:-moz-placeholder, .form input[type=password]:focus:-moz-placeholder, .form textarea:focus:-moz-placeholder, .form select:focus:-moz-placeholder, .form .input-overlay:focus:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=date]:focus::-moz-placeholder, .form input[type=datepicker]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder, .form select:focus::-moz-placeholder, .form .input-overlay:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=date]:focus:-ms-input-placeholder, .form input[type=datepicker]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder, .form select:focus:-ms-input-placeholder, .form .input-overlay:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form .input-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
}
.form .select-wrapper {
  width: 100%;
}
.form textarea {
  height: 120px;
  overflow: auto;
  line-height: 20px;
  padding: 15px;
}
.form input[type=checkbox],
.form input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
.form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .datepicker-input-wrapper {
  position: relative;
}
.form .datepicker-input-wrapper input.date-pick {
  padding-right: 45px;
}
.form .datepicker-input-wrapper .ui-datepicker-trigger {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.form .terms-privacy.terms-privacy {
  text-align: inherit;
}
.form .disabled {
  visibility: hidden;
}
.form .controls {
  margin-top: 15px;
}
.form .controls p > * {
  vertical-align: middle;
}
.form .controls .button {
  margin: 0 20px 5px 0;
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    margin: 5px;
  }
}
.form .controls .button:last-child {
  margin-right: 0;
}
.form .group-for-duplicating {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .form .group-for-duplicating {
    flex-wrap: wrap;
  }
  .form .group-for-duplicating p {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 1023px) {
  .form .group-for-duplicating + .group-for-duplicating {
    margin-top: 30px;
  }
}
.form .duplicating-trigger-wrapper {
  display: flex;
  justify-content: space-between;
}
.form#login-form .controls p {
  text-align: left;
}

#form_module_container_errors,
#form_module_container_success {
  padding: 10px;
  margin: 10px 0;
}

#form_module_container_errors {
  color: #bc1e1d;
  background-color: #EDEEEC;
}

#form_module_container_errors .goTo {
  color: #D2ECDB;
  text-decoration: underline;
  cursor: pointer;
}

#form_module_container_errors .goTo:hover {
  filter: grayscale(100%);
}

#form_module_container_success {
  color: green;
  background-color: #FAFAFA;
}

[id*=form_form_] {
  display: inline-block;
  width: 100%;
  max-width: 820px;
  position: relative;
  margin-bottom: 20px;
}
[id*=form_form_] fieldset + fieldset {
  margin-top: 40px;
}
[id*=form_form_] h3 {
  color: #7E6B51;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 1.4vw;
  line-height: 1.2em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 1142.8571428571px) {
  [id*=form_form_] h3 {
    font-size: 16px;
  }
}
@media (min-width: 1428.5714285714px) {
  [id*=form_form_] h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] h3 {
    font-size: 16px;
  }
}
[id*=form_form_] label {
  display: block;
  margin-bottom: 5px;
  font: 300 14px/18px "Lato WF", sans-serif, Arial, sans-serif;
  text-transform: uppercase;
  text-align: left;
}
[id*=form_form_] label[for*=inputcheckbox] {
  display: flex;
  align-items: center;
}
[id*=form_form_] label em {
  position: relative;
  display: inline-block;
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 7px;
}
[id*=form_form_] .form-builder-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
  width: 33.33%;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-field {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  clear: both;
}
[id*=form_form_] .form-builder-field.align-right {
  text-align: right;
}
[id*=form_form_] .form-builder-field.has-bg {
  background-color: #EDEEEC;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 20px;
  }
}
[id*=form_form_] input[type=text], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay, [id*=form_form_] .properties-search-popup-trigger {
  display: inline-block;
  color: #000;
  border: 1px solid #D8D8D8;
  background: #F4F4F4;
  width: calc(100% - 20px);
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
  letter-spacing: normal;
  text-align: left;
  padding: 0 15px;
  resize: none;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] input[type=text], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay, [id*=form_form_] .properties-search-popup-trigger {
    width: 100%;
  }
}
[id*=form_form_] input[type=text].form_module_field_error, [id*=form_form_] input[type=email].form_module_field_error, [id*=form_form_] input[type=phone].form_module_field_error, [id*=form_form_] input[type=datepicker].form_module_field_error, [id*=form_form_] textarea.form_module_field_error, [id*=form_form_] select.form_module_field_error, [id*=form_form_] .input-overlay.form_module_field_error, [id*=form_form_] .properties-search-popup-trigger.form_module_field_error {
  border-color: red;
}
[id*=form_form_] input[type=text]::-webkit-input-placeholder, [id*=form_form_] input[type=email]::-webkit-input-placeholder, [id*=form_form_] input[type=phone]::-webkit-input-placeholder, [id*=form_form_] input[type=datepicker]::-webkit-input-placeholder, [id*=form_form_] textarea::-webkit-input-placeholder, [id*=form_form_] select::-webkit-input-placeholder, [id*=form_form_] .input-overlay::-webkit-input-placeholder, [id*=form_form_] .properties-search-popup-trigger::-webkit-input-placeholder {
  color: #000;
}
[id*=form_form_] input[type=text]:-moz-placeholder, [id*=form_form_] input[type=email]:-moz-placeholder, [id*=form_form_] input[type=phone]:-moz-placeholder, [id*=form_form_] input[type=datepicker]:-moz-placeholder, [id*=form_form_] textarea:-moz-placeholder, [id*=form_form_] select:-moz-placeholder, [id*=form_form_] .input-overlay:-moz-placeholder, [id*=form_form_] .properties-search-popup-trigger:-moz-placeholder {
  color: #000;
}
[id*=form_form_] input[type=text]::-moz-placeholder, [id*=form_form_] input[type=email]::-moz-placeholder, [id*=form_form_] input[type=phone]::-moz-placeholder, [id*=form_form_] input[type=datepicker]::-moz-placeholder, [id*=form_form_] textarea::-moz-placeholder, [id*=form_form_] select::-moz-placeholder, [id*=form_form_] .input-overlay::-moz-placeholder, [id*=form_form_] .properties-search-popup-trigger::-moz-placeholder {
  color: #000;
}
[id*=form_form_] input[type=text]:-ms-input-placeholder, [id*=form_form_] input[type=email]:-ms-input-placeholder, [id*=form_form_] input[type=phone]:-ms-input-placeholder, [id*=form_form_] input[type=datepicker]:-ms-input-placeholder, [id*=form_form_] textarea:-ms-input-placeholder, [id*=form_form_] select:-ms-input-placeholder, [id*=form_form_] .input-overlay:-ms-input-placeholder, [id*=form_form_] .properties-search-popup-trigger:-ms-input-placeholder {
  color: #000;
}
[id*=form_form_] input[type=text]:focus::-webkit-input-placeholder, [id*=form_form_] input[type=email]:focus::-webkit-input-placeholder, [id*=form_form_] input[type=phone]:focus::-webkit-input-placeholder, [id*=form_form_] input[type=datepicker]:focus::-webkit-input-placeholder, [id*=form_form_] textarea:focus::-webkit-input-placeholder, [id*=form_form_] select:focus::-webkit-input-placeholder, [id*=form_form_] .input-overlay:focus::-webkit-input-placeholder, [id*=form_form_] .properties-search-popup-trigger:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
[id*=form_form_] input[type=text]:focus:-moz-placeholder, [id*=form_form_] input[type=email]:focus:-moz-placeholder, [id*=form_form_] input[type=phone]:focus:-moz-placeholder, [id*=form_form_] input[type=datepicker]:focus:-moz-placeholder, [id*=form_form_] textarea:focus:-moz-placeholder, [id*=form_form_] select:focus:-moz-placeholder, [id*=form_form_] .input-overlay:focus:-moz-placeholder, [id*=form_form_] .properties-search-popup-trigger:focus:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
[id*=form_form_] input[type=text]:focus::-moz-placeholder, [id*=form_form_] input[type=email]:focus::-moz-placeholder, [id*=form_form_] input[type=phone]:focus::-moz-placeholder, [id*=form_form_] input[type=datepicker]:focus::-moz-placeholder, [id*=form_form_] textarea:focus::-moz-placeholder, [id*=form_form_] select:focus::-moz-placeholder, [id*=form_form_] .input-overlay:focus::-moz-placeholder, [id*=form_form_] .properties-search-popup-trigger:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
[id*=form_form_] input[type=text]:focus:-ms-input-placeholder, [id*=form_form_] input[type=email]:focus:-ms-input-placeholder, [id*=form_form_] input[type=phone]:focus:-ms-input-placeholder, [id*=form_form_] input[type=datepicker]:focus:-ms-input-placeholder, [id*=form_form_] textarea:focus:-ms-input-placeholder, [id*=form_form_] select:focus:-ms-input-placeholder, [id*=form_form_] .input-overlay:focus:-ms-input-placeholder, [id*=form_form_] .properties-search-popup-trigger:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
[id*=form_form_] input[type=text][class*=inputhidden], [id*=form_form_] input[type=email][class*=inputhidden], [id*=form_form_] input[type=phone][class*=inputhidden], [id*=form_form_] input[type=datepicker][class*=inputhidden], [id*=form_form_] textarea[class*=inputhidden], [id*=form_form_] select[class*=inputhidden], [id*=form_form_] .input-overlay[class*=inputhidden], [id*=form_form_] .properties-search-popup-trigger[class*=inputhidden] {
  display: none;
}
[id*=form_form_] .select-wrapper, [id*=form_form_] .datepicker-input-wrapper {
  width: calc(100% - 20px);
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .select-wrapper, [id*=form_form_] .datepicker-input-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .select-wrapper select {
  width: 100%;
}
[id*=form_form_] .datepicker-input-wrapper {
  position: relative;
}
[id*=form_form_] .datepicker-input-wrapper input.date-pick, [id*=form_form_] .datepicker-input-wrapper input[type=datepicker] {
  width: 100%;
  padding-right: 45px;
}
[id*=form_form_] .datepicker-input-wrapper .ui-datepicker-trigger {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
[id*=form_form_] .datepicker-input-wrapper .input-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
}
[id*=form_form_] textarea {
  height: 120px;
  overflow: auto;
  line-height: 20px;
  padding: 15px;
}
[id*=form_form_] .checkbox-item label, [id*=form_form_] .radio-item label {
  display: flex;
  align-items: center;
}
[id*=form_form_] input[type=checkbox],
[id*=form_form_] input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
[id*=form_form_] input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] input[type=radio] {
    margin-top: 0;
  }
}
[id*=form_form_] input[type=checkbox] + label,
[id*=form_form_] input[type=radio] + label {
  display: inline-block;
}
[id*=form_form_] span.group {
  display: block;
  min-height: 40px;
  line-height: 40px;
}
[id*=form_form_] span.group label {
  display: inline-flex;
  margin: 0 20px 0 0;
  font: 700 14px/1 "Lato WF", sans-serif, Arial, sans-serif;
  letter-spacing: normal;
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] span.group label {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
  }
}
[id*=form_form_] span.group input {
  margin-right: 0.4em;
}
[id*=form_form_] span.group input[type=radio] {
  margin-top: 0;
}
[id*=form_form_] .terms-privacy.terms-privacy {
  text-align: inherit;
}
[id*=form_form_] .disabled {
  visibility: hidden;
}
[id*=form_form_] .controls {
  margin-top: 15px;
}
[id*=form_form_] .controls p > * {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] input[type=file] {
    width: 100%;
  }
}
[id*=form_form_] .clear-file-input {
  padding-left: 5px;
  font-size: 12px;
  color: #7E6B51;
  transition: opacity 350ms;
}
[id*=form_form_] .clear-file-input.inactive {
  opacity: 0;
  visibility: hidden;
}
[id*=form_form_] input[type=submit]:disabled {
  cursor: not-allowed;
}
[id*=form_form_] input[readonly] {
  cursor: pointer;
}
[id*=form_form_] .properties-search-popup-value {
  visibility: hidden;
}
[id*=form_form_] .properties-search-popup-trigger {
  position: absolute;
  height: 40px;
  left: 0;
  bottom: 0;
}
[id*=form_form_] .g-recaptcha > div {
  transition: box-shadow 1750ms;
}
[id*=form_form_] .g-recaptcha > div.error {
  box-shadow: 0 0 0 2px #bc1e1d;
  transition: box-shadow 0ms;
}

@media only screen and (min-width: 1024px) {
  #calendar.center-column {
    padding: 0 60px;
  }
}

#calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-header {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  #calendar-filter {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  #calendar-views {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
#calendar-views li {
  display: inline-block;
}
#calendar-views li + li {
  margin-left: 20px;
}
#calendar-views a {
  display: block;
  text-decoration: none;
  color: #000;
}
#calendar-views a span {
  vertical-align: middle;
}
#calendar-views a .svg-icon {
  margin-right: 10px;
}
#calendar-views a:hover, #calendar-views a.active {
  color: #3E7C9B;
}
#calendar-views a:hover .svg-icon svg, #calendar-views a.active .svg-icon svg {
  fill: #3E7C9B;
}

#calendar-year {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  #calendar-year {
    display: none;
  }
}
#calendar-year a {
  display: block;
  width: 14px;
  height: 14px;
  font-size: 0;
  text-decoration: none;
  cursor: default;
  overflow: hidden;
}
#calendar-year a svg {
  fill: #EDEEEC;
}
#calendar-year a.active {
  cursor: pointer;
}
#calendar-year a.active svg {
  fill: #000;
}
#calendar-year a.y-prev svg {
  transform: rotate(90deg);
}
#calendar-year a.y-next svg {
  transform: rotate(-90deg);
}
#calendar-year .active-year {
  margin: 0 32px;
  color: #000;
  font-size: 36px;
  line-height: 40px;
  font-weight: 400;
}

#calendar-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
}
#calendar-month li {
  display: block;
}
#calendar-month a {
  display: inline-block;
  padding: 0 9px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.25px;
  font-weight: 400;
  color: #000A12;
}
@media only screen and (max-width: 1130px) {
  #calendar-month a {
    padding: 0 5px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 920px) {
  #calendar-month a {
    font-size: 11px;
  }
}
#calendar-month a:hover {
  color: #3E7C9B;
  text-decoration: underline;
}
#calendar-month a.active {
  color: #3E7C9B;
  text-decoration: underline;
}
#calendar-month a.active:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  #calendar-month li {
    display: none;
  }
  #calendar-month li.current, #calendar-month li.prev, #calendar-month li.next {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 30%;
  }
  #calendar-month li.current a {
    font-size: 12px;
    padding: 0 10px;
    display: block;
  }
  #calendar-month li.prev a, #calendar-month li.next a {
    display: block;
    font-size: 12px;
    padding-right: 0;
    padding-left: 30px;
  }
  #calendar-month li.prev a:after, #calendar-month li.next a:after {
    background: url("../../../images/common.svg") -200px -196px no-repeat;
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 11px;
    width: 11px;
    height: 18px;
  }
  #calendar-month li.prev a:hover, #calendar-month li.next a:hover {
    background-color: transparent;
    color: #327d7d;
  }
  #calendar-month li.prev a:hover:after, #calendar-month li.next a:hover:after {
    background-position: -231px -196px;
  }
  #calendar-month li.prev a:active, #calendar-month li.next a:active {
    top: auto;
  }
  #calendar-month li.next a {
    padding-left: 0;
    padding-right: 30px;
  }
  #calendar-month li.next a:after {
    background-position: -200px -234px;
    left: auto;
    right: 5px;
  }
  #calendar-month li.next a:hover:after {
    background-position: -231px -234px;
  }
}

#calendar-navigation {
  display: block;
  height: 40px;
  line-height: 40px;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}
#calendar-navigation .current-event {
  position: relative;
  padding: 0 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  background-color: #EDEEEC;
  overflow: hidden;
}
#calendar-navigation .current-event ul {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
#calendar-navigation .current-event ul li {
  display: block;
}
#calendar-navigation .current-event ul li a.prev, #calendar-navigation .current-event ul li a.next {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  cursor: pointer;
  overflow: hidden;
}
#calendar-navigation .current-event ul li a.prev svg, #calendar-navigation .current-event ul li a.next svg {
  width: 40%;
  fill: #000;
}
#calendar-navigation .current-event ul li a.prev svg {
  transform: rotate(90deg);
}
#calendar-navigation .current-event ul li a.next svg {
  transform: rotate(-90deg);
}

#calendar-week, #calendar-days {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#calendar-week li, #calendar-days li {
  display: inline-block;
  width: 13%;
}

#calendar-week {
  line-height: 24px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  #calendar-week {
    display: none;
  }
}
#calendar-week li {
  color: #000;
  font-weight: 400;
}
#calendar-week li .short {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #calendar-week li .full {
    display: none;
  }
  #calendar-week li .short {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-week li .full {
    display: none;
  }
  #calendar-week li .short {
    display: inline;
  }
}

#calendar-days {
  position: relative;
}
#calendar-days li {
  margin: 0 0 1em;
  min-height: 10em;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  vertical-align: top;
  position: static;
  background: #EDEEEC;
}
@media only screen and (min-width: 1366px) {
  #calendar-days li {
    min-height: 13em;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-days li {
    display: block;
    float: none;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
  }
  #calendar-days li dl {
    margin-top: auto !important;
    height: auto;
  }
  #calendar-days li dl dt {
    width: 100% !important;
    padding-bottom: 10px;
  }
}
#calendar-days li time a {
  display: block;
  padding: 0.7em 1em;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
#calendar-days li time a:hover {
  background: #e2e2e2;
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(237, 238, 236, 0.5);
}
#calendar-days li.day_items3 {
  height: 9em;
}
#calendar-days li.day_items4 {
  height: 11em;
}
#calendar-days li.day_items5 {
  height: 13em;
}
#calendar-days li.day_items6 {
  height: 15em;
}
#calendar-days li.day_items7 {
  height: 17em;
}
#calendar-days li.day_items8 {
  height: 19em;
}
#calendar-days li.day_items9 {
  height: 21em;
}
#calendar-days li.day_items10 {
  height: 23em;
}
#calendar-days li.day_items11 {
  height: 25em;
}
#calendar-days li.day_items12 {
  height: 27em;
}
#calendar-days li.day_items13 {
  height: 29em;
}
#calendar-days li.day_items14 {
  height: 31em;
}
#calendar-days li.day_items15 {
  height: 33em;
}
#calendar-days li.day_items16 {
  height: 35em;
}
#calendar-days li.day_items17 {
  height: 37em;
}
#calendar-days li.day_items18 {
  height: 39em;
}
#calendar-days li.day_items19 {
  height: 41em;
}
#calendar-days li.day_items20 {
  height: 43em;
}
#calendar-days dl {
  display: block;
  height: 2em;
}
#calendar-days dl.opened {
  position: relative;
}
#calendar-days dl.hide {
  display: none;
}
@media only screen and (max-width: 767px) {
  #calendar-days dl.hide {
    display: block;
  }
}
#calendar-days dt {
  position: relative;
}
#calendar-days dt a {
  display: block;
  width: auto;
  padding: 0 0.5em 0 1em;
  text-decoration: none;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.7em;
  letter-spacing: 1px;
  background: #3F3F3F;
  color: #fff;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #calendar-days dt a {
    height: 2.8em;
    line-height: 2.8em;
  }
}
#calendar-days dl.w1 dt {
  width: 100%;
}
#calendar-days dl.w2 dt {
  width: 211.538%;
}
#calendar-days dl.w3 dt {
  width: 323.076%;
}
#calendar-days dl.w4 dt {
  width: 434.614%;
}
#calendar-days dl.w5 dt {
  width: 546.152%;
}
#calendar-days dl.w6 dt {
  width: 657.69%;
}
#calendar-days dl.w7 dt {
  width: 769.228%;
}
#calendar-days dl.c1 dt a {
  background-color: #000;
}
#calendar-days dl.c2 dt a {
  background-color: #3E7C9B;
}
#calendar-days dl.c3 dt a {
  background-color: #7a7a7a;
}
#calendar-days dl.c4 dt a {
  background-color: #bc8e8f;
}
#calendar-days dl.c5 dt a {
  background-color: #ac9bc1;
}
#calendar-days dl.c6 dt a {
  background-color: #87b6c7;
}
#calendar-days dl.c7 dt a {
  background-color: #bb85aa;
}
#calendar-days dl.c8 dt a {
  background-color: #a4a4a4;
}
#calendar-days dl dd {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 200px;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  font-weight: 300;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  z-index: 999;
}
@media only screen and (min-width: 1366px) {
  #calendar-days dl dd {
    width: 362px;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-days dl dd {
    display: none !important;
  }
}
#calendar-days dl dd .close-popup {
  position: absolute;
  top: 0;
  right: 0;
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8) translate(13%, -13%);
  background: #000;
  z-index: 20;
}
@media only screen and (min-width: 1366px) {
  #calendar-days dl dd .close-popup {
    transform: scale(1) translate(0, 0);
  }
}
#calendar-days dl dd .close-popup:hover {
  background-color: #3E7C9B;
}
#calendar-days dl dd .close-popup .svg-icon {
  width: 18px;
  height: 18px;
}
#calendar-days dl dd .close-popup .svg-icon svg {
  fill: #fff;
}
#calendar-days dl dd .background {
  position: relative;
  display: block;
  width: 100%;
  height: 110px;
  overflow: hidden;
}
@media only screen and (min-width: 1366px) {
  #calendar-days dl dd .background {
    height: 200px;
  }
}
#calendar-days dl dd .description {
  padding: 10px;
}
#calendar-days dl dd .description .event-options {
  color: #7E6B51;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
#calendar-days dl dd .description .event-options abbr {
  text-decoration: none;
}
#calendar-days dl dd .description h3 {
  margin: 4px 0 12px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
}
#calendar-days dl dd .description p {
  font-size: 12px;
  line-height: 14px;
  padding: 0 0 10px 0;
}
#calendar-days dl dd .description nav.buttons {
  transform: scale(0.8) translateX(-11%);
}
@media only screen and (min-width: 1366px) {
  #calendar-days dl dd .description {
    padding: 20px;
  }
  #calendar-days dl dd .description .event-options {
    font-size: 14px;
  }
  #calendar-days dl dd .description h3 {
    font-size: 24px;
    line-height: 26px;
  }
  #calendar-days dl dd .description p {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 14px 0;
  }
  #calendar-days dl dd .description nav.buttons {
    transform: scale(1) translateX(0);
  }
}
#calendar-days dl.opened dd {
  visibility: visible;
}
#calendar-days dl.t1 {
  margin-top: 2em;
}
#calendar-days dl.t2 {
  margin-top: 4em;
}
#calendar-days dl.t3 {
  margin-top: 6em;
}
#calendar-days dl.t4 {
  margin-top: 8em;
}
#calendar-days dl.t5 {
  margin-top: 10em;
}
#calendar-days dl.t6 {
  margin-top: 12em;
}
#calendar-days dl.t7 {
  margin-top: 14em;
}
#calendar-days dl.t8 {
  margin-top: 16em;
}
#calendar-days dl.t9 {
  margin-top: 18em;
}
#calendar-days dl.t10 {
  margin-top: 20em;
}
#calendar-days dl.t11 {
  margin-top: 22em;
}
#calendar-days dl.t12 {
  margin-top: 24em;
}
#calendar-days dl.t13 {
  margin-top: 26em;
}
#calendar-days dl.t14 {
  margin-top: 28em;
}
#calendar-days dl.t15 {
  margin-top: 30em;
}
#calendar-days dl.t16 {
  margin-top: 32em;
}
#calendar-days dl.t17 {
  margin-top: 34em;
}
#calendar-days dl.t18 {
  margin-top: 36em;
}
#calendar-days dl.t19 {
  margin-top: 38em;
}
#calendar-days dl.t20 {
  margin-top: 40em;
}

@media only screen and (max-width: 767px) {
  #calendar.list-view #calendar-month {
    display: none;
  }
}
#calendar.list-view .image-list {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
#calendar.list-view .image-list h2 {
  margin-bottom: 15px;
}
#calendar.list-view .image-list h2 a {
  font-size: 28px;
  font-weight: 300;
  text-decoration: none;
}

#calendar .no-events {
  margin: 40px 0;
  padding: 40px 0;
  height: auto;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 120%;
}

#calendar.single-event #calendar-header {
  margin-bottom: 0;
}
#calendar.single-event .background {
  float: right;
  position: relative;
  width: 30%;
  margin-left: 10%;
  margin-bottom: 20px;
  overflow: hidden;
}
#calendar.single-event .background img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #calendar.single-event .background {
    width: 40%;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #calendar.single-event .background {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

.calendar .image-list-item {
  position: relative;
  display: flex;
  width: 100%;
  height: 240px;
  margin: 0 auto 20px;
  background-color: #EDEEEC;
  overflow: hidden;
}
.calendar .image-list-item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item {
    display: block;
    height: auto;
  }
}
.calendar .image-list-item .background {
  position: relative;
  display: block;
  width: 300px;
  height: 240px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .calendar .image-list-item .background {
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .background {
    width: 100%;
  }
}
.calendar .image-list-item .description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 300px);
  height: 100%;
  padding: 32px 64px 26px;
  background-color: #EDEEEC;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .calendar .image-list-item .description {
    width: calc(100% - 240px);
    padding: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description {
    align-items: center;
    width: 100%;
    height: auto;
    padding: 26px;
  }
}
.calendar .image-list-item .description .event-options {
  margin-bottom: 8px;
}
.calendar .image-list-item .description .event-options abbr {
  font-size: 14px;
  color: #7E6B51;
  line-height: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.calendar .image-list-item .description h3 {
  font: 24px/30px "Lato WF", sans-serif, Arial, sans-serif;
  color: #000;
  margin-bottom: 15px;
}
.calendar .image-list-item .description .summary {
  margin-bottom: auto;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description .summary {
    margin-bottom: 20px;
  }
}

.additional-table-content {
  margin: 40px 0;
}
@media only screen and (min-width: 1366px) {
  .additional-table-content .center-column {
    padding: 0 120px;
  }
}
@media only screen and (max-width: 767px) {
  .additional-table-content .center-column table thead {
    display: none;
  }
}
.additional-table-content .center-column table tbody tr.odd td {
  background: #FAFAFA;
}
@media only screen and (max-width: 767px) {
  .additional-table-content .center-column table tbody tr.odd {
    border-bottom: 1px solid #EDEEEC;
  }
}
.additional-table-content .center-column table tbody tr.even td {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .additional-table-content .center-column table tbody tr.even {
    border-bottom: 1px solid #EDEEEC;
  }
}
@media only screen and (max-width: 767px) {
  .additional-table-content .center-column table tbody tr {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .additional-table-content .center-column table tbody tr td {
    border-top: none;
    position: relative;
    padding-left: 50%;
    display: block;
  }
  .additional-table-content .center-column table tbody tr td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-column);
    color: #000;
    font-weight: bold;
  }
}

.categorized-articles-section {
  position: relative;
  padding: 0 0 120px;
  overflow: hidden;
  background-color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-articles-section {
    padding: 0 0 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .categorized-articles-section {
    padding: 0 0 30px 0;
  }
}
.categorized-articles-section .section-inner {
  position: relative;
  z-index: 1;
}
.categorized-articles-section .center-column.narrow {
  max-width: 720px;
}
.categorized-articles-section .section-logo {
  position: relative;
  display: block;
  margin: 0 auto;
}
.categorized-articles-section .section-content.page-content {
  text-align: center;
  color: #000;
}
.categorized-articles-section .section-content.page-content ul > li {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5625;
  font-weight: 400;
  color: #000;
}
.categorized-articles-section .section-content.page-content ul > li::before {
  border-color: #D2ECDB;
}
.categorized-articles-section .section-content.page-content > *:not(.reverted-heading) {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5625;
  color: #000;
}
.categorized-articles-section .section-content.page-content > *:not(.reverted-heading):last-child {
  margin-bottom: 0;
}
.categorized-articles-section .reverted-heading {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 0 20px;
}
.categorized-articles-section .section-title {
  margin: 0;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 54px;
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .categorized-articles-section .section-title {
    font-size: 42px;
  }
}
.categorized-articles-section .page-content .section-subtitle {
  margin: 0 0 10px;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5625;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
.categorized-articles-section .section-controls {
  margin-top: 30px;
  text-align: center;
}
.categorized-articles-section .section-controls .button:hover {
  border-color: #fff;
}
.categorized-articles-section .section-background {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  height: 70%;
  width: 100%;
}
.categorized-articles-section .section-background::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, transparent, #fff 75%);
}
@media only screen and (max-width: 767px) {
  .categorized-articles-section .section-background::before {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), #fff 75%);
  }
}
.categorized-articles-section .categorized-articles {
  margin-top: 65px;
}
@media only screen and (max-width: 1023px) {
  .categorized-articles-section .categorized-articles {
    margin-top: 30px;
  }
}
.categorized-articles-section .slideshow-container .slideshow-button {
  top: calc(50% - 14px);
}
@media only screen and (max-width: 767px) {
  .categorized-articles-section .slideshow-container .slideshow-button {
    top: 50%;
    display: flex;
  }
  .categorized-articles-section .slideshow-container .slideshow-button svg {
    stroke: #fff;
  }
}

.categorized-articles .center-column.visible .category-selector button.active:after {
  width: 100%;
}
.categorized-articles .category-selector {
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-articles .category-selector {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categorized-articles .category-selector {
    margin: 0 0 20px;
  }
}
.categorized-articles .slideshow-container {
  position: relative;
  padding: 0 70px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-articles .slideshow-container {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .categorized-articles .slideshow-container {
    padding: 0 20px;
  }
}
.categorized-articles .slideshow-container .slideshow-button.swiper-button-disabled {
  opacity: 0;
}
.categorized-articles .slideshow {
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .categorized-articles .slideshow.center-slides .swiper-wrapper {
    justify-content: center;
  }
}
.categorized-articles .slide {
  position: relative;
  display: flex;
  margin: 0 30px 30px 0 !important;
  background: #000;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-articles .slide {
    margin: 0 20px 20px 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .categorized-articles .slide {
    margin: 0 !important;
  }
}
.categorized-articles .slide::before {
  content: "";
  display: block;
  max-width: 0;
  overflow: hidden;
  padding-bottom: 62.5%;
}
@media only screen and (max-width: 767px) {
  .categorized-articles .slide::before {
    padding-bottom: 100%;
  }
}
.categorized-articles .slide:only-child {
  width: calc((100% - 60px) / 3);
  margin: 0 auto !important;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-articles .slide:only-child {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .categorized-articles .slide:only-child {
    width: 100%;
  }
}
.categorized-articles .slide.hidden {
  display: none;
}
.categorized-articles .slide-content {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  transition: color 350ms;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-articles .slide-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .categorized-articles .slide-content {
    padding: 20px 20px 50px;
  }
}
.categorized-articles .slide-content:hover {
  color: #D2ECDB;
}
.categorized-articles .slide-content:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
.categorized-articles .slide-title {
  margin: 0;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 26px;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: inherit;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .categorized-articles .slideshow-button {
    display: none;
  }
}
.categorized-articles .slideshow-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}
@media only screen and (max-width: 767px) {
  .categorized-articles .slideshow-pagination {
    display: block;
    padding: 10px 30px;
  }
}
.categorized-articles .article-lightbox-trigger {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-size: 0;
  color: #fff;
}

.categorized-article-lightbox .content-lightbox-container {
  flex-direction: row;
  max-width: 1250px;
}
.categorized-article-lightbox .content-lightbox-close-button {
  top: 20px;
  right: 30px;
}
@media only screen and (min-width: 1366px) {
  .categorized-article-lightbox .content-lightbox-close-button {
    top: 44px;
    right: 52px;
  }
}
.categorized-article-lightbox .categorized-article {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .categorized-article-lightbox .categorized-article {
    display: block;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.categorized-article-lightbox .article-inner {
  display: block;
  width: 50%;
}
@media only screen and (min-width: 1366px) {
  .categorized-article-lightbox .article-inner {
    padding: 75px 75px 75px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-article-lightbox .article-inner {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .categorized-article-lightbox .article-inner {
    width: 100%;
    overflow: hidden;
  }
}
.categorized-article-lightbox .article-image {
  position: relative;
  display: block;
  width: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categorized-article-lightbox .article-image {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .categorized-article-lightbox .article-image {
    width: 100%;
  }
  .categorized-article-lightbox .article-image::before {
    content: "";
    display: block;
    padding-bottom: 56%;
  }
}
.categorized-article-lightbox .article-image:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.16);
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.categorized-article-lightbox .article-locations {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .categorized-article-lightbox .article-locations {
    justify-content: left;
  }
}
.categorized-article-lightbox .article-location {
  display: flex;
  align-items: center;
  margin: 0 20px 15px 0;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5625;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
}
.categorized-article-lightbox .article-location:last-child {
  margin-right: 0;
}
.categorized-article-lightbox .article-location svg {
  height: 25px;
  width: 28px;
  fill: #000;
  stroke: none;
}
.categorized-article-lightbox .article-title {
  margin: 0;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 32px;
  line-height: 0.78125;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
}
.categorized-article-lightbox .article-subtitle {
  margin: 20px 0 0;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5625;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
}
.categorized-article-lightbox .article-content.page-content {
  margin: 15px 0 0;
  padding: 0;
  text-align: left;
  color: #000;
}
.categorized-article-lightbox .article-content.page-content > * {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5625;
  color: #000;
}
.categorized-article-lightbox .article-content.page-content > *:last-child {
  margin-bottom: 0;
}
.categorized-article-lightbox .article-content.page-content ul > li {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5625;
  font-weight: 400;
  color: #000;
}
.categorized-article-lightbox .article-content.page-content ul > li::before {
  border-color: #D2ECDB;
}
.categorized-article-lightbox .article-controls {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0;
}
.categorized-article-lightbox .article-controls .button {
  margin: 20px 20px 0 0;
  z-index: 1;
}
.categorized-article-lightbox .article-controls .button:last-child {
  margin-right: 0;
}

.content-lightbox.categorized-article-lightbox {
  position: fixed;
  z-index: 9999;
  left: -9999px;
  top: -9999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: visibility 350ms, opacity 350ms, top 0ms 350ms, left 0ms 350ms;
  background-color: rgba(0, 0, 0, 0.64);
}
@media only screen and (min-width: 1366px) {
  .content-lightbox.categorized-article-lightbox {
    padding: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .content-lightbox.categorized-article-lightbox {
    padding: 70px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .content-lightbox.categorized-article-lightbox {
    padding: 50px 10px 10px;
  }
}
.content-lightbox.categorized-article-lightbox.visible {
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: visibility 0ms, opacity 350ms, top 0ms, left 0ms;
}
.content-lightbox.categorized-article-lightbox .content-lightbox-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-lightbox.categorized-article-lightbox .content-lightbox-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  max-width: 1366px;
  background-color: #fff;
}
.content-lightbox.categorized-article-lightbox .content {
  padding: 50px;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 1366px) {
  .content-lightbox.categorized-article-lightbox .content {
    padding: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .content-lightbox.categorized-article-lightbox .content {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .content-lightbox.categorized-article-lightbox .content {
    padding: 15px;
  }
}
.content-lightbox.categorized-article-lightbox .content iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.content-lightbox.categorized-article-lightbox .video-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  background-color: #000;
}
.content-lightbox.categorized-article-lightbox .video-iframe-wrapper:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #3E7C9B;
  border-bottom-color: #3E7C9B;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content-lightbox.categorized-article-lightbox .video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  text-align: center;
  background: none;
}
@media only screen and (min-width: 1366px) {
  .content-lightbox.categorized-article-lightbox .content-lightbox-close-button {
    top: 20px;
    right: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .content-lightbox.categorized-article-lightbox .content-lightbox-close-button {
    top: auto;
    bottom: calc(100% + 5px);
    right: 5px;
  }
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button:hover .close-message {
  color: #000;
}
@media only screen and (max-width: 1023px) {
  .content-lightbox.categorized-article-lightbox .content-lightbox-close-button:hover .close-message {
    color: #D2ECDB;
  }
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button:hover .close-icon::before, .content-lightbox.categorized-article-lightbox .content-lightbox-close-button:hover .close-icon::after {
  background-color: #000;
}
@media only screen and (max-width: 1023px) {
  .content-lightbox.categorized-article-lightbox .content-lightbox-close-button:hover .close-icon::before, .content-lightbox.categorized-article-lightbox .content-lightbox-close-button:hover .close-icon::after {
    background-color: #D2ECDB;
  }
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-message {
  display: block;
  margin: 0 0 5px;
  font-family: "Lato WF", sans-serif, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  transition: color 350ms;
}
@media only screen and (max-width: 1023px) {
  .content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-message {
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-message {
    display: none;
  }
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-icon {
  position: relative;
  display: inline-block;
  height: 30px;
  width: 30px;
  left: -18px;
  top: 18px;
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-icon::before, .content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 2px;
  background-color: #000;
  transition: background-color 350ms;
}
@media only screen and (max-width: 1023px) {
  .content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-icon::before, .content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-icon::after {
    background-color: #fff;
  }
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.content-lightbox.categorized-article-lightbox .content-lightbox-close-button .close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media print {
  html {
    -webkit-print-color-adjust: exact;
  }
  .fade-on-scroll {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  body > *:not(#content) {
    display: none;
  }
  #content-submenu {
    display: none;
  }
  #calendar-header, #calendar-year, #calendar-month {
    display: none;
  }
  @page {
    size: 960px 1358px;
  }
}
