@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: 13px "Brandon Grotesque WF", Arial, sans-serif;
  padding: 4px 10px 4px 10px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
}

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

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

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

.ui-datepicker {
  display: none;
  padding: 10px;
  background: #D8D8D8;
  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 {
  position: relative;
  margin-bottom: 6px;
  font: bold 18px/44px "Brandon Grotesque WF", Arial, sans-serif;
  text-align: center;
  color: #211E1A;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  top: 10px;
  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 #263664;
  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 #263664;
  border-bottom: 2px solid #263664;
}
.ui-datepicker-prev:not(.ui-state-disabled):hover:after {
  border-bottom-color: #BFBFBF;
  border-left-color: #BFBFBF;
}

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

.ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 252px;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-calendar {
    width: 100%;
  }
}
.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.ui-datepicker-calendar th {
  font-size: 10px;
  font-weight: bold;
  color: #211E1A;
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  font-size: 11px;
  color: #211E1A;
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  color: #8D8D8D;
}
.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: #ccc;
}
.ui-datepicker-calendar .ui-datepicker-highlight a,
.ui-datepicker-calendar .ui-datepicker-current-day a,
.ui-datepicker-calendar .ui-state-default:hover {
  background: #263664;
  color: #fff;
}

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

.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-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "HeBS-Icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.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: "";
}

.faq-section .faq-section-category-descr h2 {
  font-size: 18px;
}
.faq-section .faq-section-question {
  font-weight: 700;
}

#acm-blocks {
  position: relative;
  padding-top: 37px;
  padding-bottom: 104px;
  margin-top: 27px;
}
#acm-blocks #anchor-divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 0;
  height: 100%;
  z-index: 2;
}
#acm-blocks #anchor-divider span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #000;
}
@media only screen and (max-width: 767px) {
  #acm-blocks #anchor-divider span {
    width: 1px;
  }
}
#acm-blocks #anchor-divider:before, #acm-blocks #anchor-divider:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#acm-blocks #anchor-divider:before {
  top: -25px;
  width: 38px;
  height: 27px;
  background: url("../images/anchor-before.svg") 50% 0 no-repeat;
}
@media only screen and (max-width: 767px) {
  #acm-blocks #anchor-divider:before {
    top: -12px;
    width: 20px;
    height: 14px;
  }
}
#acm-blocks #anchor-divider:after {
  bottom: 0;
  width: 64px;
  height: 41px;
  background: url("../images/anchor-after.svg") 50% 100% no-repeat;
}
@media only screen and (max-width: 767px) {
  #acm-blocks #anchor-divider:after {
    width: 31px;
    height: 24px;
  }
}
#acm-blocks .specials-widget {
  position: relative;
  background: #F9F9F7 url("../images/bg-grey.png") 50% 0 repeat;
  padding-top: 107px;
  padding-bottom: 357px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget {
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 3;
    background-size: 116px 201px;
  }
}
#acm-blocks .specials-widget .wrapper {
  position: relative;
}
#acm-blocks .specials-widget .slideshow {
  overflow: hidden;
}
#acm-blocks .specials-widget .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#acm-blocks .specials-widget .tile {
  width: calc(50% - 67px);
  display: inline-block;
  text-align: center;
  white-space: normal;
}
#acm-blocks .specials-widget .tile img {
  display: block;
  border: 30px solid #F9F9F7;
  width: calc(100% - 60px);
  height: auto;
  margin-bottom: 66px;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget .tile img {
    border-width: 17px;
    width: calc(90% - 34px);
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
#acm-blocks .specials-widget .tile h2 {
  font: 24px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget .tile h2 {
    font-size: 21px;
    letter-spacing: 2px;
  }
}
#acm-blocks .specials-widget .tile .descr {
  font: 18px "Old Standard TT", sans-serif;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget .tile .descr {
    font-size: 16px;
  }
}
#acm-blocks .specials-widget .tile nav {
  margin-top: 38px;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget .tile nav {
    margin-top: 30px;
  }
}
#acm-blocks .specials-widget .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -21px;
  width: 30px;
  height: 30px;
  border: thin solid #211E1A;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget .slideshow-button {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}
#acm-blocks .specials-widget .slideshow-button:hover {
  opacity: 0.5;
}
#acm-blocks .specials-widget .slideshow-button.previous {
  left: 26px;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #acm-blocks .specials-widget .slideshow-button.previous {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget .slideshow-button.previous {
    left: 16px;
  }
}
#acm-blocks .specials-widget .slideshow-button.next {
  right: 26px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #acm-blocks .specials-widget .slideshow-button.next {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget .slideshow-button.next {
    right: 16px;
  }
}
#acm-blocks .specials-widget + .acm-block {
  margin-top: -256px;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .specials-widget + .acm-block {
    margin-top: 0;
  }
}
#acm-blocks .acm-block.big-image {
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.big-image .center-column {
    padding: 0;
  }
}
#acm-blocks .acm-block.big-image .image {
  height: 660px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.big-image .image {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.big-image .image {
    height: 0;
    padding-top: 100%;
  }
}
#acm-blocks .acm-block.big-image .content {
  background: #F9F9F7;
  width: 470px;
  margin: 0 auto;
  margin-top: -136px;
  padding: 4vh 3vw 5vh 3vw;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  #acm-blocks .acm-block.big-image .content {
    padding: 3vh 2vw 4vh 2vw;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.big-image .content {
    width: calc(100% - 66px);
    padding: 30px 30px 26px 30px;
    margin-top: -70px;
  }
}
#acm-blocks .acm-block.big-image .content h2 {
  font: 30px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
@media screen and (max-width: 1198px) {
  #acm-blocks .acm-block.big-image .content h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.big-image .content h2 {
    margin-bottom: 22px;
    letter-spacing: 3px;
  }
}
#acm-blocks .acm-block.big-image .content nav {
  display: block;
  margin-top: 28px;
}
#acm-blocks .acm-block.two-blocks {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-top: 100px;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.two-blocks {
    flex-wrap: wrap;
    padding: 20px 0 0 0;
  }
}
#acm-blocks .acm-block.two-blocks .tile {
  width: 50%;
  padding-right: 66px;
}
#acm-blocks .acm-block.two-blocks .tile.right {
  padding-right: 0;
  padding-left: 66px;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.two-blocks .tile {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 20px;
  }
}
#acm-blocks .acm-block.two-blocks .tile .image {
  height: 710px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.two-blocks .tile .image {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.two-blocks .tile .image {
    height: 0;
    padding-top: 100%;
  }
}
#acm-blocks .acm-block.two-blocks .tile .content {
  background: #F9F9F7;
  width: calc(100% - 120px);
  margin: 0 auto;
  margin-top: -136px;
  padding: 4vh 3vw 5vh 3vw;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  #acm-blocks .acm-block.two-blocks .tile .content {
    padding: 3vh 2vw 4vh 2vw;
    width: calc(100% - 66px);
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.two-blocks .tile .content {
    padding: 30px 30px 26px 30px;
    margin-top: -70px;
  }
}
#acm-blocks .acm-block.two-blocks .tile .content h2 {
  font: 30px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
@media screen and (max-width: 1198px) {
  #acm-blocks .acm-block.two-blocks .tile .content h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.two-blocks .tile .content h2 {
    margin-bottom: 22px;
    letter-spacing: 3px;
  }
}
#acm-blocks .poi {
  position: relative;
  z-index: 3;
}
#acm-blocks .acm-block.testimonials-and-blog {
  padding-top: 100px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog {
    background: #F9F9F7;
    padding-top: 60px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog .center-column {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog .center-column {
    flex-wrap: wrap;
  }
}
#acm-blocks .acm-block.testimonials-and-blog article.column {
  width: 50%;
  padding-right: 66px;
  text-align: center;
}
#acm-blocks .acm-block.testimonials-and-blog article.column.right {
  padding-right: 0;
  padding-left: 66px;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 72px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog article.column h2 {
  font: 500 18px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: #263664;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column h2 {
    order: 2;
    font-size: 14px;
    letter-spacing: 1.33px;
    margin-bottom: 30px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog article.column .divider {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 80px;
  width: 46px;
  height: 46px;
  background: #211E1A;
  transform: rotate(45deg);
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column .divider {
    width: 20px;
    height: 20px;
    margin-top: 10px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column .divider {
    order: 1;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog article.column .quote {
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column .quote {
    order: 3;
  }
}
#acm-blocks .acm-block.testimonials-and-blog article.column .quote span {
  position: relative;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.36px;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column .quote span {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.24px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog article.column .quote:before, #acm-blocks .acm-block.testimonials-and-blog article.column .quote:after {
  content: "“";
  position: relative;
  display: inline;
  font-size: 36px;
  line-height: 1.4;
  color: #211E1A;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column .quote:before, #acm-blocks .acm-block.testimonials-and-blog article.column .quote:after {
    font-size: 24px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog article.column .quote:after {
  content: "”";
}
#acm-blocks .acm-block.testimonials-and-blog article.column nav {
  margin-top: 80px;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column nav {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog article.column nav {
    order: 4;
  }
}
#acm-blocks .acm-block.testimonials-and-blog .testimonial {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog #blog-feed {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog #blog-feed h2 {
    margin-bottom: 54px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog #blog-feed .content {
  background: #ECECEA;
  text-align: left;
}
#acm-blocks .acm-block.testimonials-and-blog #blog-feed .content .thumbnail {
  height: 0;
  padding-top: 70%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.testimonials-and-blog #blog-feed .content .thumbnail {
    padding-top: 100%;
  }
}
#acm-blocks .acm-block.testimonials-and-blog #blog-feed .content .copy {
  padding: 44px 44px 40px 44px;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog #blog-feed .content .copy {
    padding: 36px 30px 32px 30px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog #blog-feed .content h3 {
  font: 24px/1.5 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog #blog-feed .content h3 {
    font-size: 18px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog #blog-feed .content h3 a {
  color: #211E1A;
  text-decoration: none;
}
#acm-blocks .acm-block.testimonials-and-blog #blog-feed .content h3 + .descr {
  margin-top: 32px;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog #blog-feed .content h3 + .descr {
    margin-top: 18px;
  }
}
#acm-blocks .acm-block.testimonials-and-blog #blog-feed .content nav {
  margin-top: 50px;
  text-align: center;
}
@media only screen and (max-width: 979px) {
  #acm-blocks .acm-block.testimonials-and-blog #blog-feed .content nav {
    margin-top: 42px;
  }
}
#acm-blocks .acm-block.image-and-content {
  padding-top: 120px;
  padding-bottom: 114px;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #acm-blocks .acm-block.image-and-content {
    padding-top: 0;
    padding-bottom: 24px;
    margin-top: 0;
  }
}
#acm-blocks .acm-block.image-and-content:before {
  display: none;
}

