@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;
}
.formError[role=alert] {
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  height: auto;
  width: auto;
  margin: 0;
  position: absolute;
  text-align: left;
}

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

.formError .formErrorContent {
  background: #b31919;
  position: relative;
  z-index: 5001;
  color: #fff;
  width: auto;
  min-width: 150px;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background: #d42626;
  font-weight: 500;
}

.error-field {
  border-color: #d42626 !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 1px #d42626 !important;
}
.error-field:focus {
  outline: 2px solid #d42626 !important;
  outline-offset: 2px !important;
}

.form-validation-live {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-validation-live.active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

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

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

.skip-links {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  text-align: center;
}
.skip-links .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 1rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  z-index: 100;
}
.skip-links .skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  left: 0;
  outline: 2px solid #4A90E2;
  outline-offset: -2px;
}

:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[tabindex]:not([tabindex="-1"]):focus {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

button:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 0;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

a:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
  text-decoration: underline;
}

@media screen and (-ms-high-contrast: active) {
  :focus {
    outline: 2px solid currentColor;
  }
  .skip-link:focus {
    background: window;
    color: windowText;
  }
}
.ui-datepicker {
  display: none;
  max-width: 400px;
  width: 100%;
  padding: 26px 43px;
  background: #fff;
  border: 1px solid #DFE4EF;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-collapse: collapse;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker {
    padding: 20px;
  }
}
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: 13px;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #3D3935;
}

.ui-datepicker-prev, .ui-datepicker-next {
  position: absolute;
  top: 0;
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 20;
}
.ui-datepicker-prev:after, .ui-datepicker-next:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  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: 5px;
  border-right: 0;
  border-top: 0;
  border-left: 2px solid #032165;
  border-bottom: 2px solid #032165;
}
.ui-datepicker-prev:not(.ui-state-disabled):hover:after {
  border-bottom-color: #032165;
  border-left-color: #032165;
}

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

.ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 100%;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-calendar {
    width: 100%;
  }
}
.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  line-height: 44px;
  text-align: center;
  vertical-align: middle;
  text-align: center;
  padding-bottom: 15px;
  border: 1px solid transparent;
}
.ui-datepicker-calendar th {
  font-size: 12px;
  font-weight: bold;
  color: #032165;
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  font-size: 12px;
  color: #000;
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  color: #a9a9a9;
}
.ui-datepicker-calendar td.ui-datepicker-other-month span, .ui-datepicker-calendar td.ui-state-disabled span {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #edf2f5;
  color: inherit;
  border-radius: 2px;
}
.ui-datepicker-calendar a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
}
.ui-datepicker-calendar .ui-datepicker-today a {
  background: #032165;
  color: #fff;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}
.ui-datepicker-calendar .ui-datepicker-highlight a, .ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-state-default:hover {
  background: #032165;
  color: #fff;
  border-radius: 1px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.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 -123px no-repeat;
}
.ui-datepicker-trigger:hover {
  background-position: -37px -123px;
}

.ui-selectmenu-button {
  position: relative;
  display: block;
  width: auto !important;
  height: 40px;
  line-height: 40px;
  border: thin solid #d1d1d1;
  font-size: 14px;
  text-align: left;
  color: #53565a;
  background: #fff;
  transition: all 0.2s;
}
.ui-selectmenu-button::-moz-placeholder {
  color: #292C2D;
}
.ui-selectmenu-button::placeholder {
  color: #292C2D;
}
.ui-selectmenu-button .ui-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #292C2D;
}
.ui-selectmenu-button:hover .ui-icon {
  border-top-color: #032165;
}
.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;
}

.grid-block .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -42px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .grid-block .slideshow-button {
    display: none;
  }
}
.grid-block .slideshow-button:hover {
  border-color: #032165;
}
.grid-block .slideshow-button.previous {
  left: 72px;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .grid-block .slideshow-button.previous {
    left: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .grid-block .slideshow-button.previous {
    left: 16px;
  }
}
.grid-block .slideshow-button.next {
  right: 72px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .grid-block .slideshow-button.next {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .grid-block .slideshow-button.next {
    right: 16px;
  }
}

.grid-element {
  position: relative;
  width: 50%;
  flex-shrink: 0;
}
@media only screen and (min-width: 1340px) {
  .grid-element {
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .grid-element {
    width: 100%;
  }
}
.grid-element:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.grid-element .grid-element-item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.grid-element .grid-element-item.has-video:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  height: 28px;
  width: 40px;
  background: url("../images/sprite.svg") -100px 0 no-repeat;
}
.grid-element.count-1:last-child:nth-child(odd) {
  width: 100%;
}
.grid-element.count-1:last-child:nth-child(odd):after {
  padding-bottom: 50%;
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-2 .grid-element-item:first-child {
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-2 .grid-element-item:nth-child(2) {
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-3 .grid-element-item:first-child {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-3 .grid-element-item:nth-child(2) {
    top: 50%;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-3 .grid-element-item:nth-child(3) {
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-4 .grid-element-item:first-child {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-4 .grid-element-item:nth-child(2) {
    top: 0;
    left: 50%;
    height: 50%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-4 .grid-element-item:nth-child(3) {
    top: 50%;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-element.count-4 .grid-element-item:nth-child(4) {
    top: 50%;
    left: 50%;
    height: 50%;
    width: 50%;
  }
}

@media only screen and (max-width: 1339px) {
  .grid-list {
    display: flex;
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-list .grid-element:nth-child(4n+1) {
    float: left;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-list .grid-element:nth-child(4n+2) {
    float: right;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-list .grid-element:nth-child(4n+3) {
    float: right;
  }
}
@media only screen and (min-width: 1340px) {
  .grid-list .grid-element:nth-child(4n+4) {
    float: left;
  }
}

.list-item-0 {
  overflow: hidden;
  background: #173b3e;
  color: #fff;
}
.list-item-0 .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 600ms;
}
.list-item-0 .thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-item-0 .thumbnail:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  transition: opacity 350ms ease-in-out;
  opacity: 0;
}
.list-item-0 .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
@media only screen and (min-width: 1340px) {
  .list-item-0 .content {
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
}
.list-item-0 .content-hidden {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  max-height: 0;
  transition: max-height 500ms ease-in;
}
.list-item-0 .title {
  font: bold 26px/28px "AstoriaSans", sans-serif;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.list-item-0 .title a {
  color: inherit;
  text-decoration: none;
}
.list-item-0 p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 22px;
}
.list-item-0 .price {
  font: bold 20px/18px "AstoriaSans", sans-serif;
}
.list-item-0 .promo-button,
.list-item-0 .button {
  display: inline-block;
  height: 46px;
  background: #032165;
  font: bold 12px/46px "AstoriaSans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  min-width: 170px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  border: 0;
}
.list-item-0 .promo-button:hover,
.list-item-0 .button:hover {
  color: #032165;
  background: #fff;
}

.list-item-0:hover .thumbnail {
  transform: scale(1);
}
.list-item-0:hover .thumbnail:after {
  opacity: 1;
}
.list-item-0:hover .content-hidden {
  max-height: 500px;
}

.list-item-1 {
  position: relative;
  overflow: hidden;
  width: 33.3%;
  height: 480px;
  background: #F7F6F4;
}
.list-item-1 .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 600ms;
  margin: 0;
}
.list-item-1 .thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-item-1 .description {
  position: absolute;
  top: 60px;
  left: 40px;
  right: 40px;
  text-align: left;
}
.list-item-1 .description .date {
  margin-bottom: 8px;
  font: 500 14px/12px "AstoriaSans", sans-serif;
  color: #ffffff;
}
.list-item-1 .description .title {
  font: 500 18px/20px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.list-item-1 .read-more {
  font: 700 12px/60px "AstoriaSans", sans-serif;
  right: 0;
  bottom: 0;
  position: absolute;
}
.list-item-1 .read-more:hover {
  border: #032165;
  background: #032165;
  color: #ffffff;
}
.list-item-1:hover .thumbnail {
  transform: scale(1);
}

.list-item-2 {
  background: #F7F6F4;
  position: relative;
  height: 480px;
  white-space: normal;
  overflow: hidden;
}
.list-item-2 .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: 50% 50%;
  background-size: cover;
}
.list-item-2 .thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.list-item-2 .content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 40px;
  text-align: center;
}
.list-item-2 .content h4 {
  margin-bottom: 20px;
  font: 500 28px/34px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 0px 20px;
}
.list-item-2 .content .nav {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
.list-item-2 .content .nav .button {
  padding: 0 25px;
  margin: 0 10px 20px;
  min-width: 140px;
}

.list-item-3 {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.list-item-3 .thumbnail {
  position: relative;
  height: 100%;
  width: 100%;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.8;
}
.list-item-3 .thumbnail:before {
  content: "";
  display: block;
  height: 0;
  padding-bottom: 69.56%;
}
.list-item-3 .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
@media only screen and (min-width: 1340px) {
  .list-item-3 .content {
    padding: 60px;
  }
}
.list-item-3 .content h4 {
  font-size: 1.46vw;
  font-weight: 700;
  font-family: "AstoriaSans", sans-serif;
  line-height: 1.21;
  text-transform: uppercase;
  margin-bottom: 13px;
}
@media (max-width: 1232.8767123288px) {
  .list-item-3 .content h4 {
    font-size: 18px;
  }
}
@media (min-width: 1917.8082191781px) {
  .list-item-3 .content h4 {
    font-size: 28px;
  }
}

.grid-gallery-block .gallery-button-wrapper {
  display: flex;
  justify-content: center;
}
.grid-gallery-block .view-full-gallery {
  margin-top: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fcf0d7;
  color: #fff;
}
.gallery-item .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 600ms;
  float: none;
  margin: 0;
}
.gallery-item .thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}
.gallery-item .content {
  position: relative;
  text-align: center;
  padding: 20px;
}
@media only screen and (min-width: 1340px) {
  .gallery-item .content {
    padding: 40px;
  }
}
.gallery-item .content .title {
  display: block;
  font-size: 3.13vw;
  font-weight: 700;
  line-height: 1.11;
  font-family: "AstoriaSans", sans-serif;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: inherit;
}
@media (max-width: 958.4664536741px) {
  .gallery-item .content .title {
    font-size: 30px;
  }
}
@media (min-width: 1916.9329073482px) {
  .gallery-item .content .title {
    font-size: 60px;
  }
}
.gallery-item .content button {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-size: 0;
}

.gallery-item:hover .thumbnail {
  transform: scale(1);
}

.slideshow {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.slide {
  position: relative;
  overflow: hidden;
}
.slideshow.t1 .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  text-indent: -100em;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .slideshow.t1 .slideshow-button {
    display: none;
  }
}
.slideshow.t1 .slideshow-button:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -7px;
  border: 1px solid #032165;
  border-bottom: 0;
  border-left: 0;
  transition: border-color 350ms ease-in-out;
}
.slideshow.t1 .slideshow-button.previous {
  left: -11px;
}
.slideshow.t1 .slideshow-button.previous:after {
  transform: rotate(-135deg);
  left: 32px;
}
.slideshow.t1 .slideshow-button.next {
  right: -11px;
}
.slideshow.t1 .slideshow-button.next:after {
  transform: rotate(45deg);
  right: 32px;
}
.slideshow.t1 .slideshow-button:hover:after {
  border-color: #032165;
}
.slideshow.t2, .slideshow.t3 {
  overflow: visible;
}
.slideshow.t2::before, .slideshow.t2::after, .slideshow.t3::before, .slideshow.t3::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  width: 9999px;
  height: 100%;
  background: #FFFFFF;
  opacity: 0.9;
  text-indent: -100em;
  overflow: hidden;
}
.slideshow.t2::before, .slideshow.t3::before {
  right: 100%;
}
.slideshow.t2::after, .slideshow.t3::after {
  left: 100%;
}
.slideshow.t2 .slideshow-button, .slideshow.t3 .slideshow-button {
  content: "";
  position: absolute;
  z-index: 21;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  border: 1px solid #032165;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
}
.slideshow.t2 .slideshow-button.previous, .slideshow.t3 .slideshow-button.previous {
  left: -230px;
  transform: rotate(-135deg);
}
.slideshow.t2 .slideshow-button.next, .slideshow.t3 .slideshow-button.next {
  right: -230px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1809px) {
  .slideshow.t2 .slideshow-button.previous, .slideshow.t3 .slideshow-button.previous {
    left: auto;
    right: 100%;
  }
  .slideshow.t2 .slideshow-button.next, .slideshow.t3 .slideshow-button.next {
    right: auto;
    left: 100%;
  }
}
@media only screen and (max-width: 1479px) {
  .slideshow.t2 .slideshow-button.previous, .slideshow.t3 .slideshow-button.previous {
    left: 20px;
    right: auto;
  }
  .slideshow.t2 .slideshow-button.next, .slideshow.t3 .slideshow-button.next {
    right: 20px;
    left: auto;
  }
  .slideshow.t2 .slideshow-button.previous, .slideshow.t2 .slideshow-button.next, .slideshow.t3 .slideshow-button.previous, .slideshow.t3 .slideshow-button.next {
    border-color: #FFFFFF;
  }
  .slideshow.t2 .slideshow-button.previous:hover, .slideshow.t2 .slideshow-button.next:hover, .slideshow.t3 .slideshow-button.previous:hover, .slideshow.t3 .slideshow-button.next:hover {
    border-color: #032165;
  }
}
@media only screen and (max-width: 767px) {
  .slideshow.t2 .slideshow-button.previous, .slideshow.t2 .slideshow-button.next, .slideshow.t3 .slideshow-button.previous, .slideshow.t3 .slideshow-button.next {
    display: none;
  }
}
.slideshow.t2 .slideshow-button:hover, .slideshow.t3 .slideshow-button:hover {
  border-color: #032165;
}
.slideshow.t3::before, .slideshow.t3::after {
  opacity: 1;
}
.slideshow.t3 .slideshow-button.previous {
  left: -168px;
}
.slideshow.t3 .slideshow-button.next {
  right: -168px;
}
@media only screen and (max-width: 1679px) {
  .slideshow.t3 .slideshow-button.previous {
    left: auto;
    right: 100%;
  }
  .slideshow.t3 .slideshow-button.next {
    right: auto;
    left: 100%;
  }
}
@media only screen and (max-width: 1479px) {
  .slideshow.t3 .slideshow-button.previous {
    left: 20px;
    right: auto;
  }
  .slideshow.t3 .slideshow-button.next {
    right: 20px;
    left: auto;
  }
  .slideshow.t3 .slideshow-button.previous, .slideshow.t3 .slideshow-button.next {
    border-color: #FFFFFF;
  }
  .slideshow.t3 .slideshow-button.previous:hover, .slideshow.t3 .slideshow-button.next:hover {
    border-color: #032165;
  }
}
@media only screen and (max-width: 767px) {
  .slideshow.t3 .slideshow-button.previous, .slideshow.t3 .slideshow-button.next {
    display: none;
  }
}

.slideshow-pagination {
  position: absolute;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .slideshow-pagination {
    display: none;
  }
}
.slideshow-pagination.vertical {
  right: 20px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.slideshow-pagination.vertical .swiper-pagination-bullet:not(:last-child) {
  margin-bottom: 9px;
}
.slideshow-pagination.horizontal {
  right: 8px;
  bottom: 8px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .slideshow-pagination.horizontal {
    display: none;
  }
}
.slideshow-pagination.horizontal .swiper-pagination-bullet:not(:last-child) {
  margin-right: 9px;
}
.slideshow-pagination .swiper-pagination-bullet {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0;
  text-indent: -9999px;
  overflow: hidden;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
.slideshow-pagination .swiper-pagination-bullet:hover, .slideshow-pagination .swiper-pagination-bullet.active {
  background: #FFFFFF;
}

#header .logo .brand-logo.active {
  width: 100%;
}
#header .logo .brand-logo.active > a {
  max-width: 100%;
  opacity: 1;
  margin-right: 0.5rem;
}
#header .logo .brand-logo.active > .arrow {
  transform: rotate(180deg);
  margin-left: 310px;
  transition: margin 0.6s ease 0s, transform 0.8s 0.7s;
}
@media only screen and (min-width: 1800px) {
  #header .logo .brand-logo.active > .arrow {
    margin-left: 370px;
  }
}
#header .logo .brand-logo.active img {
  opacity: 1;
}
@media only screen and (max-width: 979px) {
  #header .booking-close-button {
    display: none;
  }
}
html.booking-visible #header .booking-close-button {
  display: block;
}

#main-menu li > a.active, #main-menu li:focus-within > a, #main-menu li.expanded > a {
  color: #032165;
}
#main-menu ul li:hover ul.dropdown {
  visibility: visible;
  opacity: 1;
  display: block;
}
#main-menu ul li.expanded ul.dropdown {
  visibility: visible;
  opacity: 1;
  display: block;
}
#main-menu ul li ul.dropdown {
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  min-width: 14rem;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
  left: 0;
  display: none;
}
#main-menu ul li ul.dropdown li {
  margin-left: 0 !important;
  padding: 0.7rem;
}
#main-menu ul li ul.dropdown li a {
  cursor: pointer;
  color: #fff;
}
#main-menu ul li ul.dropdown li a:hover, #main-menu ul li ul.dropdown li a.active {
  color: #032165;
}

#main-content .page-content-breadcrumb {
  margin-bottom: 17px;
}
#main-content #content-submenu {
  order: 2;
  padding-left: 120px;
  width: 460px;
  flex-shrink: 0;
}
#main-content .page-content-form-content:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #main-content .page-content-form-content {
    display: flex;
    flex-direction: column;
  }
  #main-content .page-content-form-content > * {
    order: -1;
  }
}
#main-content .page-content-form {
  float: right;
  width: 50%;
  min-width: 360px;
  margin: 0 0 20px 20px;
  padding: 20px 20px 5px;
  border: none;
  background-color: #F7F6F4;
}
@media only screen and (max-width: 979px) {
  #main-content .page-content-form {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #main-content .page-content-form {
    order: 1;
    float: none;
    width: 100%;
    min-width: 0;
    margin: 0 0 20px;
  }
}
#main-content .page-content-form:last-child {
  float: none;
  width: 100%;
  min-width: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #main-content .page-content-form:last-child {
    margin: 0;
  }
}

.breadcrumb-list {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-list {
    display: none;
  }
}
.breadcrumb-list a {
  text-decoration: none;
  color: inherit;
}
.breadcrumb-list a:hover {
  color: #032165;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  font-family: "AstoriaSans", sans-serif;
  font-size: 13px;
  line-height: 16px;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
.breadcrumb-list li:hover, .breadcrumb-list li:focus {
  color: #032165;
}
.breadcrumb-list span.divider {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 24px;
  margin: 0 10px;
  overflow: hidden;
}
.breadcrumb-list span.divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-20deg);
  height: 100%;
  width: 1px;
  background-color: #999da0;
}

@media only screen and (max-width: 979px) {
  #content-submenu {
    display: none;
  }
}
#content-submenu .submenu-root {
  display: block;
  font-size: 1.88vw;
  margin-top: calc(-1.88vw - 30px);
  font-family: "AstoriaSans", sans-serif;
  font-weight: 300;
  line-height: 1.278;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 19px;
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
@media (max-width: 1117.0212765957px) {
  #content-submenu .submenu-root {
    font-size: 21px;
  }
}
@media (min-width: 1914.8936170213px) {
  #content-submenu .submenu-root {
    font-size: 36px;
  }
}
#content-submenu .submenu-root:hover #content-submenu .submenu-root:focus {
  color: #032165;
}
#content-submenu ul ul {
  margin: 10px 20px;
}
#content-submenu li a {
  font-size: 15px;
  line-height: 2;
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
#content-submenu li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 3px;
  height: 3px;
  margin-right: 10px;
  background: #90705c;
  border-radius: 100%;
}
#content-submenu li a.active {
  color: #3D3935;
}
#content-submenu li a:hover {
  color: #595959;
}

