.size-small {
  font-size: 1em;
}

.size-medium {
  font-size: 1.5em;
}

.size-large {
  font-size: 2.25em;
}

.size-xlarge {
  font-size: 3.25em;
}

.size-xxlarge {
  font-size: 4.25em;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #FFFFFF; /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

figure {
  margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

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

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.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-slide-invisible-blank {
  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;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* 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;
}

.cta-slider {
  position: relative;
}
.cta-slider .book {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: calc(2.25em * 0.5);
}
@media (min-width: 600px) {
  .cta-slider .book {
    font-size: calc(2.25em * 0.75);
  }
}
@media (min-width: 1200px) {
  .cta-slider .book {
    font-size: 2.25em;
  }
}
.cta-slider .swiper-button-prev, .cta-slider .swiper-button-next {
  position: absolute;
  height: 100%;
  width: 4em;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0px;
  z-index: 2;
  cursor: pointer;
  background-image: url("../img/arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 2em 3.5em;
}
.cta-slider .swiper-button-prev:focus, .cta-slider .swiper-button-next:focus {
  background-color: rgba(255, 255, 255, 0.5);
  background-size: 2.5em 4.375em;
}
.cta-slider .swiper-button-prev {
  left: 0px;
  transform: rotate(180deg);
}
.cta-slider .swiper-button-next {
  right: 0px;
  transform: rotate(180);
}
.cta-slider .figcap {
  color: #636363;
  font-size: 1em;
  text-align: center;
  background-color: #fff;
  padding: 1em;
}
.cta-slider .slider-col img {
  width: 100%;
}

.hr:before {
  content: "";
  width: 4em;
  height: 0.25em;
  background-color: #EDC261;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0.25em 0 0.25em 0;
}
.hr.black {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}
.hr.black:before {
  content: none;
}

.big-text {
  padding: 2em 0 2em 0;
}
.big-text p {
  font-family: bodoni-urw, serif;
  color: #636363;
  text-align: center;
  max-width: 30em;
  margin: 0px auto;
  font-size: calc(2.25em * 0.5);
}
@media (min-width: 600px) {
  .big-text p {
    font-size: calc(2.25em * 0.75);
  }
}
@media (min-width: 1200px) {
  .big-text p {
    font-size: 2.25em;
  }
}

body.lightbox-open {
  overflow: hidden;
}

#lightbox {
  display: block;
  position: fixed;
  height: 100%;
  top: 0px;
  left: 0px;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99;
  padding: 4em;
  display: none;
}
#lightbox[aria-hidden=false] {
  display: block;
}
#lightbox .lightbox-wrap {
  position: relative;
  border: 3px solid #636363;
  background-color: #FFFFFF;
  width: 100%;
}
#lightbox .lightbox-wrap button.lightbox-close {
  width: 3em;
  height: 3em;
  background-color: #0F1A45;
  border-radius: 50%;
  outline: none;
  border: none;
  position: absolute;
  display: inline-block;
}
#lightbox .lightbox-wrap button.lightbox-close:before, #lightbox .lightbox-wrap button.lightbox-close:after {
  content: "";
  width: 2em;
  height: 0.28em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #FFFFFF;
}
#lightbox .lightbox-wrap button.lightbox-close:before {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
#lightbox .lightbox-wrap button.lightbox-close:after {
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}
@media (max-width: 599px) {
  #lightbox {
    padding: 0.5em;
  }
  #lightbox .lightbox-wrap {
    padding: 0.5em;
  }
}

.inn-accordion__panel {
  border-bottom: 1px solid #636363;
}

.inn-accordion__panel[aria-hidden=true] {
  display: none;
}

.inn-accordion__header {
  display: block;
}

.inn-accordion__title {
  display: block;
}
.inn-accordion__title button {
  border-radius: 0;
  background-color: #FFFFFF;
  color: #636363;
  font-size: 1.5em;
  display: block;
  border: none;
  text-align: center;
  width: 100%;
  padding: 1em;
  cursor: pointer;
  border-bottom: 1px solid #636363;
  font-family: din-condensed, sans-serif;
}
.inn-accordion__title button:hover:after {
  content: none;
}
.inn-accordion__title button[aria-expanded=true] {
  border-bottom: none;
}
.inn-accordion__title:first-child {
  border-top: 1px solid #636363;
}

.rooms article {
  margin: 0;
  margin-bottom: 2em;
}
.rooms ul.tabs {
  display: flex;
  margin: 0;
  padding: 0;
}
.rooms ul.tabs li {
  flex: 1;
  list-style: none;
  text-align: center;
}
.rooms ul.tabs li a {
  padding: 1em 0 1em 0;
  display: block;
  text-transform: uppercase;
  font-family: din-condensed, sans-serif;
  background-color: #E6E6E6;
  color: #636363;
  text-decoration: none;
}
.rooms ul.tabs li a[aria-selected=true], .rooms ul.tabs li a:hover {
  color: #FFFFFF;
  background-color: #0F1A45;
}
.rooms ul.tabs li a:focus {
  padding: 1em 0 0.7em 0;
  border-bottom: 0.3em solid #EDC261;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .rooms ul.tabs li a {
    font-size: 1.5em;
  }
}
.rooms .room-content {
  padding: 2em;
  background-color: #F8F8F7;
  position: relative;
  min-height: 22.5em;
}
.rooms .room-content a {
  text-decoration: none;
}
.rooms .actions {
  text-align: right;
  margin-top: 2em;
}
.rooms .amenities {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
.rooms .amenities li {
  list-style: none;
  width: 45%;
}
.rooms .price {
  color: #0F1A45;
  display: block;
  margin-bottom: 0.5em;
  font-family: bodoni-urw, serif;
  position: absolute;
  right: 2em;
  top: 2em;
  font-size: calc(2.25em * 0.5);
}
.rooms .price:before {
  content: "$";
}
@media (min-width: 600px) {
  .rooms .price {
    font-size: calc(2.25em * 0.75);
    top: 1em;
  }
}
@media (min-width: 1200px) {
  .rooms .price {
    font-size: 2.25em;
  }
}
.rooms .cta-slider, .rooms .swiper-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.rooms .cta-slider .slider-col, .rooms .swiper-container .slider-col {
  min-height: 300px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: none;
}

[hidden] {
  display: none;
}

/*# sourceMappingURL=admin.css.map */
