@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);
}

.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: 20px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
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 {
  font: 500 18px/1.2 "Founders Grotesk", sans-serif;
  position: relative;
  margin-bottom: 6px;
  text-transform: uppercase;
  text-align: center;
  color: #121212;
}

.ui-datepicker-prev, .ui-datepicker-next {
  position: absolute;
  top: 0;
  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 #121212;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  transition: border-color 350ms ease-in-out;
}
.ui-datepicker-prev.ui-state-disabled, .ui-datepicker-next.ui-state-disabled {
  opacity: 0.3;
}

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

.ui-datepicker-next {
  right: 5px;
}
.ui-datepicker-next:not(.ui-state-disabled):hover:after {
  border-top-color: #8B765E;
  border-right-color: #8B765E;
}

.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 thead {
  padding-bottom: 10px;
  border-bottom: 1px solid #EAE7E0;
}
.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  line-height: 45px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  padding: 0 10px;
}
@media only screen and (min-width: 0px) and (max-width: 449px) {
  .ui-datepicker-calendar th, .ui-datepicker-calendar td {
    padding: 0 5px;
  }
}
.ui-datepicker-calendar th {
  font-size: 11px;
  font-family: "Founders Grotesk", sans-serif;
  color: #73736f;
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  font-size: 13px;
  color: #121212;
}
.ui-datepicker-calendar td a {
  z-index: 1;
}
.ui-datepicker-calendar td:hover:before, .ui-datepicker-calendar td:hover:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f8b90d;
  color: #ffffff;
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  color: #73736f;
  opacity: 0.2;
}
.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;
}
.ui-datepicker-calendar .ui-datepicker-today a {
  background: #121212;
  color: #ffffff;
  z-index: 1;
}
.ui-datepicker-calendar .ui-datepicker-today:before, .ui-datepicker-calendar .ui-datepicker-today:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  color: #ffffff;
}
.ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month) {
  position: relative;
  background: #f8b90d;
}
.ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month):before, .ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month):after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f8b90d;
}
.ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month).checkin-date:before {
  display: none;
}
.ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month).checkin-date:after {
  width: 50%;
  left: auto;
  right: 0;
}
.ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month).checkout-date:before {
  width: 50%;
}
.ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month).checkout-date:after {
  display: none;
}
.ui-datepicker-calendar .ui-datepicker-highlight:not(.ui-datepicker-other-month) a {
  z-index: 1;
  color: #121212;
}
.ui-datepicker-calendar .ui-datepicker-highlight a, .ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-state-default:hover {
  background: #f8b90d;
  color: #121212;
}

.ui-datepicker-trigger {
  float: left;
  margin: 13px 0 0 8px;
  width: 18px;
  height: 15px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 -123px no-repeat;
}
.ui-datepicker-trigger:hover {
  background-position: -37px -123px;
}

.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;
}

@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-"], [class^=custom-icon-], [class*=" custom-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  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;
}

[class^=rooms-icon-], [class*=" rooms-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "HeBS-Icons" !important;
}

[class^=custom-icon-], [class*=" custom-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Room Icons" !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-icon-balcony:before {
  content: "";
}

.custom-icon-hair:before {
  content: "";
}

.custom-icon-safe:before {
  content: "";
}

.custom-icon-room:before {
  content: "";
}

.custom-icon-wifi:before {
  content: "";
}

.custom-icon-tv:before {
  content: "";
}

.custom-icon-pet:before {
  content: "";
}

.custom-icon-coffee:before {
  content: "";
}

.custom-icon-smokefree:before {
  content: "";
}

.custom-icon-bar:before {
  content: "";
}

.custom-icon-conditioner:before {
  content: "";
}

.custom-icon-fridge:before {
  content: "";
}

.custom-icon-bunkbed:before {
  content: "";
}

.custom-icon-tub:before {
  content: "";
}

.custom-icon-access:before {
  content: "";
}

.custom-icon-sitting:before {
  content: "";
}

.custom-icon-water:before {
  content: "";
}

.custom-icon-bluetooth:before {
  content: "";
}

.custom-icon-tea:before {
  content: "";
}

.custom-icon-books:before {
  content: "";
}

.custom-icon-radio:before {
  content: "";
}

.custom-icon-steamer:before {
  content: url("../images/clothes-steamer.svg");
  margin-right: 10px;
}

@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: 130px;
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #FCFAF7;
  transition: right 200ms, visibility 200ms;
  text-align: center;
  z-index: 60;
  visibility: hidden;
}
@media only screen and (max-width: 1023px) {
  #hamburger-navigation {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation {
    padding-top: 100px;
  }
}
.hamburger-navigation-visible #hamburger-navigation {
  right: 0;
  visibility: visible;
}
#hamburger-navigation .main-menu {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .main-menu {
    max-width: 90%;
  }
}
#hamburger-navigation .main-menu .menu li {
  position: relative;
}
#hamburger-navigation .main-menu .menu a {
  display: block;
  padding: 4px 40px;
}
#hamburger-navigation .main-menu .menu.level-1 {
  padding-top: 25px;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a {
  font: normal 26px/1.5 "Founders Grotesk", sans-serif;
  text-decoration: none;
  color: #121212;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a:hover, #hamburger-navigation .main-menu .menu.level-1 > li > a.active {
  color: #121212;
}
#hamburger-navigation .main-menu .menu.level-1 > li > .plus {
  top: 4px;
}
#hamburger-navigation .main-menu .menu.submenu {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 222ms cubic-bezier(0, 1, 0, 1), padding 333ms, visibility 300ms;
  visibility: hidden;
}
#hamburger-navigation .main-menu .menu.submenu a {
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  color: #73736f;
}
#hamburger-navigation .main-menu .menu.submenu a:hover, #hamburger-navigation .main-menu .menu.submenu a.active {
  color: #121212;
}
#hamburger-navigation .main-menu .parent.expanded > .submenu {
  max-height: 800px;
  padding: 10px 0;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms;
  visibility: visible;
}
#hamburger-navigation .main-menu .plus {
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 10px;
  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: #121212;
  top: 0;
}
#hamburger-navigation .main-menu .plus .horizontal {
  width: 8px;
  height: 2px;
  margin-left: 12px;
  margin-top: 15px;
}
#hamburger-navigation .main-menu .plus .vertical {
  width: 2px;
  height: 8px;
  margin-left: 15px;
  margin-top: 12px;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .vertical, #hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: rotate(90deg);
  background: #121212 !important;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#hamburger-navigation .main-menu .menu.submenu .plus {
  top: 0;
}

.homepage-additional-content {
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 10;
}
.homepage-additional-content .subpage {
  position: relative;
  overflow: hidden;
  margin: 10px;
  color: #fff;
  background-position: 25% 50%;
  background-repeat: no-repeat;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage {
    min-height: 500px;
  }
}
.homepage-additional-content .subpage > .button {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: none;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage > .button {
    display: block;
  }
}
.homepage-additional-content .subpage .thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0.75;
}
.homepage-additional-content .subpage .headings {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 3;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .headings {
    max-width: none;
    right: 40px;
  }
}
.homepage-additional-content .subpage .headings h2 {
  font: 36px/47px "Founders Grotesk", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .headings h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.homepage-additional-content .subpage .headings h3 {
  font-size: 24px;
  line-height: 33px;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .headings h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.homepage-additional-content .subpage .content-wrapper {
  float: right;
  width: 280px;
  padding: 75px 30px 70px;
  min-height: 470px;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .content-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 0;
    padding: 20px 20px 20px;
  }
}
.homepage-additional-content .subpage .content-wrapper .copy {
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  min-height: 240px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .content-wrapper .copy {
    font-size: 12px;
    margin-bottom: 20px;
    min-height: 0;
  }
}
.homepage-additional-content .subpage.even {
  background-position: 75% 50%;
}
.homepage-additional-content .subpage.even > .button {
  right: 40px;
  left: auto;
}
.homepage-additional-content .subpage.even .headings {
  left: auto;
  right: 40px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage.even .headings {
    left: 40px;
  }
}
.homepage-additional-content .subpage.even .content-wrapper {
  float: left;
}

.admin .preview-item {
  overflow: hidden;
  margin: 0;
  padding: 20px;
  height: auto;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.admin .preview-item .promo {
  width: 350px;
}
.admin .preview-item .promo .promo-thumbnail img {
  display: block;
  width: 100%;
}

#top-banner,
#top-banner-countdown {
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  text-align: center;
  box-sizing: border-box;
  background-color: #8B765E;
  transition: top 0.3s ease-out;
}
.admin .preview-item #top-banner,
.admin .preview-item #top-banner-countdown {
  height: 52px;
  padding: 0;
  position: relative;
}
.admin .preview-item #top-banner .promo-counter,
.admin .preview-item #top-banner .info,
.admin .preview-item #top-banner-countdown .promo-counter,
.admin .preview-item #top-banner-countdown .info {
  position: relative;
  margin: 12px auto 0;
}
.admin .preview-item #top-banner .promo-counter,
.admin .preview-item #top-banner-countdown .promo-counter {
  height: auto;
}
#top-banner .inner-wrapper,
#top-banner-countdown .inner-wrapper {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #top-banner .inner-wrapper,
#top-banner-countdown .inner-wrapper {
    display: block;
    min-height: 165px;
  }
}
#top-banner .promo-counter,
#top-banner-countdown .promo-counter {
  font-family: "Founders Grotesk", sans-serif;
  flex-shrink: 0;
  padding: 5px 15px;
}
@media only screen and (max-width: 767px) {
  #top-banner .promo-counter,
#top-banner-countdown .promo-counter {
    text-align: center;
    padding: 10px 20px;
  }
}
#top-banner .promo-counter .counter,
#top-banner-countdown .promo-counter .counter {
  display: inline-block;
  vertical-align: middle;
}
#top-banner .promo-counter .counter:after,
#top-banner-countdown .promo-counter .counter:after {
  clear: both;
  content: "";
  display: table;
}
#top-banner .promo-counter .counter > div,
#top-banner-countdown .promo-counter .counter > div {
  float: left;
  width: 50px;
  margin-left: 10px;
  background: #ffffff;
  text-align: center;
}
#top-banner .promo-counter .counter > div:first-child,
#top-banner-countdown .promo-counter .counter > div:first-child {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #top-banner .promo-counter .counter > div,
#top-banner-countdown .promo-counter .counter > div {
    width: 55px;
    margin-left: 5px;
  }
}
#top-banner .promo-counter .counter > div .text,
#top-banner-countdown .promo-counter .counter > div .text {
  line-height: 20px;
  font-size: 9px;
  font-weight: 400;
  color: #ffffff;
  background: #f8b90d;
  text-transform: uppercase;
}
#top-banner .promo-counter .counter > div .value,
#top-banner-countdown .promo-counter .counter > div .value {
  position: relative;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #8B765E;
}
#top-banner .description,
#top-banner-countdown .description {
  padding: 10px;
  color: #ffffff;
  text-align: center;
  font-family: "Founders Grotesk", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#top-banner .description > *,
#top-banner-countdown .description > * {
  vertical-align: top;
}
#top-banner .description h2,
#top-banner-countdown .description h2 {
  font: 600 14px/22px "Founders Grotesk", sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: inline-block;
  margin-right: 10px;
}
#top-banner .description p,
#top-banner-countdown .description p {
  font: 600 14px/22px "Founders Grotesk", sans-serif;
  letter-spacing: 1.2px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #top-banner .description h2,
#top-banner-countdown .description h2 {
    text-overflow: initial;
    display: block;
    font-size: 16px;
    line-height: 1.2;
    margin-right: 0;
    margin-bottom: 5px;
  }
  #top-banner .description p,
#top-banner-countdown .description p {
    text-overflow: initial;
    display: block;
  }
}
#top-banner .description .link,
#top-banner-countdown .description .link {
  display: inline-block;
}
#top-banner .description .link a,
#top-banner-countdown .description .link a {
  color: #ffffff;
  font: 600 14px/22px "Founders Grotesk", sans-serif;
  text-transform: capitalize;
}
#top-banner .description .link a:hover,
#top-banner-countdown .description .link a:hover {
  color: #73736f;
}
#top-banner .close,
#top-banner-countdown .close {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background-color: transparent;
  width: 24px;
  height: 24px;
  font-size: 0;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.3s;
  overflow: hidden;
  text-indent: -999px;
  color: #ffffff;
}
#top-banner .close:before, #top-banner .close:after,
#top-banner-countdown .close:before,
#top-banner-countdown .close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 14px;
  background: #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}
#top-banner .close:after,
#top-banner-countdown .close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#top-banner .close:hover,
#top-banner-countdown .close:hover {
  background-color: #ffffff;
}
#top-banner .close:hover:before, #top-banner .close:hover:after,
#top-banner-countdown .close:hover:before,
#top-banner-countdown .close:hover:after {
  background: #8B765E;
}
#top-banner.countdown-show .info .link,
#top-banner-countdown.countdown-show .info .link {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  #top-banner.countdown-show .info .link,
#top-banner-countdown.countdown-show .info .link {
    margin-right: 0;
  }
}

html.top-banner-enabled #top-banner,
html.top-banner-enabled #top-banner-countdown {
  z-index: 9999;
}
html.top-banner-enabled body,
html.top-banner-enabled #header {
  top: 52px;
  transition: all 0.35s ease-in-out;
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled body,
html.top-banner-enabled #header {
    top: 165px;
  }
}
html.top-banner-enabled #hamburger-navigation {
  top: 60px;
}
html.top-banner-enabled #hamburger-navigation .common-close-button {
  top: 110px;
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled #hamburger-navigation {
    top: 166px;
  }
  html.top-banner-enabled #hamburger-navigation .common-close-button {
    top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled #header {
    position: absolute;
    top: 0;
  }
}
html.top-banner-enabled #inner-body > div:first-child {
  height: calc(100% - 60px);
  transition: height 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled #inner-body > div:first-child {
    height: calc(100% - 270px);
  }
}
html.top-banner-enabled #inner-body #content {
  height: auto;
}
html.top-banner-enabled.top-banner-closed body,
html.top-banner-enabled.top-banner-closed #header {
  top: 0;
}
html.top-banner-enabled.top-banner-closed #top-banner {
  top: -60px;
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled.top-banner-closed #top-banner {
    top: -270px;
  }
}
html.top-banner-enabled.top-banner-closed #hamburger-navigation {
  top: 0;
}
html.top-banner-enabled.top-banner-closed #hamburger-navigation .common-close-button {
  top: 40px;
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled.top-banner-closed #hamburger-navigation {
    top: 0;
  }
  html.top-banner-enabled.top-banner-closed #hamburger-navigation .common-close-button {
    top: 10px;
  }
}
html.top-banner-enabled.top-banner-closed #inner-body > div:first-child {
  height: 100%;
}

@media only screen and (max-width: 767px) {
  #top-banner-countdown .inner-wrapper {
    min-height: 208px;
  }
}
@media screen and (max-width: 574px) {
  #top-banner-countdown .inner-wrapper {
    min-height: 226px;
  }
}

html.top-banner-enabled.countdown-show-timer body,
html.top-banner-enabled.countdown-show-timer #header {
  top: 60px;
  transition: top 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled.countdown-show-timer body,
html.top-banner-enabled.countdown-show-timer #header {
    top: 165px;
  }
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled.countdown-show-timer #header {
    top: 43px;
  }
}
@media screen and (max-width: 574px) {
  html.top-banner-enabled.countdown-show-timer #header {
    top: 61px;
  }
}
html.top-banner-enabled.countdown-show-timer.top-banner-closed body,
html.top-banner-enabled.countdown-show-timer.top-banner-closed #header {
  top: 0;
}
html.top-banner-enabled.countdown-show-timer.top-banner-closed #top-banner-countdown {
  top: -90px;
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled.countdown-show-timer.top-banner-closed #top-banner-countdown {
    top: -270px;
  }
}
html.top-banner-enabled.countdown-show-timer.top-banner-closed #inner-body > div:first-child {
  height: 100%;
}

.events-section, .past-events-section {
  padding: 100px 0;
  background: #FCFAF7;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .events-section, .past-events-section {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .events-section, .past-events-section {
    padding: 40px 0;
  }
}
.events-section .title-wrapper, .past-events-section .title-wrapper {
  margin-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .events-section .title-wrapper, .past-events-section .title-wrapper {
    margin-bottom: 40px;
  }
}
.events-section .section-bg, .past-events-section .section-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.events-section .section-bg:before, .past-events-section .section-bg:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=0);
  /* IE6-9 */
}
.events-section .section-bg .inner, .past-events-section .section-bg .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: cover;
  opacity: 0.2;
  filter: sepia(1);
}

@media only screen and (max-width: 767px) {
  #events .event {
    height: 580px;
  }
}
#events .center-column {
  position: relative;
  max-width: 1365px;
  margin: 0 auto;
  padding: 0 80px;
}

@media only screen and (max-width: 767px) {
  #past-events .event {
    height: auto;
  }
}

#events, #past-events {
  position: relative;
  overflow: hidden;
}
#events h2.h1-like, #past-events h2.h1-like {
  font: 500 46px/1 "Butler", "Helvetica", "Arial", serif;
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #events h2.h1-like, #past-events h2.h1-like {
    font-size: 28px;
  }
}
#events h2.h1-like a, #past-events h2.h1-like a {
  text-decoration: none;
}
#events .slideshow, #past-events .slideshow {
  max-width: 1365px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
#events .slideshow-wrapper, #past-events .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#events .event, #past-events .event {
  position: relative;
  display: inline-block;
  width: calc(33.33% - 40px);
  overflow: hidden;
  vertical-align: top;
  white-space: normal;
  margin: 0 20px;
  background: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .event, #past-events .event {
    width: calc(50% - 20px);
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  #events .event, #past-events .event {
    width: 100%;
    margin: 0;
    height: auto;
  }
}
#events .event .thumbnail, #past-events .event .thumbnail {
  position: relative;
  width: 100%;
  height: 250px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #events .event .thumbnail, #past-events .event .thumbnail {
    height: 266px;
  }
}
#events .event .thumbnail.no-thumbnail, #past-events .event .thumbnail.no-thumbnail {
  background: #dbdbdb;
}
#events .event .thumbnail .loading:before, #past-events .event .thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #FCFAF7;
  border-bottom-color: #FCFAF7;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#events .event .event-content, #past-events .event .event-content {
  padding: 25px 30px;
  box-sizing: border-box;
}
#events .event .date, #past-events .event .date {
  display: block;
  position: relative;
  margin-bottom: 8px;
  color: #121212;
  font-size: 17px;
  line-height: 1.2;
}
#events .event .date:empty, #past-events .event .date:empty {
  display: none;
}
#events .event .date a, #past-events .event .date a {
  color: inherit;
  text-decoration: none;
}
#events .event .date a:hover, #past-events .event .date a:hover {
  text-decoration: underline;
}
#events .event h3, #past-events .event h3 {
  font: 400 16px/22px "Founders Grotesk", sans-serif;
  color: #121212;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #events .event h3, #past-events .event h3 {
    font-size: 20px;
  }
}
#events .event p, #past-events .event p {
  font-size: 15px;
  line-height: 1.33;
  color: #525252;
}
@media only screen and (max-width: 767px) {
  #events .event p, #past-events .event p {
    font-size: 14px;
  }
}
#events .event .button, #past-events .event .button {
  margin-top: 16px;
}
#events .slideshow-pagination, #past-events .slideshow-pagination {
  margin: 20px 0;
  text-align: center;
  font-size: 0;
  display: none;
}
@media only screen and (max-width: 767px) {
  #events .slideshow-pagination, #past-events .slideshow-pagination {
    display: block;
  }
}
#events .slideshow-pagination > *, #past-events .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #121212;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
#events .slideshow-pagination > *:hover, #events .slideshow-pagination > *.active, #past-events .slideshow-pagination > *:hover, #past-events .slideshow-pagination > *.active {
  background: #f8b90d;
}
#events .slideshow-button, #past-events .slideshow-button {
  margin-top: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
}
#events .slideshow-button.next, #past-events .slideshow-button.next {
  right: 0;
}
#events .slideshow-button.previous, #past-events .slideshow-button.previous {
  left: 0;
}
#events .slideshow-button:hover, #past-events .slideshow-button:hover {
  background-color: #f8b90d;
}
@media only screen and (max-width: 767px) {
  #events .slideshow-button, #past-events .slideshow-button {
    display: none;
  }
}