@media only screen and (max-width: 767px) {
  html.side-navigation-visible {
    overflow: hidden;
  }
}
#side-navigation {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: -100%;
  top: 0;
  padding-top: 150px;
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.7);
  transition: right 200ms;
  text-align: center;
  z-index: 98;
}
@media only screen and (min-width: 1340px) {
  #side-navigation {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #side-navigation {
    padding-top: 130px;
  }
}
.side-navigation-visible #side-navigation {
  right: 0;
  visibility: visible;
  opacity: 1;
}
#side-navigation .top-menu {
  z-index: 4;
  position: relative;
  top: auto;
  right: auto;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #side-navigation .top-menu {
    max-width: 60%;
  }
}
#side-navigation .top-menu a {
  display: block;
  padding: 4px 40px;
  font: 700 16px/30px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
#side-navigation .top-menu a:hover, #side-navigation .top-menu a.active {
  color: #032165;
}
#side-navigation .main-menu {
  position: relative;
  max-width: 40%;
  margin: 0 auto;
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  #side-navigation .main-menu {
    max-width: 85%;
  }
}
#side-navigation .main-menu .menu li {
  position: relative;
}
#side-navigation .main-menu .menu a {
  display: block;
  padding: 4px 40px;
}
#side-navigation .main-menu .menu.level-1 {
  padding-top: 25px;
}
#side-navigation .main-menu .menu.level-1 > li > a {
  font: 700 16px/30px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
#side-navigation .main-menu .menu.level-1 > li > a:hover, #side-navigation .main-menu .menu.level-1 > li > a.active {
  color: #032165;
}
#side-navigation .main-menu .menu.level-1 > li > .plus {
  top: 4px;
}
#side-navigation .main-menu .menu.submenu {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 222ms cubic-bezier(0, 1, 0, 1), padding 333ms;
}
#side-navigation .main-menu .menu.submenu a {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: #fff;
}
#side-navigation .main-menu .menu.submenu a:hover, #side-navigation .main-menu .menu.submenu a.active {
  color: #032165;
}
#side-navigation .main-menu .parent.expanded > .submenu {
  max-height: 800px;
  padding: 10px 0;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms;
}
#side-navigation .main-menu .plus {
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
#side-navigation .main-menu .plus .horizontal, #side-navigation .main-menu .plus .vertical {
  position: absolute;
  transition: all 333ms ease-in-out;
  transform: rotate(-90deg);
  background-color: #fff;
}
#side-navigation .main-menu .plus .horizontal {
  width: 8px;
  height: 2px;
  margin-left: 12px;
  margin-top: 15px;
}
#side-navigation .main-menu .plus .vertical {
  width: 2px;
  height: 8px;
  margin-left: 15px;
  margin-top: 12px;
}
#side-navigation .main-menu .parent.expanded > .plus > .vertical, #side-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: rotate(90deg);
  background: #032165 !important;
}
#side-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#side-navigation .main-menu .menu.submenu .plus {
  top: 0;
}

@media only screen and (max-width: 767px) {
  html.booking-visible {
    overflow: hidden;
  }
}
#booking {
  display: block;
  position: fixed;
  top: -800px;
  right: 0px;
  min-height: 455px;
  height: auto;
  width: 510px;
  border-top-right-radius: 0;
  padding: 160px 40px 30px 40px;
  box-sizing: border-box;
  background: #FFFFFF;
  z-index: 98;
  transition: transform 350ms ease-in-out, visibility 350ms ease-in-out, top 350ms ease-in-out;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.5);
}
html.booking-visible #booking {
  top: 0px;
}
@media only screen and (max-width: 979px) {
  #booking {
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    transform: scale(1);
    border-radius: 0;
    padding: 150px 20px 30px 20px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition: none;
    z-index: 999;
    box-shadow: none;
  }
  html.booking-visible #booking {
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  #booking {
    padding-top: 130px;
  }
}
#booking form {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
#booking form.active {
  height: auto;
  opacity: 1;
  visibility: visible;
}
#booking .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
#booking .column {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
#booking .column.column-50 {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 767px) {
  #booking .column.column-50 {
    width: 100%;
  }
}
#booking .column.column-33 {
  width: calc(33.3% - 10px);
}
@media only screen and (max-width: 767px) {
  #booking .column.column-33 {
    width: 100%;
  }
}
#booking .column.controls {
  text-align: right;
  margin-bottom: 0;
}
@media only screen and (max-width: 979px) {
  #booking .column.controls {
    text-align: center;
  }
}
#booking input[type=text],
#booking input[type=date],
#booking select,
#booking .input-overlay {
  display: block;
  height: 30px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #979797;
  font: 700 15px/30px "AstoriaSans", sans-serif;
  color: #3D3935;
  text-transform: uppercase;
}
#booking .input-overlay {
  opacity: 0;
  margin-top: -25px;
}
#booking .ui-datepicker-trigger {
  display: none;
}
#booking .select-wrapper {
  width: 100%;
  display: block;
}
#booking select {
  width: 100%;
}
#booking button[type=submit] {
  margin-bottom: 20px;
  width: 100%;
  font-family: "AstoriaSans", sans-serif;
  font-size: 16px;
  line-height: 60px;
}
#booking button[type=submit]:hover {
  background-color: #FFFFFF;
}
#booking .phone {
  font: 700 16px/19px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #032165;
}
#booking .phone span {
  font-weight: 300;
}
#booking .phone a {
  text-decoration: none;
}
#booking .close {
  display: none;
  position: relative;
  height: 30px;
  width: 30px;
  margin: 0 auto 30px;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media only screen and (max-width: 979px) {
  #booking .close {
    display: block;
  }
}
#booking .close span {
  background: transparent;
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
}
#booking .close span:before, #booking .close span:after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  position: absolute;
  left: -3px;
  background: #032165;
  transition: 350ms ease-in-out;
}
#booking .close span:before {
  top: -1px;
  transform: rotate(45deg);
}
#booking .close span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

#booking-datepicker {
  display: none;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 7;
  width: 100%;
}
#booking-datepicker.visible {
  display: block;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker {
    display: block;
    position: relative;
    bottom: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease-in-out;
  }
  #booking-datepicker.visible {
    max-height: 500px;
    margin-bottom: 20px;
  }
}
#booking-datepicker .livechat-container {
  height: 62px;
  padding-top: 10px;
  box-sizing: border-box;
  border-top: 1px solid #edf2f5;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
}
#booking-datepicker .livechat {
  font: 500 12px/30px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  color: #032165;
}
#booking-datepicker .livechat:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  height: 30px;
  width: 30px;
  margin-right: 10px;
  background: url("../images/sprite.svg") -50px 0 no-repeat;
}
#booking-datepicker .ui-datepicker {
  max-width: 100%;
  width: 100% !important;
  white-space: nowrap;
  padding: 26px 43px 65px;
}
#booking-datepicker .ui-datepicker-group {
  display: inline-block;
  white-space: normal;
}
#booking-datepicker .ui-datepicker-group:nth-child(2) {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-group {
    width: 100%;
  }
  #booking-datepicker .ui-datepicker-group:nth-child(2) {
    display: none;
  }
}
#booking-datepicker .ui-datepicker-header .ui-datepicker-prev,
#booking-datepicker .ui-datepicker-header .ui-datepicker-next {
  display: none;
}
#booking-datepicker .ui-datepicker-prev,
#booking-datepicker .ui-datepicker-next {
  top: 25px;
}
#booking-datepicker .ui-datepicker-prev {
  left: 50px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-prev {
    left: 26px;
  }
}
#booking-datepicker .ui-datepicker-next {
  right: 50px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-next {
    right: 26px;
  }
}
#booking-datepicker.checkin-step td, #booking-datepicker.checkout-step td,
#booking-datepicker td.checkin-date,
#booking-datepicker td.checkout-date {
  position: relative;
}
#booking-datepicker.checkin-step td span.datepicker-in,
#booking-datepicker.checkin-step td span.datepicker-out, #booking-datepicker.checkout-step td span.datepicker-in,
#booking-datepicker.checkout-step td span.datepicker-out,
#booking-datepicker td.checkin-date span.datepicker-in,
#booking-datepicker td.checkin-date span.datepicker-out,
#booking-datepicker td.checkout-date span.datepicker-in,
#booking-datepicker td.checkout-date span.datepicker-out {
  position: absolute;
  left: 0;
  bottom: 100%;
  display: none;
  width: 100%;
  height: 14px;
  margin-bottom: 1px;
  background-color: #000000;
  font-size: 7px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFFFFF;
}
#booking-datepicker.checkin-step td a:hover ~ span.datepicker-in,
#booking-datepicker td.checkin-date > span.datepicker-in {
  display: block;
}
#booking-datepicker.checkout-step td:not(.checkin-date) a:hover ~ span.datepicker-out,
#booking-datepicker td.checkout-date > span.datepicker-out {
  display: block;
}

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

#promos {
  position: relative;
  overflow: visible;
}
#promos .slideshow-wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.promo-carousel .slideshow {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .promo-carousel .slideshow {
    padding: 0;
  }
}
.promo-carousel .slideshow-wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.promo-carousel .slide {
  width: 25vw;
  background: #F7F6F4;
}
.promo-carousel .slide:after {
  content: "";
  display: block;
  padding-bottom: 100%;
  height: 0;
}
.promo-carousel .slide .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 600ms;
}
.promo-carousel .slide .thumbnail:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.promo-carousel .slide .thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #032165;
  border-bottom-color: #032165;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.promo-carousel .slide .thumbnail .loading:before {
  top: 8%;
  right: 8%;
  left: auto;
  margin: auto;
}
.promo-carousel .slide .content {
  position: absolute;
  top: 60px;
  left: 20px;
  width: 180px;
  bottom: 60px;
}
@media only screen and (min-width: 1340px) {
  .promo-carousel .slide .content {
    top: 100px;
    left: 40px;
    bottom: 120px;
  }
}
.promo-carousel .slide .content h4 {
  color: #fff;
  font-size: 1.46vw;
  font-weight: 700;
  font-family: "AstoriaSans", sans-serif;
  line-height: 1.21;
  text-transform: uppercase;
}
@media (max-width: 1232.8767123288px) {
  .promo-carousel .slide .content h4 {
    font-size: 18px;
  }
}
@media (min-width: 1917.8082191781px) {
  .promo-carousel .slide .content h4 {
    font-size: 28px;
  }
}
.promo-carousel .slide .content .price {
  position: absolute;
  bottom: 0;
  font-size: 1.04vw;
  font-weight: 700;
  font-family: "AstoriaSans", sans-serif;
  line-height: 0.9;
  color: #032165;
}
@media (max-width: 1442.3076923077px) {
  .promo-carousel .slide .content .price {
    font-size: 15px;
  }
}
@media (min-width: 1923.0769230769px) {
  .promo-carousel .slide .content .price {
    font-size: 20px;
  }
}
.promo-carousel .slide .read-more {
  font: 700 12px/60px "AstoriaSans", sans-serif;
  right: 0;
  bottom: 0;
  position: absolute;
}
.promo-carousel .slide .read-more:hover {
  border: #032165;
  background: #032165;
  color: #ffffff;
}
.promo-carousel .slide:hover .thumbnail {
  transform: scale(1);
}

#top-banner {
  position: fixed;
  top: -90px;
  width: 100%;
  min-height: 90px;
  box-sizing: border-box;
  transition: top 0.3s ease-out, opacity 0.3s ease-out;
  background: #F7F6F4;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner {
    min-height: 170px;
  }
}
#top-banner .center-column {
  position: relative;
  overflow: hidden;
  min-height: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .center-column {
    min-height: 170px;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner {
    padding: 0;
  }
}
.admin .preview-item #top-banner {
  height: 270px;
  padding: 0;
  position: relative;
  opacity: 1;
}
#top-banner .info,
#top-banner .description {
  height: 90px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .info,
  #top-banner .description {
    height: 170px;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .info,
  #top-banner .description {
    height: 90px;
  }
}
#top-banner .description {
  margin-right: 400px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .description {
    margin-left: 20px;
    margin-right: 520px;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .description {
    margin: 0 0px;
  }
}
#top-banner .description .h2 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 2%;
  margin-bottom: 7px;
  color: #3D3935;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .description .h2 {
    font-size: 28px;
    line-height: 28px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .description .h2 {
    font-size: 22px;
    line-height: 22px;
    margin-top: 15px;
  }
}
#top-banner .description p {
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .description p {
    font-size: 18px;
    line-height: 25px;
    -webkit-line-clamp: 4;
    font-weight: 300;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .description p {
    font-size: 14px;
    line-height: 18px;
  }
}
#top-banner .info {
  width: 410px;
  padding-left: 210px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .info {
    padding-left: 0;
    width: 495px;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .info {
    position: relative;
    margin: 0;
    margin-left: 50%;
    width: 50%;
    height: 75px;
    overflow: visible;
    padding-left: 19px;
    margin-bottom: 15px;
  }
}
#top-banner .image {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .image {
    position: absolute;
    width: 260px;
    right: 0;
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .image {
    display: inline-block;
    width: 100%;
  }
}
#top-banner .image:after {
  content: "";
  position: absolute;
  top: -145px;
  left: -55px;
  height: 220px;
  width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
#top-banner .link {
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .link {
    position: relative;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .link {
    position: absolute;
    left: -109%;
  }
}
#top-banner .link a {
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 30px;
  overflow: visible;
  font: 14px/40px "AstoriaSans", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  border: 1px solid #032165;
  color: #032165;
  text-transform: uppercase;
  -moz-text-align-last: auto;
       text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: color 100ms, background-color 100ms, border-color 100ms;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .link a {
    font: 19px/46px "AstoriaSans", sans-serif;
  }
}
@media only screen and (max-width: 767px) {
  #top-banner .link a {
    font: 15px/36px "AstoriaSans", sans-serif;
    left: 15px;
  }
}
@media only screen and (max-width: 449px) {
  #top-banner .link a {
    font-size: 10px;
  }
}
#top-banner .close {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  background-color: #032165;
  font-size: 20px;
  line-height: 22px;
  width: 22px;
  height: 22px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #top-banner .close {
    font-size: 25px;
    line-height: 28px;
    width: 28px;
    height: 28px;
    font-weight: 100;
  }
}

html.top-banner-enabled #top-banner {
  opacity: 1;
  z-index: 999;
  top: 0px;
}
html.top-banner-enabled #content-wrapper {
  padding-top: 210px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  html.top-banner-enabled #content-wrapper {
    padding-top: 290px;
  }
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled #content-wrapper {
    padding-top: 235px;
  }
}
html.top-banner-enabled #header {
  top: 90px;
  transition: top 0.3s ease-out;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  html.top-banner-enabled #header {
    top: 170px;
  }
}
@media only screen and (max-width: 767px) {
  html.top-banner-enabled #header {
    top: 180px;
  }
}

@media only screen and (max-width: 767px) {
  html.side-navigation-visible #header, html.booking-visible #header {
    top: 0;
    z-index: 9999;
  }
}

html.top-banner-enabled.booking-visible #booking {
  top: 90px;
}

.promo-i a {
  text-decoration: none;
}
@media only screen and (max-height: 768px) {
  .promo-i .caption {
    bottom: 50% !important;
  }
}
.promo-i .caption {
  bottom: 60% !important;
}
@media only screen and (max-width: 767px) {
  .promo-i .caption {
    transform: translate(-50%, 0%) !important;
    bottom: 50% !important;
  }
}
.promo-i .counter > div {
  width: 72px;
  display: inline-block;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .promo-i .counter > div {
    margin-left: 10px;
    width: 58px;
  }
}
.promo-i .counter > div:first-child {
  margin-left: 0;
}
.promo-i .counter .value {
  background-color: #435c63;
}
.promo-i .counter .value span {
  margin: 0 !important;
  color: #fff;
  text-shadow: none;
  font: 900 36px/80px "Roboto" !important;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .promo-i .counter .value span {
    font: 900 30px/65px "Roboto" !important;
  }
}
.promo-i .counter .text {
  color: #435c63;
  text-decoration: none;
  text-shadow: none;
  font-weight: 700;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .promo-i .counter .text {
    font-size: 12px;
  }
}

#home-events {
  position: relative;
  overflow: hidden;
  margin: 40px auto;
  text-align: center;
  padding-bottom: 25px;
}
#home-events .slideshow {
  text-align: center;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #home-events .slideshow {
    padding: 0;
  }
}
#home-events .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#home-events .event {
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: calc(25% - 20px);
  height: 520px;
  overflow: hidden;
  background: #F7F6F4;
}
#home-events .event .thumbnail {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 300px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 23px;
}
#home-events .event .thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #032165;
  border-bottom-color: #032165;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#home-events .event h4, #home-events .event .h4 {
  font: 24px/26px "AstoriaSans", sans-serif;
  color: #3D3935;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  #home-events .event h4, #home-events .event .h4 {
    font-size: 20px;
  }
}
#home-events .event h4 a, #home-events .event .h4 a {
  color: inherit;
  text-decoration: none;
}
#home-events .event p {
  font-size: 14px;
  line-height: 18px;
  color: #71686A;
}
#home-events .event .copy {
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #home-events .event .copy {
    padding: 0 10px;
  }
}
#home-events .event .date {
  position: absolute;
  bottom: 44px;
  left: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  #home-events .event .date {
    left: 10px;
    right: 10px;
  }
}
#home-events .event .date a {
  text-decoration: none;
}

#resort-map {
  background: #F7F6F4;
  display: flex;
  flex-shrink: 0;
  height: 840px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.poi-map + #resort-map {
  transform: translateX(100%);
  position: absolute;
  top: 0;
  transition: transform 350ms ease-in-out;
}
.poi-map + #resort-map.visible {
  transform: translateX(0);
}
@media only screen and (max-width: 979px) {
  #resort-map {
    padding-top: 120px;
    height: 100%;
  }
}
#resort-map .resortmap-canvas-wrapper {
  overflow: hidden;
  position: relative;
}
#resort-map .accommodations-block {
  background: #F7F6F4;
  box-sizing: border-box;
  color: #71686A;
  height: 100%;
  padding: 6vw 2.5vw calc(6vw + 80px);
  position: relative;
}
#resort-map .accommodations-block h2 {
  color: #71686A;
  font: 300 36px/1 "AstoriaSans", sans-serif;
  font-size: 2vw;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  #resort-map .accommodations-block h2 {
    font-size: 24px;
  }
}
@media (min-width: 1800px) {
  #resort-map .accommodations-block h2 {
    font-size: 36px;
  }
}
#resort-map .accommodations-block ul {
  margin: 0 30px 0;
}
#resort-map .accommodations-block ul ul {
  margin: 0 0 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease-in-out;
}
#resort-map .accommodations-block li {
  padding-left: 10px;
  position: relative;
}
#resort-map .accommodations-block li.parent > a:after {
  color: #032165;
  content: "+";
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
}
#resort-map .accommodations-block li:before {
  background-color: #71686A;
  position: absolute;
  left: 0;
  top: 11px;
}
#resort-map .accommodations-block li.parent.expanded > a:after {
  content: "-";
}
#resort-map .accommodations-block li.parent.expanded ul {
  max-height: 400px;
}
#resort-map .accommodations-block li.active:not(.parent):before {
  background-color: #032165;
}
#resort-map .accommodations-block a {
  color: #71686A;
  display: block;
  text-decoration: none;
}
#resort-map .accommodations-block a:hover {
  text-decoration: underline;
}
#resort-map .accommodations-block a.active {
  color: #032165;
}
#resort-map .accommodations-block .button {
  background: transparent;
  border-color: #3D3935;
  bottom: 6vw;
  color: #3D3935;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