.acm-block.image-and-content {
  position: relative;
  z-index: 3;
  background: #F9F9F7;
  padding-top: 80px;
  padding-bottom: 20px;
  margin-top: 120px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content {
    padding-top: 65px;
    margin-top: 40px;
  }
}
.acm-block.image-and-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: url("../images/bg-grey.png") 50% 0 repeat;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content:before {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .center-column {
    padding: 0;
  }
}
.acm-block.image-and-content h2 {
  font: 36px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content h2 {
    display: none;
  }
}
.acm-block.image-and-content .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
}
.acm-block.image-and-content .content-wrapper .content {
  flex-shrink: 0;
  width: 35%;
  margin-left: 40px;
}
@media screen and (max-width: 1198px) {
  .acm-block.image-and-content .content-wrapper .content {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content {
    width: 100%;
    margin: 0;
    padding: 0 33px;
  }
}
.acm-block.image-and-content .content-wrapper .content h2.mobile {
  display: none;
  font: 24px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content h2.mobile {
    display: block;
  }
}
.acm-block.image-and-content .content-wrapper .content .h3 {
  font: 24px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content .h3 {
    font-size: 21px;
    letter-spacing: 3px;
  }
}
.acm-block.image-and-content .content-wrapper .content nav {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content nav {
    margin-top: 20px;
  }
}
.acm-block.image-and-content .content-wrapper .image {
  width: calc(65% - 40px);
}
@media screen and (max-width: 1198px) {
  .acm-block.image-and-content .content-wrapper .image {
    width: calc(50% - 33px);
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .image {
    width: 100%;
    margin-bottom: 30px;
  }
}
.acm-block.image-and-content .content-wrapper .image img {
  display: block;
  width: 100%;
  height: auto;
}

.rooms .categories-descr {
  padding: 0 20px;
}
.rooms .categories-descr .category-descr {
  display: none;
}
.rooms .categories-descr .category-descr.active {
  display: block;
}

.room h1 {
  text-align: center;
}
.room .intro {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .room .intro {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
}
.room .intro.no-img .description {
  width: 100%;
  margin-left: 0;
}
.room .intro .thumb-wrapper {
  width: calc(65% - 40px);
}
@media screen and (max-width: 1198px) {
  .room .intro .thumb-wrapper {
    width: calc(50% - 33px);
  }
}
@media only screen and (max-width: 767px) {
  .room .intro .thumb-wrapper {
    margin-left: -33px;
    width: calc(100% + 66px);
    margin-bottom: 38px;
  }
}
.room .intro .thumb {
  width: 100%;
  height: 0;
  padding-top: 60%;
  background-color: #ECECEA;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .room .intro .thumb {
    padding-top: 100%;
  }
}
.room .intro .description {
  flex-shrink: 0;
  width: 35%;
  margin-left: 40px;
}
@media screen and (max-width: 1198px) {
  .room .intro .description {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .room .intro .description {
    width: 100%;
    margin: 0;
  }
}
.room .intro .description h2 {
  letter-spacing: 4px;
}
@media only screen and (max-width: 767px) {
  .room .intro .description h2 {
    letter-spacing: 3px;
    font-size: 21px;
    margin-bottom: 24px;
  }
}
.room .intro .description .rooms-item-gallery {
  margin-left: 20px;
}

.acm-block.room-page {
  margin-top: 86px;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page {
    margin-top: 36px;
  }
}
.acm-block.room-page .highlights .row .center-column {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row .center-column {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.acm-block.room-page .highlights .row .column {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row .column {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row .column.left {
    order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row .column.right {
    order: 1;
    padding-left: 0;
  }
}
.acm-block.room-page .highlights .row.top {
  background: #ECECEA;
  padding-top: 100px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.top {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.acm-block.room-page .highlights .row.top .column.right {
  padding-left: 70px;
  padding-bottom: 380px;
}
@media screen and (max-width: 1198px) {
  .acm-block.room-page .highlights .row.top .column.right {
    padding-bottom: 240px;
  }
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page .highlights .row.top .column.right {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.top .column.right {
    padding-left: 0;
  }
}
.acm-block.room-page .highlights .row.top .column.right h2 {
  text-align: center;
  font: 30px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 54px;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.top .column.right h2 {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 40px;
  }
}
.acm-block.room-page .highlights .row.top .column.right .amenities {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.top .column.right .amenities {
    margin-bottom: 10px;
  }
}
.acm-block.room-page .highlights .row.top .column.right .amenities span.amenity {
  position: relative;
  display: inline-block;
  width: 140px;
  padding: 0 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font: 14px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.top .column.right .amenities span.amenity {
    width: 64px;
    box-sizing: content-box;
    margin-bottom: 40px;
  }
}
.acm-block.room-page .highlights .row.top .column.right .amenities span.amenity .icon {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  margin-bottom: 15px;
}
.acm-block.room-page .highlights .row.top .column.right .amenities span.amenity .icon svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.acm-block.room-page .highlights .row.top .column .thumb {
  width: 100%;
  height: 0;
  padding-top: 80%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.top .column .thumb {
    margin-left: -33px;
    width: calc(100% + 66px);
    padding-top: calc(100% + 66px);
  }
}
.acm-block.room-page .highlights .row.top .column .description-left {
  margin-top: 28px;
  width: 50%;
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page .highlights .row.top .column .description-left {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.top .column .description-left {
    margin-top: 40px;
  }
}
.acm-block.room-page .highlights .row.bottom {
  padding-top: 140px;
  padding-bottom: 70px;
  background: url("../images/bg-grey.png") 50% 0 repeat;
}
.acm-block.room-page .highlights .row.bottom:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.bottom {
    padding-top: 0;
    padding-bottom: 60px;
    background-size: 116px 201px;
  }
}
.acm-block.room-page .highlights .row.bottom .column.left .main-text {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.4px;
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page .highlights .row.bottom .column.left .main-text {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.bottom .column.left .main-text {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.3px;
  }
}
.acm-block.room-page .highlights .row.bottom .column.left nav {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.bottom .column.left nav {
    text-align: center;
    margin-top: 44px;
  }
}
.acm-block.room-page .highlights .row.bottom .column.right {
  padding-left: 70px;
  margin-top: -540px;
}
@media screen and (max-width: 1198px) {
  .acm-block.room-page .highlights .row.bottom .column.right {
    margin-top: -400px;
  }
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page .highlights .row.bottom .column.right {
    margin-top: -200px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.bottom .column.right {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 76px;
  }
}
.acm-block.room-page .highlights .row.bottom .column.right .thumb {
  width: 100%;
  height: 796px;
  background-color: #ECECEA;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1198px) {
  .acm-block.room-page .highlights .row.bottom .column.right .thumb {
    height: 700px;
  }
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page .highlights .row.bottom .column.right .thumb {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.bottom .column.right .thumb {
    margin-left: -33px;
    width: calc(100% + 66px);
    height: 0;
    padding-top: calc(100% + 66px);
  }
}
.acm-block.room-page .highlights .row.bottom .column.right .description-right {
  margin-top: 28px;
  padding-left: 40%;
  padding-right: 10px;
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page .highlights .row.bottom .column.right .description-right {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page .highlights .row.bottom .column.right .description-right {
    margin-top: 44px;
  }
}

.acm-block.room-page-additional {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .headings {
    display: none !important;
  }
}
.acm-block.room-page-additional .headings,
.acm-block.room-page-additional .tiles {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .headings,
.acm-block.room-page-additional .tiles {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.acm-block.room-page-additional .column {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .column {
    width: 100% !important;
  }
}
.acm-block.room-page-additional .column.left {
  width: 30%;
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page-additional .column.left {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .column.left {
    order: 2;
  }
}
.acm-block.room-page-additional .column.right {
  width: calc(70% - 70px);
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page-additional .column.right {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .column.right {
    order: 1;
    margin-bottom: 30px;
  }
}
.acm-block.room-page-additional .column h2 {
  font: 24px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.acm-block.room-page-additional .column h2.mobile {
  font-size: 21px;
  letter-spacing: 3.5px;
  margin-bottom: 26px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .column h2.mobile {
    display: block;
  }
}
.acm-block.room-page-additional .column .tile {
  position: relative;
  height: 434px;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .column .tile {
    height: auto;
  }
}
.acm-block.room-page-additional .column .tile:hover .thumb:after {
  opacity: 0.7;
}
.acm-block.room-page-additional .column .tile.stripes:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("../images/bg-black-narrow.png") 50% 100% repeat;
}
.acm-block.room-page-additional .column .tile .thumb {
  position: relative;
  height: 100%;
  background-color: #263664;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .acm-block.room-page-additional .column .tile .thumb {
    height: 0;
    padding-top: 100%;
  }
}
.acm-block.room-page-additional .column .tile .thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
  transition: 350ms ease-in-out;
}
.acm-block.room-page-additional .column .tile h3 {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 20px;
  right: 20px;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 0.4px;
  color: #fff;
  z-index: 2;
}
@media only screen and (max-width: 979px) {
  .acm-block.room-page-additional .column .tile h3 {
    font-size: 30px;
    line-height: 37px;
  }
}
.acm-block.room-page-additional .column .tile a.link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
  text-indent: -10000px;
  z-index: 2;
}

/* TEMPLATE 1 - 1 */
.rooms .template-1-1 {
  width: 100%;
  margin-bottom: 33px;
  padding: 20px;
  background: #ECECEA;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 550px) {
  .rooms .template-1-1 {
    padding: 0;
    text-align: left;
  }
}
.rooms .template-1-1 .thumbnail {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 200px;
}
@media only screen and (max-width: 979px) {
  .rooms .template-1-1 .thumbnail {
    width: 160px;
  }
}
.rooms .template-1-1 .thumbnail img {
  width: 100%;
  display: block;
}
.rooms .template-1-1 .thumbnail nav {
  display: none;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.rooms .template-1-1 .thumbnail nav .price {
  display: table-cell;
  padding: 5px 6px;
  width: 50%;
  text-align: center;
  vertical-align: middle;
  font: 11px/19px "Brandon Grotesque WF", Arial, sans-serif;
  color: #211E1A;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.8);
  transition: 350ms ease-in-out;
}
.rooms .template-1-1 .thumbnail nav .price:hover {
  background: white;
  opacity: 1;
}
.rooms .template-1-1 .thumbnail nav .price .number {
  font-size: 22px;
}
.rooms .template-1-1 .thumbnail nav .button {
  display: table-cell;
  width: 50%;
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  line-height: 19px;
  text-decoration: none;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  background: rgba(38, 54, 100, 0.8);
  transition: 350ms ease-in-out;
}
.rooms .template-1-1 .thumbnail nav .button:hover {
  background: #263664;
  opacity: 1;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .thumbnail {
    float: none;
    padding: 0;
    width: 100%;
  }
  .rooms .template-1-1 .thumbnail img {
    width: 100%;
  }
  .rooms .template-1-1 .thumbnail nav {
    display: table;
  }
}
.rooms .template-1-1 .description {
  position: relative;
  margin-left: 230px;
  padding-right: 200px;
}
@media only screen and (max-width: 979px) {
  .rooms .template-1-1 .description {
    margin-left: 180px;
    padding-right: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .description {
    padding-right: 0;
  }
}
@media (max-width: 550px) {
  .rooms .template-1-1 .description {
    margin-left: 0;
    padding: 10px;
  }
}
.rooms .template-1-1 .description h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #263664;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .description h3 {
    margin-bottom: 10px;
    font-weight: bold;
  }
}
.rooms .template-1-1 .description p {
  margin-bottom: 20px;
}
.rooms .template-1-1 .description nav.links {
  font-size: 0;
}
.rooms .template-1-1 .description nav.links .room-links-item {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  font: 14px/16px "Brandon Grotesque WF", Arial, sans-serif;
  margin-right: 8px;
  padding-right: 8px;
  color: #263664;
  transition: opacity 350ms ease-in-out;
}
.rooms .template-1-1 .description nav.links .room-links-item:after {
  content: "";
  position: absolute;
  top: 1px;
  right: -1px;
  height: 15px;
  width: 1px;
  background: #BFBFBF;
}
.rooms .template-1-1 .description nav.links .room-links-item:hover {
  opacity: 0.5;
}
.rooms .template-1-1 .description nav.links .room-links-item.view-tour {
  padding-right: 25px !important;
}
.rooms .template-1-1 .description nav.links .room-links-item.view-tour .rooms-360-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  right: 0;
  width: 20px;
  height: 13px;
}
.rooms .template-1-1 .description nav.links .room-links-item:last-child {
  margin: 0;
  padding: 0;
}
.rooms .template-1-1 .description nav.links .room-links-item:last-child:after {
  content: none;
}
.rooms .template-1-1.no-booking .description {
  padding-right: 0;
}
.rooms .template-1-1 .features span {
  display: inline-block;
  margin: 0 20px 8px 0;
  font: 14px/16px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .features span {
    display: block;
    margin: 0 0 8px 0;
  }
}
.rooms .template-1-1 .amenities {
  position: relative;
  margin: 10px 0 20px 0;
  line-height: 30px;
  height: 30px;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .amenities {
    margin: 15px 0;
  }
}
.rooms .template-1-1 .amenities.multiline {
  margin-right: 50px;
}
.rooms .template-1-1 .amenities .main-list {
  height: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.rooms .template-1-1 .amenities .additional-list {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 39px);
  opacity: 0;
  line-height: 30px;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .amenities .additional-list {
    left: 0;
    width: calc(100% + 19px);
  }
}
.rooms .template-1-1 .amenities span {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 10px;
  vertical-align: middle;
  color: #263664;
}
.rooms .template-1-1 .amenities .toggle {
  display: none;
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 31px;
  height: 100%;
  margin: 0;
  padding-left: 5px;
  border-left: thin solid #BFBFBF;
  text-align: right;
  z-index: 4;
}
.rooms .template-1-1 .amenities .toggle:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
}
.rooms .template-1-1 .amenities.multiline .toggle {
  display: block;
}
.rooms .template-1-1 .amenities.expand .additional-list {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition: opacity 0.2s, visibility 0s ease 0s;
}
.rooms .template-1-1 .amenities.expand .toggle:before, .rooms .template-1-1 .amenities.expand .toggle:after {
  content: "";
  display: block;
  background: #211E1A;
  position: absolute;
  transform: rotate(45deg);
}
.rooms .template-1-1 .amenities.expand .toggle:before {
  width: 20px;
  height: 2px;
  top: 12px;
  right: 0;
}
.rooms .template-1-1 .amenities.expand .toggle:after {
  width: 2px;
  height: 20px;
  top: 3px;
  right: 9px;
}
.rooms .template-1-1 .booking-info {
  width: 140px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .booking-info {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .booking-info {
    position: static;
    width: auto;
    margin: 20px 0;
  }
}
.rooms .template-1-1 .booking-info .price {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .booking-info .price {
    font-size: 18px;
  }
}
.rooms .template-1-1 .booking-info .button {
  width: 140px;
}
@media only screen and (max-width: 767px) {
  .rooms .template-1-1 .booking-info .price,
.rooms .template-1-1 .booking-info .button {
    display: inline-block;
    width: auto;
    margin-right: 10px;
  }
}

#home-gallery {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-bottom: 10px;
  text-align: center;
  z-index: 10;
}
#home-gallery h2 {
  display: none;
  font: 200 36px/1.2 "Old Standard TT", sans-serif;
  margin: 40px 0;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #home-gallery h2 {
    display: block;
  }
}
#home-gallery div.gallery-wrapper {
  overflow: hidden;
}
#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 (min-width: 768px) and (max-width: 979px) {
  #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);
  }
  #home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
    width: calc((100% - 30px) / 2);
  }
  #home-gallery .photo:nth-child(n+8) {
    display: none;
  }
}
@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 "Old Standard TT", sans-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;
  z-index: 10;
}
#feeds .headings {
  margin-bottom: 70px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #feeds .headings {
    margin-bottom: 46px;
  }
}
#feeds .headings h2,
#feeds .headings h3.h2-like {
  display: inline;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 36px;
  line-height: 1.3;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #feeds .headings h2,
#feeds .headings h3.h2-like {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #feeds .headings h2,
#feeds .headings h3.h2-like {
    display: block;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 3px;
  }
}
#feeds .headings h3.h2-like {
  position: relative;
}
@media only screen and (max-width: 767px) {
  #feeds .headings h3.h2-like {
    word-wrap: break-word;
  }
}
#feeds .headings h2 + h3.h2-like {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 64px;
}
@media only screen and (max-width: 767px) {
  #feeds .headings h2 + h3.h2-like {
    padding-left: 0;
  }
}
#feeds .headings h2 + h3.h2-like:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 26px;
  width: 10px;
  height: 10px;
  background: #211E1A;
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  #feeds .headings h2 + h3.h2-like:after {
    display: none;
  }
}
#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: #ff6b09;
  border-bottom-color: #ff6b09;
  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;
  padding: 70px 0 37px 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#feeds .feed-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 54, 100, 0.8);
  z-index: 1;
}
#feeds .feed-items {
  position: relative;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2;
}
#feeds .feed-item {
  position: relative;
  width: calc((100% - 99px) / 4);
  height: auto;
  font: italic 14px/18px "Brandon Grotesque WF", Arial, sans-serif;
  overflow: hidden;
  opacity: 1;
  text-align: center;
  background: #211E1A;
  color: #fff;
  transition: opacity 350ms ease-in-out;
  margin-bottom: 33px;
}
#feeds .feed-item .inner-wrapper {
  width: 100%;
  padding-top: 100%;
}
#feeds .feed-item:hover .feed-thumb div:after {
  opacity: 0.6;
}
@media (min-width: 768px) and (max-width: 979px) {
  #feeds .feed-item {
    width: calc((100% - 66px) / 3);
  }
  #feeds .feed-item:nth-child(7), #feeds .feed-item:nth-child(8) {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #feeds .feed-item {
    width: calc((100% - 20px) / 2);
  }
}
#feeds .feed-item.invisible {
  opacity: 0;
}
#feeds .feed-item .feed-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #211E1A;
  z-index: 1;
}
#feeds .feed-item .feed-thumb div {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
}
#feeds .feed-item .feed-thumb div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
  transition: opacity 350ms ease-in-out;
}
#feeds .feed-item .feed-descr {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  overflow: hidden;
  padding: 20px;
  z-index: 2;
}
@media only screen and (min-width: 1800px) {
  #feeds .feed-item .feed-descr {
    padding: 20px;
  }
}
#feeds .feed-item .feed-title {
  overflow: hidden;
  text-indent: -10000px;
  width: 23px;
  height: 23px;
  background: url("../images/feeds-sprite.svg") 0 0 no-repeat;
  margin: 0 auto;
}
#feeds .feed-item .feed-date {
  position: relative;
  display: block;
  font: bold 22px/1 "Brandon Grotesque WF", Arial, sans-serif;
  margin-top: 20px;
  padding-top: 25px;
}
#feeds .feed-item .feed-date:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 6px;
  background: #fff;
}
#feeds .feed-item .feed-text {
  display: none;
}
#feeds .feed-item .feed-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#feeds .swiper-container {
  margin: 0 0 0 50px;
}
#feeds .swiper-container .feed-items {
  flex-wrap: nowrap;
}
#feeds .swiper-container .feed-items .feed-item {
  width: 80%;
  margin-right: 20px;
}
@media (min-width: 768px) and (max-width: 979px) {
  #feeds .swiper-container:nth-child(7), #feeds .swiper-container:nth-child(8) {
    display: none;
  }
}