.reviews-slideshow {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow {
    padding-bottom: 75px;
  }
}
.reviews-slideshow h2 {
  font: 200 36px/1.2 "Butler", "Helvetica", "Arial", serif;
  margin-bottom: 30px;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}
.reviews-slideshow .slideshow {
  width: calc(100% - 40px);
  max-width: 730px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .reviews-slideshow .slideshow {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow {
    width: calc(100% - 60px);
  }
}
.reviews-slideshow .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
.reviews-slideshow .slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  text-align: center;
  color: #525252;
  font-family: "Founders Grotesk", sans-serif;
  font-size: 16px;
  line-height: 26px;
}
.reviews-slideshow .slide h3,
.reviews-slideshow .slide .copy {
  quotes: "«" "»";
}
.reviews-slideshow .slide h3:before,
.reviews-slideshow .slide .copy:before {
  content: open-quote;
  display: inline;
}
.reviews-slideshow .slide h3:after,
.reviews-slideshow .slide .copy:after {
  content: close-quote;
  display: inline;
}
.reviews-slideshow .slide h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #9B9B9B;
  text-transform: uppercase;
}
.reviews-slideshow .slide .copy {
  margin-top: 25px;
}
.reviews-slideshow .slide .copy * {
  display: inline;
}
.reviews-slideshow .slide .name {
  margin-top: 25px;
  font-weight: 700;
}
.reviews-slideshow .slideshow-button {
  border: 2px solid #000;
  border-bottom: 0;
  border-left: 0;
  height: 30px;
  overflow: hidden;
  position: absolute;
  text-indent: -100em;
  top: 50%;
  margin-top: -10px;
  width: 30px;
  z-index: 10;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow-button {
    display: none;
  }
}
.reviews-slideshow .slideshow-button:hover {
  border-color: #aaa;
}
.reviews-slideshow .slideshow-button.previous {
  left: 40px;
  transform: rotate(-135deg);
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slideshow-button.previous {
    left: 20px;
  }
}
.reviews-slideshow .slideshow-button.next {
  right: 40px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slideshow-button.next {
    right: 20px;
  }
}

/* COMMON STYLES */
.rooms .category-selector {
  margin-bottom: 30px;
  padding: 0 20px;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.rooms .category-selector button {
  font-family: "Founders Grotesk", sans-serif;
  position: relative;
  text-align: center;
  float: left;
  padding: 0 10px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1.2px;
  color: #121212;
  border: 0;
  outline: none;
  background: none;
  min-width: 0;
}
@media (max-width: 550px) {
  .rooms .category-selector button {
    width: 50%;
    margin-right: 0;
    padding: 0 10px 0 16px;
    font-size: 15px;
  }
}
.rooms .category-selector button:before {
  display: none;
}
.rooms .category-selector button:after {
  content: "";
  transform: none;
  display: block;
  position: absolute;
  top: unset;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  transition: height 200ms ease;
  background: #121212;
  border: none;
}
.rooms .category-selector button.active, .rooms .category-selector button:hover, .rooms .category-selector button:focus {
  color: #f8b90d;
  background: none;
}
.rooms .category-selector button.active:after, .rooms .category-selector button:hover:after, .rooms .category-selector button:focus:after {
  height: 4px;
}
.rooms .category-selector button:focus {
  background: #f8b90d;
  color: #ffffff;
}
.rooms .categories-descr {
  padding: 0 20px;
}
.rooms .categories-descr .category-descr {
  display: none;
}
.rooms .categories-descr .category-descr.active {
  display: block;
}

.room .amenities {
  clear: both;
  margin: 30px 0;
}
.room .amenities .rooms-icon, .room .amenities .custom-rooms-icon {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 20px;
  width: 49%;
}
.room .amenities .rooms-icon:before, .room .amenities .custom-rooms-icon:before {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  margin-right: 20px;
}
.room .thumbnail {
  position: relative;
  float: right;
  margin: 0 0 20px 20px;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .room .thumbnail {
    width: 100%;
    margin: 20px 0;
    max-width: none;
    float: none;
  }
}
.room .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.room .links {
  margin: 20px 0;
}

/* TEMPLATE 1 - 1 */
.rooms .template-1-1 {
  width: 100%;
  margin: 0 0 20px;
  padding: 80px;
  position: relative;
  border-bottom: none;
}
.rooms .template-1-1:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 {
    border: none;
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 {
    padding: 20px;
  }
}
.rooms .template-1-1:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  bottom: 0;
  left: 0;
}
.rooms .template-1-1.featured-room {
  margin: 0 -20px 20px;
  padding: 80px;
  width: calc(100% + 40px);
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1.featured-room {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1.featured-room {
    padding: 20px 40px;
  }
}
.rooms .template-1-1.featured-room .room-main-wrapper .thumbnail:before {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background: #f8b90d;
  border: 1px solid rgba(248, 185, 13, 0.5);
  position: absolute;
  left: -20px;
  top: -20px;
  pointer-events: none;
  z-index: -1;
}
.rooms .template-1-1.featured-room .room-main-wrapper .description {
  position: relative;
  padding-top: 140px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1.featured-room .room-main-wrapper .description {
    padding-top: 100px;
  }
}
.rooms .template-1-1.featured-room .description .button {
  background: #f8b90d;
  color: #121212;
}
.rooms .template-1-1.featured-room .description .button:hover {
  background: #121212;
  color: #ffffff;
}
.rooms .template-1-1.featured-room .description nav.links .details-show, .rooms .template-1-1.featured-room .description nav.links .details-hide {
  background: #f8b90d;
  color: #121212;
}
.rooms .template-1-1.featured-room .description nav.links .details-show:hover, .rooms .template-1-1.featured-room .description nav.links .details-hide:hover {
  color: #ffffff;
  background: #121212;
}
.rooms .template-1-1.featured-room .description nav.links .details-show:hover:after {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.rooms .template-1-1.featured-room .description nav.links .details-hide:after {
  transform: translateY(-50%) rotate(46deg);
  margin-top: 2px;
}
.rooms .template-1-1.featured-room .rooms-gallery-slider .slideshow-button {
  background-color: #73736f;
}
.rooms .template-1-1.featured-room .rooms-gallery-slider .slideshow-button:hover {
  background-color: #f8b90d;
}
.rooms .template-1-1.featured-room .room-main-popup .description .title-wrapper {
  position: relative;
  padding-top: 70px;
}
.rooms .template-1-1.featured-room .room-main-popup .feat-am-title, .rooms .template-1-1.featured-room .room-main-popup .additional-list-title {
  color: #121212;
}
.rooms .template-1-1.featured-room .room-main-popup .features-main .features span, .rooms .template-1-1.featured-room .room-main-popup .features-main .amenities span {
  color: #f8b90d;
}
.rooms .template-1-1.featured-room .room-main-popup .features-main .features span.beds:before {
  background-position: -306px -31px;
}
.rooms .template-1-1.featured-room .room-main-popup .features-main .features span.occupancy:before {
  background-position: -346px -31px;
}
.rooms .template-1-1.featured-room .room-main-popup .features-main .features span.view:before {
  background-position: -386px -31px;
}
.rooms .template-1-1.featured-room .room-main-popup .features-main .features span.view.mountain-view:before {
  background-position: -426px -31px;
}
.rooms .template-1-1.featured-room .room-main-popup .features-main .features span.view.city-view:before {
  background-position: -466px -31px;
}
.rooms .template-1-1.featured-room .room-main-popup .additional-list ul li {
  color: #f8b90d;
}
.rooms .template-1-1.featured-room .room-main-popup .additional-list ul li:before {
  border-color: #f8b90d;
}
.rooms .template-1-1.featured-room .room-main-popup .main-additional-content h2, .rooms .template-1-1.featured-room .room-main-popup .main-additional-content h3, .rooms .template-1-1.featured-room .room-main-popup .main-additional-content h4 {
  color: #ffffff;
}
.rooms .template-1-1.featured-room .room-main-popup .secondary-additional-content:before {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 0%);
}
.rooms .template-1-1.odd .room-main-wrapper .thumbnail {
  right: 0;
}
.rooms .template-1-1.even .room-main-wrapper .description {
  float: right;
}
.rooms .template-1-1.expanded .room-main-wrapper {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.rooms .template-1-1.expanded .room-main-popup {
  visibility: visible;
  opacity: 1;
  position: relative;
}
.rooms .template-1-1 .room-main-wrapper {
  position: relative;
}
.rooms .template-1-1 .room-main-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
.rooms .template-1-1 .room-main-wrapper .thumbnail {
  position: absolute;
  margin: 0;
  padding: 0;
  width: calc(50% - 20px);
  height: 100%;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 .room-main-wrapper .thumbnail {
    position: relative;
    width: 100% !important;
    top: unset;
    bottom: unset;
    height: 350px;
    right: unset !important;
    float: none;
  }
}
.rooms .template-1-1 .room-main-wrapper .description-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
.rooms .template-1-1 .room-main-wrapper .description {
  position: relative;
  width: calc(50% - 60px);
  padding: 80px 0;
  min-height: 420px;
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 .room-main-wrapper .description {
    width: 100% !important;
    min-height: 0;
  }
}
@media (max-width: 767px) {
  .rooms .template-1-1 .room-main-wrapper .description {
    padding-right: 0;
  }
}
@media (max-width: 550px) {
  .rooms .template-1-1 .room-main-wrapper .description {
    margin-left: 0;
    padding: 10px;
  }
}
.rooms .template-1-1 .room-main-popup {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.rooms .template-1-1 .room-main-popup .description-wrapper {
  padding: 0 80px;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .description-wrapper {
    padding: 0 10px;
  }
}
.rooms .template-1-1 .room-main-popup .title-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
.rooms .template-1-1 .room-main-popup .title-wrapper h3 {
  display: inline-block;
}
.rooms .template-1-1 .room-main-popup .title-wrapper .links {
  display: inline-block;
  float: right;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .title-wrapper .links {
    display: block;
    float: none;
  }
}
.rooms .template-1-1 .room-main-popup .link360 {
  background: #121212;
  text-indent: unset;
  height: 54px;
  width: 250px;
  border-radius: 27px;
  padding: 0 30px 0 70px;
  box-sizing: border-box;
  line-height: 54px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 600;
}
.rooms .template-1-1 .room-main-popup .link360:before {
  content: "";
  width: 42px;
  height: 30px;
  display: block;
  background: url("../images/sprite.svg") -139px -249px;
  position: absolute;
  left: 15px;
  top: 12px;
}
.rooms .template-1-1 .room-main-popup .link360:hover {
  background: #f8b90d;
  color: #ffffff;
}
.rooms .template-1-1 .room-main-popup .features-wrapper {
  margin-top: 80px;
  padding: 54px 80px;
  background: #FCFAF7;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .features-wrapper {
    margin-top: 40px;
    padding: 20px;
  }
}
.rooms .template-1-1 .room-main-popup .feat-am-title, .rooms .template-1-1 .room-main-popup .additional-list-title {
  text-align: center;
  font: normal 36px/47px "Butler", "Helvetica", "Arial", serif;
  color: #121212;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .feat-am-title, .rooms .template-1-1 .room-main-popup .additional-list-title {
    margin-bottom: 30px;
  }
}
.rooms .template-1-1 .room-main-popup .features-main .features {
  background: #ffffff;
  padding: 20px 90px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 .room-main-popup .features-main .features {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .features-main .features {
    padding: 20px;
  }
}
.rooms .template-1-1 .room-main-popup .features-main .features span {
  display: inline-block;
  margin: 0 20px 0 0;
  font-size: 14px;
  color: #121212;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 .room-main-popup .features-main .features span {
    width: 100%;
    margin: 0 0 20px;
  }
  .rooms .template-1-1 .room-main-popup .features-main .features span:last-of-type {
    margin-bottom: 0;
  }
}
.rooms .template-1-1 .room-main-popup .features-main .features span.beds, .rooms .template-1-1 .room-main-popup .features-main .features span.occupancy, .rooms .template-1-1 .room-main-popup .features-main .features span.view {
  padding-left: 48px;
}
.rooms .template-1-1 .room-main-popup .features-main .features span.beds:before, .rooms .template-1-1 .room-main-popup .features-main .features span.occupancy:before, .rooms .template-1-1 .room-main-popup .features-main .features span.view:before {
  content: "";
  display: block;
  width: 28px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/sprite.svg");
}
.rooms .template-1-1 .room-main-popup .features-main .features span.beds:before {
  background-position: -306px -3px;
}
.rooms .template-1-1 .room-main-popup .features-main .features span.occupancy:before {
  background-position: -346px -3px;
}
.rooms .template-1-1 .room-main-popup .features-main .features span.view:before {
  background-position: -386px -3px;
}
.rooms .template-1-1 .room-main-popup .features-main .features span.view.mountain-view:before {
  background-position: -426px -3px;
}
.rooms .template-1-1 .room-main-popup .features-main .features span.view.city-view:before {
  background-position: -466px -3px;
}
.rooms .template-1-1 .room-main-popup .features-main .amenities {
  position: relative;
  margin: 65px 0 0;
  padding: 0 25px;
  line-height: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .features-main .amenities {
    padding: 0;
  }
}
@media (max-width: 550px) {
  .rooms .template-1-1 .room-main-popup .features-main .amenities {
    margin: 15px 0;
  }
}
.rooms .template-1-1 .room-main-popup .features-main .amenities span {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 10px;
  vertical-align: middle;
  white-space: nowrap;
  margin-right: 20px;
  width: 24%;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 .room-main-popup .features-main .amenities span {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .features-main .amenities span {
    width: 24%;
    margin-bottom: 10px;
  }
}
.rooms .template-1-1 .room-main-popup .features-main .amenities span span {
  font: 16px/22px "Founders Grotesk", sans-serif;
  letter-spacing: 0.2px;
  white-space: nowrap;
  width: auto !important;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .features-main .amenities span span {
    display: none;
  }
}
.rooms .template-1-1 .room-main-popup .additional-list {
  background: #ffffff;
  padding: 50px 80px 55px;
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .room-main-popup .additional-list {
    margin-top: 40px;
    padding: 20px;
  }
}
.rooms .template-1-1 .room-main-popup .additional-list ul {
  margin-bottom: 0;
}
.rooms .template-1-1 .room-main-popup .additional-list ul:after {
  clear: both;
  content: "";
  display: table;
}
.rooms .template-1-1 .room-main-popup .additional-list ul li {
  display: block;
  float: left;
  width: calc(50% - 35px);
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 .room-main-popup .additional-list ul li {
    float: none;
    width: 100%;
  }
}
.rooms .template-1-1 .room-main-popup .additional-list ul li:nth-child(2n) {
  margin-left: 70px;
}
@media only screen and (max-width: 1023px) {
  .rooms .template-1-1 .room-main-popup .additional-list ul li:nth-child(2n) {
    margin-left: 0;
  }
}
.rooms .template-1-1 .room-main-popup .main-additional-content, .rooms .template-1-1 .room-main-popup .secondary-additional-content {
  margin-top: 80px;
}
.rooms .template-1-1 .room-main-popup .main-additional-content h2, .rooms .template-1-1 .room-main-popup .main-additional-content h3, .rooms .template-1-1 .room-main-popup .main-additional-content h4 {
  font: 16px/22px "Founders Grotesk", sans-serif;
  text-transform: uppercase;
  color: #121212;
}
.rooms .template-1-1 .room-main-popup .secondary-additional-content {
  font-style: italic;
  color: #f8b90d;
  padding-top: 35px;
  position: relative;
}
.rooms .template-1-1 .room-main-popup .secondary-additional-content:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  top: 0;
  left: 0;
}
.rooms .template-1-1 .room-main-popup .secondary-additional-content p {
  font-style: inherit;
}
.rooms .template-1-1 .mile-high {
  height: 44px;
  padding: 0 25px;
  border-radius: 20px;
  font: 600 13px/44px "Founders Grotesk", sans-serif;
  color: #f8b90d;
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f8b574;
  background: linear-gradient(to bottom, #f8b574 0%, #eda863 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8b574", endColorstr="#eda863", GradientType=0);
  z-index: 1;
}
.rooms .template-1-1 .rooms-gallery-slider .mile-high {
  left: 40px;
}
.rooms .template-1-1 .description h3 {
  font: 400 46px/1 "Butler", "Helvetica", "Arial", serif;
  margin-bottom: 18px;
  color: #73736f;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .description h3 {
    font-size: 28px;
    font-weight: normal;
  }
}
.rooms .template-1-1 .description .rooms-size {
  font: 16px/22px "Founders Grotesk", sans-serif;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 18px;
}
.rooms .template-1-1 .description p {
  margin: 17px 0 20px;
  font: 16px/22px "Founders Grotesk", sans-serif;
}
.rooms .template-1-1 .description nav.links {
  margin-top: 28px;
}
.rooms .template-1-1 .description nav.links .details-show, .rooms .template-1-1 .description nav.links .details-hide {
  background: #FCFAF7;
  color: #121212;
  position: relative;
  display: inline-block;
  height: 40px;
  margin: 0 20px 4px 0;
  padding: 0 38px 0 18px;
  overflow: visible;
  font: 500 11px/40px "Founders Grotesk", sans-serif;
  min-width: 140px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  -moz-text-align-last: auto;
       text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all 350ms ease-in-out;
  vertical-align: middle;
}
.rooms .template-1-1 .description nav.links .details-show:after, .rooms .template-1-1 .description nav.links .details-hide:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 15px;
  border-top: 1px solid #121212;
  border-left: 1px solid #121212;
  transform: translateY(-50%) rotate(225deg);
  pointer-events: none;
}
.rooms .template-1-1 .description nav.links .details-show:hover, .rooms .template-1-1 .description nav.links .details-hide:hover {
  background: #121212;
  color: #ffffff;
}
.rooms .template-1-1 .description nav.links .details-show:hover:after, .rooms .template-1-1 .description nav.links .details-hide:hover:after {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.rooms .template-1-1 .description nav.links .details-show:hover:after {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.rooms .template-1-1 .description nav.links .details-hide:after {
  margin-top: 2px;
  transform: translateY(-50%) rotate(46deg);
}
.rooms .template-1-1 .description nav.links .button {
  min-width: 180px;
  height: 40px;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .description nav.links .details-hide, .rooms .template-1-1 .description nav.links .details-show, .rooms .template-1-1 .description nav.links .button {
    margin: 10px 0;
    width: 100%;
  }
}

.rooms-gallery-slider {
  position: relative;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  min-height: 300px;
  max-height: 570px;
  z-index: 40;
  margin: 0 auto 80px;
  padding: 0 20px;
  max-width: 1240px;
}
@media only screen and (max-width: 1023px) {
  .rooms-gallery-slider {
    margin: 40px auto;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-gallery-slider {
    padding: 0 10px;
  }
}
.rooms-gallery-slider .rooms-item-gallery {
  width: 50px;
  height: 50px;
  background: rgba(252, 250, 247, 0.8);
  border-radius: 8px;
  position: absolute;
  top: 20px;
  right: 20px;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 1;
}
.rooms-gallery-slider .rooms-item-gallery:hover {
  background: #ffffff;
}
.rooms-gallery-slider .rooms-item-gallery span {
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
}
.rooms-gallery-slider .rooms-item-gallery span:nth-child(1) {
  top: 13px;
  left: 13px;
  border-top: 2px solid #121212;
  border-left: 2px solid #121212;
}
.rooms-gallery-slider .rooms-item-gallery span:nth-child(2) {
  top: 13px;
  right: 13px;
  border-top: 2px solid #121212;
  border-right: 2px solid #121212;
}
.rooms-gallery-slider .rooms-item-gallery span:nth-child(3) {
  bottom: 13px;
  left: 13px;
  border-bottom: 2px solid #121212;
  border-left: 2px solid #121212;
}
.rooms-gallery-slider .rooms-item-gallery span:nth-child(4) {
  bottom: 13px;
  right: 13px;
  border-bottom: 2px solid #121212;
  border-right: 2px solid #121212;
}
.rooms-gallery-slider .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #FCFAF7;
  border-bottom-color: #FCFAF7;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rooms-gallery-slider .slideshow {
  position: absolute;
  left: 20px;
  top: 0;
  width: calc(100% - 40px);
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .rooms-gallery-slider .slideshow {
    width: calc(100% - 20px);
    left: 10px;
  }
}
.rooms-gallery-slider .slideshow-wrapper {
  width: 100%;
  height: 100%;
}
.rooms-gallery-slider .slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .rooms-gallery-slider .slide:after {
    width: 100%;
  }
}
.rooms-gallery-slider .slide .thumbnail {
  width: 100%;
  margin: 0;
  background-size: cover;
  background-position: center center;
}
.rooms-gallery-slider .slideshow-button {
  margin-top: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
}
.rooms-gallery-slider .slideshow-button.next {
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms-gallery-slider .slideshow-button.next {
    right: 10px;
  }
}
.rooms-gallery-slider .slideshow-button.previous {
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms-gallery-slider .slideshow-button.previous {
    left: 10px;
  }
}
.rooms-gallery-slider .slideshow-button:hover {
  background-color: #f8b90d;
}

#home-gallery {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-bottom: 10px;
  text-align: center;
  z-index: 10;
}
#home-gallery div.gallery-wrapper {
  overflow: hidden;
}
#home-gallery .each-gallery-wrapper {
  overflow: hidden;
  display: none;
}
#home-gallery .each-gallery-wrapper.active {
  display: block;
}
#home-gallery .photo {
  display: block;
  float: left;
  margin: 10px 0 0 10px;
  width: calc((100% - 60px) / 5);
  height: 0;
  padding-top: calc((100% - 60px) / 5);
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  font-size: 0;
  transition: opacity 0.3s ease-out;
  opacity: 1;
}
#home-gallery .photo:hover {
  opacity: 0.8;
}
#home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (max-width: 767px) {
  #home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .photo {
    width: calc((100% - 50px) / 4);
    padding-top: calc((100% - 50px) / 4);
  }
  #home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
    width: calc((100% - 50px) / 4);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .photo {
    width: calc((100% - 30px) / 2);
    padding-top: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-11 .photo:nth-child(4), #home-gallery .count-11 .photo:nth-child(5) {
    width: calc((100% - 30px) / 2);
  }
}
#home-gallery .count-11 .photo:nth-child(9) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-11 .photo:nth-child(9) {
    width: calc((100% - 60px) / 4 * 2 + 15px);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-11 .photo:nth-child(9) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-11 .photo:nth-child(11) {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-10 .photo:nth-child(4), #home-gallery .count-10 .photo:nth-child(5) {
    width: calc((100% - 30px) / 2);
  }
}
#home-gallery .count-10 .photo:nth-child(7), #home-gallery .count-10 .photo:nth-child(8), #home-gallery .count-10 .photo:nth-child(9) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-10 .photo:nth-child(7), #home-gallery .count-10 .photo:nth-child(8), #home-gallery .count-10 .photo:nth-child(9) {
    width: calc((100% - 60px) / 4 * 2 + 15px);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-10 .photo:nth-child(7), #home-gallery .count-10 .photo:nth-child(8), #home-gallery .count-10 .photo:nth-child(9) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-10 .photo:nth-child(9) {
    width: calc((100% - 50px) / 4);
  }
}
#home-gallery .count-9 .photo:nth-child(1), #home-gallery .count-9 .photo:nth-child(3), #home-gallery .count-9 .photo:nth-child(7), #home-gallery .count-9 .photo:nth-child(9) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-9 .photo:nth-child(1), #home-gallery .count-9 .photo:nth-child(3), #home-gallery .count-9 .photo:nth-child(7), #home-gallery .count-9 .photo:nth-child(9) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-9 .photo:nth-child(1), #home-gallery .count-9 .photo:nth-child(2) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-9 .photo:nth-child(3), #home-gallery .count-9 .photo:nth-child(4), #home-gallery .count-9 .photo:nth-child(5) {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-9 .photo:nth-child(3), #home-gallery .count-9 .photo:nth-child(4), #home-gallery .count-9 .photo:nth-child(5) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-9 .photo:nth-child(6), #home-gallery .count-9 .photo:nth-child(7), #home-gallery .count-9 .photo:nth-child(8), #home-gallery .count-9 .photo:nth-child(9) {
    width: calc((100% - 50px) / 4);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-9 .photo:nth-child(9) {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-8 .photo {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-7 .photo:nth-child(4) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-7 .photo:nth-child(5), #home-gallery .count-7 .photo:nth-child(6) {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-7 .photo:nth-child(5), #home-gallery .count-7 .photo:nth-child(6) {
    width: calc((100% - 30px) / 2);
  }
}
#home-gallery .count-7 .photo:nth-child(7) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-7 .photo:nth-child(7) {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-7 .photo:nth-child(7) {
    width: calc(100% - 20px);
  }
}
#home-gallery .count-6 .photo:nth-child(1), #home-gallery .count-6 .photo:nth-child(3) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-6 .photo:nth-child(1), #home-gallery .count-6 .photo:nth-child(3) {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-6 .photo:nth-child(1), #home-gallery .count-6 .photo:nth-child(3) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-6 .photo {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-6 .photo {
    width: calc((100% - 30px) / 2);
  }
}
#home-gallery .count-5 .photo:nth-child(1), #home-gallery .count-5 .photo:nth-child(3) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
#home-gallery .count-5 .photo:nth-child(4), #home-gallery .count-5 .photo:nth-child(5) {
  width: calc((100% - 30px) / 2);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-5 .photo:nth-child(1), #home-gallery .count-5 .photo:nth-child(2), #home-gallery .count-5 .photo:nth-child(3) {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-5 .photo:nth-child(1), #home-gallery .count-5 .photo:nth-child(2), #home-gallery .count-5 .photo:nth-child(3) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-5 .photo:nth-child(5) {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-3 .photo:nth-child(1) {
    width: calc((100% - 40px) / 3);
  }
}
#home-gallery .count-3 .photo:nth-child(2), #home-gallery .count-3 .photo:nth-child(3) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #home-gallery .count-3 .photo:nth-child(2), #home-gallery .count-3 .photo:nth-child(3) {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-3 .photo:nth-child(2) {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .count-3 .photo:nth-child(3) {
    width: calc(100% - 20px);
  }
}
#home-gallery .count-2 .photo {
  width: calc((100% - 30px) / 2);
}
#home-gallery .count-1 .photo {
  width: calc(100% - 20px);
}
@media only screen and (max-width: 767px) {
  #home-gallery span.photo {
    display: none;
  }
}
#home-gallery span.photo:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#home-gallery span.photo .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: 25px/25px "Butler", "Helvetica", "Arial", serif;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
#home-gallery span.photo .text a {
  margin-top: 6px;
  padding: 0 20px;
}
#home-gallery .all-photos {
  display: none;
}
@media only screen and (max-width: 767px) {
  #home-gallery .all-photos {
    display: block;
    margin-top: 40px;
  }
}