#resort-map .accommodations-block .button:hover {
  background-color: #3D3935;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 979px) {
  #resort-map .accommodations-block {
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
  }
  #resort-map .accommodations-block h2 {
    background-color: #fff;
    border-bottom: 1px solid #EFEFEF;
    margin: 0;
    line-height: 20px;
    padding: 20px;
  }
  #resort-map .accommodations-block h2:after {
    border: 1px solid #032165;
    border-right: 0;
    border-top: 0;
    box-sizing: border-box;
    content: "";
    display: block;
    float: right;
    height: 10px;
    transform: rotate(-45deg);
    transition: transform 350ms ease-in-out;
    width: 10px;
  }
  #resort-map .accommodations-block h2.active:after {
    transform: rotate(-225deg);
  }
  #resort-map .accommodations-block .button {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }
  #resort-map .accommodations-block .nav {
    background: #fff;
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transition: max-height 350ms ease-in-out;
    width: 100%;
    z-index: 10;
  }
  #resort-map .accommodations-block .nav.expanded {
    max-height: 1000px;
  }
  #resort-map .accommodations-block ul {
    background: #fff;
    margin: 0;
  }
  #resort-map .accommodations-block ul:nth-child(2n+1) {
    background-color: #F7F7F7;
  }
  #resort-map .accommodations-block ul ul {
    margin: 0;
  }
  #resort-map .accommodations-block ul ul li {
    background-color: #3D3935;
  }
  #resort-map .accommodations-block ul ul li:nth-child(2n) {
    background-color: #435F67;
  }
  #resort-map .accommodations-block ul ul a {
    color: #fff;
    text-transform: none;
  }
  #resort-map .accommodations-block ul li {
    padding: 0;
  }
  #resort-map .accommodations-block ul li:before {
    display: none;
  }
  #resort-map .accommodations-block ul a {
    line-height: 20px;
    padding: 20px 20px 20px 20px;
    text-transform: uppercase;
  }
  #resort-map .accommodations-block ul a:after {
    float: right;
  }
}
#resort-map .legend-block {
  bottom: 0;
  color: #fff;
  -moz-column-count: 3;
       column-count: 3;
  font-size: 13px;
  overflow: hidden;
  padding: 35px;
  position: absolute;
  pointer-events: none;
  text-align: right;
  transition: right 350ms ease-in-out;
  right: 0;
  z-index: 2;
  width: 80%;
  background: #3D3935;
}
@media only screen and (min-width: 1340px) {
  #resort-map .legend-block {
    -moz-column-count: 2;
         column-count: 2;
    width: 45%;
  }
}
@media screen and (max-width: 1024px) {
  #resort-map .legend-block {
    -moz-column-count: 4;
         column-count: 4;
    width: 90%;
  }
}
#resort-map .legend-block dl {
  position: relative;
  z-index: 1;
}
#resort-map .legend-block dl li {
  line-height: 1;
  padding-bottom: 5px;
}
#resort-map .legend-block dl li:before {
  content: "•";
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#resort-map .legend-block dt {
  color: #032165;
  font-weight: bold;
  text-transform: uppercase;
}
#resort-map .legend-block a {
  position: relative;
  color: #fff;
  line-height: 1;
  padding-bottom: 5px;
  pointer-events: auto;
  text-decoration: none;
}
#resort-map .legend-block a.active, #resort-map .legend-block a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 979px) {
  #resort-map .legend-block {
    background-color: #fff;
    height: 100%;
    -moz-column-count: 1;
         column-count: 1;
    padding: 0 0 100px;
    pointer-events: all;
    position: absolute;
    right: -100%;
    text-align: left;
    width: 100%;
  }
  #resort-map .legend-block.visible {
    right: 0;
  }
  #resort-map .legend-block:before, #resort-map .legend-block:after {
    display: none;
  }
  #resort-map .legend-block a {
    color: #fff;
    display: block;
    line-height: 20px;
    padding-bottom: 0;
  }
  #resort-map .legend-block dl:nth-child(2n+1) dt {
    background-color: #F7F7F7;
  }
  #resort-map .legend-block dt {
    font-weight: normal;
    color: #71686A;
    font-size: 15px;
    line-height: 20px;
    padding: 20px 60px 20px 30px;
  }
  #resort-map .legend-block dt:after {
    content: "+";
    color: #032165;
    float: right;
    display: inline-block;
  }
  #resort-map .legend-block dt.active {
    color: #032165;
  }
  #resort-map .legend-block dt.active:after {
    content: "-";
  }
  #resort-map .legend-block dt.active + dd {
    max-height: 1000px;
  }
  #resort-map .legend-block dd {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease-in-out;
  }
  #resort-map .legend-block li {
    background-color: #3D3935;
    font-size: 15px;
    padding: 20px 50px !important;
  }
  #resort-map .legend-block li:before {
    display: none !important;
  }
  #resort-map .legend-block li:nth-child(2n) {
    background-color: #435F67;
  }
}

#toggle-legend {
  background: #032165;
  border-radius: 10px;
  bottom: 40px;
  color: #fff;
  display: none;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  position: absolute;
  text-transform: uppercase;
  z-index: 10;
}
@media only screen and (max-width: 979px) {
  #toggle-legend {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  #toggle-legend {
    border-radius: 5px;
    line-height: 34px;
    padding: 0 10px;
  }
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: move;
  cursor: -webkit-grab;
}

#resortmap-canvas {
  background-color: #002e4c;
  box-sizing: content-box;
  padding-bottom: 50px;
  position: relative;
  overflow: auto;
  text-align: right;
  height: 100%;
}
#resortmap-canvas::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
#resortmap-canvas .map {
  display: inline-block;
  height: 840px;
  overflow: hidden;
  position: relative;
  vertical-align: top;
}
@media only screen and (max-width: 979px) {
  #resortmap-canvas .map {
    height: 100%;
  }
}
#resortmap-canvas img {
  display: block;
  height: 100%;
  vertical-align: top;
}
#resortmap-canvas .pin {
  background: #b586ae;
  border-radius: 50%;
  border: 2px solid #fff;
  height: 15px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transition: opacity 350ms ease-in-out, background-color 350ms ease-in-out;
  width: 15px;
}
#resortmap-canvas .pin.faded {
  opacity: 0.3;
}
#resortmap-canvas .pin.active {
  background-color: #e56123;
}
#resortmap-canvas .pin.active span {
  bottom: calc(100% + 16px);
  opacity: 1;
}
#resortmap-canvas .pin span {
  background: #fff;
  border-radius: 5px 5px 5px 0;
  bottom: 100%;
  color: #032165;
  display: block;
  font-size: 12px;
  left: 8px;
  line-height: 1.2;
  opacity: 0;
  padding: 12px 20px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  transition: opacity 350ms ease-in-out, bottom 350ms ease-in-out;
  z-index: 1;
}
@media only screen and (min-width: 1340px) {
  #resortmap-canvas .pin span {
    font-size: 14px;
    line-height: 21px;
  }
}
#resortmap-canvas .pin span:after {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 100%;
}
#resortmap-canvas .pin[data-id="1"] {
  display: none;
}
@keyframes float {
  from {
    transform: translate3d(0, 0, 0);
  }
  65% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
#resortmap-canvas .one-bedroom-beach-front-suites-30-31-32 {
  top: 54%;
  right: 70.8%;
}
#resortmap-canvas .one-bedroom-beach-front-suites-30-31-32.point-0 {
  top: 57.9%;
  right: 70.1%;
}
#resortmap-canvas .one-bedroom-beach-front-suites-30-31-32.point-1 {
  top: 62.3%;
  right: 70.2%;
}
#resortmap-canvas .one-bedroom-beach-front-suites-30-31-32.location-active .p-content {
  bottom: 60px !important;
  left: -110px !important;
}
#resortmap-canvas .two-bedroom-beach-front-suites-suites-2-3 {
  top: 23.4%;
  right: 70.7%;
}
#resortmap-canvas .two-bedroom-beach-front-suites-suites-2-3.point-0 {
  top: 17.8%;
  right: 70.7%;
}
#resortmap-canvas .presidential-beach-front-suite-suite-1 {
  top: 28.4%;
  right: 70.4%;
}
#resortmap-canvas .one-bedroom-dos-mares-suites-a-d {
  top: 17.4%;
  right: 67.8%;
}
#resortmap-canvas .one-bedroom-dos-mares-suites-a-d.point-0 {
  top: 19.4%;
  right: 65.2%;
}
#resortmap-canvas .one-bedroom-dos-mares-suites-a-d.point-1 {
  top: 24.2%;
  right: 67.6%;
}
#resortmap-canvas .one-bedroom-dos-mares-suites-a-d.point-2 {
  top: 28.3%;
  right: 67.6%;
}
#resortmap-canvas .one-bedroom-dos-mares-suites-a-d.location-active .p-content {
  bottom: -10px !important;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55 {
  top: 60%;
  right: 67%;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55.point-0 {
  top: 65.2%;
  right: 66.7%;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55.point-1 {
  top: 62.4%;
  right: 62.4%;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55.point-2 {
  top: 66.2%;
  right: 60.7%;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55.point-3 {
  top: 74.2%;
  right: 60%;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55.point-4 {
  top: 58.3%;
  right: 57.8%;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55.point-5 {
  top: 63.6%;
  right: 55.8%;
}
#resortmap-canvas .ocean-view-rooms-villas-40-55.point-6 {
  top: 73.1%;
  right: 55.2%;
}
#resortmap-canvas .ocean-view-rooms-buildings-100-300 {
  top: 6.9%;
  right: 68.7%;
}
#resortmap-canvas .ocean-view-rooms-buildings-100-300.point-0 {
  top: 36.2%;
  right: 64.1%;
}
#resortmap-canvas .ocean-view-rooms-buildings-100-300.point-1 {
  top: 50.5%;
  right: 62.3%;
}
#resortmap-canvas .ocean-view-rooms-buildings-100-300.location-active .p-content {
  left: 100px !important;
}
#resortmap-canvas .ocean-view-rooms-suites-buildings-400-900 {
  top: 61.9%;
  right: 50.7%;
}
#resortmap-canvas .ocean-view-rooms-suites-buildings-400-900.point-0 {
  top: 71.6%;
  right: 50%;
}
#resortmap-canvas .ocean-view-rooms-suites-buildings-400-900.point-1 {
  top: 81.1%;
  right: 50.8%;
}
#resortmap-canvas .ocean-view-rooms-suites-buildings-400-900.point-2 {
  top: 79.3%;
  right: 55.9%;
}
#resortmap-canvas .ocean-view-rooms-suites-buildings-400-900.point-3 {
  top: 78%;
  right: 62%;
}
#resortmap-canvas .ocean-view-rooms-suites-buildings-400-900.point-4 {
  top: 78.6%;
  right: 66.7%;
}
#resortmap-canvas .ocean-view-rooms-suites-buildings-400-900.location-active .p-content {
  right: 100px !important;
  left: auto !important;
}
#resortmap-canvas .casa-bella-vista-5 {
  top: 39.8%;
  right: 24.5%;
}
#resortmap-canvas .casa-bella-vista-5.location-active .p-content {
  left: 100px !important;
}
#resortmap-canvas .private-residences-1-4-6-7 {
  top: 25.7%;
  right: 14.9%;
}
#resortmap-canvas .private-residences-1-4-6-7.point-0 {
  top: 45.7%;
  right: 18.2%;
}
#resortmap-canvas .private-residences-1-4-6-7.point-1 {
  top: 34%;
  right: 21.1%;
}
#resortmap-canvas .private-residences-1-4-6-7.point-2 {
  top: 25.4%;
  right: 21.9%;
}
#resortmap-canvas .private-residences-1-4-6-7.point-3 {
  top: 47.2%;
  right: 24.7%;
}
#resortmap-canvas .private-residences-1-4-6-7.point-4 {
  top: 55.8%;
  right: 24.9%;
}
#resortmap-canvas .private-residences-1-4-6-7.location-active .p-content {
  left: 100px !important;
}
#resortmap-canvas .pin-category-5 {
  display: block;
}
#resortmap-canvas .don-manuels-restaurant-bar-t {
  top: 33.9%;
  left: 31.4%;
}
#resortmap-canvas .el-farallon {
  top: 4.2%;
  left: 18%;
}
#resortmap-canvas .champagne-terrace-at-el-farallon-u {
  top: 4.2%;
  left: 20.5%;
}
#resortmap-canvas .crudo-pool-bar-s {
  top: 40.8%;
  left: 29.9%;
}
#resortmap-canvas .beach-club-restaurant-m {
  top: 76.5%;
  left: 32.6%;
}
#resortmap-canvas .luna-y-mar-spa-salon-meditation-pool-q {
  top: 54%;
  right: 66.1%;
}
#resortmap-canvas .tennis-courts-b {
  top: 36.3%;
  right: 9.6%;
}
#resortmap-canvas .fitness-meditation-center-h {
  top: 54%;
  right: 63.5%;
}
#resortmap-canvas .almarte-gift-boutique-p {
  top: 57.9%;
  right: 65%;
}
#resortmap-canvas .adults-pool-r {
  top: 35.2%;
  right: 71.1%;
}
#resortmap-canvas .rock-pool-kids-pool-k {
  top: 70.7%;
  right: 64%;
}
#resortmap-canvas .beach-club-family-pool-n {
  top: 72.7%;
  right: 70.7%;
}
#resortmap-canvas .tortuguitas-kids-club-l {
  top: 77.7%;
  right: 64.1%;
}
#resortmap-canvas .resort-gate-a {
  top: 25.7%;
  right: 7.5%;
}
#resortmap-canvas .dos-mares-tunnel-entry-c {
  top: 36.2%;
  right: 16%;
}
#resortmap-canvas .lobby-d {
  top: 47.6%;
  right: 66.7%;
}
#resortmap-canvas .private-residence-office-e {
  top: 50.3%;
  right: 64%;
}
#resortmap-canvas .reception-f {
  top: 44.7%;
  right: 67.1%;
}
#resortmap-canvas .personal-concierge-g {
  top: 51%;
  right: 66.9%;
}
#resortmap-canvas .meeting-rooms-pai-pai-cochimi-terrace-i {
  top: 39.5%;
  right: 66.4%;
}
#resortmap-canvas .business-center-j {
  top: 53.1%;
  right: 67.3%;
}
#resortmap-canvas .la-palapa-o {
  top: 81.9%;
  right: 70.1%;
}
#resortmap-canvas .pai-pai-meeting-room {
  top: 40.5%;
  right: 65.1%;
}
#resortmap-canvas .pool-deck {
  top: 74.7%;
  right: 69%;
}
#resortmap-canvas .beach {
  top: 41.7%;
  right: 72%;
}
#resortmap-canvas .el-farallon span, #resortmap-canvas .champagne-terrace-at-el-farallon-u span, #resortmap-canvas .ocean-view-rooms-buildings-100-300 span {
  border-radius: 0 5px 5px 5px;
  bottom: auto;
  top: 100%;
  transition: opacity 350ms ease-in-out, top 350ms ease-in-out;
}
#resortmap-canvas .el-farallon span:after, #resortmap-canvas .champagne-terrace-at-el-farallon-u span:after, #resortmap-canvas .ocean-view-rooms-buildings-100-300 span:after {
  bottom: 100%;
  border-top: 0;
  border-bottom: 5px solid #fff;
  top: auto;
}
#resortmap-canvas .el-farallon.active span, #resortmap-canvas .champagne-terrace-at-el-farallon-u.active span, #resortmap-canvas .ocean-view-rooms-buildings-100-300.active span {
  bottom: auto;
  top: calc(100% + 16px);
}