.eapps-instagram-feed {
  z-index: 2;
}

#merchandising_tile {
  position: fixed;
  bottom: 0;
  right: -600px;
  width: 525px;
  z-index: 999;
  background: transparent;
  color: white;
  height: 250px;
  transition: 1s;
}
@media only screen and (max-width: 767px) {
  #merchandising_tile {
    width: 100%;
    height: 270px;
    bottom: 60px;
  }
}
@media only screen and (min-width: 980px) {
  #merchandising_tile.centered {
    bottom: 25%;
  }
}
#merchandising_tile .img-overlay {
  width: 525px;
  height: 220px;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #merchandising_tile .img-overlay {
    width: calc(100% - 40px);
  }
}
#merchandising_tile .img-overlay .color-overlay {
  background-color: rgba(38, 54, 106, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#merchandising_tile .promo-name {
  font-size: 20px;
  text-align: center;
  margin-top: 65px;
  text-transform: uppercase;
}
#merchandising_tile .promo-text {
  font-size: 14px;
  padding: 10px 20px;
  text-align: center;
}
#merchandising_tile .promo-content {
  text-align: center;
  padding: 0 40px 0 0;
}
#merchandising_tile .promo-content .button {
  text-align: center;
  background-color: transparent;
  border: 0;
}
#merchandising_tile .promo-content .button:hover {
  color: #fff;
  opacity: 0.7;
}