#feeds {
  position: relative;
  padding: 0;
  z-index: 10;
}
#feeds h2 {
  font: 200 36px/1.2 "Butler", "Helvetica", "Arial", serif;
  margin-bottom: 30px;
  color: #121212;
  text-transform: uppercase;
  text-align: center;
}
#feeds.loading {
  min-height: 300px;
}
#feeds.loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #FCFAF7;
  border-bottom-color: #FCFAF7;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#feeds .feed-content {
  overflow: hidden;
  position: relative;
}
#feeds .feed-items {
  font-size: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feeds .feed-item {
  position: relative;
  width: calc((100% - 60px) / 4);
  height: auto;
  float: left;
  font: italic 14px/18px "Founders Grotesk", sans-serif;
  overflow: hidden;
  opacity: 1;
  text-align: left;
  background: #FCFAF7;
  color: #73736f;
  transition: opacity 350ms ease-in-out;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media (prefers-reduced-motion) {
  #feeds .feed-item {
    transition: none;
  }
}
@media only screen and (max-width: 767px) {
  #feeds .feed-item:first-of-type {
    width: 100%;
  }
}
#feeds .feed-item .inner-wrapper {
  width: 100%;
  padding-top: 100%;
}
#feeds .feed-item:hover {
  opacity: 0.86;
}
@media (max-width: 449px) {
  #feeds .feed-item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 449px) and (max-width: 979px) {
  #feeds .feed-item {
    width: calc((100% - 20px) / 2);
    margin-left: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 980px) {
  #feeds .feed-item {
    width: calc((100% - 60px) / 3);
  }
}
#feeds .feed-item:before {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 31px;
  right: 10px;
  bottom: 10px;
  background: url("../images/feeds-sprite.svg") -180px 0 no-repeat;
  z-index: 5;
}
#feeds .feed-item.invisible {
  opacity: 0;
}
#feeds .feed-item .feed-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121212;
}
#feeds .feed-item .feed-thumb div {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.6;
}
#feeds .feed-item.instagram .feed-thumb div {
  opacity: 1;
}
#feeds .feed-item .feed-descr {
  position: absolute;
  bottom: 0;
  top: 0;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  font: 14px/18px "Founders Grotesk", sans-serif;
  text-align: left;
  color: #ffffff;
}
#feeds .feed-item .feed-title {
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: underline;
  transition: all 350ms ease-in-out;
  padding-right: 30px;
}
@media (prefers-reduced-motion) {
  #feeds .feed-item .feed-title {
    transition: none;
  }
}
#feeds .feed-item .feed-date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}
#feeds .feed-item .feed-text {
  display: inline-block;
  font-family: "Founders Grotesk", sans-serif;
  font-weight: 200;
}
#feeds .feed-item .feed-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#feeds .feed-item.instagram {
  background: #833ab4;
}
#feeds .feed-item.instagram:before {
  width: 20px;
  height: 20px;
  background-position: -197px 0;
}
#feeds .feed-item.instagram .feed-descr {
  display: none;
}
#feeds .feed-item.instagram a {
  color: inherit;
}
#feeds .feed-item.facebook {
  background: #3b5998;
}
#feeds .feed-item.facebook:before {
  background-position: -50px 0;
}
#feeds .feed-item.twitter {
  background: #657786;
}
#feeds .feed-item.twitter:before {
  background-position: -100px 0;
}
#feeds .feed-item.blog:before {
  background-position: -150px 0;
}
#feeds .feed-item.blog h3 {
  color: #ACA394;
  padding-right: 30px;
  margin-bottom: 7px;
  transition: all 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  #feeds .feed-item.blog h3 {
    transition: none;
  }
}
#feeds .feed-item.blog h3:hover {
  opacity: 0.7;
}
#feeds .feed-item.blog .feed-descr {
  color: #8B765E;
}
#feeds .feed-controls {
  display: block;
  text-align: center;
}
#feeds .feed-items__column {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #feeds .feed-items__column {
    width: 100%;
  }
}
#feeds .feed-items__column.feed-items__first-column {
  width: 34%;
}
@media only screen and (max-width: 767px) {
  #feeds .feed-items__column.feed-items__first-column {
    width: 100%;
  }
}
#feeds .feed-items__column.feed-items__first-column .feed-item {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