.page-block.subpage {
  background: #F7F6F4;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
@media only screen and (min-width: 980px) {
  .page-block.subpage {
    flex-direction: row;
    min-height: 720px;
  }
}
.page-block.subpage .left-column {
  position: relative;
  width: 100%;
  height: auto;
  min-height: inherit;
  background: #3D3935;
}
@media only screen and (min-width: 980px) {
  .page-block.subpage .left-column {
    width: 66.6%;
    height: auto;
  }
}
@media only screen and (min-width: 1800px) {
  .page-block.subpage .left-column {
    width: 75%;
  }
}
.page-block.subpage .left-column .slideshow {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 979px) {
  .page-block.subpage .left-column .slideshow {
    position: static;
    height: 320px;
  }
}
.page-block.subpage .left-column .slideshow-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}
.page-block.subpage .left-column .slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.page-block.subpage .left-column .slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.page-block.subpage .left-column .slide .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 60px;
  text-transform: uppercase;
  color: #fff;
  font-size: 3.13vw;
  font-weight: 300;
  font-family: "AstoriaSans", sans-serif;
  line-height: 1.11;
}
@media (max-width: 958.4664536741px) {
  .page-block.subpage .left-column .slide .caption {
    font-size: 30px;
  }
}
@media (min-width: 1916.9329073482px) {
  .page-block.subpage .left-column .slide .caption {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .page-block.subpage .left-column .slide .caption {
    padding: 30px;
  }
}
@media only screen and (min-width: 1800px) {
  .page-block.subpage .left-column .slide .caption {
    padding: 120px;
  }
}
.page-block.subpage .left-column .slide .caption strong {
  font-weight: 700;
}
.page-block.subpage .left-column .slide .caption span {
  display: block;
}
.page-block.subpage .left-column .slide.video .youtube-wrapper {
  overflow: hidden;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.page-block.subpage .left-column .slide.video iframe {
  position: absolute;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 177.77777778%;
  min-width: 177.77777778%;
}
.page-block.subpage .left-column .open-table-form {
  position: absolute;
  bottom: 60px;
  right: 60px;
  font-size: 0;
}
@media only screen and (min-width: 1800px) {
  .page-block.subpage .left-column .open-table-form {
    bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .page-block.subpage .left-column .open-table-form {
    position: static;
    padding: 20px;
  }
}
.page-block.subpage .left-column .open-table-form .column {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .page-block.subpage .left-column .open-table-form .column {
    margin: 0 0 10px 0 !important;
    width: 100% !important;
  }
}
.page-block.subpage .left-column .open-table-form .column label {
  display: block;
  margin: 0 0 9px 10px;
  font: 700 15px/13px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.page-block.subpage .left-column .open-table-form .column input[type=text],
.page-block.subpage .left-column .open-table-form .column select {
  height: 45px;
  padding: 0 20px;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #fff;
  font: 700 15px/45px "AstoriaSans", sans-serif;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .page-block.subpage .left-column .open-table-form .column input[type=text],
  .page-block.subpage .left-column .open-table-form .column select {
    width: 100%;
  }
}
.page-block.subpage .left-column .open-table-form .column select {
  padding: 0 50px 0 20px;
}
@media only screen and (max-width: 767px) {
  .page-block.subpage .left-column .open-table-form .column .select-wrapper {
    width: 100%;
  }
}
.page-block.subpage .left-column .open-table-form .column .ui-datepicker-trigger {
  display: none;
}
.page-block.subpage .left-column .open-table-form .column.date {
  width: 135px;
}
.page-block.subpage .left-column .open-table-form .column.date input[type=text] {
  width: 100%;
}
.page-block.subpage .left-column .open-table-form .column.controls button {
  display: block;
  width: 90px;
  font: 700 28px/24px "AstoriaSans", sans-serif;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
}
.page-block.subpage .left-column .open-table-form .column.controls button:hover {
  color: #032165;
}
.page-block.subpage .right-column {
  padding: 60px;
  width: 100%;
  min-height: inherit;
}
@media only screen and (max-width: 767px) {
  .page-block.subpage .right-column {
    padding: 30px;
  }
}
@media only screen and (min-width: 980px) {
  .page-block.subpage .right-column {
    width: 33.3%;
  }
}
@media only screen and (min-width: 1800px) {
  .page-block.subpage .right-column {
    padding: 120px;
    width: 25%;
  }
}
.page-block.subpage .right-column img {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}
.page-block.subpage .right-column h3 {
  font-size: 1.56vw;
  font-family: "AstoriaSans", sans-serif;
  font-weight: 300;
  line-height: 1.278;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 961.5384615385px) {
  .page-block.subpage .right-column h3 {
    font-size: 15px;
  }
}
@media (min-width: 1923.0769230769px) {
  .page-block.subpage .right-column h3 {
    font-size: 30px;
  }
}
.page-block.subpage .right-column h3 strong {
  font-weight: 700;
}
.page-block.subpage .right-column p {
  margin-bottom: 20px;
}
@media only screen and (min-width: 980px) {
  .page-block.subpage .right-column .read-more {
    position: absolute;
    bottom: 60px;
    min-width: 180px;
  }
}
@media only screen and (min-width: 1800px) {
  .page-block.subpage .right-column .read-more {
    bottom: 120px;
  }
}

@media only screen and (min-width: 980px) {
  .page-block.subpage.odd .left-column {
    order: 2;
  }
}
.page-block.subpage.odd .left-column .slide:after {
  left: auto;
  right: -120px;
}
.page-block.subpage.odd .left-column .slide .caption {
  text-align: right;
}
.page-block.subpage.odd .left-column .slideshow-pagination {
  left: 20px;
  right: auto;
}
.page-block.subpage.odd .left-column .open-table-form {
  left: 60px;
  right: auto;
}
.page-block.subpage.odd .left-column .open-table-form .column {
  margin: 0 20px 0 0;
}
@media only screen and (min-width: 980px) {
  .page-block.subpage.odd .right-column {
    order: 1;
  }
}

.page-block.subpage-heading .center-column {
  width: 100%;
  height: 100%;
}
.page-block.subpage-heading .images {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background: #173b3e;
}
.page-block.subpage-heading .images .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.page-block.subpage-heading .images .image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.page-block.subpage-heading .images.count-2 .image {
  width: 50%;
}
.page-block.subpage-heading .images.count-2 .image:last-child {
  left: 50%;
}
.page-block.subpage-heading .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 60px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  font: 200 30px/1 "AstoriaSans", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (min-width: 1340px) {
  .page-block.subpage-heading .caption {
    padding: 0 240px;
  }
}
@media only screen and (min-width: 980px) {
  .page-block.subpage-heading .caption {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .page-block.subpage-heading .caption {
    padding: 0 30px;
  }
}
.page-block.subpage-heading .caption strong {
  font-weight: 700;
}

.blog-feed {
  position: relative;
}
.blog-feed .feed-list.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: #032165;
  border-bottom-color: #032165;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.blog-feed .slideshow {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .blog-feed .slideshow {
    padding: 0;
  }
}
.blog-feed .slideshow-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.home-rooms {
  overflow: hidden;
}
.home-rooms .category-selector {
  margin-bottom: 23px;
}
.home-rooms .category-selector .category-selector-button {
  margin: 0 10px 10px;
  display: inline-block;
  font-size: 15px;
  line-height: 25px;
  color: #808080;
}
.home-rooms .category-selector .category-selector-button:hover, .home-rooms .category-selector .category-selector-button.active {
  color: #032165;
}
.home-rooms .slide .view360 {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 40px;
  width: 43px;
  margin: 0 auto;
  text-indent: -100em;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 -134px no-repeat;
}
.home-rooms .slide .view360:after {
  background: none;
}
.home-rooms .slide .view360:hover {
  opacity: 0.8;
}

.rooms-list .category-selector {
  margin-bottom: 23px;
}
.rooms-list .category-selector .category-selector-button {
  margin: 0 10px 10px;
  display: inline-block;
  font-size: 15px;
  line-height: 25px;
  color: #808080;
}
.rooms-list .category-selector .category-selector-button:hover, .rooms-list .category-selector .category-selector-button.active {
  color: #032165;
}
.rooms-list .room {
  position: relative;
  margin-bottom: 60px;
  background: #F7F6F4;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
@media only screen and (min-width: 980px) {
  .rooms-list .room {
    flex-direction: row;
    min-height: 720px;
  }
}
.rooms-list .room .left-column {
  position: relative;
  width: 100%;
  height: 320px;
}
@media only screen and (min-width: 980px) {
  .rooms-list .room .left-column {
    width: 66%;
    height: auto;
    min-height: inherit;
  }
}
@media only screen and (min-width: 1800px) {
  .rooms-list .room .left-column {
    width: 75%;
  }
}
.rooms-list .room .left-column .slideshow {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.rooms-list .room .left-column .slideshow-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}
.rooms-list .room .left-column .caption {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 60px;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .rooms-list .room .left-column .caption {
    padding: 30px;
  }
}
@media only screen and (min-width: 1800px) {
  .rooms-list .room .left-column .caption {
    padding: 120px;
  }
}
.rooms-list .room .left-column .caption h3 {
  font-size: 3.13vw;
  font-weight: 300;
  font-family: "AstoriaSans", sans-serif;
  line-height: 1.11;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 9px;
}
@media (max-width: 958.4664536741px) {
  .rooms-list .room .left-column .caption h3 {
    font-size: 30px;
  }
}
@media (min-width: 1916.9329073482px) {
  .rooms-list .room .left-column .caption h3 {
    font-size: 60px;
  }
}
.rooms-list .room .left-column .caption h3 strong {
  font-weight: 700;
}
.rooms-list .room .left-column .slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.rooms-list .room .left-column .slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.rooms-list .room .left-column .slideshow-pagination {
  position: absolute;
  right: 20px;
  top: 50%;
  text-align: center;
  font-size: 0;
  transform: translate3d(0, -50%, 0);
}
@media only screen and (max-width: 767px) {
  .rooms-list .room .left-column .slideshow-pagination {
    display: none;
  }
}
.rooms-list .room .left-column .slideshow-pagination > * {
  display: block;
  width: 25px;
  height: 25px;
  margin: 9px 0;
  text-indent: -9999px;
  overflow: hidden;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
.rooms-list .room .left-column .slideshow-pagination > *:hover, .rooms-list .room .left-column .slideshow-pagination > *.active {
  background: #fff;
}
.rooms-list .room .right-column {
  padding: 60px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .rooms-list .room .right-column {
    padding: 30px;
  }
}
@media only screen and (min-width: 980px) {
  .rooms-list .room .right-column {
    width: 33%;
  }
}
@media only screen and (min-width: 1800px) {
  .rooms-list .room .right-column {
    width: 25%;
    padding: 120px;
  }
}
.rooms-list .room .right-column p {
  margin-top: 20px;
}
@media only screen and (min-width: 980px) {
  .rooms-list .room .right-column .nav {
    position: absolute;
    bottom: 60px;
    min-width: 180px;
  }
}
@media only screen and (min-width: 1340px) {
  .rooms-list .room .right-column .nav {
    bottom: 120px;
  }
}
.rooms-list .room .right-column .nav > * {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (min-width: 980px) {
  .rooms-list .room.odd .left-column {
    order: 2;
  }
}
.rooms-list .room.odd .left-column .caption {
  text-align: right;
}
.rooms-list .room.odd .left-column .slide:after {
  left: auto;
  right: -120px;
}
.rooms-list .room.odd .left-column .slideshow-pagination {
  left: 20px;
  right: auto;
}
@media only screen and (min-width: 980px) {
  .rooms-list .room.odd .right-column {
    order: 1;
  }
}

#pixlee_container {
  position: relative;
}

#footer {
  padding-top: 24px;
  position: relative;
  color: #808080;
  text-align: center;
  z-index: 1;
}
#footer .bg {
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#footer a {
  color: #445a62;
}
#footer a:hover {
  color: #032165;
}
#footer a.ad-choices-menu {
  padding-right: 17px;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 12px;
}
#footer .logo {
  display: inline-block;
  max-width: 800px;
}
#footer .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
#footer .socials {
  margin-bottom: 15px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #footer .socials {
    float: none;
  }
}
#footer .socials li {
  display: inline-block;
  margin: 0 5px 15px;
}
#footer .socials a {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 -50px no-repeat;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  #footer .socials a {
    display: inline-block;
  }
}
#footer .socials a:hover {
  background-color: #F7F6F4;
}
#footer .socials a.facebook {
  background-position: 0 -50px;
}
#footer .socials a.twitter {
  background-position: -52px -50px;
}
#footer .socials a.instagram {
  background-position: -312px -50px;
}
#footer .socials a.tripadvisor {
  background-position: -364px -50px;
}
#footer .socials a.google, #footer .socials a.googleplus, #footer .socials a.gplus {
  background-position: -156px -50px;
}
#footer .socials a.youtube {
  background-position: -260px -50px;
}
#footer .socials a.flickr {
  background-position: -361px -347px;
}
#footer .socials a.pinterest {
  background-position: -104px -50px;
}
#footer .socials a.linkedin {
  background-position: -208px -50px;
}
#footer .socials a.blog {
  background-position: -416px -50px;
}
#footer .awards-logos {
  margin-bottom: 45px;
  display: inline-block;
  font-size: 0;
  width: 100%;
}
#footer .awards-logos span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px 15px;
  max-width: 209px;
}
@media only screen and (max-width: 767px) {
  #footer .awards-logos span {
    width: calc(50% - 7px) !important;
    margin: 0 7px 15px;
  }
}
#footer .awards-logos span img {
  height: auto;
  width: 100%;
}
#footer .awards-logos span img.forbes {
  width: 87px;
}
#footer .awards-logos span:last-child img {
  max-width: 112px;
}
#footer .awards-logos span.condenast-gold-list {
  width: 120px;
  height: 120px;
}
@media only screen and (max-width: 767px) {
  #footer .awards-logos span.condenast-gold-list {
    width: 60px;
    height: 60px;
  }
}
#footer .awards-logos span.five-diamond-diamond {
  width: 200px;
  height: 21px;
}
@media only screen and (max-width: 767px) {
  #footer .awards-logos span.five-diamond-diamond {
    width: 100px;
    height: 10px;
  }
}
#footer .awards-logos span.tripadvisor-travellers-joice {
  width: 110px;
  height: 105px;
}
@media only screen and (max-width: 767px) {
  #footer .awards-logos span.tripadvisor-travellers-joice {
    width: 60px;
    height: 60px;
  }
}
#footer .awards-logos span.aenor {
  width: 65px;
  height: 118px;
}
@media only screen and (max-width: 767px) {
  #footer .awards-logos span.aenor {
    width: 49px;
    height: 90px;
  }
}
#footer .awards-logos span.travel-leisure {
  width: 140px;
  height: 120px;
}
@media only screen and (max-width: 767px) {
  #footer .awards-logos span.travel-leisure {
    width: 70px;
    height: 60px;
  }
}
#footer .awards-logos span.smart-meetings {
  width: 200px;
  height: 48px;
}
@media only screen and (max-width: 767px) {
  #footer .awards-logos span.smart-meetings {
    width: 163px;
    height: 40px;
  }
}
#footer .contacts {
  margin-bottom: 60px;
}
#footer .contacts p {
  margin-bottom: 10px;
}
#footer .contacts .address {
  font: 500 18px/26px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  color: #3D3935;
}
#footer .contacts .phones {
  font-size: 16px;
  line-height: 26px;
  color: #595959;
}
#footer .contacts .phones .phone {
  display: inline-block;
}
#footer .contacts .phones .phone strong {
  font-weight: 700;
}
#footer .contacts .phones .phone a {
  color: inherit;
  text-decoration: none;
}
#footer .contacts .phones .phone:after {
  content: "|";
  margin: 0 15px;
}
#footer .contacts .phones .phone:last-child:after {
  content: none;
}
#footer .copy {
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 26px;
  color: #595959;
}
#footer .copy small {
  display: block;
}

#footer-menu {
  margin-bottom: 85px;
  font-size: 0;
}
#footer-menu li {
  display: inline-block;
}
#footer-menu a {
  display: block;
  margin: 0 15px 15px;
  font: 500 16px/15px "AstoriaSans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #595959;
}
#footer-menu a:hover, #footer-menu a.active {
  color: #032165;
}

#newsletter {
  position: relative;
  margin: 0 auto 60px;
  font-size: 0;
  display: block;
  height: 60px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.3);
}
#newsletter form,
#newsletter fieldset {
  height: 100%;
  width: 100%;
}
#newsletter input[type=text] {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 84px 0 30px;
  background: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "AstoriaSans", sans-serif;
  font-weight: 700;
  color: #444;
  transition: opacity 350ms ease-in-out;
}
#newsletter input[type=text]::-webkit-input-placeholder {
  color: #444;
}
#newsletter input[type=text]:-moz-placeholder {
  color: #444;
}
#newsletter input[type=text]::-moz-placeholder {
  color: #444;
}
#newsletter input[type=text]:-ms-input-placeholder {
  color: #444;
}
#newsletter input[type=text]:focus::-webkit-input-placeholder {
  opacity: 0;
}
#newsletter input[type=text]:focus:-moz-placeholder {
  opacity: 0;
}
#newsletter input[type=text]:focus::-moz-placeholder {
  opacity: 0;
}
#newsletter input[type=text]:focus:-ms-input-placeholder {
  opacity: 0;
}
#newsletter button[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 54px;
  text-indent: -9999px;
  overflow: hidden;
}
#newsletter button[type=submit]:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 30px;
  width: 24px;
  height: 19px;
  background: url("../images/sprite.svg") 0 -102px no-repeat;
}
#newsletter button[type=submit]:hover:after {
  opacity: 0.8;
}

#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;
  background: #fff;
  font-size: 14px;
  color: #4D4646;
  border: 1px solid #DEDEDE;
}
#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: #032165;
  border-bottom-color: #032165;
  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;
}

.video-popup {
  position: fixed;
  z-index: 999;
  left: -9999px;
  top: -9999px;
  width: 100%;
  height: 100%;
  transition: visibility 350ms ease-in-out, opacity 350ms ease-in-out, top 0ms 350ms ease-in-out, left 0ms 350ms ease-in-out;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.9);
}
.video-popup.video-popup-inside {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
}
.video-popup.video-popup-inside .video-popup-wrapper {
  padding: 0;
  background: rgba(0, 0, 0, 0.9);
}
.video-popup.video-popup-inside .video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  background-position: 50% 50%;
  background-size: cover;
  -o-object-fit: fill;
     object-fit: fill;
}
.video-popup.visible {
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: visibility 0ms, opacity 350ms ease-in-out, top 0ms, left 0ms;
}
.video-popup .video-popup-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .video-popup .video-popup-wrapper {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .video-popup .video-popup-wrapper {
    padding: 20px;
  }
}
.video-popup .video-popup-close-button {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  height: 40px;
  width: 40px;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .video-popup .video-popup-close-button {
    right: 5px;
    top: 5px;
    height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .video-popup .video-popup-close-button {
    height: 25px;
    width: 25px;
  }
}
.video-popup .video-popup-close-button::before, .video-popup .video-popup-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #FFFFFF;
  transition: background-color 350ms ease-in-out;
}
.video-popup .video-popup-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-popup .video-popup-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.video-popup .video-popup-close-button:hover::before, .video-popup .video-popup-close-button:hover::after {
  background-color: #032165;
}
.video-popup .video {
  max-height: 100%;
  max-width: 100%;
}
.video-popup.loading .video {
  visibility: hidden;
}
.video-popup .loading {
  visibility: hidden;
}
.video-popup .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: #032165;
  border-bottom-color: #032165;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.video-popup.loading .loading {
  visibility: visible;
}

.video-popup-trigger {
  position: absolute;
  z-index: 90;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  min-width: 50px;
  max-width: 100%;
  height: 50px;
  padding-left: 60px;
  pointer-events: auto;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
  overflow: hidden;
  font-family: "AstoriaSans", sans-serif;
  text-overflow: ellipsis;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .video-popup-trigger {
    top: 10px;
    left: 10px;
    padding-left: 55px;
  }
}
.video-popup-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4) url("../images/sprite.svg") no-repeat -72px -85px;
}
.video-popup-trigger:hover {
  opacity: 0.8;
  color: #FFFFFF;
}

.full-page-video .image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.video-lightbox-popup-trigger,
.video-popup-trigger-new {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  position: absolute;
  left: 45%;
  top: 40%;
  z-index: 9;
  border: 1px solid #fff;
  text-indent: -9999px;
}
@media only screen and (max-width: 979px) {
  .video-lightbox-popup-trigger,
  .video-popup-trigger-new {
    left: 43%;
    top: 32%;
  }
}
.video-lightbox-popup-trigger::before, .video-lightbox-popup-trigger::after,
.video-popup-trigger-new::before,
.video-popup-trigger-new::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
}
.video-lightbox-popup-trigger::before,
.video-popup-trigger-new::before {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.video-lightbox-popup-trigger::after,
.video-popup-trigger-new::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 18px 34.3px;
  border-color: transparent transparent transparent #fff;
}

.lightbox.full-page-video-lightbox .video-popup-wrapper {
  padding: 100px;
}
@media only screen and (max-width: 979px) {
  .lightbox.full-page-video-lightbox .video-popup-wrapper {
    padding: 15px;
  }
}
.lightbox.full-page-video-lightbox .video-popup-wrapper .close-button {
  position: absolute;
  z-index: 2;
  right: 8%;
  top: 8%;
  height: 40px;
  width: 40px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .lightbox.full-page-video-lightbox .video-popup-wrapper .close-button {
    height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .lightbox.full-page-video-lightbox .video-popup-wrapper .close-button {
    height: 25px;
    width: 25px;
  }
}
.lightbox.full-page-video-lightbox .video-popup-wrapper .close-button::before, .lightbox.full-page-video-lightbox .video-popup-wrapper .close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 1px;
}
.lightbox.full-page-video-lightbox .video-popup-wrapper .close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.lightbox.full-page-video-lightbox .video-popup-wrapper .close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.lightbox.full-page-video-lightbox .video-popup-wrapper .close-button:hover::before, .lightbox.full-page-video-lightbox .video-popup-wrapper .close-button:hover::after {
  background-color: none !important;
}

.left-video-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .left-video-content {
    flex-direction: column;
  }
}
.left-video-content .left-column {
  width: 568px;
  margin-right: 5%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .left-video-content .left-column {
    width: 100%;
    margin-right: 0%;
  }
}
.left-video-content .left-column .wraper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.left-video-content .left-column .wraper .video-lightbox-popup-trigger {
  left: 42%;
  top: 39%;
}
.left-video-content .left-column .wraper figure {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  background: #173b3e;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.left-video-content .right-column {
  flex: 1;
}
.left-video-content .right-column p:empty {
  content: "";
  display: block;
  height: 2rem;
}

.ig-feed-section .section-content {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.ig-feed-section .section-content .ig-feed-section-heading {
  text-align: left;
}
.ig-feed-section .section-content .ig-feed-section-heading h3 {
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 979px) {
  .ig-feed-section .section-content .ig-feed-section-heading h3 {
    margin-bottom: 15px;
    line-height: 20px;
    font-size: 18px;
  }
}
.ig-feed-section .section-content .ig-feed-section-heading h2 {
  margin: 0;
}
.ig-feed-section .section-content .ig-feed-section-heading .instagram {
  position: relative;
  padding-left: 30px;
}
.ig-feed-section .section-content .ig-feed-section-heading .instagram::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/feeds-sprite.svg") -250px 0 no-repeat;
}
.ig-feed-section .section-content .button {
  margin: 0 0 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 979px) {
  .ig-feed-section .section-content .button {
    margin: 30px auto 0 auto;
  }
}

#feeds {
  position: relative;
  z-index: 10;
}
#feeds h2 {
  font: 36px/1.2 "AstoriaSans", sans-serif;
  margin-bottom: 30px;
  color: #032165;
  text-transform: uppercase;
  text-align: center;
}
#feeds.loading {
  min-height: 300px;
}
#feeds.loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #032165;
  border-bottom-color: #032165;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#feeds .feed-content {
  overflow: hidden;
  position: relative;
}
#feeds .feed-items {
  font-size: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feeds .feed-item {
  position: relative;
  height: auto;
  float: left;
  font: italic 14px/18px "AstoriaSerif";
  overflow: hidden;
  opacity: 1;
  text-align: left;
  background: #F7F6F4;
  color: #808080;
  transition: opacity 350ms ease-in-out;
  margin-right: 20px;
  margin-bottom: 20px;
}
#feeds .feed-item .inner-wrapper {
  width: 100%;
  padding-top: 100%;
}
@media (max-width: 449px) {
  #feeds .feed-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 450px) and (max-width: 767px) {
  #feeds .feed-item {
    width: calc((100% - 10px) / 2);
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  #feeds .feed-item {
    width: calc((100% - 30px) / 3);
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1799px) {
  #feeds .feed-item {
    width: calc((100% - 100px) / 5);
  }
}
@media (min-width: 1800px) {
  #feeds .feed-item {
    width: calc((100% - 120px) / 6);
  }
}
#feeds .feed-item::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10px;
  bottom: 10px;
  background: url("../images/feeds-sprite.svg") -200px 0 no-repeat;
  z-index: 5;
}
#feeds .feed-item::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
#feeds .feed-item:hover::after {
  opacity: 1;
}
#feeds .feed-item:hover .feed-descr {
  opacity: 1;
}
#feeds .feed-item:hover .feed-thumb::before {
  opacity: 0;
}
#feeds .feed-item.invisible {
  opacity: 0;
}
#feeds .feed-item .feed-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
#feeds .feed-item .feed-thumb.feed-video-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4) url("../images/sprite.svg") no-repeat -72px -85px;
  overflow: hidden;
  transition: opacity 350ms ease-in-out;
}
#feeds .feed-item .feed-thumb div {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
}
#feeds .feed-item .feed-descr {
  position: absolute;
  z-index: 5;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px;
  font: 14px/18px "AstoriaSerif";
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
@media only screen and (min-width: 1800px) {
  #feeds .feed-item .feed-descr {
    padding: 20px;
  }
}
#feeds .feed-item .feed-title {
  width: 100%;
  margin-bottom: 10px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