#merchandising_tile.merchandising-tile-active {
  right: 0px;
}

.merchandising-open-btn {
  width: 40px;
  height: 220px;
  background-color: #26366A;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  float: right;
  transition: bottom 1s;
}
@media only screen and (max-width: 767px) {
  .merchandising-open-btn {
    bottom: 60px;
  }
}
@media only screen and (min-width: 980px) {
  .merchandising-open-btn.centered {
    bottom: 25%;
  }
}
.merchandising-open-btn .arrow-rotate {
  display: block;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  width: 25px;
  transform: rotate(0deg);
  transition: all 1s;
}
.merchandising-open-btn .arrow-rotate:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 8px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.merchandising-open-btn .active-rotate {
  transform: rotate(180deg);
  right: 10px;
}

#footer {
  position: relative;
  font: normal 16px/23px "Brandon Grotesque WF", Arial, sans-serif;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #footer {
    padding-bottom: 50px;
  }
}
#footer .center-column .content-wrapper {
  position: relative;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 979px) {
  #footer .center-column .content-wrapper {
    padding-top: 47px;
    padding-bottom: 82px;
  }
}
#footer .center-column .content-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 68px;
  background: url("../images/bg-black.png") 50% 100% repeat-x;
  z-index: 1;
}
@media only screen and (max-width: 979px) {
  #footer .center-column .content-wrapper:after {
    left: -33px;
    width: calc(100% + 66px);
    height: 47px;
    background: url("../images/bg-black-narrow.png") 50% 100% repeat-x;
  }
}
#footer a {
  color: #211E1A;
  text-decoration: none;
}
#footer .copyright {
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 979px) {
  #footer .copyright {
    font-size: 12px;
    margin-bottom: 0;
  }
}

#footer-menu {
  font-size: 0;
}
#footer-menu li {
  display: inline-block;
}
@media only screen and (max-width: 979px) {
  #footer-menu li {
    display: block;
  }
}
#footer-menu a {
  display: block;
  margin: 0 20px 0 0;
  font: 16px/23px "Brandon Grotesque WF", Arial, sans-serif;
  text-decoration: none;
  color: #211E1A;
  transition: 350ms ease-in-out;
}
@media only screen and (max-width: 979px) {
  #footer-menu a {
    margin: 0;
  }
}
#footer-menu a:hover, #footer-menu a.active {
  opacity: 0.5;
}