/* 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: #73736f;
}
.single-venue .layouts span:hover {
  background: #f8b90d;
}
.single-venue .layouts span:hover:before {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .single-venue .layouts span:hover {
    background: none;
  }
  .single-venue .layouts span:hover:before {
    color: #73736f;
  }
}
.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: 0;
}
@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: #ffffff;
  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: "Founders Grotesk", 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 {
  position: relative;
  padding: 0 0 90px;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #121212;
  text-align: center;
  z-index: 1;
  background-color: #FCFAF7;
}
#footer:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  top: -1px;
  left: 0;
}
#footer a {
  color: #f8b90d;
}
#footer a:hover {
  color: #121212;
}
#footer .footer-menu {
  display: block;
  vertical-align: top;
  font-size: 0;
  background: #FCFAF7;
  min-height: 69px;
  position: relative;
  text-align: center;
}
#footer .footer-menu:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  bottom: -1px;
  left: 0;
}
#footer .footer-menu li {
  display: inline-block;
  margin: 0 27px;
}
#footer .footer-menu a {
  display: block;
  margin-bottom: 5px;
  font: 400 13px/69px "Founders Grotesk", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: #121212;
}
#footer .footer-menu a:hover, #footer .footer-menu a.active {
  color: #f8b90d;
}
#footer .footer-columns-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 90px;
}
#footer .footer-column {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
}
#footer .footer-column.left {
  width: 35%;
  text-align: left;
  padding-right: 5%;
}
#footer .footer-column.left .logo-footer {
  display: block;
  max-width: 280px;
  opacity: 1;
  z-index: 1;
  transition: opacity 350ms ease-in-out;
}
#footer .footer-column.left .logo-footer img {
  display: block;
  height: 100%;
  width: 100%;
}
#footer .footer-column.left .logo-footer:hover {
  opacity: 0.8;
}
#footer .footer-column.center {
  width: 40%;
  text-align: left;
  padding-right: 5%;
}
#footer .footer-column.center .footer-contacts {
  font: normal 18px/1.2 "Founders Grotesk", sans-serif;
  color: #121212;
  display: block;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
#footer .footer-column.center .footer-contacts a {
  color: #121212;
}
#footer .footer-column.center .footer-contacts a:hover {
  color: #f8b90d;
}
#footer .footer-column.center .footer-contacts p strong {
  font-weight: 700;
}
#footer .footer-column.center .additional-info {
  margin-top: 20px;
}
#footer .footer-column.center .additional-info p {
  display: block;
}
#footer .footer-column.right {
  width: 25%;
  text-align: left;
  float: right;
}
#footer .footer-column.right .footer-text {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 767px) {
  #footer {
    padding: 0 0 30px;
  }
  #footer .footer-menu {
    height: auto;
    padding: 30px 0;
  }
  #footer .footer-menu li {
    display: block;
  }
  #footer .footer-menu li a {
    line-height: 30px;
  }
  #footer .footer-columns-wrapper {
    display: block;
    justify-content: unset;
    padding-top: 40px;
  }
  #footer .footer-column.left, #footer .footer-column.center, #footer .footer-column.right {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  #footer .footer-column.left .logo-footer {
    max-width: 260px;
    margin: 0 auto 20px;
    height: auto;
  }
  #footer .footer-column.center {
    margin-bottom: 20px;
  }
  #footer .footer-column.right {
    display: flex;
    flex-flow: column;
  }
  #footer .footer-column.right .footer-text {
    margin-bottom: 20px;
  }
}
#footer .socials {
  margin-bottom: 15px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #footer .socials {
    float: none;
  }
}
#footer .socials li {
  display: inline-block;
  margin: 0 5px;
}
#footer .socials a {
  position: relative;
  display: block;
  width: 31px;
  height: 31px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 0 no-repeat;
}
@media only screen and (max-width: 767px) {
  #footer .socials a {
    display: inline-block;
  }
}
#footer .socials a.facebook {
  background-position: 0px -159px;
}
#footer .socials a.facebook:hover {
  background-position: 0px -199px;
}
#footer .socials a.twitter {
  background-position: -40px -159px;
}
#footer .socials a.twitter:hover {
  background-position: -40px -199px;
}
#footer .socials a.instagram {
  background-position: -280px -159px;
}
#footer .socials a.instagram:hover {
  background-position: -280px -199px;
}
#footer .socials a.tripadvisor {
  background-position: -200px -159px;
}
#footer .socials a.tripadvisor:hover {
  background-position: -200px -199px;
}
#footer .socials a.youtube {
  background-position: -120px -159px;
}
#footer .socials a.youtube:hover {
  background-position: -120px -199px;
}
#footer .socials a.flickr {
  background-position: -360px -159px;
}
#footer .socials a.flickr:hover {
  background-position: -360px -199px;
}
#footer .socials a.pinterest {
  background-position: -240px -159px;
}
#footer .socials a.pinterest:hover {
  background-position: -240px -199px;
}
#footer .socials a.linkedin {
  background-position: -160px -159px;
}
#footer .socials a.linkedin:hover {
  background-position: -160px -199px;
}

#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: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  border-radius: 0;
  border: none;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .close-button:hover {
  background-position: -37px 0;
}
#hebs-gallery .close-button:active {
  background-position: -74px 0;
}
#hebs-gallery .close-button:before, #hebs-gallery .close-button:after {
  display: none;
}
#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 .category-selector {
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  background: #ffffff;
  font-size: 14px;
  color: #73736f;
}
#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;
  }
}
#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: 43px;
  height: 43px;
  margin-top: -22px;
  text-indent: -9999px;
  overflow: hidden;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  font-size: 0;
  transition: border-color 350ms ease-in-out;
}
#hebs-gallery .galleria-image-nav-left:hover, #hebs-gallery .galleria-image-nav-right:hover {
  border-color: #f8b90d;
}
#hebs-gallery .galleria-image-nav-left {
  left: 20px;
  transform: rotate(-45deg);
  transform-origin: center;
}
#hebs-gallery .galleria-image-nav-right {
  right: 20px;
  transform: rotate(135deg);
  transform-origin: center;
}
#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: #FCFAF7;
  border-bottom-color: #FCFAF7;
  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;
}
#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;
}

/* 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: #73736f;
}
.single-venue .layouts span:hover {
  background: #f8b90d;
}
.single-venue .layouts span:hover:before {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .single-venue .layouts span:hover {
    background: none;
  }
  .single-venue .layouts span:hover:before {
    color: #73736f;
  }
}
.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: 0;
}
@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: #ffffff;
  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: "Founders Grotesk", 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;
}

#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 "Butler", "Helvetica", "Arial", 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;
}

.specials:after {
  clear: both;
  content: "";
  display: table;
}
.specials .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item {
    height: auto;
  }
}
.specials .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #f8b90d;
  z-index: -1;
}
.specials .image-list-item .background {
  position: relative;
  width: 350px;
  height: 300px;
  margin-left: 40px;
  display: block;
  float: right;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .background {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.specials .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .description {
    padding: 20px 20px 10px 20px;
    text-align: center;
  }
}
.specials .image-list-item .description h3 {
  margin-bottom: 15px;
}
.specials .image-list-item .description h3 a {
  text-decoration: none;
  color: #73736f;
}
.specials .image-list-item .description h3 a:hover {
  color: #121212;
}
.specials .image-list-item .description nav {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials .image-list-item .description nav {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .description nav {
    text-align: center;
    width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
  }
}

.single-special .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .single-special .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.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: #FCFAF7;
  border-bottom-color: #FCFAF7;
  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: 540px;
  background: #121212;
}
.hotel-location-map h4, .poi-map-canvas h4 {
  margin: 0;
  font: normal 16px/1.2 "Butler", "Helvetica", "Arial", serif;
  text-transform: uppercase;
  color: #73736f;
  letter-spacing: 0.8px;
}
.hotel-location-map p, .poi-map-canvas p {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  margin: 5px 0 0;
}
.hotel-location-map .button, .poi-map-canvas .button {
  display: block;
}
.hotel-location-map .map-content, .poi-map-canvas .map-content {
  overflow: hidden;
}

.goolemap-wrapper {
  border: 9px solid #FCFAF7;
  background: #FCFAF7;
}

.infoBox img {
  display: block;
  border-radius: 50%;
  color: #121212;
  font-size: 13px;
  line-height: 10px;
  width: 30px;
  height: 30px;
  background: #FCFAF7;
  position: absolute;
  top: -20px;
  right: -20px;
  border: 5px solid #121212;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  padding: 5px;
  overflow: hidden;
  text-indent: -999px;
  z-index: 1;
}
.infoBox img:hover {
  border-color: #f8b90d;
}

.map-content {
  background: #FCFAF7;
  font-size: 14px;
  line-height: 24px;
  padding: 36px 10px;
  position: relative;
  text-align: center;
  color: #121212;
  width: 260px;
  box-shadow: 0 5px 10px 0 rgba(18, 18, 18, 0.5);
}
.map-content:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #FCFAF7;
}
.map-content h3, .map-content p {
  margin-bottom: 5px;
}
.map-content h3 {
  font: 500 16px/1.2 "Butler", "Helvetica", "Arial", serif;
  color: #73736f;
  letter-spacing: 0.8px;
}
.map-content a {
  color: #f8b90d;
}
.map-content .button {
  display: inline-block;
}
.map-content .close-btn {
  font-size: 0;
  line-height: 0;
}

.pressroom {
  text-align: center;
}
.pressroom .pressroom-item {
  display: inline-block;
  vertical-align: top;
  width: calc(33% - 20px);
  height: 400px;
  margin: 15px 10px 20px 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f8b90d;
  padding: 20px 0;
  background-color: #73736f;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pressroom .pressroom-item {
    width: calc(40% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
    margin: 10px 0;
  }
}
.pressroom .pressroom-item h4 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ffffff;
}
.pressroom .pressroom-item time {
  color: #ffffff;
  display: block;
  margin: 5px 0;
}
.pressroom .pressroom-item .description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.5);
  padding: 10px 20px 20px 20px;
}
.pressroom .pressroom-item .description .centered time {
  margin: 10px 0;
  display: block;
  font-weight: bold;
}
.pressroom .pressroom-item .description p {
  color: #ffffff;
  line-height: 18px;
  font-size: 14px;
}
.pressroom .pressroom-item .pdf {
  color: #ffffff;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  line-height: 16px;
  padding-left: 0 !important;
}
.pressroom .pressroom-item .pdf:hover {
  color: #73736f;
}
.pressroom .pressroom-item .view-gallery {
  margin-top: 20px;
}

.galleries {
  text-align: center;
  font-size: 0;
}
.galleries .gallery {
  padding-bottom: calc(33.3% - 10px);
  width: calc(33.3% - 10px);
  height: 0;
  margin: 5px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .galleries .gallery {
    width: calc(50% - 10px);
    padding-bottom: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .galleries .gallery {
    width: calc(100% - 10px);
    padding-bottom: calc(100% - 10px);
  }
}
.galleries .gallery h2, .galleries .gallery h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: 26px/30px "Founders Grotesk", sans-serif;
  text-transform: uppercase;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
  color: inherit;
  z-index: 1;
}
.galleries .gallery h3 {
  top: auto;
  bottom: 10px;
  font-size: 14px;
  opacity: 1;
  line-height: 1;
  text-align: center;
}
.galleries .gallery:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -1px;
}
.galleries .gallery:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease-in-out;
  z-index: 0;
}
.galleries .gallery:hover h2, .galleries .gallery:hover h3 {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}
.galleries .gallery:hover .description {
  right: 0;
}
.galleries .gallery:hover:after {
  background: rgba(0, 0, 0, 0.5);
}
.galleries .gallery .description {
  position: absolute;
  right: -100%;
  top: 0;
  color: inherit;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .galleries .gallery .description {
    font-size: 16px;
    line-height: 20px;
  }
}
.galleries .gallery .description:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -1px;
}
.galleries .gallery .description .centered {
  padding: 15px;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 4px);
}

.rfp-wrapper {
  max-width: 740px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .rfp-wrapper {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper {
    margin-top: 10px;
  }
}

.form {
  font-size: 0;
  position: relative;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .form {
    text-align: left;
  }
}
.form .row {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .form .row {
    margin-bottom: 0;
  }
}
.form .row.row-3, .form .row.row-4 {
  margin-bottom: 0;
}
.form .ui-menu-item a {
  text-align: left;
}
.form h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.form label {
  display: flex;
  width: 40%;
  color: #121212;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1.2px;
  margin: 0 20px 7px 0;
  float: left;
}
@media only screen and (max-width: 767px) {
  .form label {
    display: block;
    float: none;
    margin: 0 0 10px;
    width: auto;
  }
}
.form label em {
  color: #121212;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
  order: 1;
}
.form p {
  margin-left: 40px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .form p {
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.form p:after {
  clear: both;
  content: "";
  display: table;
}
.form p.col-1 {
  width: calc(34% - 20px);
}
@media only screen and (max-width: 767px) {
  .form p.col-1 {
    width: 100%;
  }
}
.form p.col-2 {
  width: calc(50% - 40px);
}
.form p.col-2.col-start {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .form p.col-2 {
    width: 100%;
  }
  .form p.col-2.col-start {
    width: 100%;
  }
}
.form p.col-3 {
  width: calc(34% - 20px);
}
@media only screen and (max-width: 767px) {
  .form p.col-3 {
    width: 100%;
  }
}
.form p.col-3:last-child {
  float: right;
}
.form p.col-start {
  clear: both;
  margin-left: 0;
}
.form p.type_checkbox, .form p.type_radio {
  padding: 0 0 30px 0;
}
.form p.type_checkbox label, .form p.type_radio label {
  display: flex;
  width: 100%;
  text-align: left;
  margin: 0 0 7px 0;
}
@media only screen and (max-width: 767px) {
  .form p.type_checkbox, .form p.type_radio {
    padding: 0 0 7px 0;
  }
  .form p.type_checkbox label, .form p.type_radio label {
    margin: 0 0 12px 0;
  }
}
.form p.type_file {
  text-align: right;
  width: calc(100% - 235px);
  margin-bottom: 25px;
}
.form p.type_file input[type=file] {
  width: 100%;
  text-align: right;
}
.form p.type_file .fake-input {
  right: 0;
  left: auto;
  width: auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .form p.type_file {
    text-align: left;
    width: 100%;
  }
  .form p.type_file .fake-input {
    right: auto;
    left: 0;
  }
}
.form p span.checkbox-group,
.form p span.checkbox-radio,
.form p span.radio-group {
  margin-bottom: 10px;
  overflow: hidden;
  float: none;
}
.form p span.checkbox-group label,
.form p span.checkbox-radio label,
.form p span.radio-group label {
  display: flex;
  font-family: "Founders Grotesk", sans-serif;
  width: auto;
  float: left;
  padding-right: 10px;
  vertical-align: top;
  font-weight: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 767px) {
  .form p span.checkbox-group,
.form p span.checkbox-radio,
.form p span.radio-group {
    width: auto;
  }
  .form p span.checkbox-group label,
.form p span.checkbox-radio label,
.form p span.radio-group label {
    display: block;
    width: auto;
    float: none;
  }
}
.form p.type_checkbox label, .form p.type_radio label {
  margin-bottom: 5px;
  display: flex;
}
.form p.type_file label {
  margin: 5px 0 0 0;
}
.form p.terms-privacy {
  text-align: left !important;
  float: none;
  margin-left: 0;
}
.form p.terms-privacy em {
  padding-right: 0;
  font-size: 17px !important;
  color: #C5BAAE !important;
  order: 1;
}
.form p.terms-privacy input {
  margin-right: 10px !important;
}
.form p.terms-privacy label {
  display: flex;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  padding-top: 5px;
  letter-spacing: 0.2px;
}
.form p span {
  float: left;
  margin: 0 10px 0 0;
}
.form p span.checkbox-group, .form p span.radio-group {
  margin-bottom: 10px;
}
.form p span input {
  display: inline;
  float: none;
  margin: 0;
}
.form p span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}
.form p span.group label {
  display: block;
  margin-bottom: 10px;
  padding-top: 5px;
  line-height: 16px;
  padding-right: 2em;
}
.form p span.group label input {
  margin-right: 0.4em;
}
.form input[type=text], .form input[type=date], .form textarea, .form select, .form .input-overlay {
  font-family: "Founders Grotesk", sans-serif;
  background: #ffffff;
  color: #121212;
  font-size: 16px;
  line-height: 50px;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  resize: none;
  letter-spacing: 0;
  border: 1px solid #f8b90d;
}
@media only screen and (max-width: 767px) {
  .form input[type=text], .form input[type=date], .form textarea, .form select, .form .input-overlay {
    padding: 0 20px;
    width: 100%;
    text-align: left;
    height: 40px;
    line-height: 40px;
  }
}
.form .input-overlay {
  opacity: 0;
  margin-top: -50px;
}
@media only screen and (max-width: 767px) {
  .form .select-wrapper {
    width: 100%;
  }
}
.form textarea {
  height: 128px;
  overflow: auto;
  line-height: 1.2;
  padding: 10px 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;
  }
}
@media only screen and (max-width: 767px) {
  .form .group {
    margin-left: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .datepicker-input-wrapper {
  float: left;
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick,
.form .input-overlay {
  width: 122px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .form input.date-pick,
.form .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
.form .input-overlay {
  clear: both;
}
.form .ui-datepicker-trigger {
  float: left;
  position: static;
  margin: 17px 0 0 10px;
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .controls {
  text-align: left;
}
.form .controls p {
  padding: 45px 0 0 0;
  margin-left: 0;
  width: auto;
  background: none;
}
@media only screen and (max-width: 767px) {
  .form .controls p {
    padding: 15px 0 0 0;
    text-align: center;
  }
}
.form .controls .button {
  padding: 0 40px;
}
.form .controls .button:hover {
  background-color: #121212;
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    display: inline-block;
    margin: 0;
  }
}
.form .custom-checkbox, .form .custom-radio {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 2.5em;
  line-height: 1.4em;
}
.form .custom-checkbox:before, .form .custom-radio:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background: #ffffff;
  transition: transform 350ms ease-in-out/2;
  border: 1px solid #C5BAAE;
}
.form .custom-checkbox:after, .form .custom-radio:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 18px;
  height: 8px;
  border-bottom: 2px solid #f8b90d;
  border-left: 2px solid #f8b90d;
  transform: rotate(-45deg) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: transform 350ms ease-in-out/2 350ms ease-in-out/3, opacity 350ms ease-in-out/2, visibility 350ms ease-in-out/2;
  pointer-events: none;
}
.form .custom-checkbox.checked:after, .form .custom-radio.checked:after {
  transform: rotate(-45deg) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 350ms ease-in-out/3, opacity 350ms ease-in-out/3, visibility 350ms ease-in-out/3;
}
.form .custom-checkbox input, .form .custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.form .custom-checkbox.active, .form .custom-radio.active {
  color: #000;
}
.form .custom-radio:before {
  border-radius: 50%;
}
.form .custom-radio:after {
  border: none;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 7px;
  border-radius: 50%;
  transform: scale(2);
  background: #f8b90d;
}

#form_module_container_errors,
#form_module_container_success {
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.3);
}

#form_module_container_errors {
  color: #b31919;
}

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

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

#form_module_container_success {
  color: green;
}

[id*=form_form_] {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] {
    text-align: left;
  }
}
[id*=form_form_] .ui-datepicker-trigger {
  display: none;
}
[id*=form_form_] fieldset + fieldset {
  margin-top: 0;
}
[id*=form_form_] h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
}
[id*=form_form_] em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
[id*=form_form_] label {
  width: 40%;
  line-height: 1.2;
  margin-right: 10px;
  margin-top: 19px;
  margin-bottom: 18px;
  float: left;
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] label {
    display: block;
    float: none;
    margin: 0 0 10px;
    text-align: left;
    width: auto;
  }
}
[id*=form_form_] [class*=checkboxgroup] p span.group {
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] [class*=checkboxgroup] p span.group {
    width: 100%;
  }
}
[id*=form_form_] [class*=checkboxgroup] p span.group label {
  display: block !important;
}
[id*=form_form_] p {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] p {
    margin-bottom: 20px;
  }
}
[id*=form_form_] p:after {
  clear: both;
  content: "";
  display: table;
}
[id*=form_form_] p span {
  float: left;
  margin: 0 10px 0 0;
}
[id*=form_form_] p span.checkbox-group {
  margin-bottom: 10px;
}
[id*=form_form_] p span input {
  display: inline;
  float: none;
  margin: 0;
}
[id*=form_form_] p span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}
[id*=form_form_] p span.group {
  margin-top: 12px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] p span.group {
    margin-top: 0;
  }
}
[id*=form_form_] p span.group label {
  display: block;
  margin-bottom: 10px !important;
  margin-top: 0;
}
[id*=form_form_] p span.group label input {
  margin-right: 0.4em;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .select-wrapper {
    width: 100%;
  }
}
[id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
  background: #ffffff;
  color: #53565a;
  height: 50px;
  padding: 0 10px;
  resize: none;
  width: 250px !important;
  border: 1px solid #C5BAAE;
  font-size: 14px;
  line-height: 40px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
    padding: 0 20px;
    width: 100% !important;
    text-align: left;
  }
}
[id*=form_form_] input[type=text].form_module_field_error, [id*=form_form_] input[type=number].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=url].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 {
  border-color: #b31919;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
    text-align: left;
  }
}
[id*=form_form_] textarea {
  float: left;
  height: 100px;
  overflow: auto;
  line-height: 20px;
  padding: 10px;
}
[id*=form_form_] input[type=checkbox],
[id*=form_form_] input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=checkbox],
[id*=form_form_] input[type=radio] {
    margin-right: 5px;
  }
}
[id*=form_form_] .datepicker-input-wrapper {
  float: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .datepicker-input-wrapper {
    float: none;
  }
}
[id*=form_form_] input[type=datepicker], [id*=form_form_] .input-overlay {
  float: left;
  width: 100px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=datepicker], [id*=form_form_] .input-overlay {
    float: none;
    width: 100%;
  }
}
[id*=form_form_] .input-overlay {
  width: 100px;
  float: left;
  clear: both;
  opacity: 0;
  margin-top: -40px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
[id*=form_form_] .ui-datepicker-trigger {
  float: left;
  position: static;
  margin: 13px 0 0 6px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .ui-datepicker-trigger {
    display: none;
  }
}
[id*=form_form_] input[type=submit] {
  display: block;
  border: none !important;
  padding: 0 30px !important;
}
[id*=form_form_] input[type=submit]:hover {
  background-color: #121212;
  color: #ffffff;
}
[id*=form_form_] > input[type=submit] {
  margin-top: 20px;
}
[id*=form_form_] .g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
[id*=form_form_] .form-builder-field {
  position: relative;
  width: 100%;
  text-align: left;
  clear: both;
}
[id*=form_form_] .form-builder-field[class*=textarea] label {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=textarea] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputhidden] {
  display: none;
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] > label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] > label, [id*=form_form_] .form-builder-field[class*=radiogroup] > label {
  margin-bottom: 20px;
  margin-top: 7px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] > label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] > label, [id*=form_form_] .form-builder-field[class*=radiogroup] > label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label {
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 20px;
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label.consent-checkbox-label, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label.consent-checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label.consent-checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label.consent-checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label.consent-checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label.consent-checkbox-label {
  width: 100%;
  text-align: left;
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label.consent-checkbox-label:before, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label.consent-checkbox-label:before, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label.consent-checkbox-label:before, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label.consent-checkbox-label:before, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label.consent-checkbox-label:before, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label.consent-checkbox-label:before {
  top: 0;
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label.consent-checkbox-label:after, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label.consent-checkbox-label:after, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label.consent-checkbox-label:after, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label.consent-checkbox-label:after, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label.consent-checkbox-label:after, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label.consent-checkbox-label:after {
  top: 5px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] label {
  width: 60%;
  margin-left: calc(40% + 20px);
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] label {
    margin-left: 0;
    width: 100%;
  }
}
[id*=form_form_] .form-builder-field[class*=inputsubmit] {
  margin-left: 20px;
  padding: 20px 0 0 40%;
  width: auto;
  background: none;
}
[id*=form_form_] .form-builder-field .compliance {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
[id*=form_form_] .form-builder-field .compliance em {
  padding: 12px 10px 0 0;
}
[id*=form_form_] .form-builder-field .compliance input[type=checkbox] {
  margin: 10px 5px 0 0;
}
[id*=form_form_] .form-builder-field .compliance > label {
  width: auto;
  text-transform: none;
  color: #000;
  font-size: 20px;
  line-height: 1.8;
  font-weight: normal;
}
[id*=form_form_] .form-builder-field[class*=paragraph] {
  width: 60%;
  margin-left: calc(40% + 20px);
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=paragraph] {
    margin-left: 0;
    width: 100%;
  }
}
[id*=form_form_] .form-builder-field[class*=inputfile] {
  line-height: 1;
}
[id*=form_form_] .form-builder-field[class*=inputfile] input[type=file] {
  margin-top: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputfile] label {
    margin-right: 20px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputfile] .fake-input {
  font: 500 16px/1.2 "Founders Grotesk", sans-serif;
  color: #000;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
  width: 50%;
}
[id*=form_form_] .form-builder-field[class*=inputfile] .fake-input:before {
  content: "";
  background: url("../images/paperclip.png") no-repeat;
  background-size: contain;
  width: 16px;
  height: 17px;
  display: block;
  position: relative;
  float: left;
  margin-right: 10px;
}
[id*=form_form_] .form-builder-group {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
[id*=form_form_] .form-builder-group .form-builder-field {
  overflow: visible !important;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
  width: calc(50% - 10px);
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-2 .form-builder-field input[type=email], [id*=form_form_] .form-builder-group.columns-2 .form-builder-field input[type=phone] {
  width: 100% !important;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] label {
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=checkboxgroup] label.custom-radio, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=radiogroup] label.custom-radio {
  width: auto;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] label {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
  width: calc(33.33% - 20px);
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-3 .form-builder-field input[type=email], [id*=form_form_] .form-builder-group.columns-3 .form-builder-field input[type=phone] {
  width: 100% !important;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] label {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] label {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
  width: calc(25% - 20px);
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-4 .form-builder-field input[type=email], [id*=form_form_] .form-builder-group.columns-4 .form-builder-field input[type=phone] {
  width: 100% !important;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] label {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] label {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field {
  width: calc(66.66% - 20px);
}
[id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field:nth-child(even) {
  width: calc(33.33% - 20px);
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field:nth-child(even) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] input[type=file] {
    width: 100%;
  }
}
[id*=form_form_] .clear-file-input {
  font-size: 12px;
  transition: opacity 350ms ease-in-out;
}
[id*=form_form_] .clear-file-input.inactive {
  opacity: 0;
  visibility: hidden;
}

#home-poi {
  position: relative;
  padding-top: 50px;
  z-index: 10;
}
#home-poi h2 {
  font: 200 36px/1.2 "Butler", "Helvetica", "Arial", serif;
  margin-bottom: 30px;
  color: #f8b90d;
  text-transform: uppercase;
  text-align: center;
}

.poi {
  overflow: hidden;
  position: relative;
}
.poi:after {
  clear: both;
  content: "";
  display: table;
}

.poi-controls-wrapper {
  text-align: center;
}

.poi-map {
  height: 540px;
  width: calc(100% - 350px);
}
@media only screen and (max-width: 767px) {
  .poi-map {
    width: 100%;
  }
}

.poi-overlay {
  text-align: left;
  width: 340px;
  background: #FCFAF7;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .poi-overlay {
    position: relative;
    width: 100%;
    text-align: center;
    background: none;
  }
}
.poi-overlay .category-selector {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .poi-overlay .category-selector {
    position: relative;
    left: auto;
    top: auto;
    transform: translate(0, 0);
    width: 100%;
    margin-bottom: 9px;
  }
}
.poi-overlay .category-selector .poi-button {
  display: block;
  padding-left: 45px;
  font: 400 18px/40px "Founders Grotesk", sans-serif;
  letter-spacing: 0.8px;
  text-transform: none;
  text-align: left;
  position: relative;
  height: 40px;
  line-height: 40px;
}
.poi-overlay .category-selector .poi-button:hover, .poi-overlay .category-selector .poi-button.active {
  color: #ffffff;
  background-color: #121212;
}
.poi-overlay .category-selector .poi-button:hover:before, .poi-overlay .category-selector .poi-button.active:before {
  background-image: url("../images/poi/icons-hover.svg");
}
.poi-overlay .category-selector .poi-button:before {
  background: url("../images/poi/icons.svg") no-repeat -40px -40px;
  content: "";
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .poi-overlay .category-selector .poi-button {
    display: none;
  }
}
.poi-overlay .category-selector .poi-button.icon-restaurants-bars:before {
  background-position: -10px -10px;
}
.poi-overlay .category-selector .poi-button.icon-shopping:before {
  background-position: -70px -10px;
}
.poi-overlay .category-selector .poi-button.icon-zoo:before {
  background-position: -130px -10px;
}
.poi-overlay .category-selector .poi-button.icon-theme-parks:before {
  background-position: -190px -10px;
}
.poi-overlay .category-selector .poi-button.icon-wineries:before {
  background-position: -250px -10px;
}
.poi-overlay .category-selector .poi-button.icon-breakfast:before {
  background-position: -310px -10px;
}
.poi-overlay .category-selector .poi-button.icon-attractions:before {
  background-position: -370px -10px;
}
.poi-overlay .category-selector .poi-button.icon-places-for-children:before {
  background-position: -430px -10px;
}
.poi-overlay .category-selector .poi-button.icon-museums:before {
  background-position: -490px -10px;
}
.poi-overlay .category-selector .poi-button.icon-national-monuments:before {
  background-position: -550px -10px;
}
.poi-overlay .category-selector .poi-button.icon-farmer-markets:before {
  background-position: -610px -10px;
}
.poi-overlay .category-selector .poi-button.icon-nightlife:before {
  background-position: -670px -10px;
}
.poi-overlay .category-selector .poi-button.icon-arts-culture:before {
  background-position: -730px -10px;
}
.poi-overlay .category-selector .poi-button.icon-hospitals:before {
  background-position: -790px -10px;
}
.poi-overlay .category-selector .poi-button.icon-banks:before {
  background-position: -850px -10px;
}
.poi-overlay .category-selector .poi-button.icon-spas:before {
  background-position: -910px -10px;
}
.poi-overlay .category-selector .poi-button.icon-gardens:before {
  background-position: -970px -10px;
}
.poi-overlay .category-selector .poi-button.icon-cafes:before {
  background-position: -1030px -10px;
}
.poi-overlay .category-selector .poi-button.icon-entertainment:before {
  background-position: -1090px -10px;
}
.poi-overlay .category-selector .poi-button.icon-golf:before {
  background-position: -1150px -10px;
}
.poi-overlay .category-selector .poi-button.icon-romantic-spots:before {
  background-position: -1210px -10px;
}
.poi-overlay .category-selector .poi-button.icon-hidden-gems:before {
  background-position: -1270px -10px;
}
.poi-overlay .category-selector .poi-button.icon-corporate-offices:before {
  background-position: -1330px -10px;
}
.poi-overlay .category-selector .poi-button.icon-outdoors:before {
  background-position: -1390px -10px;
}
.poi-overlay .category-selector .poi-button.icon-lakes:before {
  background-position: -1450px -10px;
}
.poi-overlay .category-selector .poi-button.icon-rivers:before {
  background-position: -1510px -10px;
}
.poi-overlay .category-selector .poi-button.icon-beaches:before {
  background-position: -1570px -10px;
}
.poi-overlay .category-selector .poi-button.icon-hiking:before {
  background-position: -1630px -10px;
}
.poi-overlay .category-selector .poi-button.icon-places-of-worship:before {
  background-position: -1690px -10px;
}
.poi-overlay .category-selector .poi-button.icon-sports:before {
  background-position: -1750px -10px;
}
.poi-overlay .category-selector .poi-button.icon-universities:before {
  background-position: -1810px -10px;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: none;
  color: #333;
  box-shadow: none;
}

#calendar-header {
  margin-bottom: 30px;
}
#calendar-header:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-header h4 {
  font: 500 20px/40px "Founders Grotesk", sans-serif;
  color: #121212;
  text-transform: uppercase;
  float: left;
}
@media only screen and (max-width: 767px) {
  #calendar-header h4 {
    float: none;
    text-align: center;
  }
}

#calendar-links {
  float: left;
}
#calendar-links:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #calendar-links {
    margin-top: 0;
    float: none;
    width: 100%;
    text-align: center;
  }
}
#calendar-links li {
  float: left;
}
@media only screen and (max-width: 767px) {
  #calendar-links li {
    display: inline-block;
    float: none;
  }
  #calendar-links li:first-child a {
    margin-left: 0;
  }
}
#calendar-links a {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 20px 0 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#calendar-links a.ical {
  background-position: -200px -76px;
}
#calendar-links a.ical:hover {
  background-position: -240px -76px;
}
#calendar-links a.ical:active {
  background-position: -280px -76px;
}
#calendar-links a.print {
  background-position: -200px -116px;
}
#calendar-links a.print:hover {
  background-position: -240px -116px;
}
#calendar-links a.print:active {
  background-position: -280px -116px;
}
#calendar-links a.rss {
  background-position: -200px -156px;
}
#calendar-links a.rss:hover {
  background-position: -240px -156px;
}
#calendar-links a.rss:active {
  background-position: -280px -156px;
}
@media only screen and (max-width: 767px) {
  #calendar-links a {
    display: inline-block;
    margin: 0 0 0 20px;
  }
}

#calendar-filter {
  float: right;
}
@media only screen and (max-width: 767px) {
  #calendar-filter {
    float: none;
    margin-top: 10px;
    text-align: center;
  }
}
#calendar-filter label {
  color: #73736f;
  text-transform: uppercase;
  margin-right: 20px;
  font-size: 11px;
}
@media only screen and (max-width: 767px) {
  #calendar-filter label {
    display: none;
  }
}
#calendar-filter select {
  border: none;
  box-shadow: -2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  #calendar-filter select {
    box-shadow: none;
    border: thin solid #d1d1d1;
  }
}

#calendar-views {
  float: left;
}
#calendar-views:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #calendar-views {
    float: none;
    text-align: center;
    margin-bottom: 30px;
  }
}
#calendar-views li {
  float: left;
}
@media only screen and (max-width: 767px) {
  #calendar-views li {
    display: inline-block;
    float: none;
  }
}
#calendar-views a {
  position: relative;
  display: block;
  margin-right: 20px;
  padding-left: 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #73736f;
}
@media only screen and (max-width: 767px) {
  #calendar-views a {
    margin-right: 0;
    margin-left: 20px;
  }
  #calendar-views a.grid {
    margin-left: 0;
  }
}
#calendar-views a:hover, #calendar-views a.active {
  color: #8B765E;
}
#calendar-views a:before {
  background: url("../images/common.svg") 0 0 no-repeat;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#calendar-views a.grid:before {
  background-position: -200px 0;
}
#calendar-views a.grid:hover:before, #calendar-views a.grid.active:before {
  background-position: -240px 0;
}
#calendar-views a.grid:active:before {
  background-position: -280px 0;
}
#calendar-views a.list:before {
  background-position: -200px -38px;
}
#calendar-views a.list:hover:before, #calendar-views a.list.active:before {
  background-position: -240px -38px;
}
#calendar-views a.list:active:before {
  background-position: -280px -38px;
}

#calendar-breadcrumb {
  padding: 10px 0;
  margin-bottom: 20px;
}
#calendar-breadcrumb:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-breadcrumb dt, #calendar-breadcrumb dd {
  float: left;
  margin-right: 10px;
  color: #73736f;
}
@media only screen and (max-width: 767px) {
  #calendar-breadcrumb dt, #calendar-breadcrumb dd {
    float: none;
    display: inline-block;
  }
}

#calendar-year {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-year {
    display: none;
  }
}
#calendar-year:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-year li {
  float: left;
}
#calendar-year a {
  display: block;
  padding: 5px 0;
  margin-right: 1px;
  text-decoration: none;
  border-bottom: 1px solid #b7b7b7;
  color: #b7b7b7;
}
#calendar-year a:hover {
  border-color: #343841;
  color: #343841;
}
#calendar-year .active a {
  border-color: #121212;
  color: #121212;
}
#calendar-year .active a:hover {
  border-color: #73736f;
  color: #73736f;
}

#calendar-month {
  height: 60px;
  margin: 60px 0 30px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  padding: 0 90px;
}
#calendar-month:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  top: -30px;
  left: 0;
}
#calendar-month li {
  display: block;
  flex-grow: 6;
}
#calendar-month li.arrow {
  position: absolute;
  top: 0;
}
#calendar-month li.arrow.prev {
  left: 0;
}
#calendar-month li.arrow.next {
  right: 0;
}
@media only screen and (max-width: 767px) {
  #calendar-month li.not-active {
    display: none;
  }
}
#calendar-month li:not(.arrow) a:before {
  content: "";
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: border-color 100ms;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #fff;
}
#calendar-month a {
  display: block;
  vertical-align: top;
  padding: 0 9px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.2px;
  color: #121212;
  border: 1px solid #f8b90d;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #calendar-month a {
    padding: 0 5px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-month a {
    padding: 0 7px;
    font-size: 11px;
    text-align: center;
  }
}
#calendar-month a:hover {
  background: #121212;
  color: #ffffff;
}
#calendar-month a:hover:before {
  display: block !important;
  border-top-color: #121212 !important;
}
#calendar-month a.active {
  background: #f8b90d;
  color: #121212;
}
#calendar-month a.active:before {
  display: block !important;
  border-top-color: #f8b90d !important;
}
#calendar-month a.active:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  transition: border-color 100ms;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FCFAF7;
}
#calendar-month a.active:hover {
  background: #121212;
  color: #ffffff;
}
#calendar-month a.active:hover:before {
  display: block !important;
  border-top-color: #121212 !important;
}
#calendar-month a.active:hover:after {
  display: none;
}
#calendar-month a.arrow-button {
  background-color: #73736f;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}
#calendar-month a.arrow-button span {
  display: none;
}
#calendar-month a.arrow-button.next {
  right: 0;
}
#calendar-month a.arrow-button.previous {
  left: 0;
}
#calendar-month a.arrow-button:hover {
  background-color: #f8b90d;
}

#calendar-navigation {
  display: block;
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
#calendar-navigation .current-event {
  padding: 0 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  background-color: #eee;
}
#calendar-navigation a.prev, #calendar-navigation a.next {
  position: absolute;
  top: 11px;
  width: 11px;
  height: 18px;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  margin: 0 10px 0 10px;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#calendar-navigation a.next {
  right: 0;
  background-position: -200px -234px;
}
#calendar-navigation a.next:hover {
  background-position: -231px -234px;
}
#calendar-navigation a.next:active {
  background-position: -262px -234px;
}
#calendar-navigation a.prev {
  left: 0;
  background-position: -200px -196px;
}
#calendar-navigation a.prev:hover {
  background-position: -231px -196px;
}
#calendar-navigation a.prev:active {
  background-position: -262px -196px;
}

#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 {
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-week {
    display: none;
  }
}
#calendar-week li {
  color: #595756;
  text-align: center;
  font-weight: bold;
}
#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: 8em;
  text-align: left;
  -moz-text-align-last: left;
  text-align-last: left;
  vertical-align: top;
  position: static;
  background: rgba(0, 0, 0, 0.06);
}
@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 {
  text-align: center;
  color: #121212;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
}
#calendar-days li time a:hover {
  background: #e2e2e2;
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(0, 0, 0, 0.02);
}
#calendar-days li.prev_month time a, #calendar-days li.next_month time a {
  color: #595756;
}
#calendar-days li.prev_month time a:hover, #calendar-days li.next_month time a:hover {
  background: #f1f1f1;
}
#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:hover {
  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;
  height: 1.8em;
  width: auto;
  line-height: 1.8em;
  padding: 0 0.5em 0 1em;
  text-decoration: none;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.7em;
  background: #8B765E;
  color: #fff;
}
@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: #8db294;
}
#calendar-days dl.c2 dt a {
  background-color: #ada39a;
}
#calendar-days dl.c3 dt a {
  background-color: #85a9b7;
}
#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: 28px;
  background: #fff;
  color: #717272;
  font-size: 12px;
  margin-bottom: 10px;
  padding: 10px;
  text-align: left;
  visibility: hidden;
  width: 200px;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  #calendar-days dl dd {
    display: none !important;
  }
}
#calendar-days dl dd .triangle {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
#calendar-days dl dd .triangle span {
  display: block;
  width: 0;
  margin: 0 auto;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 14px solid #fff;
}
#calendar-days dl dd h3 {
  color: #717272;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}
#calendar-days dl dd img {
  height: auto;
  width: 100%;
}
#calendar-days dl dd p {
  font-size: 12px;
  line-height: 18px;
  padding: 0 0 10px 0;
  width: 100%;
}
#calendar-days dl:hover 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;
}

#calendar.list-view h2 a:hover {
  text-decoration: underline;
}
#calendar.list-view .image-list {
  position: relative;
  padding: 20px 0;
}
#calendar.list-view .image-list h2, #calendar.list-view .image-list h2 a {
  font: normal 46px/1 "Butler", "Helvetica", "Arial", serif;
  margin-bottom: 18px;
  color: #73736f;
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  #calendar.list-view .image-list h2, #calendar.list-view .image-list h2 a {
    font-size: 28px;
    font-weight: normal;
  }
}
#calendar.list-view .image-list h3, #calendar.list-view .image-list h3 a {
  font: 500 16px/22px "Founders Grotesk", sans-serif;
  margin-bottom: 18px;
  color: #121212;
  text-transform: uppercase;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #calendar.list-view .image-list h3, #calendar.list-view .image-list h3 a {
    font-size: 14px;
    font-weight: normal;
  }
}
#calendar.list-view .image-list h3:hover, #calendar.list-view .image-list h3 a:hover {
  color: #8B765E;
}

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

#calendar .single-event .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #calendar .single-event .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

#calendar .dates, #calendar .attachment {
  display: block;
  margin: 0 0 20px;
}

#calendar .dates > small {
  display: block;
}

.calendar.hidden {
  display: none;
}
.calendar .image-list-item {
  position: relative;
  width: 100%;
  padding: 80px 0 90px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item {
    height: auto;
  }
}
.calendar .image-list-item.alt {
  margin: 0 -80px 20px;
  padding: 80px 110px;
  width: calc(100% + 160px);
  background: #FCFAF7;
}
.calendar .image-list-item.alt .main-wrapper .background {
  width: calc(60% - 20px);
}
.calendar .image-list-item.alt .main-wrapper .description {
  width: calc(40% - 60px);
  position: relative;
  padding: 105px 0;
}
.calendar .image-list-item.alt nav.links .details-show, .calendar .image-list-item.alt nav.links .details-hide {
  background: #ffffff;
}
.calendar .image-list-item.alt nav.links .details-show:hover, .calendar .image-list-item.alt nav.links .details-hide:hover {
  background: #8B765E;
}
.calendar .image-list-item.expanded .main-wrapper nav.links .details-show {
  display: none;
}
.calendar .image-list-item.expanded .main-wrapper nav.links .details-hide {
  display: inline-block;
}
.calendar .image-list-item.expanded .popup-wrapper {
  display: block;
}
.calendar .image-list-item:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  bottom: 0;
  left: 0;
}
.calendar .image-list-item.odd .main-wrapper .background {
  right: 0;
}
.calendar .image-list-item.even .main-wrapper .description {
  float: right;
}
.calendar .image-list-item .main-wrapper {
  position: relative;
}
.calendar .image-list-item .main-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
.calendar .image-list-item .main-wrapper nav.links .details-hide {
  display: none;
}
.calendar .image-list-item .popup-wrapper {
  display: none;
  padding: 0 80px;
}
@media only screen and (max-width: 1023px) {
  .calendar .image-list-item .popup-wrapper {
    padding: 0 30px;
  }
}
.calendar .image-list-item .popup-wrapper nav.links {
  margin-top: 55px;
}
.calendar .image-list-item .background {
  position: absolute;
  margin: 0;
  padding: 0;
  width: calc(50% - 20px);
  height: 100%;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 1023px) {
  .calendar .image-list-item .background {
    position: relative;
    width: 100% !important;
    top: unset;
    bottom: unset;
    height: 350px;
    right: unset !important;
    float: none;
  }
}
.calendar .image-list-item .description {
  position: relative;
  width: calc(50% - 60px);
  padding: 80px 0;
  min-height: 420px;
}
@media only screen and (max-width: 1023px) {
  .calendar .image-list-item .description {
    width: 100% !important;
    min-height: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .calendar .image-list-item .description {
    padding: 60px 0 !important;
    min-height: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description {
    padding: 40px 0 !important;
    min-height: 0 !important;
  }
}
.calendar .image-list-item .description h3 {
  font: 24px/30px "Butler", "Helvetica", "Arial", serif;
  color: #121212;
  margin-bottom: 15px;
}
.calendar .image-list-item .description h3 a {
  text-decoration: none;
}
.calendar .image-list-item .description h3 a:hover {
  color: #8B765E;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description .button {
    text-align: center;
    width: auto;
  }
}
.calendar .image-list-item nav.links {
  margin-top: 28px;
}
.calendar .image-list-item nav.links .details-show, .calendar .image-list-item nav.links .details-hide {
  background: #FCFAF7;
  color: #121212;
  position: relative;
  display: inline-block;
  height: 40px;
  margin: 0 20px 0 0;
  padding: 0 38px 0 18px;
  overflow: visible;
  font: 500 11px/40px "Founders Grotesk", sans-serif;
  min-width: 140px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  -moz-text-align-last: auto;
  text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all 350ms ease-in-out;
}
.calendar .image-list-item nav.links .details-show:after, .calendar .image-list-item nav.links .details-hide:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 15px;
  border-top: 1px solid #121212;
  border-left: 1px solid #121212;
  transform: translateY(-50%) rotate(225deg);
  pointer-events: none;
}
.calendar .image-list-item nav.links .details-show:hover, .calendar .image-list-item nav.links .details-hide:hover {
  background: #121212;
  color: #ffffff;
}
.calendar .image-list-item nav.links .details-show:hover:after, .calendar .image-list-item nav.links .details-hide:hover:after {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.calendar .image-list-item nav.links .details-show:hover:after {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.calendar .image-list-item nav.links .details-hide:after {
  margin-top: 2px;
  transform: translateY(-50%) rotate(46deg);
}
.calendar .image-list-item nav.links .button {
  min-width: 180px;
  height: 40px;
  line-height: 40px;
}
.calendar .image-list-item .full-content {
  margin-top: 74px;
  font-size: 16px;
  line-height: 22px;
}
@media only screen and (max-width: 1023px) {
  .calendar .image-list-item .full-content {
    margin-top: 0;
  }
}
.calendar .image-list-item .full-content ul {
  padding: 0 20px;
}
.calendar .image-list-item .secondary-additional-content {
  font-style: italic;
  color: #8B765E;
  margin-top: 80px;
  padding-top: 35px;
  position: relative;
}
.calendar .image-list-item .secondary-additional-content:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  top: 0;
  left: 0;
}
.calendar .image-list-item .secondary-additional-content p {
  font-style: inherit;
}

.welcome-section {
  margin: 40px 0 40px;
}
.welcome-section:before {
  content: none !important;
}
@media only screen and (max-width: 767px) {
  .welcome-section {
    margin: 20px 0 20px;
  }
}
.welcome-section .page-content h3 {
  margin-bottom: 10px;
}
.welcome-section .center-column {
  background-color: #FCFAF7;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .welcome-section .center-column {
    padding: 20px 15px;
  }
}
.welcome-section .columns-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .welcome-section .columns-wrapper {
    flex-flow: column;
  }
}
.welcome-section .column-one {
  width: calc(40% - 10px);
  padding-right: calc(8% - 23px);
}
.welcome-section .column-one .thumbnail-left {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 500px;
}
.welcome-section .column-one .thumbnail-left .thumbnail {
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.welcome-section .column-one .content-wrapper {
  display: block;
  padding-top: 36px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .welcome-section .column-one {
    width: 100%;
    padding-right: 0;
    order: 2;
  }
  .welcome-section .column-one .thumbnail-left {
    position: relative;
    padding-top: 52vw;
    height: auto;
  }
  .welcome-section .column-one .content-wrapper {
    margin-bottom: 0;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .welcome-section .column-one {
    margin-bottom: 20px;
  }
}
.welcome-section .column-two {
  width: 70%;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .welcome-section .column-two {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .welcome-section .column-two {
    width: 100%;
  }
}
.welcome-section .content-wrapper {
  display: block;
  padding-top: 33px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .welcome-section .content-wrapper {
    padding-top: 0;
    margin-bottom: 0;
  }
}
.welcome-section .block-items-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .welcome-section .block-items-wrapper {
    flex-flow: column;
    justify-content: unset;
  }
}
.welcome-section .block-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: calc(50% - 40px);
}
.welcome-section .block-item .thumbnail-wrapper {
  position: relative;
  height: 260px;
}
.welcome-section .block-item .thumbnail-wrapper .thumbnail {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.welcome-section .block-item .block-item-content {
  padding: 30px 0 0;
}
@media only screen and (max-width: 767px) {
  .welcome-section .block-item .block-item-content {
    padding: 15px;
  }
}
.welcome-section .block-item .block-item-content .controls {
  display: inline-block;
  font-size: 0;
  width: 100%;
  vertical-align: top;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: none;
}
.welcome-section .block-item .block-item-content .controls .text-button {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .welcome-section .block-item .block-item-content .controls .text-button {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .welcome-section .block-item {
    width: 100%;
    margin-bottom: 0;
  }
  .welcome-section .block-item .thumbnail-wrapper {
    padding-top: 52vw;
  }
}

.rooms-section {
  margin: 40px 0 40px;
  padding: 50px 0 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .rooms-section {
    margin: 30px 0 30px;
    padding: 40px 0 0 0;
  }
}
.rooms-section .swiper-slide {
  background: #121212;
}
@media only screen and (max-width: 767px) {
  .rooms-section .main-rooms-slider {
    display: none;
  }
}
.rooms-section .main-rooms-slider .slideshow-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
}
.rooms-section .main-rooms-slider .slideshow-wrapper .slide {
  height: 100%;
  background-color: #121212;
}
.rooms-section .hover-modal {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  background: rgba(18, 18, 18, 0.7);
  padding: 30px;
  z-index: 3;
}
.rooms-section .hover-modal .inner-wrapper {
  background: rgba(18, 18, 18, 0.7);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  height: 100vh;
  max-height: 100%;
  position: relative;
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper {
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper * {
  text-align: center;
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper h3 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .rooms-section .hover-modal .inner-wrapper .content-wrapper h3 {
    font: 700 14px/14px "Founders Grotesk", sans-serif;
  }
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .rooms-size {
  display: block;
  color: #ffffff;
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities {
  color: #ffffff;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities {
    margin-top: 10px;
  }
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities .rooms-icon, .rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities .custom-rooms-icon {
  font-size: 17px;
  margin: 5px 15px;
}
@media only screen and (max-width: 767px) {
  .rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities .rooms-icon, .rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities .custom-rooms-icon {
    font-size: 14px;
  }
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities .rooms-icon span, .rooms-section .hover-modal .inner-wrapper .content-wrapper .amenities .custom-rooms-icon span {
  display: none;
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .links {
  margin-top: 30px;
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .links .button {
  color: #ffffff;
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .links .separator {
  display: inline-block;
  position: relative;
  width: 1px;
  margin: 0 20px;
  height: 50px;
  vertical-align: top;
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .links .separator:after {
  content: "";
  display: block;
  height: 60px;
  width: 1px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .rooms-section .hover-modal .inner-wrapper .content-wrapper .links .separator {
    display: none;
  }
}
.rooms-section .hover-modal .inner-wrapper .content-wrapper .links .link360 {
  line-height: 50px;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .rooms-section .hover-modal .inner-wrapper .content-wrapper .links .link360 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-section .hover-modal .inner-wrapper .content-wrapper .links .button:not(.transparent) {
    min-width: 0;
    font-size: 14px;
  }
  .rooms-section .hover-modal .inner-wrapper .content-wrapper .links .button:not(.transparent):before, .rooms-section .hover-modal .inner-wrapper .content-wrapper .links .button:not(.transparent):after {
    display: none;
  }
}
.rooms-section .rooms-section-container {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .rooms-section .rooms-section-container {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-section .rooms-section-container {
    display: block;
  }
}
.rooms-section .rooms-section-content {
  float: left;
  width: calc((100% - 40px) / 3 + 20px);
  box-sizing: border-box;
  padding: 55px 30px 0 30px;
  flex-shrink: 0;
}
.rooms-section .rooms-section-content p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms-section .rooms-section-content {
    padding: 40px 4% 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-section .rooms-section-content {
    float: none;
    width: auto;
    padding: 0;
  }
  .rooms-section .rooms-section-content p:last-child {
    margin-bottom: 20px;
  }
}
.rooms-section .slideshow {
  overflow: hidden;
  position: relative;
  z-index: 10;
  flex-grow: 1;
}
.rooms-section .slide {
  height: auto;
  flex-shrink: 0;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .rooms-section .slide {
    display: block;
  }
}
.rooms-section .slide:hover .hover-modal {
  opacity: 1;
  visibility: visible;
}
.rooms-section .slide:hover .slide-content {
  display: none;
}
.rooms-section .hover-modal h3 {
  font-size: 25px;
  font-weight: bold;
}
.rooms-section .slide-content {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 2;
}
.rooms-section .slide-content .h2-like {
  margin-bottom: 0;
}
.rooms-section .slide-content .rooms-size {
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .rooms-section .slide-content {
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 0 20px;
  }
}
.rooms-section .slide-thumbnail {
  width: 100%;
  height: 100%;
  background-color: #121212;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.rooms-section .slide-thumbnail:after {
  content: "";
  display: block;
  height: 20%;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.rooms-section .slide-thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
@media only screen and (max-width: 767px) {
  .rooms-section .slide-thumbnail:before {
    padding-bottom: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-section .slide-thumbnail {
    height: auto;
  }
}
.rooms-section .navigation-slideshow-container {
  margin: 20px auto 0;
  max-width: 1285px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .rooms-section .navigation-slideshow-container {
    margin: 20px auto 0;
    padding: 0;
  }
}
.rooms-section .navigation-slideshow-container .navigation-slide {
  height: auto;
  flex-shrink: 0;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
}
.rooms-section .navigation-slideshow-container .navigation-slide:hover .hover-modal {
  opacity: 1;
  visibility: visible;
}
.rooms-section .navigation-slideshow-container .navigation-slide:hover .slide-content {
  display: none;
}
.rooms-section .navigation-slideshow-container .slide-title {
  font: 700 16px/1.2 "Founders Grotesk", sans-serif;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .rooms-section .navigation-slideshow-container .slide-title {
    font-size: 14px;
    line-height: 1;
  }
}
.rooms-section .navigation-slideshow-container .rooms-size {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.rooms-section .navigation-slideshow-container .slide-thumbnail {
  height: auto;
  margin-bottom: 0;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.rooms-section .navigation-slideshow-container .slide-thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 72%;
}
.rooms-section .navigation-slideshow-container .hover-modal .inner-wrapper .content-wrapper .amenities .rooms-icon:nth-child(n+11) {
  display: none;
}
.rooms-section .navigation-slideshow-container .hover-modal .inner-wrapper .content-wrapper .links .separator {
  margin: 0 10px;
  height: 40px;
}
.rooms-section .navigation-slideshow-container .hover-modal .inner-wrapper .content-wrapper .links .link360 {
  line-height: 40px;
}
.rooms-section .slideshow-button {
  margin-top: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
}
.rooms-section .slideshow-button.next {
  right: -70px;
}
@media only screen and (max-width: 1023px) {
  .rooms-section .slideshow-button.next {
    right: -20px;
  }
}
.rooms-section .slideshow-button.previous {
  left: -70px;
}
@media only screen and (max-width: 1023px) {
  .rooms-section .slideshow-button.previous {
    left: -20px;
  }
}
.rooms-section .slideshow-button:hover {
  background-color: #f8b90d;
}
@media only screen and (max-width: 767px) {
  .rooms-section .slideshow-button {
    display: none;
  }
}

.dining-section {
  margin: 40px 0 40px;
  padding: 50px 0 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .dining-section {
    margin: 30px 0 30px;
    padding: 40px 0 0 0;
  }
}
.dining-section .dining-section-container {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .dining-section .dining-section-container {
    flex-wrap: wrap;
  }
}
.dining-section .dining-section-container .dining-section-content {
  width: 30%;
  box-sizing: border-box;
  padding: 60px 40px;
  background-color: #FCFAF7;
}
.dining-section .dining-section-container .dining-section-content p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .dining-section .dining-section-container .dining-section-content {
    width: calc(100% / 3);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .dining-section .dining-section-container .dining-section-content {
    padding: 40px 4%;
  }
}
@media only screen and (max-width: 767px) {
  .dining-section .dining-section-container .dining-section-content {
    width: 100%;
    order: -1;
    padding: 0 0 20px 0;
    background-color: transparent;
  }
  .dining-section .dining-section-container .dining-section-content p:last-child {
    margin-bottom: 20px;
  }
}
.dining-section .dining-section-container .dining-section-content .sample-menu {
  margin: 22px 0;
}
@media only screen and (max-width: 767px) {
  .dining-section .dining-section-container .dining-section-content .sample-menu {
    display: inline-block;
    margin: 0;
  }
}
.dining-section .dining-section-container .dining-item-top {
  width: 30%;
  margin-right: 20px;
  flex-shrink: 0;
}
.dining-section .dining-section-container .dining-item-top:first-child {
  width: 40%;
}
@media only screen and (max-width: 1023px) {
  .dining-section .dining-section-container .dining-item-top:first-child {
    width: calc(100% / 3 - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .dining-section .dining-section-container .dining-item-top:first-child {
    width: calc(100% / 2 - 10px);
  }
}
@media only screen and (max-width: 1023px) {
  .dining-section .dining-section-container .dining-item-top {
    width: calc(100% / 3 - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .dining-section .dining-section-container .dining-item-top {
    margin-right: 0;
    width: calc(100% / 2 - 10px);
  }
}
.dining-section .slideshow {
  overflow: hidden;
  position: relative;
  z-index: 10;
  flex-grow: 1;
}
.dining-section .slideshow .slide {
  height: auto;
  flex-shrink: 0;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .dining-section .slideshow .slide {
    display: block;
  }
}
.dining-section .slide-content {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 2;
  color: #ffffff;
}
.dining-section .slide-content .h2-like {
  font: 700 16px/1.2 "Karla", sans-serif;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .dining-section .slide-content .h2-like {
    font-size: 14px;
    line-height: 1;
  }
}
@media only screen and (max-width: 767px) {
  .dining-section .slide-content {
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 0 20px;
  }
}
.dining-section .slide-content .button {
  color: #ffffff;
}
.dining-section .navigation-slideshow-container {
  margin: 20px auto 0;
  max-width: 1285px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .dining-section .navigation-slideshow-container {
    margin: 20px auto 0;
    padding: 0;
  }
}
.dining-section .navigation-slideshow-container .navigation-slide {
  width: 30%;
  height: 100%;
  flex-shrink: 0;
  transition: 350ms ease-in-out;
  transition-property: opacity, width;
  background: #121212;
}
.dining-section .navigation-slideshow-container .navigation-slide:not(.swiper-slide) {
  width: 100%;
  height: 272px;
}
.dining-section .navigation-slideshow-container .navigation-slide.swiper-slide-active, .dining-section .navigation-slideshow-container .navigation-slide.swiper-slide-next + .swiper-slide {
  width: 30%;
}
.dining-section .navigation-slideshow-container .navigation-slide.swiper-slide-next {
  width: 40%;
}
@media only screen and (max-width: 1023px) {
  .dining-section .navigation-slideshow-container .navigation-slide, .dining-section .navigation-slideshow-container .navigation-slide.swiper-slide-active, .dining-section .navigation-slideshow-container .navigation-slide.swiper-slide-next + .swiper-slide, .dining-section .navigation-slideshow-container .navigation-slide.swiper-slide-next {
    width: calc(50% - 10px);
  }
}
.dining-section .navigation-slideshow-container .thumbnail {
  height: 100%;
  margin-bottom: 0;
}
.dining-section .navigation-slideshow-container .thumbnail:after {
  content: none;
}
.dining-section .navigation-slideshow-container .thumbnail:before {
  padding-bottom: 72%;
}
@media only screen and (max-width: 767px) {
  .dining-section .navigation-slideshow-container .thumbnail {
    margin-bottom: 10px;
  }
}
.dining-section .slideshow-button {
  margin-top: 0;
  background-color: #f8b90d;
  width: 60px;
  height: 60px;
}
.dining-section .slideshow-button.next {
  right: -70px;
  transform: translateY(-50%) rotate(-90deg);
}
@media only screen and (max-width: 1023px) {
  .dining-section .slideshow-button.next {
    right: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .dining-section .slideshow-button.next {
    right: -10px;
  }
}
.dining-section .slideshow-button.previous {
  left: -70px;
  transform: translateY(-50%) rotate(90deg);
}
@media only screen and (max-width: 1023px) {
  .dining-section .slideshow-button.previous {
    left: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .dining-section .slideshow-button.previous {
    left: -10px;
  }
}
.dining-section .slideshow-button:hover {
  background-color: #f8b90d;
}
@media only screen and (max-width: 767px) {
  .dining-section .slideshow-button {
    display: none;
  }
}
.dining-section .thumbnail {
  position: relative;
  height: auto;
  min-height: 272px;
  background-color: #121212;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.dining-section .thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 60%;
}

.dining-acm-block {
  max-width: 1046px;
  margin: 0 auto;
}
.dining-acm-block .category-selector {
  margin-bottom: 4vw;
}
@media only screen and (min-width: 1365px) {
  .dining-acm-block .category-selector {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .dining-acm-block .category-selector {
    margin-bottom: 20px;
  }
}
.dining-acm-block .dining-slide-block {
  background-color: #ffffff;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  margin-bottom: 40px;
  flex-direction: row;
  direction: ltr;
}
@media only screen and (max-width: 1023px) {
  .dining-acm-block .dining-slide-block {
    max-height: none;
    min-height: 500px;
    flex-direction: column;
    margin-bottom: 0;
    direction: unset;
  }
}
.dining-acm-block .dining-slide-block .thumbnail-wrap {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .dining-acm-block .dining-slide-block .thumbnail-wrap {
    width: 100%;
  }
}
.dining-acm-block .dining-slide-block .thumbnail-dining {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  padding-bottom: 80%;
}
.dining-acm-block .dining-slide-block .dining-acm-content {
  position: relative;
  flex-direction: column;
  align-self: center;
  width: 50%;
  padding: 6vw 0vw 4vw 6vw;
  font-size: 16px;
  color: #121212;
  direction: ltr;
}
@media only screen and (max-width: 1023px) {
  .dining-acm-block .dining-slide-block .dining-acm-content {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .dining-acm-block .dining-slide-block .dining-acm-content {
    padding: 20px;
  }
}
.dining-acm-block .dining-slide-block .dining-acm-content h3 {
  margin-bottom: 30px;
  line-height: 1.25;
}
@media only screen and (max-width: 767px) {
  .dining-acm-block .dining-slide-block .dining-acm-content h3 {
    margin-bottom: 15px;
  }
}
.dining-acm-block .dining-slide-block .dining-acm-content h3 a {
  color: inherit;
  text-decoration: none;
}
.dining-acm-block .dining-slide-block .dining-acm-content h3 a:hover {
  text-decoration: underline;
}
.dining-acm-block .dining-slide-block .dining-acm-content p {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .dining-acm-block .dining-slide-block .dining-acm-content p {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.dining-acm-block .dining-slide-block.even {
  direction: rtl;
}
@media only screen and (max-width: 1023px) {
  .dining-acm-block .dining-slide-block.even {
    direction: unset;
  }
}
.dining-acm-block .dining-slide-block.even .thumbnail-dining {
  right: 0;
  left: auto;
}
.dining-acm-block .dining-slide-block.even .dining-acm-content {
  padding: 6vw 6vw 4vw 0vw;
}
@media only screen and (max-width: 1023px) {
  .dining-acm-block .dining-slide-block.even .dining-acm-content {
    padding: 20px;
  }
}

.food-drink-section {
  position: relative;
  margin: 40px 0 40px;
  padding: 50px 0 0 0;
  width: 100%;
  z-index: 2;
}
.food-drink-section .center-column {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1365px;
}
@media only screen and (max-width: 1023px) {
  .food-drink-section .center-column {
    flex-flow: column;
    align-items: unset;
  }
}
@media only screen and (max-width: 767px) {
  .food-drink-section {
    margin: 30px 0 30px;
    padding: 40px 0 0 0;
  }
}
.food-drink-section .left-side {
  height: auto;
  width: 62%;
  margin: 40px 0 20px;
  padding-right: 3%;
}
@media only screen and (max-width: 1023px) {
  .food-drink-section .left-side {
    width: auto;
    margin: 20px 0 20px;
    padding-right: 0;
    order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .food-drink-section .left-side {
    margin: 10px 0 0;
  }
}
.food-drink-section .right-side {
  width: 38%;
  background-color: #FCFAF7;
  min-height: 717px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.food-drink-section .right-side:after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
@media only screen and (max-width: 1023px) {
  .food-drink-section .right-side {
    align-items: unset;
    width: auto;
    order: 1;
    margin-bottom: 0;
    min-height: 0;
  }
  .food-drink-section .right-side:after {
    content: none;
  }
}
.food-drink-section .tiles-wrapper {
  display: flex;
  flex-wrap: wrap;
  order: 1;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .food-drink-section .tiles-wrapper {
    flex-flow: column;
    overflow: auto;
  }
}
.food-drink-section .tile {
  position: relative;
  height: 308px;
  width: calc(33.3% - 14px);
  margin-bottom: 20px;
  background: #121212;
  color: #ffffff;
  z-index: 1;
}
.food-drink-section .tile:first-child {
  width: calc(66.7% - 7px);
}
@media only screen and (max-width: 1023px) {
  .food-drink-section .tile {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .food-drink-section .tile:first-child {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .food-drink-section .tile {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
    padding-top: 52vw;
    height: auto;
  }
  .food-drink-section .tile:first-child {
    width: 100%;
  }
  .food-drink-section .tile:last-child {
    margin-bottom: 0;
  }
}
.food-drink-section .count-2 .tile.item-1, .food-drink-section .count-2 .tile.item-2 {
  width: 100%;
}
.food-drink-section .count-3 .tile.item-3 {
  width: 100%;
}
.food-drink-section .count-4 .tile.item-3 {
  width: calc(66.7% - 7px);
}
@media only screen and (max-width: 767px) {
  .food-drink-section .count-4 .tile.item-3 {
    width: 100%;
  }
}
.food-drink-section .thumbnail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: left 200ms, right 200ms;
}
.food-drink-section .thumbnail:after {
  content: "";
  display: block;
  height: 50%;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.food-drink-section .tile-content {
  position: absolute;
  bottom: 17px;
  left: 20px;
  padding-right: 20px;
  overflow: hidden;
  text-align: left;
  z-index: 2;
}
.food-drink-section .tile-content h3 {
  position: relative;
  line-height: 1;
  margin-bottom: 5px;
}
.food-drink-section .tile-content p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .food-drink-section .tile-content {
    padding-right: 20px;
  }
}
.food-drink-section .text-box {
  padding: 40px 5vw;
}
.food-drink-section .text-box .menu-items-list {
  display: inline-block;
  font-size: 0;
}
.food-drink-section .text-box .menu-items-list a.transparent {
  display: block;
  text-align: left;
  margin-bottom: 20px;
}
.food-drink-section .text-box .menu-items-list a.transparent:last-child {
  margin-bottom: 0;
}
.food-drink-section .text-box .menu-items-list a.transparent:hover {
  color: #121212;
}
@media only screen and (min-width: 1365px) {
  .food-drink-section .text-box {
    padding: 40px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .food-drink-section .text-box {
    padding: 40px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .food-drink-section .text-box {
    padding: 20px 10px;
  }
}

.venues-section {
  margin: 40px 0 40px;
  padding: 50px 0 0 0;
}
.venues-section .center-column {
  max-width: 1365px;
}
@media only screen and (max-width: 767px) {
  .venues-section {
    margin: 30px 0 30px;
    padding: 40px 0 0 0;
  }
}
.venues-section .venues-section-container {
  position: relative;
  padding: 0 40px;
}
@media only screen and (max-width: 1023px) {
  .venues-section .venues-section-container {
    padding: 0;
  }
}
.venues-section .venues-slideshow-container {
  position: relative;
  display: flex;
  flex-flow: column;
}
.venues-section .venues-section-content {
  float: left;
  width: 40%;
  padding: 10px 9% 0 0;
}
@media only screen and (max-width: 767px) {
  .venues-section .venues-section-content {
    float: none;
    width: auto;
    padding: 0;
  }
}
.venues-section .slideshow {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.venues-section .slide {
  height: auto;
  flex-shrink: 0;
  display: flex;
  background: #73736f;
}
@media only screen and (max-width: 767px) {
  .venues-section .slide {
    display: block;
  }
}
.venues-section .slide-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
.venues-section .slide-content .h2-like {
  margin-bottom: 0;
}
.venues-section .slide-content .venue-text {
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .venues-section .slide-content .venue-text {
    display: block;
  }
}
.venues-section .slide-content .quick-look {
  float: right;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .venues-section .slide-content .quick-look {
    float: none;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .venues-section .slide-content {
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 0 20px;
  }
}
.venues-section .slide-thumbnail {
  width: 100%;
  height: 720px;
  background-color: #8B765E;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.venues-section .slide-thumbnail:after {
  content: "";
  display: block;
  height: 30%;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.venues-section .slide-thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
@media only screen and (max-width: 767px) {
  .venues-section .slide-thumbnail {
    height: auto;
  }
}
.venues-section .slideshow-button {
  margin-top: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
}
.venues-section .slideshow-button.next {
  right: -20px;
}
.venues-section .slideshow-button.previous {
  left: -20px;
}
.venues-section .slideshow-button:hover {
  background-color: #f8b90d;
}
@media only screen and (max-width: 767px) {
  .venues-section .slideshow-button {
    display: none;
  }
}

#popup-venues .slideshow {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
#popup-venues .slide {
  height: auto;
  flex-shrink: 0;
  display: flex;
  background: #73736f;
}
@media only screen and (max-width: 767px) {
  #popup-venues .slide {
    display: block;
  }
}
#popup-venues .slide-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  padding-right: 0;
}
#popup-venues .slide-content .h2-like {
  margin-bottom: 0;
}
#popup-venues .slide-content .venue-text {
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #ffffff;
}
#popup-venues .slide-content .content-wrapper {
  display: inline-block;
  width: 74%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1023px) {
  #popup-venues .slide-content .content-wrapper {
    display: block;
    width: 100%;
  }
}
#popup-venues .slide-content nav {
  display: inline-block;
  text-align: right;
  width: 25%;
  box-sizing: border-box;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  #popup-venues .slide-content nav {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #popup-venues .slide-content nav {
    text-align: center;
  }
}
#popup-venues .slide-content nav a {
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  #popup-venues .slide-content nav a {
    margin-left: 10px;
    margin-right: 10px;
  }
}
#popup-venues .slide-thumbnail {
  width: 100%;
  height: 720px;
  max-height: calc(80vh - 20px);
  background-color: #73736f;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#popup-venues .slide-thumbnail:after {
  content: "";
  display: block;
  height: 30%;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#popup-venues .slide-thumbnail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
@media only screen and (max-width: 767px) {
  #popup-venues .slide-thumbnail {
    height: auto;
  }
}
#popup-venues .slideshow-button {
  margin-top: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
}
#popup-venues .slideshow-button.next {
  right: -20px;
}
#popup-venues .slideshow-button.previous {
  left: -20px;
}
#popup-venues .slideshow-button:hover {
  background-color: #f8b90d;
}

.location-section {
  margin: 40px 0 60px;
  padding: 80px 0 0 0;
  overflow: hidden;
}
.location-section .center-column {
  max-width: 1286px;
}
@media only screen and (max-width: 767px) {
  .location-section {
    margin: 30px 0 30px;
    padding: 40px 0 0 0;
  }
}
.location-section .topbar-columns-wrapper {
  display: flex;
  max-width: 890px;
  margin: 0 auto 35px;
  flex-flow: row;
  justify-content: space-between;
  min-height: 55px;
  align-items: center;
}
.location-section .topbar-columns-wrapper:after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .location-section .topbar-columns-wrapper {
    flex-flow: column;
    min-height: 0;
    align-items: unset;
  }
}
.location-section .topbar-column {
  text-align: left;
  flex-flow: column;
  vertical-align: middle;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .location-section .topbar-column {
    text-align: center;
  }
}
.location-section .topbar-column.left {
  padding-right: 7%;
  width: 45%;
}
.location-section .topbar-column.left .h1-like {
  margin-bottom: 0;
  font-size: 5vw;
}
@media (max-width: 560px) {
  .location-section .topbar-column.left .h1-like {
    font-size: 28px;
  }
}
@media (min-width: 920px) {
  .location-section .topbar-column.left .h1-like {
    font-size: 46px;
  }
}
@media only screen and (max-width: 1023px) {
  .location-section .topbar-column.left {
    padding-right: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .location-section .topbar-column.left {
    padding-right: 0;
    width: auto;
  }
  .location-section .topbar-column.left .h1-like {
    margin-bottom: 10px;
  }
}
.location-section .topbar-column.center {
  padding: 0 7%;
  width: 55%;
}
.location-section .topbar-column.center strong,
.location-section .topbar-column.center span {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.location-section .topbar-column.center:before, .location-section .topbar-column.center:after {
  content: "";
  height: 55px;
  width: 1px;
  background-color: #FCFAF7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.location-section .topbar-column.center:before {
  left: 0;
}
.location-section .topbar-column.center:after {
  right: 0;
}
@media only screen and (max-width: 1023px) {
  .location-section .topbar-column.center {
    padding: 0 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .location-section .topbar-column.center {
    padding: 0 0;
    width: auto;
    margin-bottom: 10px;
  }
  .location-section .topbar-column.center:before, .location-section .topbar-column.center:after {
    content: none;
  }
}
.location-section .topbar-column.right {
  padding-left: 7%;
  width: 23%;
}
@media only screen and (max-width: 1023px) {
  .location-section .topbar-column.right {
    padding-left: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .location-section .topbar-column.right {
    padding: 0 0;
    width: auto;
  }
}
.location-section .googlemap-wrapper {
  border: 9px solid #FCFAF7;
}

.food-drink-slider {
  margin: 50px 0;
  padding: 50px 0;
  background-color: #FCFAF7;
}
@media only screen and (max-width: 767px) {
  .food-drink-slider {
    margin: 30px 0 30px;
    padding: 40px 0;
  }
}
.food-drink-slider .center-column {
  max-width: 1335px;
}
.food-drink-slider .food-drink-slider-content {
  margin-bottom: 15px;
  text-align: center;
}
.food-drink-slider .food-drink-slider-container {
  padding: 0 40px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .food-drink-slider .food-drink-slider-container {
    padding: 0;
  }
}
.food-drink-slider .slideshow-button {
  margin-top: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
}
.food-drink-slider .slideshow-button.next {
  right: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .food-drink-slider .slideshow-button.next {
    right: 10px;
  }
}
.food-drink-slider .slideshow-button.previous {
  left: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .food-drink-slider .slideshow-button.previous {
    left: 10px;
  }
}
.food-drink-slider .slideshow-button:hover {
  background-color: #f8b90d;
}
@media only screen and (max-width: 767px) {
  .food-drink-slider .slideshow-button {
    display: none;
  }
}
.food-drink-slider .slideshow {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.food-drink-slider .slide {
  height: auto;
  width: calc((100% / 3) - 40px);
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .food-drink-slider .slide {
    width: calc((100% / 2) - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .food-drink-slider .slide {
    width: 90%;
  }
}
.food-drink-slider .slide-thumbnail {
  width: 100%;
  height: 275px;
  background-color: #121212;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.food-drink-slider .slide-content {
  padding: 25px 30px 30px;
}
.food-drink-slider .h2-like {
  margin-bottom: 5px;
  color: #121212;
}
.food-drink-slider .food-drink-text {
  margin-bottom: 10px;
}
.food-drink-slider .button.transparent {
  margin-right: 30px;
}
@media only screen and (max-width: 1023px) {
  .food-drink-slider .button.transparent {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.food-drink-slider .button.no-squares {
  height: 40px;
  min-width: 120px;
  font: 600 11px/40px "Founders Grotesk", sans-serif;
  letter-spacing: 1.2px;
}

.contact-section {
  margin: 60px 0 0;
  padding: 50px 0 0 0;
}
.contact-section .center-column {
  max-width: 1365px;
}
@media only screen and (max-width: 767px) {
  .contact-section {
    margin: 30px 0 0;
    padding: 40px 0 0 0;
  }
}
.contact-section .column-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.contact-section .column-left {
  width: 45%;
  padding-right: calc(8% - 23px);
}
.contact-section .column-left .thumbnail-wrapper {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 715px;
}
.contact-section .column-left .thumbnail-wrapper .thumbnail {
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .contact-section .column-left {
    display: none;
  }
}
.contact-section .column-right {
  width: 70%;
  position: relative;
}
.contact-section .column-right .content-box {
  margin-top: 40px;
}
@media only screen and (max-width: 1023px) {
  .contact-section .column-right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .column-right .content-box {
    margin-top: 0;
  }
}

.offers-section {
  margin: 80px 0 80px;
  padding: 75px 0 80px;
  background-color: #FCFAF7;
}
.home .offers-section {
  background-color: unset;
}
@media only screen and (max-width: 767px) {
  .offers-section {
    margin: 30px 0 30px;
    padding: 40px 0;
  }
}
.offers-section .offers-section-container {
  position: relative;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .offers-section .offers-section-container {
    display: block;
    margin: 0;
  }
}
@media only screen and (min-width: 1800px) {
  .offers-section .offers-section-container {
    max-width: 1365px;
    margin: 0 auto;
  }
}
.offers-section .offers-section-content {
  margin-right: 60px;
  padding: 80px 0 80px 30px;
  width: 33.3%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .offers-section .offers-section-content {
    margin-right: 40px;
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .offers-section .offers-section-content {
    width: 100%;
    margin: 0;
    padding: 50px 30px;
  }
}
.offers-section .offers-slideshow-container {
  width: 70%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .offers-section .offers-slideshow-container {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .offers-section .offers-slideshow-container {
    width: 100%;
  }
}
.offers-section .slideshow {
  overflow: hidden;
  position: relative;
  height: 100%;
  z-index: 10;
}
.offers-section .slide {
  position: relative;
  height: auto;
  opacity: 0.7;
  transition: opacity 350ms ease-in-out;
}
.offers-section .slide.swiper-slide-active {
  opacity: 1;
}
.offers-section .slide-thumbnail {
  width: 100%;
  height: 462px;
  margin-bottom: 25px;
  background-color: #121212;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.offers-section .slide-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .offers-section .slide-content {
    margin: 0 30px;
    justify-content: center;
  }
}
.offers-section .h2-like {
  width: 100%;
  margin-bottom: 15px;
  color: #121212;
}
.offers-section .button.transparent {
  margin-right: 30px;
}
@media only screen and (max-width: 1023px) {
  .offers-section .button.transparent {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.offers-section .button.no-squares {
  height: 40px;
  min-width: 120px;
  margin-left: auto;
  font: 600 11px/40px "Founders Grotesk", sans-serif;
  letter-spacing: 1.2px;
}
@media only screen and (max-width: 767px) {
  .offers-section .button.no-squares {
    margin-left: 0;
  }
}
.offers-section .slideshow-buttons-wrapper {
  position: absolute;
  width: 130px;
  left: 40px;
}
@media only screen and (max-width: 767px) {
  .offers-section .slideshow-buttons-wrapper {
    display: none;
  }
}
.offers-section .slideshow-button {
  margin-top: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
}
.offers-section .slideshow-button.next {
  right: 0;
}
.offers-section .slideshow-button.previous {
  left: 0;
}
.offers-section .slideshow-button:hover {
  background-color: #f8b90d;
}

.travelers-tips {
  margin: 40px 0 40px;
  padding: 60px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .travelers-tips {
    margin: 30px 0 30px;
    padding: 40px 0 0 0;
  }
}
.travelers-tips .travelers-tips-container {
  position: relative;
  padding-left: 80px;
}
@media only screen and (max-width: 767px) {
  .travelers-tips .travelers-tips-container {
    padding-left: 10px;
  }
}
@media only screen and (min-width: 1800px) {
  .travelers-tips .travelers-tips-container {
    max-width: 1365px;
    margin: 0 auto;
  }
}
.travelers-tips .travelers-tips-content {
  display: flex;
  align-items: flex-end;
  width: calc(100% - 80px);
  margin-bottom: 40px;
}
.travelers-tips .travelers-tips-content .h1-like {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .travelers-tips .travelers-tips-content {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}
.travelers-tips .slideshow {
  overflow: hidden;
  position: relative;
  height: 100%;
  z-index: 10;
}
.travelers-tips .slideshow-wrapper {
  display: flex;
}
.travelers-tips .slide {
  position: relative;
  margin-right: 40px;
  height: auto;
  width: calc(100% / 3);
}
@media only screen and (max-width: 1023px) {
  .travelers-tips .slide {
    margin-right: 30px;
  }
  .travelers-tips .slide.swiper-slide-next + .slide {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .travelers-tips .slide {
    margin-right: 20px;
  }
  .travelers-tips .slide.swiper-slide-next {
    opacity: 0.7;
  }
}
.travelers-tips .slide-thumbnail {
  width: 100%;
  height: 260px;
  margin-bottom: 25px;
  background-color: #121212;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.travelers-tips .h2-like {
  margin-bottom: 15px;
  color: #121212;
}
.travelers-tips .slideshow-buttons-wrapper {
  position: relative;
  width: 130px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .travelers-tips .slideshow-buttons-wrapper {
    display: none;
  }
}
.travelers-tips .slideshow-button {
  position: relative;
  top: calc(50% - 13px);
  margin: 0;
  background-color: #73736f;
  width: 60px;
  height: 60px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.travelers-tips .slideshow-button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 2px solid #ffffff;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: border-color 350ms ease-in-out;
  margin: 4px 0 0 -15px;
}
.travelers-tips .slideshow-button.next {
  right: auto;
}
.travelers-tips .slideshow-button.previous {
  left: auto;
}
.travelers-tips .slideshow-button.previous:after {
  transform: rotate(-135deg);
  margin-top: -11px;
  margin-left: -5px;
}
.travelers-tips .slideshow-button:hover {
  background-color: #f8b90d;
}

.ig-feed-section {
  margin: 32px 0 0;
  padding: 82px 0 0 0;
}
.ig-feed-section .h1-like {
  color: #8B765E;
  margin-bottom: 0;
}
.ig-feed-section .custom-link {
  color: #121212;
  text-transform: uppercase;
  line-height: 22px;
  font-family: "Founders Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  padding-left: 30px;
}
.ig-feed-section .custom-link:after {
  content: "";
  height: 3px;
  width: calc(100% - 30px);
  background-color: #f8b90d;
  position: absolute;
  bottom: -3px;
  left: 30px;
  transition: all 350ms ease-in-out;
}
.ig-feed-section .custom-link:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 5px;
  background: url("../images/feeds-sprite.svg") -246px 0;
}
@media only screen and (max-width: 767px) {
  .ig-feed-section .custom-link:before {
    top: 0;
  }
}
.ig-feed-section .custom-link:hover:after {
  background-size: 1px 1px;
}
@media only screen and (min-width: 768px) {
  .ig-feed-section .section-content {
    display: flex;
    align-items: flex-end;
    margin-bottom: 25px;
  }
  .ig-feed-section .section-content .reverted-heading {
    margin-bottom: 0;
    text-align: left;
  }
  .ig-feed-section .section-content .reverted-heading .h3 {
    margin-bottom: 0;
  }
  .ig-feed-section .section-content .custom-link {
    margin-left: auto;
    margin-bottom: 12px;
  }
  .ig-feed-section.additional-page-section .section-widget {
    margin-top: 0;
  }
}

.acm-block {
  position: relative;
}
.acm-block:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f8b90d;
  position: absolute;
  top: 6px;
  left: 0;
}
.acm-block.bottom-separate:before {
  top: auto;
  bottom: 0;
}
.home .acm-block.bottom-separate:before {
  top: 6px;
  bottom: unset;
}
.acm-block .square-element-bottom {
  top: auto;
  bottom: -11px;
}
.home .acm-block .square-element-bottom {
  top: 6px;
  bottom: unset;
}
.acm-block.no-separate-line:before {
  display: none;
}
.acm-block.no-separate-line .square-element {
  display: none;
}
.acm-block .anchor {
  position: absolute;
  top: -80px;
}
@media only screen and (max-width: 767px) {
  .acm-block .anchor {
    top: -70px;
  }
}
.acm-block.visible .anchor {
  top: -120px;
}
@media only screen and (max-width: 767px) {
  .acm-block.visible .anchor {
    top: -100px;
  }
}
.acm-block.additional-content {
  max-width: 1050px;
  margin: 180px auto 80px;
}
.acm-block.additional-content:after {
  content: "";
  display: block;
  width: 107px;
  height: 40px;
  background: url("../images/sprite.svg") -2px -380px;
  position: absolute;
  left: 50%;
  top: -57px;
  transform: translate(-50%, -100%);
}
.acm-block.additional-content:before {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .acm-block.additional-content {
    margin: 80px auto 40px;
  }
  .acm-block.additional-content:after {
    top: -50px;
  }
}
.acm-block.additional-content .page-content .h2-like {
  color: #121212;
}

.venues-with-categories {
  margin: 80px 0;
}
@media only screen and (max-width: 767px) {
  .venues-with-categories {
    margin: 40px 0;
  }
}
.venues-with-categories .map-container {
  display: flex;
  position: relative;
  width: 900px;
  height: 494px;
  margin: 0 auto 75px;
  justify-content: center;
}
@media only screen and (min-width: 1365px) {
  .venues-with-categories .map-container {
    width: 1130px;
    height: 620px;
  }
}
@media only screen and (max-width: 1023px) {
  .venues-with-categories .map-container {
    width: 565px;
    height: 310px;
  }
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .map-container {
    display: none;
  }
}
.venues-with-categories .map-container .map-img {
  width: 100%;
  height: 100%;
}
.venues-with-categories .map-container .empty-layer {
  position: absolute;
  top: 7.5%;
  left: 33.4%;
  width: 14.6%;
  height: 63%;
  z-index: 60;
}
.venues-with-categories .map-container .empty-layer:after {
  position: absolute;
  content: "";
  bottom: -26px;
  right: 0%;
  width: 80%;
  height: 10%;
}
.venues-with-categories .map-container .spot-list {
  position: absolute;
  width: 100%;
  height: 100%;
}
.venues-with-categories .map-container .spot-link {
  position: absolute;
  display: flex;
  opacity: 0;
  transition: opacity 350ms ease-in-out;
  transform: scale(0.8) translate(-12.5%, -12.5%);
}
@media only screen and (min-width: 1365px) {
  .venues-with-categories .map-container .spot-link {
    transform: scale(1) translate(0, 0);
  }
}
@media only screen and (max-width: 1023px) {
  .venues-with-categories .map-container .spot-link {
    transform: scale(0.5) translate(-50%, -50%);
  }
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .map-container .spot-link {
    display: none;
  }
}
.venues-with-categories .map-container .spot-link__baseline {
  top: 48.3%;
  left: 38.8%;
  z-index: 100;
}
.venues-with-categories .map-container .spot-link__clubhouse {
  top: 74.7%;
  left: 38.7%;
  z-index: 100;
}
.venues-with-categories .map-container .spot-link__plaza {
  top: 37.4%;
  left: 0.1%;
  z-index: 100;
}
.venues-with-categories .map-container .spot-link__skybridge {
  top: 26.1%;
  left: 56.2%;
  z-index: 50;
}
.venues-with-categories .map-container .spot-link__terrace {
  top: 7.5%;
  left: 3.7%;
  z-index: 10;
}
.venues-with-categories .map-container .spot-link__wynkoop {
  top: 8.8%;
  left: 33.45%;
  z-index: 100;
}
.venues-with-categories .map-container .spot-link:hover {
  opacity: 1;
}
.venues-with-categories .category-selector {
  margin-bottom: 40px;
  padding: 0 20px;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: space-around;
}
.venues-with-categories .category-selector.many-rooms {
  flex-flow: wrap;
}
.venues-with-categories .category-selector button {
  font-family: "Founders Grotesk", sans-serif;
  position: relative;
  text-align: center;
  float: left;
  padding: 0;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1.2px;
  color: #121212;
  border: 0;
  outline: none;
  background: none;
}
@media (max-width: 550px) {
  .venues-with-categories .category-selector button {
    width: 50%;
    margin-right: 0;
    padding: 0 10px 0 16px;
    font-size: 15px;
  }
}
.venues-with-categories .category-selector button:before {
  display: none;
}
.venues-with-categories .category-selector button:after {
  content: "";
  transform: none;
  display: block;
  position: absolute;
  top: unset;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  transition: height 200ms ease;
  background: #f8b90d;
  border: none;
}
.venues-with-categories .category-selector button.active, .venues-with-categories .category-selector button:hover {
  color: #f8b90d;
  background: none;
}
.venues-with-categories .category-selector button.active:after, .venues-with-categories .category-selector button:hover:after {
  height: 4px;
}
.venues-with-categories .venues-wrapper {
  padding: 80px 0;
  background-color: #FCFAF7;
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .venues-wrapper {
    padding: 40px 0;
  }
}
.venues-with-categories .venue {
  margin-bottom: 80px;
}
.venues-with-categories .venue:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .venue {
    margin-bottom: 40px;
  }
}
.venues-with-categories .venue-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 95px;
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .venue-top {
    display: block;
    margin-bottom: 50px;
  }
}
.venues-with-categories .left {
  width: 30%;
  margin-top: 95px;
}
.venues-with-categories .left.full {
  width: 100%;
  margin-top: 0;
}
.venues-with-categories .left a {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .venues-with-categories .left {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .left {
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.venues-with-categories .right {
  width: 60%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .venues-with-categories .right {
    width: calc(70% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .right {
    width: 100%;
  }
}
.venues-with-categories .rooms-gallery-slider {
  margin: 0;
}
.venues-with-categories .table-wrapper {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .venues-with-categories .table-wrapper {
    margin-bottom: 40px;
  }
}
.venues-with-categories .link360 {
  position: absolute;
  top: 20px;
  left: 20px;
  margin: 0;
  z-index: 1;
}

.venues-scheme {
  width: 100%;
  position: relative;
}

.venues-scheme-image {
  display: block;
  width: 100%;
  border: 5px solid #f8b90d;
}

.venues-table table {
  width: 100%;
  border-bottom: 1px solid #f8b90d;
}
.venues-table th {
  padding: 0 20px;
  padding-bottom: 26px;
  color: #121212;
  font-family: "Founders Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 17px;
}
@media only screen and (max-width: 767px) {
  .venues-table th {
    padding: 5px;
    vertical-align: middle;
    text-align: center;
  }
}
.venues-table td,
.venues-table .even td {
  background: none;
  border-top: 1px solid #f8b90d;
}
@media only screen and (max-width: 767px) {
  .venues-table td,
.venues-table .even td {
    padding: 5px;
    text-align: center;
  }
}
.venues-table td:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.5);
}

.custom-tiles {
  margin: 15px 0 80px;
}
.custom-tiles .category-selector .select-wrapper {
  display: inline-block;
}
.custom-tiles .link-wrapper {
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 1023px) {
  .custom-tiles .link-wrapper {
    margin-top: 40px;
  }
}
.custom-tiles .link-wrapper a {
  background: #FCFAF7;
  color: #f8b90d;
  position: relative;
  display: inline-block;
  height: 40px;
  margin: 0 20px 0 0;
  padding: 0 38px 0 18px;
  overflow: visible;
  font: 500 11px/40px "Founders Grotesk", sans-serif;
  min-width: 140px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  -moz-text-align-last: auto;
  text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all 350ms ease-in-out;
}
.custom-tiles .link-wrapper a:after {
  content: "";
  display: block;
  width: 11px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background-image: url("../images/sprite.svg");
  background-position: -265px -320px;
}
.custom-tiles .link-wrapper a:hover {
  color: #FCFAF7;
  background: rgba(248, 185, 13, 0.9);
}
.custom-tiles .link-wrapper a:hover:after {
  background-position: -285px -320px;
}
.custom-tiles .tile-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.custom-tiles .tile-section section {
  display: none;
}
.custom-tiles .tile-section article:nth-of-type(10n+1) {
  width: calc(((100% - 60px) / 3 * 2) + 30px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles .tile-section article:nth-of-type(10n+1) {
    width: 100% !important;
  }
}
.custom-tiles .tile-section article:nth-of-type(10n+2) {
  width: calc((100% - 60px) / 3);
}
.custom-tiles .tile-section article:nth-of-type(10n+6) {
  width: calc((100% - 60px) / 3);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles .tile-section article:nth-of-type(10n+6) {
    width: 100% !important;
  }
}
.custom-tiles .tile-section article:nth-of-type(10n+7) {
  width: calc(((100% - 60px) / 3 * 2) + 30px);
}
.custom-tiles .tile-section .custom-tile {
  position: relative;
  margin-bottom: 30px;
  padding-top: 38%;
  width: calc((100% - 60px) / 3);
  display: none;
}
.custom-tiles .tile-section .custom-tile.visible {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles .tile-section .custom-tile {
    width: calc(50% - 15px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .custom-tiles .tile-section .custom-tile {
    width: 100% !important;
    padding-top: 100%;
  }
}
.custom-tiles .tile-section .custom-tile:hover .title-wrapper {
  opacity: 0;
}
.custom-tiles .tile-section .custom-tile:hover .hover-modal {
  opacity: 1;
  visibility: visible;
}
.custom-tiles .tile-section .custom-tile .thumbnail {
  background-size: cover;
  background-position: center center;
  background-color: #121212;
}
.custom-tiles .tile-section .custom-tile .thumbnail:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 79.58%, rgba(0, 0, 0, 0.66) 100%);
}
.custom-tiles .tile-section .custom-tile .title-wrapper {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 25px;
  max-width: calc(100% - 60px);
  transition: opacity 200ms ease;
}
.custom-tiles .tile-section .custom-tile .title-wrapper .title, .custom-tiles .tile-section .custom-tile .title-wrapper .subtitle {
  color: #ffffff;
}
.custom-tiles .tile-section .custom-tile .title-wrapper .title {
  font: 24px/1.2 "Founders Grotesk", sans-serif;
  letter-spacing: 0.2px;
}
.custom-tiles .tile-section .custom-tile .title-wrapper .subtitle {
  font: 14px/22px "Founders Grotesk", sans-serif;
  letter-spacing: 0.2px;
}
.custom-tiles .tile-section .custom-tile .title-wrapper .subtitle .destination-icon {
  display: inline-block;
  transform: translate(-50%, 50%);
  margin: 5px 0;
}
.custom-tiles .tile-section .custom-tile .hover-modal {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  background: rgba(18, 18, 18, 0.7);
  padding: 30px;
  z-index: 3;
}
.custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper {
  background: rgba(18, 18, 18, 0.4);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  height: 100vh;
  max-height: 100%;
  position: relative;
}
.custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper {
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper * {
  text-align: center;
}
.custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .big-title {
  font: 700 16px/1.2 "Founders Grotesk", sans-serif;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .big-title {
    margin-bottom: 15px;
  }
}
.custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .links {
  margin-top: 30px;
}
.custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .links .button.transparent {
  color: #ffffff;
}
.custom-tiles .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .links .button.transparent:hover {
  color: #f8b90d;
}

.custom-tiles-type-two {
  margin: 15px 0 80px;
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two {
    margin: 15px 0 40px;
  }
}
.custom-tiles-type-two .link-wrapper {
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 1023px) {
  .custom-tiles-type-two .link-wrapper {
    margin-top: 40px;
  }
}
.custom-tiles-type-two .link-wrapper a {
  background: #FCFAF7;
  color: #f8b90d;
  position: relative;
  display: inline-block;
  height: 40px;
  margin: 0 20px 0 0;
  padding: 0 38px 0 18px;
  overflow: visible;
  font: 500 11px/40px "Founders Grotesk", sans-serif;
  min-width: 140px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  -moz-text-align-last: auto;
  text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all 350ms ease-in-out;
}
.custom-tiles-type-two .link-wrapper a:after {
  content: "";
  display: block;
  width: 10px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background-image: url("../images/sprite.svg");
  background-position: -265px -263px;
}
.custom-tiles-type-two .link-wrapper a:hover {
  color: #FCFAF7;
  background: rgba(248, 185, 13, 0.9);
}
.custom-tiles-type-two .link-wrapper a:hover:after {
  background-position: -285px -263px;
}
.custom-tiles-type-two .tile-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.custom-tiles-type-two .tile-section.count-1 .custom-tile {
  width: 100% !important;
}
.custom-tiles-type-two .tile-section.count-2 .custom-tile {
  width: calc(50% - 15px) !important;
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section.count-2 .custom-tile {
    width: 100% !important;
  }
}
.custom-tiles-type-two .tile-section.count-3 .custom-tile {
  width: calc(50% - 15px) !important;
}
.custom-tiles-type-two .tile-section.count-3 .custom-tile:nth-child(1) {
  width: 100% !important;
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section.count-3 .custom-tile {
    width: 100% !important;
  }
}
.custom-tiles-type-two .tile-section.count-4 .custom-tile {
  width: calc(50% - 15px) !important;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles-type-two .tile-section.count-4 .custom-tile {
    width: calc(50% - 15px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section.count-4 .custom-tile {
    width: 100% !important;
  }
}
.custom-tiles-type-two .tile-section .custom-tile {
  position: relative;
  margin-bottom: 30px;
  padding-top: 37%;
  width: calc((100% - 60px) / 3);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles-type-two .tile-section .custom-tile {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile {
    width: 100% !important;
    padding-top: 50%;
    margin-bottom: 20px;
  }
}
.custom-tiles-type-two .tile-section .custom-tile:nth-child(1), .custom-tiles-type-two .tile-section .custom-tile:nth-child(2) {
  width: calc(50% - 15px);
}
.custom-tiles-type-two .tile-section .custom-tile:nth-child(1) .title, .custom-tiles-type-two .tile-section .custom-tile:nth-child(2) .title {
  font: 60px/1 "Butler", "Helvetica", "Arial", serif;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles-type-two .tile-section .custom-tile:nth-child(1) .title, .custom-tiles-type-two .tile-section .custom-tile:nth-child(2) .title {
    font: 40px/1 "Butler", "Helvetica", "Arial", serif;
  }
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile:nth-child(1) .title, .custom-tiles-type-two .tile-section .custom-tile:nth-child(2) .title {
    font: 30px/1 "Butler", "Helvetica", "Arial", serif;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles-type-two .tile-section .custom-tile:nth-child(1) {
    width: 100%;
  }
}
.custom-tiles-type-two .tile-section .custom-tile:hover .title-wrapper {
  opacity: 0;
}
.custom-tiles-type-two .tile-section .custom-tile:hover .hover-modal {
  opacity: 1;
  visibility: visible;
}
.custom-tiles-type-two .tile-section .custom-tile .thumbnail {
  background-size: cover;
  background-position: center center;
  background-color: #121212;
}
.custom-tiles-type-two .tile-section .custom-tile .thumbnail:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 79.58%, rgba(0, 0, 0, 0.66) 100%);
}
.custom-tiles-type-two .tile-section .custom-tile .title, .custom-tiles-type-two .tile-section .custom-tile .subtitle {
  color: #ffffff;
  letter-spacing: 0.2px;
}
.custom-tiles-type-two .tile-section .custom-tile .subtitle {
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile .subtitle {
    font-size: 14px;
  }
}
.custom-tiles-type-two .tile-section .custom-tile .title {
  font: 46px/1 "Butler", "Helvetica", "Arial", serif;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-tiles-type-two .tile-section .custom-tile .title {
    font: 40px/1 "Butler", "Helvetica", "Arial", serif;
  }
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile .title {
    font: 30px/1 "Butler", "Helvetica", "Arial", serif;
  }
}
.custom-tiles-type-two .tile-section .custom-tile .subtitle {
  font: 500 16px/1.2 "Founders Grotesk", sans-serif;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile .subtitle {
    font-size: 14px;
  }
}
.custom-tiles-type-two .tile-section .custom-tile .title-wrapper {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 35px;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
  transition: opacity 200ms ease;
}
.custom-tiles-type-two .tile-section .custom-tile .hover-modal {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  background: rgba(18, 18, 18, 0.7);
  padding: 30px;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile .hover-modal {
    padding: 15px;
  }
}
.custom-tiles-type-two .tile-section .custom-tile .hover-modal .inner-wrapper {
  background: rgba(18, 18, 18, 0.4);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  height: 100vh;
  max-height: 100%;
  position: relative;
}
.custom-tiles-type-two .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper {
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.custom-tiles-type-two .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper * {
  text-align: center;
}
.custom-tiles-type-two .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .links {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .links {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .custom-tiles-type-two .tile-section .custom-tile .hover-modal .inner-wrapper .content-wrapper .links .button {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8b90d;
  z-index: 1000;
  padding: 20px 0;
}
.cookie-bar .center-column {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cookie-bar .center-column:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cookie-bar .center-column {
    flex-flow: column;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .cookie-bar .content-wrapper {
    margin-bottom: 10px;
  }
}
.cookie-bar h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.cookie-bar .buttons-wrapper {
  margin-left: 20px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .cookie-bar .buttons-wrapper {
    margin-left: 0;
  }
}
.cookie-bar .buttons-wrapper .button:last-child {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .cookie-bar .buttons-wrapper .button:last-child {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cookie-bar .buttons-wrapper .button {
    margin: 0 5px;
  }
}
.cookie-bar .button {
  background: #121212;
  color: #ffffff;
  transition: all 350ms ease-in-out;
}
.cookie-bar .button:hover {
  background: #ffffff;
  color: #121212;
}
.cookie-bar .button:before {
  background: #ffffff;
}

@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;
  }
}