#feeds .feed-item .feed-date {
  margin-bottom: 10px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 12px;
}
#feeds .feed-item .feed-text {
  width: 100%;
  font-family: "AstoriaSerif";
  font-weight: 400;
  text-align: center;
}
#feeds .feed-item .feed-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#feeds .feed-item.blog h3 {
  color: #808080;
  padding-right: 30px;
  margin-bottom: 7px;
  transition: all 350ms ease-in-out;
}
#feeds .feed-item.blog h3:hover {
  opacity: 0.7;
}
#feeds .feed-item.blog .feed-descr {
  color: #595959;
}
#feeds .feed-controls {
  display: block;
  padding: 0 20px;
  text-align: center;
}
#feeds .feed-controls .button {
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
#feeds .feed-items__column {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1800px) {
  #feeds .feed-items__column {
    width: 76%;
  }
}
#feeds .feed-items__column.feed-items__second-column {
  width: 34%;
}
@media (min-width: 1800px) {
  #feeds .feed-items__column.feed-items__second-column {
    width: 24%;
  }
}
#feeds .feed-items__column.feed-items__second-column .feed-item {
  width: 100%;
  margin-right: 0;
}
@media (min-width: 768px) and (max-width: 979px) {
  #feeds .feed-items__column .feed-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 980px) and (max-width: 1439px) {
  #feeds .feed-items__column .feed-item {
    width: calc((100% - 60px) / 3);
  }
}
@media (min-width: 1440px) and (max-width: 1799px) {
  #feeds .feed-items__column .feed-item {
    width: calc((100% - 80px) / 4);
  }
}
@media (min-width: 1800px) {
  #feeds .feed-items__column .feed-item {
    width: calc((100% - 100px) / 5);
  }
}

.content-lightbox {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: visibility 350ms ease-in-out, opacity 350ms ease-in-out, top 0ms 350ms ease-in-out, left 0ms 350ms ease-in-out;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.content-lightbox--visible {
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: visibility 0ms, opacity 350ms ease-in-out, top 0ms, left 0ms;
}
.content-lightbox__wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
@media only screen and (min-width: 1340px) {
  .content-lightbox__wrapper {
    padding: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .content-lightbox__wrapper {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .content-lightbox__wrapper {
    padding: 50px 10px 10px;
  }
}
.content-lightbox__container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  max-width: 1340px;
  padding: 10px;
  background-color: #FFFFFF;
}
.content-lightbox__close-button {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  display: block;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: #032165;
  transition: background-color 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .content-lightbox__close-button {
    top: auto;
    bottom: calc(100% + 4px);
    transform: none;
  }
}
.content-lightbox__close-button:hover {
  background-color: #3D3935;
}
.content-lightbox__close-button::before, .content-lightbox__close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 18px;
  width: 2px;
  background-color: #FFFFFF;
}
.content-lightbox__close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.content-lightbox__close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.content-lightbox__content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-lightbox .virtual-tour-iframe-wrapper,
.content-lightbox .video-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
}
.content-lightbox .virtual-tour-iframe-wrapper iframe,
.content-lightbox .video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-lightbox .lightbox-content-loading-blocker {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms/2, visibility 350ms ease-in-out/2;
  z-index: 10;
}
.content-lightbox .lightbox-content-loading-blocker.active {
  opacity: 1;
  visibility: visible;
}
.content-lightbox .lightbox-content-loading-blocker.active:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #032165;
  border-bottom-color: #032165;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #E0E1E2;
}

::-webkit-scrollbar-thumb {
  background: #000;
}

.lightbox {
  display: none;
  position: fixed;
  margin: 0 auto;
  padding: 60px 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
}
.lightbox.visible {
  display: block;
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: visibility 0ms, opacity 350ms, top 0ms, left 0ms;
}
.lightbox .lightbox-container {
  position: relative;
  margin: 0 auto;
  padding: 40px 0px 0px 40px;
  width: 100%;
  height: 100%;
  max-width: 1340px;
  max-height: 100%;
  background-color: #FFFFFF;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .lightbox .lightbox-container {
    margin-top: 50px;
    padding: 30px 0 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .lightbox .lightbox-container {
    margin-top: 50px;
    padding: 20px 0 0 20px;
  }
}
.lightbox .lightbox-wrapper {
  position: relative;
  padding: 60px;
  height: 100%;
}
@media only screen and (min-width: 1340px) {
  .lightbox .lightbox-wrapper {
    padding: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .lightbox .lightbox-wrapper {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .lightbox .lightbox-wrapper {
    padding: 50px 10px 10px;
  }
}
.lightbox .lightbox-content {
  position: relative;
  width: 100%;
  font-size: 25px;
  line-height: 31px;
  font-family: "AstoriaSans", sans-serif;
  margin: 0 auto;
  max-height: 100%;
  overflow-x: hidden;
}
.lightbox .close-button {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  display: block;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: #032165;
  transition: background-color 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .lightbox .close-button {
    top: auto;
    height: 31px;
    width: 31px;
    bottom: calc(100% - 15px);
    right: -5px;
    transform: none;
  }
}
.lightbox .close-button:hover {
  background-color: #3D3935;
}
.lightbox .close-button::before, .lightbox .close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 18px;
  width: 2px;
  background-color: #FFFFFF;
}
.lightbox .close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.lightbox .close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.lightbox .lightbox-header {
  position: relative;
  padding: 32px 50px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  background-color: #FFFFFF;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .lightbox .lightbox-header {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .lightbox .lightbox-header {
    padding: 20px;
    flex-direction: column;
  }
}
.lightbox .lightbox-header .lightbox-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lightbox .lightbox-header .lightbox-titles .h1-like {
  margin-bottom: 0;
  font-size: 45px;
  line-height: 1.26;
  font-weight: 700;
  font-size: 3.13vw;
}
@media (max-width: 958.4664536741px) {
  .lightbox .lightbox-header .lightbox-titles .h1-like {
    font-size: 30px;
  }
}
@media (min-width: 1437.6996805112px) {
  .lightbox .lightbox-header .lightbox-titles .h1-like {
    font-size: 45px;
  }
}
.lightbox .lightbox-header .lightbox-titles .sub-titles {
  display: flex;
  flex-direction: column;
  font-weight: 300;
}
.lightbox .lightbox-header .lightbox-titles .sub-titles .main-subtitle {
  font-size: 45px;
  line-height: 1.26;
  font-size: 3.13vw;
}
@media (max-width: 958.4664536741px) {
  .lightbox .lightbox-header .lightbox-titles .sub-titles .main-subtitle {
    font-size: 30px;
  }
}
@media (min-width: 1437.6996805112px) {
  .lightbox .lightbox-header .lightbox-titles .sub-titles .main-subtitle {
    font-size: 45px;
  }
}
.lightbox .lightbox-header .lightbox-controls {
  display: flex;
  align-items: flex-start;
  justify-content: right;
}
.lightbox .lightbox-header .lightbox-controls .download-link {
  border: 1px solid #000;
  font-weight: bold;
  padding: 23px 25.5px;
  color: #fff;
  text-decoration: none;
  background-color: #000;
}
.lightbox .lightbox-body {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background: #F7F6F4;
  padding: 20px 50px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .lightbox .lightbox-body {
    padding: 20px 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .lightbox .lightbox-body {
    padding: 20px 20px 0;
  }
}
.lightbox .lightbox-body .lightbox-content-wrapper {
  margin-bottom: 20px;
}
.lightbox .lightbox-body p {
  margin-bottom: 5px;
}
.lightbox .lightbox-body .category-wrapper {
  border-bottom: 1px solid #E0E1E2;
  margin-bottom: 10px;
}
.lightbox .lightbox-body .category-wrapper .menu-category {
  font-size: 40px;
  line-height: 1.325;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3.13vw;
}
@media (max-width: 830.6709265176px) {
  .lightbox .lightbox-body .category-wrapper .menu-category {
    font-size: 26px;
  }
}
@media (min-width: 1277.9552715655px) {
  .lightbox .lightbox-body .category-wrapper .menu-category {
    font-size: 40px;
  }
}
.lightbox .lightbox-body .title-price-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .lightbox .lightbox-body .title-price-wrapper {
    overflow: hidden;
  }
}
.lightbox .lightbox-body .title-wrapper {
  margin-right: 2em;
  font-weight: 300;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .lightbox .lightbox-body .title-wrapper {
    margin-right: 20px;
  }
}
.lightbox .lightbox-body .price-wrapper {
  position: relative;
  font-family: "AstoriaSans", sans-serif;
  font-weight: 300;
  color: #032165;
}
.lightbox .lightbox-body .title-wrapper + .price-wrapper::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 20%;
  left: -1em;
  display: block;
  width: 2px;
  height: 20px;
  background-color: #CCC;
}
@media only screen and (max-width: 767px) {
  .lightbox .lightbox-body .title-wrapper + .price-wrapper::before {
    left: -10px;
  }
}
.lightbox .lightbox-body .description-wrapper {
  display: inline-block;
  margin: 15px 0;
  font-family: "AstoriaSerif";
  font-size: 15px;
  line-height: 25px;
}
.lightbox .lightbox-body .description-wrapper .separator {
  color: #cccccc;
}

.schedule-lightbox-header {
  display: flex;
  position: relative;
  padding: 32px 50px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
@media only screen and (min-width: 1340px) {
  .schedule-lightbox-header {
    padding: 32px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .schedule-lightbox-header {
    padding: 35px 20px 20px;
    flex-direction: column;
  }
}
.schedule-lightbox-header .lightbox-controls {
  display: flex;
  align-items: flex-start;
  justify-content: right;
}
.schedule-lightbox-header .lightbox-controls .download-link {
  border: 1px solid #000;
  font-weight: bold;
  padding: 23px 25.5px;
  color: #fff;
  text-decoration: none;
  background-color: #000;
}

.schedule-img {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .schedule-img {
    width: 100%;
  }
}

.schedule-lightbox-titles {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.schedule-lightbox-titles .h1-like {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 45px;
  line-height: 53px;
}
.schedule-lightbox-titles .schedule-activity-title {
  font-size: 45px;
  line-height: 53px;
}

.schedule-lightbox-body {
  display: flex;
  font-weight: 300;
  flex-direction: column;
  background: #fff;
  padding: 20px 50px 0px;
}
@media (max-width: 500px) {
  .schedule-lightbox-body {
    padding: 20px 25px 0px;
  }
}
.schedule-lightbox-body .lightbox-table-header {
  display: flex;
  padding: 7px 10px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  margin-bottom: 10px;
}
.schedule-lightbox-body .lightbox-table-header .lightbox-header-item {
  width: 25%;
  font-size: 17px;
  line-height: 23px;
}
@media only screen and (max-width: 767px) {
  .schedule-lightbox-body .lightbox-table-header .lightbox-header-item {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 500px) {
  .schedule-lightbox-body .lightbox-table-header .lightbox-header-item {
    font-size: 10px;
    line-height: 20px;
    margin-right: 4em;
  }
  .schedule-lightbox-body .lightbox-table-header .lightbox-header-item:last-child {
    margin-right: 0;
  }
}

.schedule-note {
  font-size: 17px;
  line-height: 23px;
  margin: 20px 0px;
}
@media only screen and (max-width: 767px) {
  .schedule-note {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 500px) {
  .schedule-note {
    font-size: 12px;
    line-height: 20px;
  }
}

.lightbox-table-row-title {
  font-weight: 700;
  display: inline-block;
  padding: 7px 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .lightbox-table-row-title {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 500px) {
  .lightbox-table-row-title {
    font-size: 12px;
    line-height: 20px;
  }
}

.lightbox-table-row-content {
  display: flex;
  margin-bottom: 10px;
  padding: 7px 10px;
}
.lightbox-table-row-content:nth-of-type(even) {
  background-color: #ccc;
}
.lightbox-table-row-content .lightbox-content-item {
  width: 25%;
  font-size: 17px;
  line-height: 23px;
}
@media only screen and (max-width: 767px) {
  .lightbox-table-row-content .lightbox-content-item {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 500px) {
  .lightbox-table-row-content .lightbox-content-item {
    font-size: 12px;
    line-height: 20px;
  }
}
.lightbox-table-row-content .lightbox-content-item:last-child {
  margin-left: 2em;
}

.lightbox .floorplan-lightbox-container {
  padding: 10px;
  background-color: #F7F6F4;
}

.floorplan-content-wrapper {
  background-color: #F7F6F4;
}

.floorplan-header {
  display: flex;
  position: relative;
  padding: 32px 50px;
  justify-content: center;
  align-items: center;
  background-color: #F7F6F4;
}
@media only screen and (min-width: 1340px) {
  .floorplan-header {
    padding: 32px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .floorplan-header {
    padding: 35px 20px 20px;
    flex-direction: column;
  }
}
.floorplan-header .floorplan-title {
  font-size: 45px;
  line-height: 53px;
}

.floorplan-body {
  position: relative;
  width: 100%;
  font-family: "AstoriaSerif";
  font-weight: 300;
  background: #fff;
}
.floorplan-body th {
  color: #000;
  background-color: #F7F6F4;
}
@media (max-width: 542px) {
  .floorplan-body th {
    padding: 7px;
  }
}
@media (max-width: 392px) {
  .floorplan-body th {
    padding: 2px;
  }
}
.floorplan-body td {
  background-color: #fff;
  text-align: left;
  padding: 22px 10px;
  border-color: #E0E1E2;
}
@media (max-width: 542px) {
  .floorplan-body td {
    padding: 7px;
  }
}
@media (max-width: 392px) {
  .floorplan-body td {
    padding: 0px;
  }
}
.floorplan-body .floorplan-table-header .floorplan-header-item {
  width: 10%;
  font-size: 13px;
  line-height: 18px;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .floorplan-body .floorplan-table-header .floorplan-header-item {
    font-size: 12px;
    line-height: 15px;
  }
}
.floorplan-body .floorplan-table-content {
  position: relative;
  font-size: 14px;
  line-height: 17px;
}
@media (max-width: 542px) {
  .floorplan-body .floorplan-table-content {
    font-size: 12px;
    line-height: 15px;
  }
}
.floorplan-body .floorplan-table-content .floorplan-content-item:nth-child(even) {
  background-color: #F7F6F4;
}

.floorplans-open-buttons {
  background-color: #F7F6F4;
}
.floorplans-open-buttons .floorplan-button-table,
.floorplans-open-buttons .floorplan-button-pic {
  height: auto;
  min-height: 0;
  margin: 0 20px 13px 0;
  padding: 11px 20px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
  background-color: #808080;
  border-radius: 25px;
  border-color: #808080;
  transition: background-color 350ms ease-in-out, color 350ms ease-in-out, border-color 350ms ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
}
.floorplans-open-buttons .floorplan-button-table:last-child,
.floorplans-open-buttons .floorplan-button-pic:last-child {
  margin-right: 0;
}
.floorplans-open-buttons .floorplan-button-table:hover,
.floorplans-open-buttons .floorplan-button-pic:hover {
  color: #000000;
  background-color: transparent;
  border-color: #000000;
}

html.specials .breadcrumb-list {
  flex: 1 100%;
  margin-bottom: 40px;
  padding: 0 20px;
}

html.specials .category-selector .specials-catecory-button {
  position: relative;
  display: inline-block;
  height: 30px;
  margin: 0 20px;
  padding-left: 42px;
  line-height: 30px;
  text-transform: uppercase;
}
html.specials .category-selector .specials-catecory-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #E0E1E2;
}
html.specials .category-selector .specials-catecory-button:hover::before {
  border-color: #032165;
}
html.specials .category-selector .specials-catecory-button.active::before {
  border-color: #032165;
}
html.specials .category-selector .specials-catecory-button.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../images/check-mark.svg") 50% 50% no-repeat;
  background-size: 100%;
}

.specials-list .page-block .left-column {
  font-size: 0;
  height: 320px;
}
@media only screen and (min-width: 980px) {
  .specials-list .page-block .left-column {
    height: auto;
  }
}
.specials-list .page-block .right-column {
  display: flex;
  align-items: center;
}
.specials-list .content-hidden .button {
  margin-bottom: 6px;
}
.specials-list .content-hidden .button:not(:last-child) {
  margin-right: 10px;
}

.single-special .background {
  display: block;
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-special .thumbnail {
  position: relative;
  display: block;
  width: 100%;
  margin-left: 0;
}
.single-special .switch-slide {
  position: absolute;
  display: block;
  width: 65px;
  top: 40%;
  font-family: "AstoriaSans", sans-serif;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
  font-weight: 300;
  z-index: 1;
}
.single-special .switch-slide:hover {
  color: #9e6d06;
}
@media only screen and (max-width: 767px) {
  .single-special .switch-slide {
    top: 40%;
    width: 32px;
    color: #fff;
  }
}
.single-special .switch-slide .switch-slide-arrow {
  display: block;
  color: currentColor;
  height: 65px;
  border-top: 2px solid;
  transition: color 0.3s;
}
@media only screen and (max-width: 767px) {
  .single-special .switch-slide .switch-slide-arrow {
    height: 32px;
  }
}
.single-special .switch-slide .title {
  display: block;
  margin-top: 35px;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  transition: color 0.3s;
}
@media only screen and (max-width: 767px) {
  .single-special .switch-slide .title {
    height: 32px;
    margin-top: 20px;
    font-size: 10px;
    line-height: 13px;
    font-weight: 700;
  }
}
.single-special .switch-slide.prev {
  left: -98px;
}
.single-special .switch-slide.prev .switch-slide-arrow {
  border-left: 2px solid;
  transform-origin: top right;
  transform: rotate(-45deg);
}
.single-special .switch-slide.prev .title {
  text-align: right;
}
@media (max-width: 940px) {
  .single-special .switch-slide.prev {
    left: 0;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .single-special .switch-slide.prev {
    left: 20px;
  }
}
.single-special .switch-slide.next {
  right: -98px;
}
.single-special .switch-slide.next .switch-slide-arrow {
  border-right: 2px solid;
  transform-origin: top left;
  transform: rotate(45deg);
}
@media (max-width: 940px) {
  .single-special .switch-slide.next {
    right: 0;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .single-special .switch-slide.next {
    right: 20px;
  }
}
.single-special ul {
  max-width: 730px;
  -moz-columns: 2;
  columns: 2;
}
@media only screen and (max-width: 767px) {
  .single-special ul {
    -moz-columns: 1;
    columns: 1;
  }
}
.single-special .special-description-wrapper {
  display: flex;
  max-width: 730px;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.special-bookNow-button {
  display: flex;
  justify-content: center;
}

.back-wrapper {
  display: flex;
  justify-content: center;
}

.specials-back-button {
  position: relative;
  text-decoration: none;
  color: #000;
  background-color: #f7f7f7;
  text-transform: uppercase;
  font-family: "AstoriaSans", sans-serif;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  padding: 19px 55px;
}
.specials-back-button::before {
  content: "";
  position: absolute;
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(135deg);
  width: 8px;
  height: 8px;
  color: #000;
  left: 30px;
  top: 40%;
}

.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: #032165;
  border-bottom-color: #032165;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.google-map.loaded:before {
  content: none;
}

.hotel-location-map, .poi-map-canvas {
  height: 444px;
  background: #e5e3df;
}
.hotel-location-map h4, .poi-map-canvas h4 {
  margin: 0;
  font: 16px "AstoriaSans", sans-serif;
  text-transform: uppercase;
  color: #327d7d;
}
.hotel-location-map p, .poi-map-canvas p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.hotel-location-map .button, .poi-map-canvas .button {
  display: block;
}
.hotel-location-map .map-content, .poi-map-canvas .map-content {
  overflow: hidden;
}

.map-content {
  background: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  line-height: 24px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-align: center;
  color: #fff;
  width: 300px;
}
.map-content h3, .map-content p {
  margin-bottom: 5px;
}
.map-content h3 {
  font: 700 16px/24px "AstoriaSans", sans-serif;
  color: #fff;
}
.map-content a {
  color: #fff;
}
.map-content .button {
  margin-top: 20px;
}

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

.pressroom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.pressroom .pressroom-item {
  width: calc(33.3% - 20px);
  margin-bottom: 20px;
}
@media only screen and (min-width: 1340px) {
  .pressroom .pressroom-item {
    width: calc(33.3% - 60px);
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 979px) {
  .pressroom .pressroom-item {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
  }
}
.pressroom .nav {
  width: 100%;
  text-align: center;
}

.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: 1px solid #e2e2e2;
}
.form .compliance {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media only screen and (max-width: 767px) {
  .form .compliance {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .form .compliance input[type=checkbox] {
    order: -1;
  }
}
.form .compliance label {
  width: auto;
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  .form .compliance label {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .form .compliance em {
    padding: 0 0 0 5px;
  }
}
.form .input-file-wrapper {
  display: flex;
  align-items: baseline;
}
@media only screen and (max-width: 767px) {
  .form .input-file-wrapper {
    flex-direction: column;
  }
}
.form .checkbox-wrapper {
  display: flex;
  align-items: baseline;
}
@media only screen and (max-width: 767px) {
  .form .checkbox-wrapper {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .form .checkbox-wrapper label {
    margin: 0 0 0 5px;
  }
}
.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 5px;
    text-align: left;
    width: auto;
  }
}
.form 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 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=number],
.form input[type=email],
.form input[type=url],
.form input[type=date],
.form input[type=datepicker],
.form input[type=phone],
.form textarea,
.form select,
.form .input-overlay {
  background: #fff;
  color: #53565a;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 250px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .form input[type=text],
  .form input[type=number],
  .form input[type=email],
  .form input[type=url],
  .form input[type=date],
  .form input[type=datepicker],
  .form input[type=phone],
  .form textarea,
  .form select,
  .form .input-overlay {
    padding: 0 20px;
    width: 100%;
    text-align: left;
  }
}
.form input[type=text]:focus,
.form input[type=number]:focus,
.form input[type=email]:focus,
.form input[type=url]:focus,
.form input[type=date]:focus,
.form input[type=datepicker]:focus,
.form input[type=phone]:focus,
.form textarea:focus,
.form select:focus,
.form .input-overlay:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 1px;
  border-color: #4A90E2;
}
.form input[type=date] {
  position: relative;
}
.form input[type=date]::-webkit-datetime-edit {
  padding: 0;
}
.form input[type=date]::-webkit-datetime-edit-fields-wrapper {
  background: transparent;
}
.form input[type=date]::-webkit-datetime-edit-text {
  padding: 0 2px;
}
.form input[type=date]::-webkit-inner-spin-button {
  display: none;
}
.form input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 2.5rem;
}
.using-keyboard .form input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}
.form input[type=date]::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
  width: 2.5rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.using-keyboard .form input[type=date]::after {
  display: none;
}
.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;
  min-width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
.form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .datepicker-input-wrapper {
  float: left;
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick,
.form .input-overlay {
  width: 100px;
  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 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .form .controls {
    margin-bottom: 20px;
  }
}
.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.not-rfp .form-builder-group {
  display: flex;
  flex-direction: column;
}
.form.not-rfp .controls {
  padding-left: 40%;
}
@media only screen and (max-width: 767px) {
  .form.not-rfp .controls {
    padding: 0;
    text-align: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.poi {
  overflow: hidden;
}

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

.poi-zoom {
  color: #032165;
  font-size: 14px;
  line-height: 22px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0;
}
.poi-zoom .poi-zoom-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #fff;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
}
.poi-zoom .poi-zoom-button:after {
  content: "";
  background: #032165;
  display: block;
  width: 8px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poi-zoom .poi-zoom-button.zoom-in:before {
  content: "";
  background: #032165;
  display: block;
  width: 1px;
  height: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.poi-map {
  height: 800px;
}

@media only screen and (max-width: 979px) {
  .poi-overlay {
    text-align: center;
  }
}
.poi-overlay .title {
  margin-bottom: 37px;
  font: 300 36px/1 "AstoriaSans", sans-serif;
  text-transform: uppercase;
}
.poi-overlay .category-selector {
  margin: 0 0 20px 0;
}
.poi-overlay .category-selector button {
  position: relative;
  padding-left: 45px;
  margin-bottom: 10px;
  color: inherit;
  font-size: 15px;
  line-height: 40px;
}
@media only screen and (min-width: 1340px) {
  .poi-overlay .category-selector button {
    display: block;
  }
}
.poi-overlay .category-selector button:before {
  background: url(../images/poi/icons.svg) no-repeat -38px -38px;
  content: "";
  position: absolute;
  display: block;
  height: 38px;
  width: 38px;
  top: 0;
  left: 0;
  border: 1px solid #71686A;
  border-radius: 50%;
  box-sizing: content-box;
}
.poi-overlay .category-selector button.icon-restaurants-bars:before {
  background-position: -11px -11px;
}
.poi-overlay .category-selector button.icon-shopping:before {
  background-position: -71px -11px;
}
.poi-overlay .category-selector button.icon-zoo:before {
  background-position: -131px -11px;
}
.poi-overlay .category-selector button.icon-theme-parks:before {
  background-position: -191px -11px;
}
.poi-overlay .category-selector button.icon-wineries:before {
  background-position: -251px -11px;
}
.poi-overlay .category-selector button.icon-breakfast:before {
  background-position: -311px -11px;
}
.poi-overlay .category-selector button.icon-attractions:before, .poi-overlay .category-selector button.icon-sights:before {
  background-position: -371px -11px;
}
.poi-overlay .category-selector button.icon-places-for-children:before {
  background-position: -431px -11px;
}
.poi-overlay .category-selector button.icon-museums:before {
  background-position: -491px -11px;
}
.poi-overlay .category-selector button.icon-national-monuments:before {
  background-position: -551px -11px;
}
.poi-overlay .category-selector button.icon-farmer-markets:before {
  background-position: -611px -11px;
}
.poi-overlay .category-selector button.icon-nightlife:before {
  background-position: -671px -11px;
}
.poi-overlay .category-selector button.icon-arts-culture:before {
  background-position: -731px -11px;
}
.poi-overlay .category-selector button.icon-hospitals:before {
  background-position: -791px -11px;
}
.poi-overlay .category-selector button.icon-banks:before {
  background-position: -851px -11px;
}
.poi-overlay .category-selector button.icon-spas:before {
  background-position: -911px -11px;
}
.poi-overlay .category-selector button.icon-gardens:before {
  background-position: -971px -11px;
}
.poi-overlay .category-selector button.icon-cafes:before {
  background-position: -1031px -11px;
}
.poi-overlay .category-selector button.icon-entertainment:before {
  background-position: -1091px -11px;
}
.poi-overlay .category-selector button.icon-golf:before {
  background-position: -1151px -11px;
}
.poi-overlay .category-selector button.icon-romantic-spots:before, .poi-overlay .category-selector button.icon-amenities:before {
  background-position: -1211px -11px;
}
.poi-overlay .category-selector button.icon-hidden-gems:before {
  background-position: -1271px -11px;
}
.poi-overlay .category-selector button.icon-corporate-offices:before {
  background-position: -1331px -11px;
}
.poi-overlay .category-selector button.icon-outdoors:before {
  background-position: -1391px -11px;
}
.poi-overlay .category-selector button.icon-lakes:before {
  background-position: -1451px -11px;
}
.poi-overlay .category-selector button.icon-rivers:before {
  background-position: -1511px -11px;
}
.poi-overlay .category-selector button.icon-beaches:before {
  background-position: -1571px -11px;
}
.poi-overlay .category-selector button.icon-hiking:before {
  background-position: -1631px -11px;
}
.poi-overlay .category-selector button.icon-places-of-worship:before {
  background-position: -1691px -11px;
}
.poi-overlay .category-selector button.icon-sports:before {
  background-position: -1751px -11px;
}
.poi-overlay .category-selector button.icon-universities:before {
  background-position: -1811px -11px;
}
.poi-overlay .category-selector button:hover,
.poi-overlay .category-selector button.active {
  color: #032165;
}
.poi-overlay .category-selector button:hover:before,
.poi-overlay .category-selector button.active:before {
  border-color: #032165;
  background-color: #032165;
  background-image: url(../images/poi/icons-hover.svg);
}
.poi-overlay .see-resort-map {
  color: #3D3935;
  border-color: #3D3935;
  background-color: transparent;
}
.poi-overlay .see-resort-map:hover {
  border-color: #032165;
  background-color: #032165;
  color: #fff;
}
@media only screen and (min-width: 1340px) {
  .poi-overlay .see-resort-map {
    position: absolute;
    bottom: 120px;
    width: 240px;
  }
}

#home-poi {
  background: #F7F6F4;
  color: #3D3935;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1340px) {
  #home-poi {
    min-height: 840px;
  }
}
#home-poi .poi-overlay {
  width: 100%;
  padding: 60px;
  box-sizing: border-box;
}
@media only screen and (min-width: 1340px) {
  #home-poi .poi-overlay {
    margin-left: calc(100% - 480px);
    width: 480px;
    padding: 120px 120px 300px 120px;
  }
}
#home-poi .poi-map {
  position: relative;
  height: 500px;
}
@media only screen and (min-width: 1340px) {
  #home-poi .poi-map {
    position: absolute !important;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(100% - 480px);
  }
}

#calendar-header {
  padding: 20px 0;
  border-top: 2px solid #3D3935;
}
#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 li a {
  display: inline-block;
  font-size: 15px;
  line-height: 60px;
  text-decoration: none;
  text-transform: uppercase;
  color: #4D4646;
  border-right: 2px solid #3D3935;
  padding: 0 15px;
}
#calendar-links li:last-child a {
  border-right: 0;
}

#calendar-filter {
  float: right;
}
@media only screen and (max-width: 767px) {
  #calendar-filter {
    float: none;
    margin-top: 10px;
    text-align: center;
  }
}
#calendar-filter .select-wrapper {
  min-width: 280px;
}
#calendar-filter .select-wrapper select {
  width: 100%;
}

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