.footer-table {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 979px) {
  .footer-table {
    flex-direction: column;
  }
}
.footer-table + .footer-table {
  margin-top: 30px;
}
@media only screen and (max-width: 979px) {
  .footer-table + .footer-table {
    margin-top: 40px;
  }
}
.footer-table.standalone-logo {
  margin: 0px;
}
.footer-table .column {
  width: 25%;
  text-align: left;
  padding-right: 40px;
  box-sizing: border-box;
}
@media only screen and (max-width: 979px) {
  .footer-table .column {
    width: 100% !important;
    padding: 0;
    text-align: center;
  }
}
.footer-table .column.wide {
  width: 50%;
}
.footer-table .column:last-child {
  padding-right: 0;
}
@media only screen and (max-width: 979px) {
  .footer-table .column.logo {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 979px) {
  .footer-table .column.logo.secondary {
    display: none;
  }
}
.footer-table .column.hotel-details {
  width: 24%;
}
@media only screen and (max-width: 979px) {
  .footer-table .column.hotel-details {
    margin-bottom: 16px;
  }
}
.footer-table .column.hotel-details .group + .group {
  margin-top: 25px;
}
.footer-table .column.newsletter {
  width: 51%;
  flex-shrink: 0;
}
.footer-table .column.copyrights {
  text-align: right;
}
@media only screen and (max-width: 979px) {
  .footer-table .column.copyrights {
    text-align: center;
    margin-top: 20px;
  }
}
.footer-table .column .logo {
  display: block;
  width: 120px;
  max-width: 100%;
}
@media only screen and (max-width: 979px) {
  .footer-table .column .logo {
    margin: 0 auto;
  }
}
.footer-table .column .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-table .column .logo.mobile {
  display: none;
  margin-top: 25px;
}
@media only screen and (max-width: 979px) {
  .footer-table .column .logo.mobile {
    display: block;
  }
}
.footer-table .column .logo.independent {
  width: 150px;
}
.footer-table .column h2 {
  font: 500 16px/23px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (max-width: 979px) {
  .footer-table .column h2 {
    display: none;
  }
}
.footer-table .column h3,
.footer-table .column span {
  position: relative;
  display: block;
  font: 16px/23px "Brandon Grotesque WF", Arial, sans-serif;
}
.footer-table .column h3.hotel-name svg, .footer-table .column h3.phone svg, .footer-table .column h3.email svg,
.footer-table .column span.hotel-name svg,
.footer-table .column span.phone svg,
.footer-table .column span.email svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: -20px;
  width: 12px;
  height: auto;
  fill: #211E1A;
}
@media only screen and (max-width: 979px) {
  .footer-table .column h3.hotel-name svg, .footer-table .column h3.phone svg, .footer-table .column h3.email svg,
.footer-table .column span.hotel-name svg,
.footer-table .column span.phone svg,
.footer-table .column span.email svg {
    top: auto;
    transform: translateY(0);
    left: auto;
    position: relative;
    display: block;
    height: 16px;
    margin: 0 auto;
    margin-bottom: 6px;
  }
}
.footer-table .column h3.email,
.footer-table .column span.email {
  margin-top: 14px;
}

#footer .socials {
  margin-bottom: 2px;
  font-size: 0;
}
@media only screen and (max-width: 979px) {
  #footer .socials {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
#footer .socials li {
  display: inline-block;
  margin: 0 0 10px 20px;
}
@media only screen and (max-width: 979px) {
  #footer .socials li {
    margin: 0 5px 10px 5px;
  }
}
#footer .socials a {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
  text-indent: -9999px;
  overflow: hidden;
}
#footer .socials a svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 19px;
  fill: #211E1A;
  transition: fill 350ms ease-in-out;
}

@media only screen and (max-width: 979px) {
  #footer .newsletter {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 979px) {
  #footer .newsletter h2 {
    display: block;
  }
}
#footer .newsletter form {
  margin: 0;
}
#footer .newsletter form fieldset.main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer .newsletter form fieldset.main .group {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: calc(50% - 7px);
}
@media only screen and (max-width: 767px) {
  #footer .newsletter form fieldset.main .group {
    width: 100%;
    flex-direction: column;
  }
}
#footer .newsletter form fieldset.main p {
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  width: calc(50% - 7px);
}
@media only screen and (max-width: 979px) {
  #footer .newsletter form fieldset.main p {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .newsletter form fieldset.main p {
    width: 100%;
  }
}
#footer .newsletter form fieldset.main p.required:before {
  content: "*";
  position: absolute;
  top: 8px;
  left: 11px;
  font-size: 14px;
  color: #FF0000;
}
#footer .newsletter form fieldset.main p.controls {
  margin-top: 0 !important;
}
@media only screen and (max-width: 979px) {
  #footer .newsletter form fieldset.main p.controls {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .newsletter form fieldset.main p.controls {
    margin-top: 5px !important;
  }
}
#footer .newsletter form fieldset.main p.controls .button {
  margin: 0;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #footer .newsletter form fieldset.main p.controls .button {
    width: 140px;
    max-width: 100%;
  }
}
#footer .newsletter form fieldset.main p.small {
  width: calc(50% - 7px);
}
@media only screen and (max-width: 767px) {
  #footer .newsletter form fieldset.main p.small {
    width: 100%;
  }
}
#footer .newsletter form fieldset.main p label {
  display: none;
}
#footer .newsletter form fieldset.main p input[type=text] {
  border: thin solid #e7e7e5;
  height: 40px;
  line-height: 40px;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 14px;
  color: #211E1A;
  width: 100%;
  padding: 0 18px;
}
#footer .newsletter form fieldset.main p input[type=text]::-webkit-input-placeholder {
  color: #211E1A;
}
#footer .newsletter form fieldset.main p input[type=text]:-moz-placeholder {
  color: #211E1A;
}
#footer .newsletter form fieldset.main p input[type=text]::-moz-placeholder {
  color: #211E1A;
}
#footer .newsletter form fieldset.main p input[type=text]:-ms-input-placeholder {
  color: #211E1A;
}
#footer .newsletter form fieldset.main p input[type=text]:focus::-webkit-input-placeholder {
  color: #828282;
}
#footer .newsletter form fieldset.main p input[type=text]:focus:-moz-placeholder {
  color: #828282;
}
#footer .newsletter form fieldset.main p input[type=text]:focus::-moz-placeholder {
  color: #828282;
}
#footer .newsletter form fieldset.main p input[type=text]:focus:-ms-input-placeholder {
  color: #828282;
}
#footer .newsletter form fieldset.main p input[type=submit] {
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
}
#footer .newsletter form fieldset.consent label {
  width: 100%;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  color: #211E1A;
}
#footer .newsletter form fieldset.consent label input {
  flex-shrink: 0;
  margin-right: 10px;
}
#footer .newsletter form fieldset.consent label span {
  font-size: 14px;
  line-height: 1.5;
}
#footer .newsletter form fieldset.consent label span a {
  text-decoration: underline;
}
#footer .newsletter form fieldset.consent label span em {
  color: #FF0000;
}
#footer .newsletter .success-message {
  position: relative;
  margin: 20px auto;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  color: #263664;
  font-size: 30px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}
#footer .newsletter .success-message.visible {
  opacity: 1;
}

#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;
  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 .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;
  border: thin solid #ECECEA;
  color: #211E1A;
  background: #fff;
  font-size: 16px;
}
#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: 979px) {
  #hebs-gallery .galleria-stage {
    padding: 0;
  }
}
@media only screen and (max-width: 979px) and (orientation: landscape) {
  #hebs-gallery .galleria-stage {
    bottom: 0;
  }
}
#hebs-gallery .galleria-stage .galleria-image img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#hebs-gallery .galleria-container.touch .galleria-stage {
  padding: 0;
}
#hebs-gallery.no-controls .galleria-stage {
  bottom: 0;
  padding: 20px;
}
#hebs-gallery.no-controls .galleria-image-nav {
  display: none;
}
@media only screen and (max-width: 979px) {
  #hebs-gallery .galleria-image-nav {
    display: none;
  }
}
#hebs-gallery .galleria-image-nav-left, #hebs-gallery .galleria-image-nav-right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 31px;
  height: 61px;
  margin-top: -30px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-image-nav-left {
  left: 20px;
  background-position: 0 -37px;
}
#hebs-gallery .galleria-image-nav-left:hover {
  background-position: -51px -37px;
}
#hebs-gallery .galleria-image-nav-left:active {
  background-position: -102px -37px;
}
#hebs-gallery .galleria-image-nav-right {
  right: 20px;
  background-position: 0 -118px;
}
#hebs-gallery .galleria-image-nav-right:hover {
  background-position: -51px -118px;
}
#hebs-gallery .galleria-image-nav-right:active {
  background-position: -102px -118px;
}
#hebs-gallery .galleria-loader {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
}
#hebs-gallery .galleria-loader:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #ff6b09;
  border-bottom-color: #ff6b09;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hebs-gallery.no-controls .galleria-thumbnails-container {
  display: none;
}
#hebs-gallery .galleria-thumbnails-container {
  height: 120px;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: #000;
}
@media only screen and (max-width: 979px) and (orientation: landscape) {
  #hebs-gallery .galleria-thumbnails-container {
    display: none;
  }
}
#hebs-gallery .galleria-carousel .galleria-thumbnails-list {
  margin-left: 52px;
  margin-right: 52px;
}
#hebs-gallery .galleria-thumbnails {
  margin: 20px auto 0;
}
#hebs-gallery .galleria-thumbnails .galleria-image {
  height: 80px !important;
  width: 80px !important;
  background: #000;
  margin: 0 6px 0 0;
  float: left;
  cursor: pointer;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active {
  border: 3px solid #fff;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active img {
  margin: -3px 0 0 -3px;
}
#hebs-gallery .galleria-thumb-nav-left, #hebs-gallery .galleria-thumb-nav-right {
  display: none;
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 21px;
  height: 21px;
  margin-top: -10px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-carousel .galleria-thumb-nav-left, #hebs-gallery .galleria-carousel .galleria-thumb-nav-right {
  display: block;
}
#hebs-gallery .galleria-thumb-nav-left.disabled, #hebs-gallery .galleria-thumb-nav-right.disabled {
  opacity: 0.5;
  cursor: default;
}
#hebs-gallery .galleria-thumb-nav-left {
  left: 15px;
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:hover {
  background-position: -26px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:active {
  background-position: -57px -199px;
}
#hebs-gallery .galleria-thumb-nav-left.disabled {
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-right {
  right: 15px;
  background-position: 5px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:hover {
  background-position: -26px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:active {
  background-position: -57px -240px;
}
#hebs-gallery .galleria-thumb-nav-right.disabled {
  background-position: 5px -240px;
}
#hebs-gallery .galleria-info {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 40px;
}
#hebs-gallery .galleria-info .galleria-info-description {
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 300px;
  right: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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: 16px;
  line-height: 20px;
}
@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: calc(100% - 2px);
  width: calc(100% - 2px);
  border: thin solid #BFBFBF;
  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: 979px) {
  .specials .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .background {
    width: 100%;
    height: 0;
    padding-top: 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;
  transition: color 350ms ease-in-out;
}
.specials .image-list-item .description h3 a:hover {
  color: #211E1A;
  opacity: 1;
}
.specials .image-list-item .description nav {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .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;
  }
  .specials .image-list-item .description nav a {
    margin-bottom: 10px;
  }
}