#calendar-nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
  padding: 0 10px;
}
#calendar-nav li a {
  font-size: 16px;
  line-height: 60px;
  display: block;
  padding: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
}
#calendar-nav li a:hover {
  color: #3D3935;
}
#calendar-nav li a.inactive {
  opacity: 0.8;
}
#calendar-nav li a.current {
  background: #999999;
  color: #fff;
}
#calendar-nav li:first-child,
#calendar-nav li:last-child {
  font-size: 19px;
  font-weight: bold;
}
@media only screen and (min-width: 1340px) {
  #calendar-nav li:first-child {
    margin-right: auto;
  }
}
@media only screen and (min-width: 1340px) {
  #calendar-nav li:last-child {
    margin-left: auto;
  }
}

#calendar-navigation {
  display: block;
  height: 60px;
  line-height: 60px;
  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: #F7F6F4;
}
#calendar-navigation a.prev, #calendar-navigation a.next {
  position: absolute;
  top: 21px;
  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 .single-event .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  #calendar .single-event .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.calendar .single-event .socials {
  text-align: left;
}

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

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

#calendar .image-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: -5px;
}
#calendar .image-list-item {
  overflow: hidden;
  position: relative;
  width: calc(25% - 10px);
  margin: 5px;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  background: #F7F6F4;
}
#calendar .image-list-item .date {
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  color: #90705C;
  position: relative;
  top: -20px;
}
@media only screen and (min-width: 1340px) {
  #calendar .image-list-item {
    width: calc(20% - 10px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #calendar .image-list-item {
    width: calc(33.3% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  #calendar .image-list-item {
    width: calc(100% - 10px);
  }
}
#calendar .image-list-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 171.42%;
}
@media only screen and (max-width: 767px) {
  #calendar .image-list-item:after {
    padding-bottom: 50%;
  }
}
#calendar .image-list-item .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#calendar .image-list-item .description {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 11px 30px 40px;
  box-sizing: border-box;
}
#calendar .image-list-item .description .date {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 19px;
}
#calendar .image-list-item .description h3 {
  text-transform: uppercase;
  font: 20px/24px "AstoriaSans", sans-serif;
  color: #90705C;
}
#calendar .image-list-item .description h3 a {
  color: inherit;
  text-decoration: none;
}
#calendar .image-list-item .description .content-hidden {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms ease-in-out;
}
#calendar .image-list-item .description .content-hidden .summary {
  font-size: 14px;
  line-height: 16px;
  margin-top: 15px;
  margin-bottom: 48px;
}
#calendar .image-list-item .description .content-hidden .button {
  height: 40px;
  line-height: 40px;
}
#calendar .image-list-item:hover .content-hidden {
  max-height: 500px;
}
#calendar .image-list-item.no-events {
  margin: 40px 0;
  padding: 40px 0;
  height: auto;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 120%;
  width: 100%;
}
#calendar .image-list-item.no-events:after {
  padding-bottom: 0%;
}

#booking .selectedTxt {
  display: block;
  height: 30px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #979797;
  font: 700 15px/30px "AstoriaSans", sans-serif;
  color: #3D3935;
  text-transform: uppercase;
}
#booking .selectedTxt:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #3D3935;
  border-left: 1px solid #3D3935;
  transform: rotate(-45deg) translateY(-50%);
  margin-top: -4px;
  pointer-events: none;
}
#booking .SSContainerDivWrapper {
  position: absolute;
  background: #edf2f5;
  min-width: 100%;
  z-index: 9999;
  top: 100% !important;
}
#booking .newList {
  overflow: auto;
  max-height: 200px;
  box-shadow: inset 0px 0px 0px 1px rgb(255, 255, 255);
  margin: 0 !important;
  list-style: none !important;
}
#booking .newList::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
  background: #999;
}
#booking .newList::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #000;
}
#booking .newList li {
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
}
#booking .newList li:after {
  content: none !important;
}
#booking .newList li.newListOptionTitle {
  padding: 3px 5px 0 !important;
  font-weight: bold;
  color: #000;
}
#booking .newList li.newListOptionTitle ul {
  margin: 3px -5px 0 !important;
  font-weight: normal;
}
#booking .newList li a {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  font: 700 15px/20px "AstoriaSans", sans-serif;
  color: #2f3438;
  text-transform: uppercase;
  transition: background-color 0.2s;
  padding: 10px 15px;
  box-sizing: border-box;
  position: static;
  white-space: nowrap;
  text-decoration: none !important;
  -moz-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
}
#booking .newList li a:hover, #booking .newList li a.hiLite {
  background: #032165;
  color: #ffffff;
}
#booking .newList li:last-child a {
  border-bottom: none;
}

.hide-select-icon .select-icon {
  display: none !important;
}

#hebs-gallery .select-icon {
  display: none !important;
}
#hebs-gallery .selectedTxt {
  margin-top: 5px;
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  background: #3D3935;
  font-size: 14px;
  color: #F7F6F4;
  border: 1px solid #F7F6F4;
  display: inline-block;
  position: relative;
  width: 215px;
  padding: 0 20px;
  z-index: 3;
}
#hebs-gallery .selectedTxt:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #F7F6F4;
  border-left: 1px solid #F7F6F4;
  transform: rotate(-45deg) translateY(-50%);
  margin-top: -4px;
  pointer-events: none;
}
#hebs-gallery .SSContainerDivWrapper {
  position: absolute;
  z-index: 9999;
  overflow: visible;
  width: 215px;
  left: 20px !important;
  border: 0px 1px 1px 1px solid #F7F6F4;
  height: auto !important;
}
#hebs-gallery .newList {
  background: #EEF2F5;
  max-height: 260px;
  overflow: auto;
  overflow-x: hidden;
  padding: 2px !important;
  list-style: none !important;
  height: auto !important;
}
#hebs-gallery .newList li {
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
}
#hebs-gallery .newList li:after {
  content: none !important;
}
#hebs-gallery .newList li.newListOptionTitle {
  padding: 3px 5px 0 !important;
  font-weight: bold;
  color: #000;
}
#hebs-gallery .newList li.newListOptionTitle ul {
  margin: 3px -5px 0 !important;
  font-weight: normal;
}
#hebs-gallery .newList a {
  color: #4D4646;
  display: block;
  padding: 6px 16px;
  position: static;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none !important;
}

.home-gallery {
  position: relative;
}
@media only screen and (max-width: 1339px) {
  .home-gallery .slideshow-wrapper {
    display: flex;
    flex-flow: row nowrap;
  }
}
.home-gallery .grid-element .grid-element-item .content {
  position: static;
}
.home-gallery .grid-element .grid-element-item .content h4 {
  position: relative;
  font: 500 26px/28px "AstoriaSans", sans-serif;
}
.home-gallery .grid-element .grid-element-item.has-video:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  height: 28px;
  width: 40px;
  background: url("../images/sprite.svg") -100px 0 no-repeat;
}

.grid-gallery-block .gallery:nth-of-type(even) .grid-element:first-child {
  float: right;
}
.grid-gallery-block .gallery:nth-of-type(even) .grid-element:last-child {
  float: left;
}
@media only screen and (max-width: 1339px) {
  .grid-gallery-block .grid-element {
    width: 100%;
  }
}
@media only screen and (max-width: 1339px) {
  .grid-gallery-block .grid-element:after {
    padding-bottom: 50%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 1339px) {
  .grid-gallery-block .grid-element:after {
    padding-bottom: 100%;
  }
}
.grid-gallery-block .grid-element.add-block {
  display: none;
}
@media only screen and (min-width: 1340px) {
  .grid-gallery-block .grid-element.add-block {
    display: block;
  }
}
.grid-gallery-block .grid-element.has-video {
  width: 100%;
}
.grid-gallery-block .grid-element.has-video:after {
  padding-bottom: 50%;
}
@media only screen and (max-width: 767px) {
  .grid-gallery-block .grid-element.has-video:after {
    padding-bottom: 100%;
  }
}
.grid-gallery-block .grid-element.has-video .grid-element-item {
  color: #90705C;
}
.grid-gallery-block .grid-element.has-video .grid-element-item .thumbnail {
  mix-blend-mode: luminosity;
  filter: grayscale(100%);
}
.grid-gallery-block .grid-element.has-video .grid-element-item .thumbnail:after {
  background: rgba(252, 240, 215, 0.7);
}
.grid-gallery-block .grid-element.has-video .grid-element-item .content .icon {
  content: "";
  display: inline-block;
  height: 42px;
  width: 60px;
  background: url("../images/sprite.svg") 0 -330px no-repeat;
  margin-top: 33px;
}

.subpage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.subpage-grid .subpage {
  display: flex;
  flex-direction: row;
  min-height: 0;
  width: 100%;
}
.subpage-grid .subpage::before {
  content: "";
  padding-bottom: 44%;
}
.subpage-grid .subpage.half {
  width: calc((100% - 60px) / 2);
}
.subpage-grid .subpage.half::before {
  padding-bottom: 94%;
}
@media only screen and (max-width: 767px) {
  .subpage-grid .subpage.half {
    width: 100%;
  }
  .subpage-grid .subpage.half::before {
    padding-bottom: 44%;
  }
}
.subpage-grid .subpage .slideshow {
  position: relative;
  display: flex;
  width: 100%;
}
.subpage-grid .subpage .slideshow .slideshow-wrapper {
  height: 100%;
  width: 100%;
}
.subpage-grid .subpage .slideshow .slideshow-wrapper .slide {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.subpage-grid .subpage .slideshow .slideshow-wrapper .slide::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.subpage-grid .subpage-grid-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  padding: 40px;
  color: #FFFFFF;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .subpage-grid .subpage-grid-content {
    padding: 20px 20px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .subpage-grid .subpage-grid-content {
    padding: 20px;
  }
}
.subpage-grid .subpage-grid-content * {
  margin: 0;
}
.subpage-grid .subpage-grid-content *:not(:first-child) {
  margin-top: 14px;
}
.subpage-grid .subpage-grid-content h2,
.subpage-grid .subpage-grid-content h3,
.subpage-grid .subpage-grid-content h4,
.subpage-grid .subpage-grid-content h5,
.subpage-grid .subpage-grid-content h6 {
  font-family: "AstoriaSans", sans-serif;
}
.subpage-grid .subpage-grid-content h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -1px;
}
.subpage-grid .subpage-grid-content .button {
  margin-top: 10px;
}
.subpage-grid .subpage-grid-content .button:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.waldorf body {
  line-height: 25px;
}
.waldorf .page-block {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .waldorf .page-block {
    margin-bottom: 20px;
  }
}
.waldorf #content .bg {
  display: none;
}
.waldorf .page-content-headings:before {
  content: "";
  position: relative;
  display: block;
  margin: 60px auto 61px;
  width: 400px;
  height: 174px;
  background: url("../images/waldorf-logo.svg") 0 0 no-repeat;
}
@media only screen and (max-width: 767px) {
  .waldorf .page-content-headings:before {
    margin: 40px auto;
    width: 300px;
    height: 130px;
    background-size: 100% auto;
  }
}
.waldorf .h1, .waldorf h1 {
  margin: 40px auto 52px;
  color: #000000;
  font-family: "Gotham Light", sans-serif;
  font-weight: normal;
  font-size: 50px;
  line-height: 64px;
  text-transform: none;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .waldorf .h1, .waldorf h1 {
    font-size: 30px;
    line-height: 34px;
    margin: 30px 0;
  }
}
.waldorf .h3, .waldorf h3 {
  margin: 54px auto 91px;
  color: #000000;
  font-family: "Gotham Light", sans-serif;
  font-weight: normal;
  font-size: 36px;
  line-height: 50px;
  text-transform: none;
  text-align: center;
  max-width: 520px;
}
@media only screen and (max-width: 767px) {
  .waldorf .h3, .waldorf h3 {
    font-size: 30px;
    line-height: 34px;
    margin: 30px 0;
  }
}
.waldorf .page-content p {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .waldorf .page-content p {
    margin-bottom: 20px;
  }
}
.waldorf #main-content > .page-content-wrapper {
  max-width: 800px;
}
.waldorf #main-content > .page-content-wrapper .page-content {
  color: #000000;
  text-align: center;
}
.waldorf .button {
  display: inline-block;
  background-color: #000000;
  border-color: #000000;
  margin: 43px auto;
}
@media only screen and (max-width: 767px) {
  .waldorf .button {
    margin: 0;
    width: 100%;
  }
}
.waldorf .button:hover {
  background-color: #ffffff;
  color: #000000;
}
.waldorf .benefits-block .center-column {
  max-width: 920px;
  border-top: 1px solid #D8D8D8;
  padding: 40px 0 0;
}
@media only screen and (max-width: 979px) {
  .waldorf .benefits-block .center-column {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .waldorf .benefits-block .center-column {
    padding: 0 20px;
  }
}
.waldorf .benefits-block .center-column .items-wrapper {
  font-size: 0;
}
.waldorf .benefits-block .center-column .item {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  color: #000000;
  margin-bottom: 77px;
  box-sizing: border-box;
  font-size: 16px;
  padding-right: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .waldorf .benefits-block .center-column .item {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.waldorf .benefits-block .center-column .item:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .waldorf .benefits-block .center-column .item:nth-child(even) {
    padding-left: 0;
  }
}
.waldorf .benefits-block .center-column .item:nth-child(even) .icon {
  left: 30px;
}
@media only screen and (max-width: 767px) {
  .waldorf .benefits-block .center-column .item:nth-child(even) .icon {
    left: 0;
  }
}
.waldorf .benefits-block .center-column .item .icon {
  position: absolute;
  left: 0;
  top: 5px;
}
.waldorf .benefits-block .center-column .item .icon img {
  width: 45px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .waldorf .benefits-block .center-column .item .icon img {
    width: 30px;
  }
}
.waldorf .benefits-block .center-column .item .text {
  padding-left: 75px;
}
@media only screen and (max-width: 767px) {
  .waldorf .benefits-block .center-column .item .text {
    padding-left: 45px;
  }
}
.waldorf .benefits-block .center-column .item .text .title {
  font-family: "Gotham Bold", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.waldorf .bottom-button {
  text-align: center;
}
.waldorf .bottom-button .button {
  border: 1px solid #000;
  color: #000;
  background: none;
  margin: 0 auto;
  transition: color 100ms, background-color 100ms, border-color 100ms;
}
.waldorf .bottom-button .button:hover {
  background: #000;
  color: #fff;
}
.waldorf #photos .booking-open-button {
  margin: 0;
}

.promo-grid .grid-element.count-1:last-child:nth-child(odd):after {
  padding-bottom: 100%;
}

.venue-form {
  margin-bottom: -15px;
  padding: 30px 30px 0;
  border-top: 1px solid #E0E1E2;
}
@media only screen and (max-width: 979px) {
  .venue-form {
    margin-bottom: 0;
  }
}
.venue-form__fieldset {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 979px) {
  .venue-form__fieldset {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.venue-form__column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 80px;
  width: calc((100% - 15px) / 2);
  margin-bottom: 15px;
}
@media only screen and (max-width: 979px) {
  .venue-form__column {
    width: 100%;
  }
  .venue-form__column:last-child {
    margin-bottom: 0;
  }
}
.venue-form__label {
  padding: 0 0 9px 20px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3D3935;
}
.venue-form .sevelt-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.venue-form .select-wrapper select.venue_form__input,
.venue-form input[type=text].venue-form__input, .venue-form__input {
  height: auto;
  width: 100%;
  padding: 16px 20px 15px;
  border: 1px solid #E0E1E2;
  font-family: "AstoriaSans", sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3D3935;
  background: #FFFFFF;
}
.venue-form .select-wrapper select.venue_form__input + .ui-datepicker-trigger,
.venue-form input[type=text].venue-form__input + .ui-datepicker-trigger, .venue-form__input + .ui-datepicker-trigger {
  display: none;
}
.venue-form__button.button {
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 15px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.venue-form__button.button:hover {
  background-color: transparent;
}

.venue-with-options {
  position: relative;
  display: flex;
  min-height: 720px;
  background-color: #F7F6F4;
}
@media only screen and (max-width: 979px) {
  .venue-with-options {
    flex-direction: column-reverse;
    min-height: 0;
  }
}
.venue-with-options::before {
  content: "";
  padding-bottom: 30%;
}
@media only screen and (max-width: 979px) {
  .venue-with-options::before {
    display: none;
  }
}
.venue-with-options--right-content {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 979px) {
  .venue-with-options--right-content {
    flex-direction: column-reverse;
  }
}
.venue-with-options--left-content {
  flex-direction: row;
}
@media only screen and (max-width: 979px) {
  .venue-with-options--left-content {
    flex-direction: column-reverse;
  }
}
.venue-with-options__content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 33.3333333333%;
  padding: 30px;
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__content-column {
    padding: 110px 60px 95px;
  }
}
@media only screen and (max-width: 979px) {
  .venue-with-options__content-column {
    width: 100%;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__content-column--thin {
    padding-left: 120px;
  }
}
.venue-with-options__content-column--with-form {
  padding: 30px 0;
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__content-column--with-form {
    padding: 30px 0;
  }
}
.venue-with-options__title {
  margin: 0 0 30px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 45px;
  line-height: 53px;
  letter-spacing: 2px;
  font-weight: 300;
  color: #000000;
}
.venue-with-options__title > strong {
  font-weight: 700;
}
.venue-with-options__title--bold {
  font-weight: 700;
}
.venue-with-options__title--indent {
  margin-bottom: 20px;
  padding: 0 30px;
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__title--indent {
    padding: 0 60px;
  }
}
.venue-with-options__options-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__options-list {
    margin-bottom: 40px;
    margin-right: -40px;
  }
}
.venue-with-options__option {
  display: flex;
  align-items: center;
  min-height: 31px;
  margin: 0 30px 6px 0;
  font-family: "AstoriaSans", sans-serif;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #000000;
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__option {
    margin-right: 40px;
  }
}
.venue-with-options__icon {
  display: block;
  height: 20px;
  width: 30px;
  margin-right: 18px;
  background: url("../images/sprite.svg") -200px -200px no-repeat;
}
.venue-with-options__icon--people {
  height: 20px;
  width: 30px;
  background-position: -200px -200px;
}
.venue-with-options__icon--area {
  height: 22px;
  width: 22px;
  background-position: -350px -200px;
}
.venue-with-options__content {
  margin-bottom: 20px;
  font-family: "AstoriaSerif";
  font-size: 15px;
  line-height: 25px;
  color: #000000;
}
.venue-with-options__content > *:not(:first-child) {
  margin-top: 25px;
}
.venue-with-options__content em {
  font-style: italic;
}
.venue-with-options__content--indent {
  padding: 0 30px;
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__content--indent {
    padding: 0 60px;
  }
}
.venue-with-options__button-wrapper {
  display: flex;
}
.venue-with-options__button-wrapper--indent {
  padding: 0 30px;
}
@media only screen and (min-width: 1340px) {
  .venue-with-options__button-wrapper--indent {
    padding: 0 60px;
  }
}
.venue-with-options__button.button {
  align-self: flex-start;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.venue-with-options__button.button:hover {
  background-color: transparent;
}
.venue-with-options__images-column {
  position: relative;
  width: 66.6666666667%;
}
@media only screen and (max-width: 979px) {
  .venue-with-options__images-column {
    width: 100%;
  }
}
.venue-with-options__zoom-button {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  display: block;
  height: 50px;
  width: 50px;
  background: url("../images/sprite.svg") -250px -250px no-repeat;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
}
.venue-with-options__zoom-button:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .venue-with-options__zoom-button {
    display: none;
  }
}
.venue-with-options__slideshow {
  height: 100%;
  width: 100%;
  background-color: #000000;
}
@media only screen and (max-width: 979px) {
  .venue-with-options__slideshow {
    position: relative;
    display: flex;
  }
  .venue-with-options__slideshow::before {
    content: "";
    padding-bottom: 54%;
  }
}
.venue-with-options__slideshow-wrapper {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 979px) {
  .venue-with-options__slideshow-wrapper {
    height: auto;
  }
}
.venue-with-options__image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.venue-with-options__slideshow-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -42px;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  overflow: hidden;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .venue-with-options__slideshow-button {
    display: none;
  }
}
.venue-with-options__slideshow-button:hover {
  border-color: #032165;
}
.venue-with-options__slideshow-button--previous {
  left: 40px;
  transform: rotate(-135deg);
}
.venue-with-options__slideshow-button--next {
  right: 40px;
  transform: rotate(45deg);
}
.venue-with-options__form {
  margin-top: 50px;
}
@media only screen and (max-width: 979px) {
  .venue-with-options__form {
    margin-top: 30px;
  }
}

.room-with-options {
  position: relative;
  display: flex;
  min-height: 720px;
  background-color: #F7F6F4;
}
@media only screen and (max-width: 979px) {
  .room-with-options {
    flex-direction: column-reverse;
    min-height: 0;
  }
}
.room-with-options::before {
  content: "";
  padding-bottom: 30%;
}
@media only screen and (max-width: 979px) {
  .room-with-options::before {
    display: none;
  }
}
.room-with-options--right-content {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 979px) {
  .room-with-options--right-content {
    flex-direction: column-reverse;
  }
}
.room-with-options--left-content {
  flex-direction: row;
}
@media only screen and (max-width: 979px) {
  .room-with-options--left-content {
    flex-direction: column-reverse;
  }
}
.room-with-options__content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 33.3333333333%;
  padding: 30px 30px 15px;
}
@media only screen and (min-width: 1340px) {
  .room-with-options__content-column {
    padding: 110px 60px 95px;
  }
}
@media only screen and (max-width: 979px) {
  .room-with-options__content-column {
    width: 100%;
    justify-content: flex-start;
  }
}
.room-with-options__title {
  margin: 0 0 30px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 45px;
  line-height: 53px;
  letter-spacing: 2px;
  font-weight: 300;
  color: #000000;
}
.room-with-options__title > strong {
  font-weight: 700;
}
.room-with-options__options-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1340px) {
  .room-with-options__options-list {
    padding-right: 65px;
  }
}
.room-with-options__option {
  display: flex;
  align-items: center;
  min-height: 31px;
  margin-bottom: 6px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #000000;
}
.room-with-options__option:not(:last-child) {
  margin-right: 40px;
}
.room-with-options__icon {
  display: block;
  height: 19px;
  width: 28px;
  margin-right: 18px;
  background: url("../images/sprite.svg") -250px -200px no-repeat;
}
.room-with-options__icon--bed-large {
  height: 19px;
  width: 28px;
  background-position: -250px -200px;
}
.room-with-options__icon--bed-small {
  height: 19px;
  width: 28px;
  background-position: -400px -200px;
}
.room-with-options__icon--pillow {
  height: 20px;
  width: 23px;
  background-position: -300px -200px;
}
.room-with-options__icon--area {
  height: 22px;
  width: 22px;
  background-position: -350px -200px;
}
.room-with-options__content {
  margin-bottom: 20px;
  font-family: "AstoriaSerif";
  font-size: 15px;
  line-height: 25px;
  color: #000000;
}
.room-with-options__content > *:not(:first-child) {
  margin-top: 25px;
}
.room-with-options__content em {
  font-style: italic;
}
.room-with-options__link-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px 40px 0;
}
.room-with-options__link {
  height: auto;
  min-height: 0;
  margin: 0 20px 13px 0;
  padding: 11px 20px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
  background-color: #808080;
  border-radius: 25px;
  border-color: #808080;
  transition: background-color 350ms ease-in-out, color 350ms ease-in-out, border-color 350ms ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-with-options__link:hover {
  color: #000000;
  background-color: transparent;
  border-color: #000000;
}
.room-with-options__button.button {
  align-self: flex-start;
  max-width: 100%;
  margin: 0 0 20px 0;
  background-color: #000;
  border-color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-with-options__button.button:hover {
  background-color: transparent;
}
.room-with-options__images-column {
  position: relative;
  width: 66.6666666667%;
}
@media only screen and (max-width: 979px) {
  .room-with-options__images-column {
    width: 100%;
  }
}
.room-with-options__zoom-button {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  display: block;
  height: 50px;
  width: 50px;
  background: url("../images/sprite.svg") -250px -250px no-repeat;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
}
.room-with-options__zoom-button:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .room-with-options__zoom-button {
    display: none;
  }
}
.room-with-options__slideshow {
  height: 100%;
  width: 100%;
  background-color: #000000;
}
@media only screen and (max-width: 979px) {
  .room-with-options__slideshow {
    position: relative;
    display: flex;
  }
  .room-with-options__slideshow::before {
    content: "";
    padding-bottom: 54%;
  }
}
.room-with-options__slideshow-wrapper {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 979px) {
  .room-with-options__slideshow-wrapper {
    height: auto;
  }
}
.room-with-options__image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.room-with-options__slideshow-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -42px;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  overflow: hidden;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .room-with-options__slideshow-button {
    display: none;
  }
}
.room-with-options__slideshow-button:hover {
  border-color: #032165;
}
.room-with-options__slideshow-button--previous {
  left: 40px;
  transform: rotate(-135deg);
}
.room-with-options__slideshow-button--next {
  right: 40px;
  transform: rotate(45deg);
}

.compare-rooms {
  display: flex;
  flex-direction: column;
}
.compare-rooms__filter-form {
  margin-bottom: 40px;
}
.compare-rooms__room-list {
  width: 100%;
  margin-bottom: 40px;
  overflow-x: auto;
}
.compare-rooms__room-list::-webkit-scrollbar {
  height: 6px;
}
.compare-rooms__room-list th, .compare-rooms__room-list td {
  text-align: center;
}
.compare-rooms__message {
  display: none;
  margin: 0 20px 40px;
  font-family: "AstoriaSerif";
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  color: #3D3935;
  text-align: center;
}
.compare-rooms__message--visible {
  display: block;
}
.compare-rooms__scroll-button {
  align-self: center;
  min-width: 0;
  font-size: 10px;
  line-height: 1;
  margin: 0 20px 40px;
  transform: rotate(180deg);
}
.compare-rooms__scroll-button::before {
  content: "\e97a";
  font-family: "Icomoon";
}
.compare-rooms__scroll-button--hidden {
  display: none;
}

.filter-form {
  background-color: #F7F6F4;
}
.filter-form--hidden {
  display: none;
}
.filter-form__fieldset {
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
}
@media only screen and (max-width: 767px) {
  .filter-form__fieldset {
    padding: 20px;
  }
}
.filter-form__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .filter-form__header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.filter-form__title {
  margin: 0 40px 0 0;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .filter-form__title {
    margin: 0;
  }
  .filter-form__title:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 979px) {
  .filter-form__reset-button {
    height: auto;
    min-width: 0;
    padding: 10px 20px;
    line-height: 20px;
  }
}
.filter-form__reset-button::before {
  content: "\e997";
  font-family: "Icomoon";
  margin-right: 10px;
}
.filter-form__reset-button:hover {
  background-color: transparent;
}
.filter-form__filter-list {
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 979px) {
  .filter-form__filter-list {
    flex-wrap: wrap;
  }
}
.filter-form__filter-item {
  width: 100%;
}
.filter-form__filter-item:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 979px) {
  .filter-form__filter-item:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 979px) {
  .filter-form__filter-item {
    width: calc((100% - 20px) / 2);
    margin-top: 20px;
  }
  .filter-form__filter-item:nth-child(2n-1) {
    margin-right: 20px;
  }
  .filter-form__filter-item:nth-child(1), .filter-form__filter-item:nth-child(2) {
    margin-top: 0;
  }
}

.filter {
  display: flex;
  flex-direction: column;
}
.filter--hidden {
  display: none;
}
.filter__title {
  margin-bottom: 20px;
  max-width: 200px;
}
.filter__value-list {
  display: flex;
  flex-direction: column;
}
.filter__value-item:not(:last-child) {
  margin-bottom: 5px;
}