.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%;
    height: 0;
    padding-top: 100%;
    float: none;
    margin-left: 0;
  }
}
.single-special nav a {
  margin-top: 10px;
}

.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: #ff6b09;
  border-bottom-color: #ff6b09;
  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 {
  position: relative;
  height: 812px;
  max-height: 80vh;
  background: #F9F9F7;
}
.hotel-location-map:after,
.poi-map:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: url("../images/bg-white.png") 50% 0 repeat-x;
}
.hotel-location-map h3, .hotel-location-map p,
.poi-map h3,
.poi-map p {
  color: #211E1A;
  margin-bottom: 0;
}
.hotel-location-map h4,
.poi-map h4 {
  font: 30px/1.5 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .hotel-location-map h4,
.poi-map h4 {
    font-size: 21px;
    letter-spacing: 3.5px;
  }
}
.hotel-location-map h4 + p,
.poi-map h4 + p {
  margin-top: 25px;
}
.hotel-location-map .button,
.poi-map .button {
  display: none;
}
.hotel-location-map .map-content,
.poi-map .map-content {
  overflow: hidden;
}

.map-content {
  background: #fff;
  font: 18px/22px "Old Standard TT", sans-serif !important;
  overflow: hidden;
  padding: 32px 32px 24px;
  position: relative;
  text-align: center;
  color: #fff;
  width: 416px;
}
@media only screen and (max-width: 767px) {
  .map-content {
    width: 300px;
  }
}
.map-content p {
  color: #211E1A;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Old Standard TT", sans-serif;
}
.map-content h3 {
  font: 24px/36px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #211E1A;
  margin-bottom: 0;
  font-weight: 500;
}
.map-content h3 + p {
  margin: 16px 0;
}
.map-content p + p {
  margin-top: 20px;
}
.map-content a {
  position: relative;
  color: #263664;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #fff;
}
.map-content .button {
  display: none;
}
.map-content .links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.map-content .links-wrapper a {
  position: relative;
  color: #263664;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #fff;
}
.map-content .links-wrapper a:hover {
  border-bottom: 2px solid #211E1A;
  color: #211E1A;
  opacity: 1;
}
.map-content .links-wrapper a:first-child {
  margin-bottom: 10px;
}

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

.leaflet-container a.leaflet-popup-close-button {
  display: none;
}

.leaflet a {
  position: relative;
  color: #263664;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #fff;
}

.pressroom {
  text-align: center;
}
.pressroom .pressroom-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.pressroom .pressroom-item {
  display: inline-block;
  width: calc((100% / 3) - 32px);
  height: 440px;
  margin: 0 16px 32px 16px;
  position: relative;
  overflow: hidden;
  background-color: #ECECEA;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .pressroom .pressroom-item {
    width: calc(50% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
    margin: 16px 0;
  }
}
.pressroom .pressroom-item.no-img .description {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  bottom: auto;
  left: 0;
  right: 0;
  background: transparent;
}
.pressroom .pressroom-item.no-img .description .copy a {
  color: #263664;
}
.pressroom .pressroom-item.no-img .description h4,
.pressroom .pressroom-item.no-img .description p {
  color: #211E1A;
}
.pressroom .pressroom-item.no-img .description time,
.pressroom .pressroom-item.no-img .description .pdf {
  color: #263664;
}
.pressroom .pressroom-item h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pressroom .pressroom-item time {
  font: bold 14px "Brandon Grotesque WF", Arial, sans-serif;
  color: #ECECEA;
  display: block;
  margin: 5px 0 10px 0;
}
.pressroom .pressroom-item .description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
}
.pressroom .pressroom-item .description h3 {
  color: #fff;
  font-weight: 700;
}
.pressroom .pressroom-item .description p {
  color: #fff;
  line-height: 20px;
  font-size: 16px;
  margin-bottom: 0;
}
.pressroom .pressroom-item .description a {
  color: #fff;
}
.pressroom .pressroom-item .pdf {
  color: #ECECEA;
  font: bold 14px "Brandon Grotesque WF", Arial, sans-serif;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  padding-left: 0 !important;
}
.pressroom .pressroom-item .pdf:hover {
  color: #fff;
}
.pressroom .pressroom-item .view-gallery {
  margin-top: 20px;
  border: 1px solid #263664;
}
.pressroom .pressroom-item .view-gallery:hover {
  background: #fff;
  color: #211E1A;
  border-color: #211E1A;
}

.galleries {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.galleries .gallery {
  width: calc((100% / 3) - 32px);
  padding-bottom: calc((100% / 3) - 16px);
  height: 0;
  margin: 0 16px 32px 16px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #263664;
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  .galleries .gallery {
    width: calc(50% - 32px);
    padding-bottom: calc(50% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  .galleries .gallery {
    width: 100%;
    padding-bottom: 100%;
    margin: 16px 0;
  }
}
.galleries .gallery h2, .galleries .gallery h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: 26px/30px "Brandon Grotesque WF", Arial, 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: 2;
}
@media only screen and (max-width: 979px) {
  .galleries .gallery .description {
    font-size: 16px;
    line-height: 20px;
  }
}
.galleries .gallery .description .centered {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 15px;
  display: inline-block;
  width: calc(100% - 4px);
  box-sizing: border-box;
}
.galleries .gallery .description .button {
  border: 1px solid #263664;
}
.galleries .gallery .description .button:hover {
  background: #fff;
  color: #211E1A;
  border-color: #211E1A;
}

.grecaptcha-badge {
  display: none !important;
}

.form {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .form {
    text-align: left;
  }
}
.form .ui-menu-item a {
  text-align: left;
}
.form h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: thin solid #ECECEA;
  letter-spacing: 3px;
}
.form label {
  width: 40%;
  line-height: 1.2;
  margin: 12px 20px 0 0;
  float: left;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .form label {
    display: block;
    float: none;
    margin: 0 0 10px;
    text-align: left;
    width: auto;
  }
}
.form label.checkbox-label {
  margin: 0 auto;
  float: none;
  display: block;
  width: 60%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .form label.checkbox-label {
    width: 100%;
    text-align: left;
  }
}
.form label em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
.form p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .form p {
    margin-bottom: 20px;
  }
}
.form p:after {
  clear: both;
  content: "";
  display: table;
}
.form p.terms-privacy {
  margin-top: 25px;
}
.form p span {
  float: left;
  margin: 0 10px 0 0;
}
.form p span.checkbox-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;
}
.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 {
  background: #fff;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 250px;
  border: thin solid #ECECEA;
  font-size: 16px;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .form input[type=text],
.form input[type=date],
.form textarea,
.form select,
.form .input-overlay {
    width: 100%;
    font-size: 14px;
    text-align: left;
  }
}
.form .input-overlay {
  opacity: 0;
  margin-top: -40px;
}
@media only screen and (max-width: 767px) {
  .form .select-wrapper {
    width: 100%;
  }
}
.form textarea {
  height: 100px;
  overflow: auto;
  line-height: 20px;
  padding: 10px;
}
.form input[type=checkbox],
.form input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
.form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .g-recaptcha > div {
  margin-left: 40%;
}
@media only screen and (max-width: 767px) {
  .form .g-recaptcha > div {
    margin: 0 auto;
  }
}
.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: 120px;
  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: 13px 0 0 6px;
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .controls p {
  padding: 20px 0 0 40%;
  width: auto;
  background: none;
}
@media only screen and (max-width: 767px) {
  .form .controls p {
    padding: 0;
    text-align: center;
  }
}
.form .controls .button {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    display: inline-block;
    margin: 0;
  }
}
.form#newsletter-form .consent-p {
  margin-top: 20px;
}
.form#newsletter-form .controls {
  text-align: center;
  margin-top: 20px;
}

.poi {
  padding: 0 24px;
}

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