.room-table {
  width: 100%;
  min-width: 1340px;
  font-family: "AstoriaSerif";
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  color: #808080;
  text-align: left;
}
.room-table__row:not(:first-child) {
  border-bottom: 1px solid #999da0;
}
.room-table__row--header {
  background-color: #F7F6F4;
}
.room-table__row--hidden {
  display: none;
}
.room-table__cell {
  width: 11.1111111111%;
  padding: 20px;
  vertical-align: middle;
}
.room-table__cell:not(:last-child) {
  border-right: 1px solid #999da0;
}
.room-table__cell--title {
  font-family: "AstoriaSans", sans-serif;
  font-weight: 700;
  color: #000000;
}
.room-table__cell--title.room-table__cell--large {
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (max-width: 979px) {
  .room-table__cell--title.room-table__cell--large {
    font-size: inherit;
    line-height: inherit;
  }
}
.room-table__cell--large {
  min-width: 200px;
  text-transform: uppercase;
  color: #000000;
}
.room-table__cell--button {
  min-width: 200px;
  text-align: center;
}
.room-table__button {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkbox {
  display: flex;
  align-items: baseline;
}
.checkbox__label {
  margin-left: 10px;
}

.category-with-options {
  display: flex;
  flex-direction: column;
  margin-top: 105px;
}
@media only screen and (max-width: 979px) {
  .category-with-options {
    margin-top: 60px;
  }
}
.category-with-options__header {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1360px;
  padding: 0 30px;
}
.category-with-options__title {
  text-align: center;
  margin: 0 0 75px;
}
@media only screen and (max-width: 979px) {
  .category-with-options__title {
    margin-bottom: 30px;
  }
}
.category-with-options__navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -60px 30px 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .category-with-options__navigation {
    margin-right: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .category-with-options__navigation {
    margin-right: 0;
  }
}
.category-with-options__button {
  position: relative;
  display: flex;
  margin: 0 60px 10px 0;
  padding: 0 8px 16px;
  font-family: "AstoriaSans", sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: normal;
  text-transform: uppercase;
  color: #3D3935;
  transition: color 350ms ease-in-out;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .category-with-options__button {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .category-with-options__button {
    display: none;
  }
}
.category-with-options__button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #032165;
  transform: translateX(-101%);
  transition: transform 350ms ease-in-out;
}
.category-with-options__button--active, .category-with-options__button:hover {
  color: #032165;
}
.category-with-options__button--active::before, .category-with-options__button:hover::before {
  transform: translateX(0);
}
.category-with-options__select-wrapper {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .category-with-options__select-wrapper {
    display: block;
  }
}
.category-with-options__select-wrapper .select-wrapper {
  width: 100%;
}
.category-with-options__select {
  width: 100%;
}
.category-with-options__content {
  display: flex;
  flex-direction: column;
  background-color: #F7F6F4;
}
.category-with-options__list {
  display: flex;
  flex-direction: column;
}
.category-with-options__item {
  display: none;
}
.category-with-options__item--active {
  display: block;
}
.category-with-options__table-wrapper {
  width: 100%;
  max-width: 1360px;
  margin-bottom: 40px;
  padding: 0 30px;
  overflow-x: auto;
}
@media only screen and (max-width: 979px) {
  .category-with-options__table-wrapper {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.category-with-options__table {
  width: 100%;
  min-width: 900px;
  table-layout: fixed;
}
.category-with-options__table th {
  padding: 16px 2px 26px;
  text-transform: uppercase;
  text-align: center !important;
  vertical-align: middle;
}
.category-with-options__table td {
  width: 100%;
  padding: 16px 20px;
  vertical-align: middle;
}
.category-with-options__table td:nth-child(2n-1) {
  background-color: #FFFFFF;
}
.category-with-options__table tr {
  border-bottom: 1px solid #E0E1E2;
}
.category-with-options__floorplan-list {
  width: 100%;
  padding: 0 30px;
}
.category-with-options__floorplan-item {
  display: none;
  width: 100%;
  margin-bottom: 80px;
  padding: 0;
  text-align: center;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 979px) {
  .category-with-options__floorplan-item {
    margin-bottom: 30px;
  }
}
.category-with-options__floorplan-item--active {
  display: block;
}
.category-with-options__floorplan {
  width: 100%;
  height: auto;
}

.menu-tabs-block-acm .tabs-titles {
  margin: 0 0 40px;
  border-bottom: 1px solid #aaa;
}
.menu-tabs-block-acm .tabs-titles ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.menu-tabs-block-acm .tabs-titles li.tab-title {
  order: 2;
  display: block;
  padding: 0;
  list-style: none;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}
.menu-tabs-block-acm .tabs-titles li.tab-title.active .button {
  background-color: #fff;
  border: 1px solid #aaa;
  border-bottom: 1px solid #fff;
  color: #222;
}
.menu-tabs-block-acm .tabs-titles .button {
  margin: 0 5px 0;
  background-color: #f9f4ec;
  color: #222;
  position: relative;
  bottom: -1px;
  border: 1px solid transparent;
  border-bottom: 1px solid #aaa;
  font-weight: 400;
}
.menu-tabs-block-acm .tabs-titles .button:hover {
  background: #fff;
  border: 1px solid #aaa;
  border-bottom: 1px solid transparent;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-titles {
    border-bottom: none;
  }
  .menu-tabs-block-acm .tabs-titles ul {
    flex-direction: column;
  }
  .menu-tabs-block-acm .tabs-titles li.tab-title:not(:last-of-type) {
    margin-bottom: 6px;
  }
  .menu-tabs-block-acm .tabs-titles li.tab-title .button {
    border-bottom: 1px solid transparent;
  }
  .menu-tabs-block-acm .tabs-titles li.tab-title.active .button {
    border: 1px solid #aaa;
  }
  .menu-tabs-block-acm .tabs-titles .button {
    margin: 0;
    width: 100%;
    position: static;
  }
}
.menu-tabs-block-acm .tabs-content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: 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.4s;
}
.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;
  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 0;
  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 h2 span {
  display: block;
  font-size: 0.8em;
}
.menu-tabs-block-acm .menu-block h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.menu-tabs-block-acm .menu-block .menu-item {
  margin-bottom: 20px;
}
.menu-tabs-block-acm .menu-block .menu-item p {
  margin-bottom: 0;
}
.menu-tabs-block-acm .menu-link {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
.menu-tabs-block-acm .menu-link .button {
  display: inline-block;
}

.menu-tabs-content-block-acm .tabs-titles {
  margin: 0 0 40px;
  border-bottom: 1px solid #aaa;
}
.menu-tabs-content-block-acm .tabs-titles ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.menu-tabs-content-block-acm .tabs-titles li.tab-title {
  order: 2;
  display: block;
  padding: 0;
  list-style: none;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}
.menu-tabs-content-block-acm .tabs-titles li.tab-title.active .button {
  background-color: #fff;
  border: 1px solid #aaa;
  border-bottom: 1px solid #fff;
  color: #222;
}
.menu-tabs-content-block-acm .tabs-titles .button {
  margin: 0 5px 0;
  background-color: #f9f4ec;
  color: #222;
  position: relative;
  bottom: -1px;
  border: 1px solid transparent;
  border-bottom: 1px solid #aaa;
  font-weight: 400;
}
.menu-tabs-content-block-acm .tabs-titles .button:hover {
  background: #fff;
  border: 1px solid #aaa;
  border-bottom: 1px solid transparent;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-content-block-acm .tabs-titles {
    border-bottom: none;
  }
  .menu-tabs-content-block-acm .tabs-titles ul {
    flex-direction: column;
  }
  .menu-tabs-content-block-acm .tabs-titles li.tab-title:not(:last-of-type) {
    margin-bottom: 6px;
  }
  .menu-tabs-content-block-acm .tabs-titles li.tab-title .button {
    border-bottom: 1px solid transparent;
  }
  .menu-tabs-content-block-acm .tabs-titles li.tab-title.active .button {
    border: 1px solid #aaa;
  }
  .menu-tabs-content-block-acm .tabs-titles .button {
    margin: 0;
    width: 100%;
    position: static;
  }
}
.menu-tabs-content-block-acm .tabs-content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: 100;
  overflow: hidden;
}
.menu-tabs-content-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.4s;
}
.menu-tabs-content-block-acm .tabs-content .tabs-content-item[id] {
  margin-top: -250px;
  padding-top: 250px;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-content-block-acm .tabs-content .tabs-content-item[id] {
    margin-top: -200px;
    padding-top: 200px;
  }
}
.menu-tabs-content-block-acm .tabs-content .tabs-content-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.menu-tabs-content-block-acm .tabs-content p.tabs-content-item-descr {
  margin-bottom: 30px;
  width: 70%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-content-block-acm .tabs-content p.tabs-content-item-descr {
    max-width: auto;
    width: 100%;
  }
}
.menu-tabs-content-block-acm .menu-block {
  width: 46%;
  min-width: 400px;
  margin-right: auto;
  padding: 0 2% 40px 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-content-block-acm .menu-block {
    width: 100%;
    min-width: auto;
  }
}
.menu-tabs-content-block-acm .menu-block h2 span {
  display: block;
  font-size: 0.8em;
}
.menu-tabs-content-block-acm .menu-block h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.menu-tabs-content-block-acm .menu-block .menu-item {
  margin-bottom: 20px;
}
.menu-tabs-content-block-acm .menu-block .menu-item p {
  margin-bottom: 0;
}
.menu-tabs-content-block-acm .menu-link {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
.menu-tabs-content-block-acm .menu-link .button {
  display: inline-block;
}

.tiles-slideshow-acm {
  text-align: center;
  margin: 120px 0 70px 0;
  overflow: hidden;
}
@media only screen and (max-width: 1479px) {
  .tiles-slideshow-acm .center-column {
    max-width: calc(100% - 140px);
  }
}
@media only screen and (max-width: 767px) {
  .tiles-slideshow-acm .center-column {
    max-width: 100%;
    padding: 0;
  }
}
.tiles-slideshow-acm .main-heading {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .tiles-slideshow-acm .main-heading {
    padding: 0 20px;
  }
}
.tiles-slideshow-acm .tiles {
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .tiles-slideshow-acm .tiles {
    padding-left: 20px;
  }
}
.tiles-slideshow-acm .tiles .slideshow {
  position: relative;
  overflow: hidden;
}
.tiles-slideshow-acm .tiles .slideshow-wrapper {
  display: flex !important;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: stretch;
}
.tiles-slideshow-acm .tiles .slideshow-wrapper.single-tile {
  justify-content: center;
}
.tiles-slideshow-acm .tiles .slideshow-wrapper.single-tile .tile {
  margin-right: 0 !important;
}
@media only screen and (max-width: 767px) {
  .tiles-slideshow-acm .tiles .slideshow-wrapper.single-tile .tile {
    width: 100%;
  }
}
.tiles-slideshow-acm .tiles .slideshow-wrapper.swiper-wrapper {
  justify-content: flex-start;
}
.tiles-slideshow-acm .tiles .slideshow-button {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  border: thin solid #032165;
  border-bottom: 0;
  border-left: 0;
  overflow: hidden;
  text-indent: -10000px;
}
.tiles-slideshow-acm .tiles .slideshow-button:hover {
  border-color: #3D3935;
}
.tiles-slideshow-acm .tiles .slideshow-button.previous {
  left: -230px;
  transform: translateY(-50%) rotate(-135deg);
}
.tiles-slideshow-acm .tiles .slideshow-button.next {
  right: -230px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 1809px) {
  .tiles-slideshow-acm .tiles .slideshow-button.previous {
    left: auto;
    right: 100%;
  }
  .tiles-slideshow-acm .tiles .slideshow-button.next {
    right: auto;
    left: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .tiles-slideshow-acm .tiles .slideshow-button {
    display: none;
  }
}
.tiles-slideshow-acm .tile {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  width: calc((100% - 130px) / 3);
  height: auto;
  background: #F7F6F4;
  margin-right: 65px;
}
@media screen and (max-width: 1300px) {
  .tiles-slideshow-acm .tile {
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .tiles-slideshow-acm .tile {
    width: calc((100% - 40px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .tiles-slideshow-acm .tile {
    width: 80%;
    margin-right: 20px;
  }
}
.tiles-slideshow-acm .tile .cover {
  position: relative;
  height: 240px;
  background-color: #595959;
}
.tiles-slideshow-acm .tile .tile-content {
  position: relative;
  padding: 20px 20px 80px 20px;
  color: #000000;
  flex-grow: 1;
}
.tiles-slideshow-acm .tile .tile-content h3 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 15px;
}
.tiles-slideshow-acm .tile .tile-content h4 {
  font-family: "AstoriaSans", sans-serif;
  font-size: 21px;
  line-height: 23px;
  font-weight: 300;
  font-style: italic;
  color: inherit;
  margin-bottom: 15px;
}
.tiles-slideshow-acm .tile .tile-content h3 + h4 {
  margin-top: -5px;
}
.tiles-slideshow-acm .tile .tile-content .description {
  font-family: "AstoriaSerif";
  font-size: 14px;
  line-height: 16px;
  color: inherit;
}
.tiles-slideshow-acm .tile .tile-content .description strong {
  font-weight: bold;
}
.tiles-slideshow-acm .tile .tile-content .description em {
  font-style: italic;
}
.tiles-slideshow-acm .tile .tile-content .description u {
  text-decoration: underline;
}
.tiles-slideshow-acm .tile .tile-content .description sup, .tiles-slideshow-acm .tile .tile-content .description sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
.tiles-slideshow-acm .tile .tile-content .description sup {
  top: -0.5em;
}
.tiles-slideshow-acm .tile .tile-content .description sub {
  bottom: -0.25em;
}
.tiles-slideshow-acm .tile .tile-content .description p,
.tiles-slideshow-acm .tile .tile-content .description ul,
.tiles-slideshow-acm .tile .tile-content .description ol {
  margin-bottom: 20px;
}
.tiles-slideshow-acm .tile .tile-content .description ol {
  list-style: decimal inside;
}
.tiles-slideshow-acm .tile .tile-content .description ul {
  list-style: none;
}
.tiles-slideshow-acm .tile .tile-content .description ol, .tiles-slideshow-acm .tile .tile-content .description ul {
  margin-left: 0;
}
.tiles-slideshow-acm .tile .tile-content .description ol li, .tiles-slideshow-acm .tile .tile-content .description ul li {
  padding: 3px 0;
}
.tiles-slideshow-acm .tile .tile-content .description ol ol,
.tiles-slideshow-acm .tile .tile-content .description ol ul,
.tiles-slideshow-acm .tile .tile-content .description ul ul,
.tiles-slideshow-acm .tile .tile-content .description ul ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.tiles-slideshow-acm .tile .tile-content .description ol li, .tiles-slideshow-acm .tile .tile-content .description ul li {
  position: relative;
}
.tiles-slideshow-acm .tile .tile-content .description ul > li:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  background: #000;
  border-radius: 100%;
}
.tiles-slideshow-acm .tile .tile-content .description ul > li:hover:before {
  background-color: #032165;
}
.tiles-slideshow-acm .tile .tile-content .button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  margin-top: 26px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  min-width: 140px;
}

.three-tiles-section-acm {
  text-align: center;
  margin: 120px 0 70px 0;
  overflow: hidden;
}
@media only screen and (max-width: 1479px) {
  .three-tiles-section-acm .center-column {
    max-width: calc(100% - 140px);
  }
}
@media only screen and (max-width: 767px) {
  .three-tiles-section-acm .center-column {
    max-width: 100%;
    padding: 20px;
  }
}
.three-tiles-section-acm .main-heading {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .three-tiles-section-acm .main-heading {
    padding: 0 20px;
  }
}
.three-tiles-section-acm .tiles {
  margin-bottom: 40px;
  position: relative;
}
.three-tiles-section-acm .tiles .tiles-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
}
.three-tiles-section-acm .tile {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: auto;
  background: #F7F6F4;
  margin-bottom: 40px;
}
@media only screen and (min-width: 980px) {
  .three-tiles-section-acm .tile {
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1340px) {
  .three-tiles-section-acm .tile {
    width: calc((100% - 130px) / 3);
    margin-right: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .three-tiles-section-acm .tile {
    width: calc((100% - 40px) / 2);
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .three-tiles-section-acm .tile {
    width: 100%;
    margin-right: 0;
  }
}
.three-tiles-section-acm .tile:last-child {
  margin-right: 0;
}
.three-tiles-section-acm .tile .cover {
  position: relative;
  height: 240px;
  background-color: #595959;
}
.three-tiles-section-acm .tile .tile-content {
  position: relative;
  padding: 20px 20px 80px 20px;
  color: #000000;
  flex-grow: 1;
}
.three-tiles-section-acm .tile .tile-content h3 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 15px;
}
.three-tiles-section-acm .tile .tile-content h4 {
  font-family: "AstoriaSans", sans-serif;
  font-size: 21px;
  line-height: 23px;
  font-weight: 300;
  font-style: italic;
  color: inherit;
  margin-bottom: 15px;
}
.three-tiles-section-acm .tile .tile-content h3 + h4 {
  margin-top: -5px;
}
.three-tiles-section-acm .tile .tile-content .description {
  font-family: "AstoriaSerif";
  font-size: 14px;
  line-height: 16px;
  color: inherit;
}
.three-tiles-section-acm .tile .tile-content .description strong {
  font-weight: bold;
}
.three-tiles-section-acm .tile .tile-content .description em {
  font-style: italic;
}
.three-tiles-section-acm .tile .tile-content .description u {
  text-decoration: underline;
}
.three-tiles-section-acm .tile .tile-content .description sup, .three-tiles-section-acm .tile .tile-content .description sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
.three-tiles-section-acm .tile .tile-content .description sup {
  top: -0.5em;
}
.three-tiles-section-acm .tile .tile-content .description sub {
  bottom: -0.25em;
}
.three-tiles-section-acm .tile .tile-content .description p,
.three-tiles-section-acm .tile .tile-content .description ul,
.three-tiles-section-acm .tile .tile-content .description ol {
  margin-bottom: 20px;
}
.three-tiles-section-acm .tile .tile-content .description ol {
  list-style: decimal inside;
}
.three-tiles-section-acm .tile .tile-content .description ul {
  list-style: none;
}
.three-tiles-section-acm .tile .tile-content .description ol, .three-tiles-section-acm .tile .tile-content .description ul {
  margin-left: 0;
}
.three-tiles-section-acm .tile .tile-content .description ol li, .three-tiles-section-acm .tile .tile-content .description ul li {
  padding: 3px 0;
}
.three-tiles-section-acm .tile .tile-content .description ol ol,
.three-tiles-section-acm .tile .tile-content .description ol ul,
.three-tiles-section-acm .tile .tile-content .description ul ul,
.three-tiles-section-acm .tile .tile-content .description ul ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.three-tiles-section-acm .tile .tile-content .description ol li, .three-tiles-section-acm .tile .tile-content .description ul li {
  position: relative;
}
.three-tiles-section-acm .tile .tile-content .description ul > li:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  background: #000;
  border-radius: 100%;
}
.three-tiles-section-acm .tile .tile-content .description ul > li:hover:before {
  background-color: #032165;
}
.three-tiles-section-acm .tile .tile-content .button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  margin-top: 26px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  min-width: 140px;
}

.staggered-blocks-acm {
  margin: 40px 0;
}
.staggered-blocks-acm .staggered-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .staggered-blocks-acm .staggered-block {
    display: block;
  }
}
.staggered-blocks-acm .staggered-block + .staggered-block {
  margin-top: 50px;
}
.staggered-blocks-acm .staggered-block:nth-child(odd) .slideshow {
  margin-right: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .staggered-blocks-acm .staggered-block:nth-child(odd) .slideshow {
    margin-right: 40px;
  }
}
.staggered-blocks-acm .staggered-block:nth-child(even) {
  flex-flow: row-reverse;
}
.staggered-blocks-acm .staggered-block:nth-child(even) .slideshow {
  margin-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .staggered-blocks-acm .staggered-block:nth-child(even) .slideshow {
    margin-left: 40px;
  }
}
.staggered-blocks-acm .staggered-block .slideshow {
  position: relative;
  overflow: hidden;
  width: calc(50% - 80px);
  height: 400px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .staggered-blocks-acm .staggered-block .slideshow {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .staggered-blocks-acm .staggered-block .slideshow {
    height: 280px;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
}
.staggered-blocks-acm .staggered-block .slideshow .slideshow-button {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid #FFFFFF;
  border-bottom: 0;
  border-left: 0;
  overflow: hidden;
  text-indent: -10000px;
  transition: border-color 350ms ease-in-out;
  z-index: 3;
}
.staggered-blocks-acm .staggered-block .slideshow .slideshow-button:hover {
  border-color: #032165;
}
.staggered-blocks-acm .staggered-block .slideshow .slideshow-button.previous {
  left: 20px;
  transform: translateY(-50%) rotate(-135deg);
}
.staggered-blocks-acm .staggered-block .slideshow .slideshow-button.next {
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
.staggered-blocks-acm .staggered-block .slideshow .slideshow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.staggered-blocks-acm .staggered-block .slideshow .slide {
  position: relative;
  width: 100%;
  z-index: 2;
}
.staggered-blocks-acm .staggered-block .copy {
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .staggered-blocks-acm .staggered-block .copy {
    width: 100%;
  }
}
.staggered-blocks-acm .staggered-block .copy p,
.staggered-blocks-acm .staggered-block .copy ul,
.staggered-blocks-acm .staggered-block .copy ol {
  margin-bottom: 20px;
}
.staggered-blocks-acm .staggered-block .copy strong {
  font-weight: bold;
}
.staggered-blocks-acm .staggered-block .copy em {
  font-style: italic;
}
.staggered-blocks-acm .staggered-block .copy u {
  text-decoration: underline;
}
.staggered-blocks-acm .staggered-block .copy sup, .staggered-blocks-acm .staggered-block .copy sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
.staggered-blocks-acm .staggered-block .copy sup {
  top: -0.5em;
}
.staggered-blocks-acm .staggered-block .copy sub {
  bottom: -0.25em;
}
.staggered-blocks-acm .staggered-block .copy ol {
  list-style: decimal inside;
}
.staggered-blocks-acm .staggered-block .copy ul {
  list-style: none;
}
.staggered-blocks-acm .staggered-block .copy ol, .staggered-blocks-acm .staggered-block .copy ul {
  margin-left: 30px;
}
.staggered-blocks-acm .staggered-block .copy ol ol, .staggered-blocks-acm .staggered-block .copy ol ul, .staggered-blocks-acm .staggered-block .copy ul ul, .staggered-blocks-acm .staggered-block .copy ul ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.staggered-blocks-acm .staggered-block .copy ol li, .staggered-blocks-acm .staggered-block .copy ul li {
  position: relative;
}
.staggered-blocks-acm .staggered-block .copy ul > li {
  padding-left: 20px;
}
.staggered-blocks-acm .staggered-block .copy ul > li:before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 100%;
}
.staggered-blocks-acm .staggered-block .copy ul > li:hover:before {
  background-color: #032165;
}

@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;
  }
}
html {
  scroll-padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 95px;
  }
}