.poi-zoom {
  font: bold 14px/22px "Brandon Grotesque WF", Arial, sans-serif;
  position: absolute;
  right: 36px;
  bottom: 77px;
  z-index: 536;
  display: flex;
  flex-direction: column-reverse;
}
.poi-zoom .poi-zoom-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #fff;
  height: 56px;
  width: 56px;
  border-radius: 12px;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
}
.poi-zoom .poi-zoom-button:after {
  content: "";
  background: #211E1A;
  display: block;
  width: 22px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poi-zoom .poi-zoom-button.zoom-in {
  margin-bottom: 12px;
}
.poi-zoom .poi-zoom-button.zoom-in:before {
  content: "";
  background: #211E1A;
  display: block;
  width: 2px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.poi-overlay {
  text-align: center;
  background-color: #fff;
}
.poi-overlay .category-selector {
  margin: 0;
}

#calendar-header {
  margin-bottom: 20px;
}
#calendar-header:after {
  clear: both;
  content: "";
  display: table;
}

#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-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;
  font: bold 16px/20px "Brandon Grotesque WF", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}
@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: #211E1A;
}
#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.list:before {
  background-position: -200px -38px;
}
#calendar-views a.list:hover:before, #calendar-views a.list.active:before {
  background-position: -240px -38px;
}

#calendar-breadcrumb {
  margin-top: 10px;
  margin-bottom: 40px;
  font: 12px/18px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
  color: #211E1A;
}
#calendar-breadcrumb:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-breadcrumb dt, #calendar-breadcrumb dd {
  float: left;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  #calendar-breadcrumb dt, #calendar-breadcrumb dd {
    float: none;
    display: inline-block;
  }
}
#calendar-breadcrumb dt a, #calendar-breadcrumb dd a {
  color: inherit;
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
#calendar-breadcrumb dt a:hover, #calendar-breadcrumb dd a:hover {
  color: #263664;
  opacity: 1;
}
#calendar-breadcrumb dt a:last-child, #calendar-breadcrumb dd a:last-child {
  color: #263664;
  text-decoration: underline;
}

#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;
  font: 12px/18px "Brandon Grotesque WF", Arial, sans-serif;
  text-decoration: none;
  border-bottom: thin solid #BFBFBF;
  color: #BFBFBF;
  transition: 350ms ease-in-out;
}
#calendar-year a:hover {
  border-color: #211E1A;
  color: #211E1A;
}
#calendar-year .active a {
  border-color: #263664;
  color: #263664;
}
#calendar-year .active a:hover {
  border-color: #211E1A;
  color: #211E1A;
}

#calendar-month {
  height: 40px;
  margin-bottom: 20px;
  position: relative;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: newspaper;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
}
#calendar-month:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-month:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 100%;
  height: 0;
}
#calendar-month li {
  display: inline;
}
#calendar-month a {
  display: inline-block;
  vertical-align: top;
  padding: 0 9px;
  height: 40px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font: 12px/40px "Brandon Grotesque WF", Arial, sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #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: #211E1A;
  color: #fff;
}
#calendar-month a.active {
  background: #263664;
  color: #fff;
}
#calendar-month a.active:hover {
  background: #211E1A;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  #calendar-month li {
    display: none;
  }
  #calendar-month li.current, #calendar-month li.prev, #calendar-month li.next {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 30%;
  }
  #calendar-month li.current a {
    font-size: 12px;
    padding: 0 10px;
    display: block;
  }
  #calendar-month li.prev a, #calendar-month li.next a {
    display: block;
    font-size: 12px;
    padding-right: 0;
    padding-left: 30px;
  }
  #calendar-month li.prev a:after, #calendar-month li.next a:after {
    background: url("../images/common.svg") -200px -196px no-repeat;
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 11px;
    width: 11px;
    height: 18px;
  }
  #calendar-month li.prev a:hover, #calendar-month li.next a:hover {
    background-color: transparent;
    color: #263664;
  }
  #calendar-month li.prev a:hover:after, #calendar-month li.next a:hover:after {
    background-position: -231px -196px;
  }
  #calendar-month li.prev a:active, #calendar-month li.next a:active {
    top: auto;
  }
  #calendar-month li.next a {
    padding-left: 0;
    padding-right: 30px;
  }
  #calendar-month li.next a:after {
    background-position: -200px -234px;
    left: auto;
    right: 5px;
  }
  #calendar-month li.next a:hover:after {
    background-position: -231px -234px;
  }
}

#calendar-navigation {
  display: block;
  height: 40px;
  font: 16px/40px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  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: #ECECEA;
}
#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 {
  text-align: center;
  font-weight: bold;
}
#calendar-week li .short {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #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: #ECECEA;
}
@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;
  display: block;
  font-size: 14px;
  padding: 0.5em 1em;
  text-decoration: none;
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(236, 236, 234, 0.3);
}
@media only screen and (max-width: 767px) {
  #calendar-days li.prev_month, #calendar-days li.next_month {
    display: none;
  }
}
#calendar-days li.prev_month time a, #calendar-days li.next_month time a {
  color: rgba(33, 30, 26, 0.3);
}
#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.6em;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  background: #327d7d;
  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;
  font-size: 14px;
  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);
  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: #263664;
  margin-bottom: 10px;
  font: bold 14px/1.5 "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
}
#calendar-days dl dd img {
  display: block;
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}
#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;
}
@media only screen and (max-width: 767px) {
  #calendar.list-view #calendar-month {
    display: none;
  }
}
#calendar.list-view .image-list {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
#calendar.list-view .image-list h2 a {
  text-decoration: none;
}
#calendar.list-view .image-list h3 a {
  font: 18px/30px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
#calendar.list-view .image-list h3 a:hover {
  color: inherit;
}

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

#calendar .single-event .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%;
    height: 0;
    padding-top: 100%;
    float: none;
    margin-left: 0;
  }
}
#calendar .single-event h2 {
  margin-bottom: 10px;
}

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

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

.calendar .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item {
    height: auto;
  }
}
.calendar .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border: thin solid #BFBFBF;
  z-index: -1;
}
.calendar .image-list-item .background {
  position: relative;
  width: 350px;
  height: 300px;
  margin-left: 40px;
  display: block;
  float: right;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .calendar .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .background {
    width: 100%;
    height: 0;
    padding-top: 100%;
    margin: 0 0 10px 0;
  }
}
.calendar .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description {
    padding: 20px 20px 10px 20px;
    text-align: center;
  }
}
.calendar .image-list-item .description h3 {
  font: 18px/30px "Old Standard TT", sans-serif;
  color: #263664;
  margin-bottom: 15px;
}
.calendar .image-list-item .description h3 a {
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
.calendar .image-list-item .description h3 a:hover {
  color: #211E1A;
  opacity: 1;
}
.calendar .image-list-item .description .button {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .calendar .image-list-item .description .button {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description .button {
    text-align: center;
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
    margin-bottom: 10px;
  }
}

.menu-tabs-block-acm h2 {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  color: #211E1A;
  text-transform: uppercase;
  position: relative;
  font-size: 24px;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}
.menu-tabs-block-acm .tabs {
  position: relative;
  z-index: 100;
}
.menu-tabs-block-acm .tabs-titles {
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
.menu-tabs-block-acm .tabs-titles li.tab-title {
  order: 2;
  display: block;
  margin: 0 5px 10px;
  transition: all 1s;
}
.menu-tabs-block-acm .tabs-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.menu-tabs-block-acm .tabs-content .tabs-content-item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s;
}
.menu-tabs-block-acm .tabs-content .tabs-content-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.menu-tabs-block-acm .tabs-content p.tabs-content-item-descr {
  margin-bottom: 30px;
  max-width: 70%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-content p.tabs-content-item-descr {
    max-width: auto;
    width: 100%;
  }
}
.menu-tabs-block-acm .menu-block {
  width: 46%;
  min-width: 400px;
  margin-right: auto;
  padding: 0 2% 40px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .menu-block {
    width: 100%;
    min-width: auto;
  }
}
.menu-tabs-block-acm .menu-block h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.menu-tabs-block-acm .menu-block .dish {
  margin-bottom: 20px;
}
.menu-tabs-block-acm .menu-block .dish p {
  margin-bottom: 0;
}
.menu-tabs-block-acm .menu-block .dish .dish-ingredients {
  margin: 6px 0;
  font-size: 0.8em;
}
.menu-tabs-block-acm .menu-link {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
.menu-tabs-block-acm .menu-link .button {
  display: inline-block;
}

.acm-block-layout.audio-block {
  display: block;
  width: 100%;
  min-height: 60px;
  margin: 20px 0 40px;
  text-align: center;
}
.acm-block-layout.audio-block img {
  max-width: 300px;
  width: 100%;
}
.acm-block-layout.audio-block figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.acm-block-layout.audio-block .play-audio {
  position: relative;
  display: block;
  padding: 0 20px 0 62px;
  color: #fff;
  line-height: 54px;
  border: 2px solid #263664;
  background-color: #263664;
  text-transform: uppercase;
  z-index: 10;
  height: auto;
}
.acm-block-layout.audio-block .play-audio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 12px 0;
  font-size: 0;
  border-radius: 50%;
  background: #263664 url(../images/audio-icon.svg) 50% 50% no-repeat;
  background-size: 26px 26px;
  border: none;
}
.acm-block-layout.audio-block .play-audio:hover {
  color: #263664;
  background-color: #fff;
}
.acm-block-layout.audio-block .play-audio:hover::before {
  opacity: 1;
}
.acm-block-layout.audio-block audio {
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 20;
}
.acm-block-layout.audio-block.audio-show .play-audio {
  font-size: 0;
  padding: 0 20px 0 40px;
  background-color: #fff;
  border-color: #fff;
}
.acm-block-layout.audio-block.audio-show .play-audio::before {
  background: #263664 url(../images/close-light.svg) 50% 50% no-repeat;
}
.acm-block-layout.audio-block.audio-show audio {
  display: block;
  opacity: 1;
}

.view-360 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  margin-top: 20px;
}
.view-360 .block {
  position: relative;
  display: inline-block;
  width: calc((100% - 90px) / 3);
  height: 0;
  padding-top: calc((100% - 30px) / 3);
  margin: 0 15px 30px 15px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .view-360 .block {
    width: calc(50% - 40px);
    padding-top: calc(50% - 40px);
    margin: 0 10px 20px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .view-360 .block {
    width: 100%;
    padding-top: 70%;
    margin: 0 0 10px 0;
  }
}
.view-360 .block:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: background 350ms ease-in-out;
}
.view-360 .block:hover:before {
  background: rgba(0, 0, 0, 0.5);
}
.view-360 .block .view-tour {
  font: 24px/27px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 2.4px;
  text-shadow: 2px 0 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .view-360 .block .view-tour {
    font-size: 18px;
  }
}
.keyboard-navigation .view-360 .block .view-tour:focus {
  background: rgba(0, 0, 0, 0.9);
}
.view-360 .block .view-tour span {
  position: relative;
  padding: 0 20px;
  text-align: center;
}
.view-360 .block .view-tour span:before {
  content: "";
  position: relative;
  display: block;
  background: url(../images/360-icon.svg);
  width: 20px;
  height: 13px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.promos-slider {
  margin: 60px 0;
  width: 100%;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 3;
  background: #F9F9F7;
}
@media only screen and (max-width: 767px) {
  .promos-slider {
    margin-bottom: 40px;
  }
}
.promos-slider .center-column {
  overflow: hidden;
  max-width: 900px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .promos-slider .center-column {
    padding: 0 7px;
  }
}
.promos-slider .page-content {
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .promos-slider .page-content {
    padding-bottom: 6px;
  }
}
.promos-slider .page-content .h1-like {
  display: block;
  margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .promos-slider .page-content .h1-like {
    font-size: 25px;
    letter-spacing: 3.5px;
    margin-bottom: 10px;
  }
}
.promos-slider .page-content p {
  margin-bottom: 20px;
}
.promos-slider .slideshow {
  height: 100%;
  width: calc(100% + 30px);
  overflow: hidden;
  margin: 0 -15px;
}
.promos-slider .slideshow-wrapper {
  text-align: center;
}
.promos-slider .slide {
  display: inline-block;
  margin: 0 15px;
  max-height: 480px;
  min-height: 460px;
  min-width: 320px;
  overflow: hidden;
  position: relative;
  width: calc(33.3% - 30px);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .promos-slider .slide {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 767px) {
  .promos-slider .slide {
    width: calc(100% - 30px);
    padding-bottom: 96%;
    height: 0;
    min-height: auto;
  }
}
.promos-slider .slide h4 {
  color: #fff;
  font: 500 30px/36px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  max-width: 436px;
  margin: 0 auto;
}
.promos-slider .slide h4 a {
  color: inherit;
  text-decoration: none;
}
.promos-slider .slide:hover .description {
  opacity: 1;
}
.promos-slider .slide:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}
.promos-slider .slide:hover .button {
  opacity: 1;
}
.promos-slider .slide:hover .thumbnail {
  transform: scale(1.1);
}
.promos-slider .thumbnail {
  background-position: 50% 50%;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 350ms ease-in;
  z-index: 0;
}
.promos-slider .overlay {
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  left: 0;
  padding: 37px 30px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 2;
  transition: background-color 350ms ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .promos-slider .overlay {
    padding: 40px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .promos-slider .overlay {
    padding: 26px 10px;
  }
}
.promos-slider .description {
  align-items: center;
  display: flex;
  flex: 1;
  flex-flow: column;
  margin: 20px auto;
  padding: 0 30px;
  max-height: 200px;
  overflow: auto;
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
.promos-slider .description p {
  display: inline-block;
  font-size: 14px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .promos-slider .description p {
    font-size: 12px;
    opacity: 1;
  }
}
.promos-slider .button {
  opacity: 0;
  position: absolute;
  bottom: 20px;
  width: auto;
  left: 50%;
  transform: translate(-50%, 0);
  transition: opacity 350ms ease-in-out;
}
.promos-slider .slideshow-pagination {
  display: block;
  width: 100%;
  padding: 25px 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.promos-slider .slideshow-pagination .swiper-pagination-bullet {
  display: inline-block;
  height: 11px;
  width: 11px;
  margin: 5px;
  border-radius: 50%;
  border: 1px solid #263664;
  transition: background-color 350ms ease-in-out;
  cursor: pointer;
}
.promos-slider .slideshow-pagination .swiper-pagination-bullet:hover, .promos-slider .slideshow-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #263664;
}
.promos-slider .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -45px;
  width: 20px;
  height: 20px;
  border: thin solid #fff;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
  display: none;
}
@media only screen and (max-width: 767px) {
  .promos-slider .slideshow-button {
    display: block;
  }
}
.promos-slider .slideshow-button.next {
  right: 30px;
  transform: rotate(45deg);
}
.promos-slider .slideshow-button.previous {
  left: 30px;
  transform: rotate(-135deg);
}

@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;
  }
}
.booking-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.booking-popup .booking-popup-inner {
  width: 90%;
  max-height: 90%;
  max-width: 500px;
  background: #fff;
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2);
}
.booking-popup .booking-popup-inner button {
  margin: 30px 10px 0;
}

.poi-acm {
  position: relative;
  background-color: #fff;
  text-align: center;
  z-index: 3;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .poi-acm {
    padding-top: 50px;
  }
}
.poi-acm h2 {
  font: 30px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media screen and (max-width: 1198px) {
  .poi-acm h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .poi-acm h2 {
    margin-bottom: 22px;
    letter-spacing: 3px;
  }
}
.poi-acm .intro-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.poi-acm .intro-wrap p {
  font-family: "Old Standard TT", sans-serif;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .poi-acm .intro-wrap p {
    margin-bottom: 32px;
  }
}
.poi-acm .poi .category-selector {
  padding-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .poi-acm .poi .category-selector {
    width: 100%;
    padding-bottom: 0;
  }
}
.poi-acm .poi .category-selector .button {
  font-size: 17px;
  border-radius: 0;
  letter-spacing: 5px;
  border: 0;
  background-color: transparent;
  color: #263664;
  text-transform: uppercase;
  line-height: normal;
  padding-bottom: 12px;
}
.poi-acm .poi .category-selector .button.active {
  color: rgba(33, 30, 26, 0.7);
  border-bottom: 2px solid rgba(33, 30, 26, 0.7);
}
@media only screen and (max-width: 767px) {
  .poi-acm .poi .category-selector .select-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .poi-acm .poi .category-selector .select-wrapper select {
    font: 16px/36px "Brandon Grotesque WF", Arial, sans-serif;
    letter-spacing: 5px;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    color: #000;
    border: 0.5px solid #263664;
    z-index: 9;
  }
}

.additional-content > .center-column > h1,
.additional-content > .center-column > .h1-like,
.additional-content > .center-column > h2,
.additional-content > .center-column > h3,
.additional-content > .center-column > h4,
.additional-content > .center-column > h5,
.additional-content > .center-column > h6 {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  color: #211E1A;
  text-transform: uppercase;
}
.additional-content > .center-column > h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.additional-content > .center-column > h3 {
  font-size: 18px;
  line-height: 1.3;
}
.additional-content > .center-column > h4,
.additional-content > .center-column > h5,
.additional-content > .center-column > h6 {
  font-weight: bold;
}
.additional-content > .center-column > h3,
.additional-content > .center-column > h4,
.additional-content > .center-column > h5,
.additional-content > .center-column > h6,
.additional-content > .center-column > p,
.additional-content > .center-column > ul,
.additional-content > .center-column > ol,
.additional-content > .center-column > table {
  margin-bottom: 20px;
}
.additional-content > .center-column > ul > li {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  padding: 2px 0;
}
.additional-content > .center-column > ul > li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  margin-right: 8px;
  margin-top: -4px;
  background: #211E1A;
}
.additional-content > .center-column strong {
  font-weight: bold;
}
.additional-content > .center-column em {
  font-style: italic;
}
.additional-content > .center-column u {
  text-decoration: underline;
}
.additional-content > .center-column sup, .additional-content > .center-column sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
.additional-content > .center-column sup {
  top: -0.5em;
}
.additional-content > .center-column sub {
  bottom: -0.25em;
}
