@charset "UTF-8";
/*
  All a user has to do to change the calendar size is
  change the font-size on the container and everything
  magically resizes accordingly. Relative units ftw!
*/
.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: black;
  position: absolute;
  width: 15.625em;
  display: flex;
  flex-direction: column;
  z-index: 9001;
  user-select: none;
  border: 1px solid gray;
  border-radius: 0.263921875em;
  overflow: hidden;
  background: white;
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
}
.qs-datepicker-container * {
  box-sizing: border-box;
}

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qs-hidden {
  display: none;
}

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
}
.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}
.qs-overlay .qs-overlay-year {
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.qs-overlay .qs-submit {
  border: 1px solid white;
  border-radius: 0.263921875em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}
.qs-overlay .qs-submit.qs-disabled {
  color: gray;
  border-color: gray;
  cursor: not-allowed;
}
.qs-overlay .qs-overlay-month-container {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}
.qs-overlay .qs-overlay-month {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: lightgray;
  filter: blur(0px);
  transition: filter 0.3s;
}
.qs-controls.qs-blur {
  filter: blur(5px);
}

.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.263921875em;
  transition: background 0.15s;
}
.qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}
.qs-arrow:hover.qs-left:after {
  border-right-color: black;
}
.qs-arrow:hover.qs-right:after {
  border-left-color: black;
}
.qs-arrow:after {
  content: "";
  border: 0.390625em solid transparent;
  position: absolute;
  top: 50%;
  transition: border 0.2s;
}
.qs-arrow.qs-left:after {
  border-right-color: gray;
  right: 50%;
  transform: translate(25%, -50%);
}
.qs-arrow.qs-right:after {
  border-left-color: gray;
  left: 50%;
  transform: translate(-25%, -50%);
}

.qs-month-year {
  font-weight: bold;
  transition: border 0.2s;
  border-bottom: 1px solid transparent;
}
.qs-month-year:not(.qs-disabled-year-overlay) {
  cursor: pointer;
}
.qs-month-year:not(.qs-disabled-year-overlay):hover {
  border-bottom: 1px solid gray;
}
.qs-month-year:focus, .qs-month-year:active:focus {
  outline: none;
}

.qs-month {
  padding-right: 0.5ex;
}

.qs-year {
  padding-left: 0.5ex;
}

.qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3125em;
  filter: blur(0px);
  transition: filter 0.3s;
}
.qs-squares.qs-blur {
  filter: blur(5px);
}

.qs-square {
  width: calc(100% / 7);
  height: 1.5625em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.1s;
  border-radius: 0.263921875em;
}
.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: orange;
}

.qs-current {
  font-weight: bold;
  text-decoration: underline;
}

/*
  3 possibilities:
    1. Single, active date.
    2. Daterange start selection.
    3. Daterange end selection.
*/
.qs-active,
.qs-range-start,
.qs-range-end {
  background: lightblue;
}

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-middle {
  background: #d4ebf2;
}
.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0;
}
.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-range-end:not(.qs-range-0) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-disabled,
.qs-outside-current-month {
  opacity: 0.2;
}

.qs-disabled {
  cursor: not-allowed;
}

.qs-empty {
  cursor: default;
}

.qs-day {
  cursor: default;
  font-weight: bold;
  color: gray;
}

.qs-event {
  position: relative;
}
.qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */
.section-container {
  /* draggable */
  /* ---- page dots ---- */
  /* flickity-fade */
}
.section-container .flickity-enabled {
  position: relative;
}
.section-container .flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.section-container .flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-container .flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.section-container .flickity-enabled.is-draggable .flickity-viewport {
  cursor: -webkit-grab;
  cursor: ew-resize;
}
.section-container .flickity-enabled.is-draggable.mobile-only .flickity-viewport {
  cursor: initial;
}
.section-container .flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -48px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-container .flickity-page-dots {
    bottom: -10px;
  }
}
.section-container .flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.section-container .flickity-page-dots .dot.is-selected {
  opacity: 1;
}
.section-container .flickity-page-dots .dot:only-child {
  visibility: hidden;
}
.section-container .flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}
.section-container .flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

.m-menu-block .booking-link-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .m-menu-block .booking-link-wrapper {
    display: flex;
  }
}

html {
  font-size: 87.5%;
}

.posts-page .blog-page-header .filter, .m-post .filter-container > .filters ul, .m-menu-block .menu-block-links .header-col, .site-footer ul, .site-overlay-nav ul,
.locations-overlay-nav ul {
  margin: 0;
  padding: 0;
}
.posts-page .blog-page-header .filter li, .m-post .filter-container > .filters ul li, .m-menu-block .menu-block-links .header-col li, .site-footer ul li, .site-overlay-nav ul li,
.locations-overlay-nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  display: block;
  margin-right: 1.1428571429rem;
  margin-left: 1.1428571429rem;
  width: auto;
}
@media (min-width: 1024px) {
  .container {
    margin-left: 2.8571428571rem;
    margin-right: 2.8571428571rem;
  }
}
@media (min-width: 1392px) {
  .container {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1360px;
  }
}
.is-full-width .container, .is-full-width.container {
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 1361px) {
  .is-full-width .container, .is-full-width.container {
    max-width: 100vw;
  }
}
.is-full-width-tablet.container {
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 1024px) {
  .is-full-width-tablet.container {
    margin-right: 1.9642857143rem;
    margin-left: 1.9642857143rem;
  }
}
@media (min-width: 1360px) {
  .is-full-width-tablet.container {
    margin-right: auto;
    margin-left: auto;
  }
}

.button, .single-event-page .event-tickets .tribe-common-c-btn, form input[type=submit],
form input[type=button] {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1428571429rem 1.3571428571rem 0;
  height: 3.4285714286rem;
  min-width: 10.8571428571rem;
  background-color: #231f20;
  border: 0;
  -webkit-border-radius: 0px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 250ms ease, background-color 250ms ease;
}
.button:active, .single-event-page .event-tickets .tribe-common-c-btn:active, form input[type=submit]:active,
form input[type=button]:active, .button:focus, .single-event-page .event-tickets .tribe-common-c-btn:focus, form input[type=submit]:focus,
form input[type=button]:focus, .button:hover, .single-event-page .event-tickets .tribe-common-c-btn:hover, form input[type=submit]:hover,
form input[type=button]:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}
.button:focus, .single-event-page .event-tickets .tribe-common-c-btn:focus, form input[type=submit]:focus,
form input[type=button]:focus {
  outline: dashed 0.1428571429rem rgba(35, 31, 32, 0.5);
}
.has-dark-bg .button, .has-dark-bg .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .has-dark-bg .tribe-common-c-btn, .has-dark-bg form input[type=submit], form .has-dark-bg input[type=submit],
.has-dark-bg form input[type=button],
form .has-dark-bg input[type=button] {
  background-color: #ffffff;
  color: #231f20;
}
.has-dark-bg .button:active, .has-dark-bg .single-event-page .event-tickets .tribe-common-c-btn:active, .single-event-page .event-tickets .has-dark-bg .tribe-common-c-btn:active, .has-dark-bg form input[type=submit]:active, form .has-dark-bg input[type=submit]:active,
.has-dark-bg form input[type=button]:active,
form .has-dark-bg input[type=button]:active, .has-dark-bg .button:focus, .has-dark-bg .single-event-page .event-tickets .tribe-common-c-btn:focus, .single-event-page .event-tickets .has-dark-bg .tribe-common-c-btn:focus, .has-dark-bg form input[type=submit]:focus, form .has-dark-bg input[type=submit]:focus,
.has-dark-bg form input[type=button]:focus,
form .has-dark-bg input[type=button]:focus, .has-dark-bg .button:hover, .has-dark-bg .single-event-page .event-tickets .tribe-common-c-btn:hover, .single-event-page .event-tickets .has-dark-bg .tribe-common-c-btn:hover, .has-dark-bg form input[type=submit]:hover, form .has-dark-bg input[type=submit]:hover,
.has-dark-bg form input[type=button]:hover,
form .has-dark-bg input[type=button]:hover {
  background-color: rgba(35, 31, 32, 0.8);
  color: white;
  border: dashed 2px white;
}
@media (min-width: 640px) {
  .button, .single-event-page .event-tickets .tribe-common-c-btn, form input[type=submit],
  form input[type=button] {
    padding: 0.1428571429rem 1.5rem 0;
  }
}

.button.button-action, .single-event-page .event-tickets .button-action.tribe-common-c-btn {
  padding: 0;
  height: 2.8571428571rem;
  min-width: 2.8571428571rem;
  background-color: transparent;
  border: 0;
  color: #231f20;
}
.button.button-action .icon-wrap, .single-event-page .event-tickets .button-action.tribe-common-c-btn .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 2.8571428571rem;
  min-width: 2.8571428571rem;
  background-color: #ffffff;
  border-color: transparent;
  border-radius: 9999rem;
  transition: all 150ms ease-in;
  transform-origin: right;
  box-shadow: 0 2px 21px 0 rgba(0, 0, 0, 0.17);
  transform-origin: right;
  transition: all 150ms ease-in;
}
.button.button-action svg, .single-event-page .event-tickets .button-action.tribe-common-c-btn svg {
  height: 0.7142857143rem;
  width: 0.7857142857rem;
}
.button.button-action:active, .single-event-page .event-tickets .button-action.tribe-common-c-btn:active, .button.button-action:focus, .single-event-page .event-tickets .button-action.tribe-common-c-btn:focus, .button.button-action:hover, .single-event-page .event-tickets .button-action.tribe-common-c-btn:hover {
  outline: none;
  background-color: transparent;
}
.button.button-action:active .icon-wrap, .single-event-page .event-tickets .button-action.tribe-common-c-btn:active .icon-wrap, .button.button-action:focus .icon-wrap, .single-event-page .event-tickets .button-action.tribe-common-c-btn:focus .icon-wrap, .button.button-action:hover .icon-wrap, .single-event-page .event-tickets .button-action.tribe-common-c-btn:hover .icon-wrap {
  background-color: #ffffff;
  border-color: transparent;
  transition: all 150ms ease-out;
}
.button.button-action:hover .icon-wrap, .single-event-page .event-tickets .button-action.tribe-common-c-btn:hover .icon-wrap {
  margin-right: 4px;
  transform: scale(0.95);
}
@media (min-width: 768px) {
  .button.button-action, .single-event-page .event-tickets .button-action.tribe-common-c-btn {
    height: 3.7857142857rem;
    min-width: 3.7857142857rem;
  }
  .button.button-action .icon-wrap, .single-event-page .event-tickets .button-action.tribe-common-c-btn .icon-wrap {
    height: 3.7857142857rem;
    min-width: 3.7857142857rem;
  }
  .button.button-action svg, .single-event-page .event-tickets .button-action.tribe-common-c-btn svg {
    height: 1.0357142857rem;
    width: 0.9642857143rem;
  }
}
@media (min-width: 1024px) {
  .button.button-action, .single-event-page .event-tickets .button-action.tribe-common-c-btn {
    height: 4.7857142857rem;
    min-width: 4.7857142857rem;
  }
  .button.button-action .icon-wrap, .single-event-page .event-tickets .button-action.tribe-common-c-btn .icon-wrap {
    height: 4.7857142857rem;
    min-width: 4.7857142857rem;
  }
  .button.button-action svg, .single-event-page .event-tickets .button-action.tribe-common-c-btn svg {
    height: 1.3571428571rem;
    width: 1.1428571429rem;
  }
}

.button.hollow, .single-event-page .event-tickets .hollow.tribe-common-c-btn, form input[type=submit],
form input[type=button] {
  background-color: transparent;
  border: 0.0714285714rem solid #231f20;
  color: #231f20;
}
.button.hollow:active, .single-event-page .event-tickets .hollow.tribe-common-c-btn:active, form input[type=submit]:active,
form input[type=button]:active, .button.hollow:focus, .single-event-page .event-tickets .hollow.tribe-common-c-btn:focus, form input[type=submit]:focus,
form input[type=button]:focus, .button.hollow:hover, .single-event-page .event-tickets .hollow.tribe-common-c-btn:hover, form input[type=submit]:hover,
form input[type=button]:hover {
  background-color: #231f20;
  color: #ffffff;
}
.has-dark-bg .button.hollow, .has-dark-bg .single-event-page .event-tickets .hollow.tribe-common-c-btn, .single-event-page .event-tickets .has-dark-bg .hollow.tribe-common-c-btn, .has-dark-bg form input[type=submit], form .has-dark-bg input[type=submit],
.has-dark-bg form input[type=button],
form .has-dark-bg input[type=button] {
  border-color: #ffffff;
  color: #ffffff;
}
.has-dark-bg .button.hollow:active, .has-dark-bg .single-event-page .event-tickets .hollow.tribe-common-c-btn:active, .single-event-page .event-tickets .has-dark-bg .hollow.tribe-common-c-btn:active, .has-dark-bg form input[type=submit]:active, form .has-dark-bg input[type=submit]:active,
.has-dark-bg form input[type=button]:active,
form .has-dark-bg input[type=button]:active, .has-dark-bg .button.hollow:focus, .has-dark-bg .single-event-page .event-tickets .hollow.tribe-common-c-btn:focus, .single-event-page .event-tickets .has-dark-bg .hollow.tribe-common-c-btn:focus, .has-dark-bg form input[type=submit]:focus, form .has-dark-bg input[type=submit]:focus,
.has-dark-bg form input[type=button]:focus,
form .has-dark-bg input[type=button]:focus, .has-dark-bg .button.hollow:hover, .has-dark-bg .single-event-page .event-tickets .hollow.tribe-common-c-btn:hover, .single-event-page .event-tickets .has-dark-bg .hollow.tribe-common-c-btn:hover, .has-dark-bg form input[type=submit]:hover, form .has-dark-bg input[type=submit]:hover,
.has-dark-bg form input[type=button]:hover,
form .has-dark-bg input[type=button]:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #231f20;
}

.button.light, .single-event-page .event-tickets .light.tribe-common-c-btn {
  background-color: #ffffff;
  border: 0.0714285714rem solid #231f20;
  color: #231f20;
}
.button.light:active, .single-event-page .event-tickets .light.tribe-common-c-btn:active, .button.light:focus, .single-event-page .event-tickets .light.tribe-common-c-btn:focus, .button.light:hover, .single-event-page .event-tickets .light.tribe-common-c-btn:hover {
  background-color: #231f20;
  color: #ffffff;
}

.button.has-icon svg, .single-event-page .event-tickets .has-icon.tribe-common-c-btn svg {
  display: inline-block;
  margin-right: 0.7142857143rem;
  height: 1.5714285714rem;
  width: 1.5714285714rem;
}

.button.button-tab, .single-event-page .event-tickets .button-tab.tribe-common-c-btn {
  position: relative;
  padding: 0;
  height: auto;
  min-width: 0;
  width: auto;
  background-color: transparent;
  border: 0;
  color: #231f20;
  text-transform: uppercase;
}
.button.button-tab::after, .single-event-page .event-tickets .button-tab.tribe-common-c-btn::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.0714285714rem;
  left: 0;
  height: 0.1428571429rem;
  width: 100%;
  background-color: #231f20;
  border-radius: 9999rem;
  opacity: 0;
  transition: opacity 250ms ease;
}
.button.button-tab:active, .single-event-page .event-tickets .button-tab.tribe-common-c-btn:active, .active.button.button-tab, .single-event-page .event-tickets .active.button-tab.tribe-common-c-btn, .button.button-tab:hover, .single-event-page .event-tickets .button-tab.tribe-common-c-btn:hover {
  color: #231f20;
}
.button.button-tab:active::after, .single-event-page .event-tickets .button-tab.tribe-common-c-btn:active::after, .active.button.button-tab::after, .single-event-page .event-tickets .active.button-tab.tribe-common-c-btn::after, .button.button-tab:hover::after, .single-event-page .event-tickets .button-tab.tribe-common-c-btn:hover::after {
  opacity: 1;
}
.button.button-tab:focus, .single-event-page .event-tickets .button-tab.tribe-common-c-btn:focus {
  outline: dashed 2px #231f20;
}
.has-dark-bg .button.button-tab, .has-dark-bg .single-event-page .event-tickets .button-tab.tribe-common-c-btn, .single-event-page .event-tickets .has-dark-bg .button-tab.tribe-common-c-btn {
  color: #ffffff;
}
.has-dark-bg .button.button-tab::after, .has-dark-bg .single-event-page .event-tickets .button-tab.tribe-common-c-btn::after, .single-event-page .event-tickets .has-dark-bg .button-tab.tribe-common-c-btn::after {
  background-color: #ffffff;
}
.has-dark-bg .button.button-tab:active, .has-dark-bg .single-event-page .event-tickets .button-tab.tribe-common-c-btn:active, .single-event-page .event-tickets .has-dark-bg .button-tab.tribe-common-c-btn:active, .has-dark-bg .active.button.button-tab, .has-dark-bg .single-event-page .event-tickets .active.button-tab.tribe-common-c-btn, .single-event-page .event-tickets .has-dark-bg .active.button-tab.tribe-common-c-btn, .has-dark-bg .button.button-tab:hover, .has-dark-bg .single-event-page .event-tickets .button-tab.tribe-common-c-btn:hover, .single-event-page .event-tickets .has-dark-bg .button-tab.tribe-common-c-btn:hover {
  background-color: transparent;
}

.blog-post .post-meta a, a.text-link,
.card-content p > a, .button.text-link, .single-event-page .event-tickets .text-link.tribe-common-c-btn {
  justify-content: flex-start;
  position: relative;
  padding: 0.7142857143rem 0 0.5714285714rem;
  height: max-content;
  min-width: 0;
  width: max-content;
  background-color: transparent;
  border-bottom: 1px solid #231f20;
  color: #231f20;
  line-height: 1;
}
.blog-post .post-meta a::after, a.text-link::after,
.card-content p > a::after, .button.text-link::after, .single-event-page .event-tickets .text-link.tribe-common-c-btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #231f20;
  transition: height 150ms ease;
}
.blog-post .post-meta a:hover::after, a.text-link:hover::after,
.card-content p > a:hover::after, .button.text-link:hover::after, .single-event-page .event-tickets .text-link.tribe-common-c-btn:hover::after, .blog-post .post-meta a:focus::after, a.text-link:focus::after,
.card-content p > a:focus::after, .button.text-link:focus::after, .single-event-page .event-tickets .text-link.tribe-common-c-btn:focus::after {
  height: 0.1428571429rem;
}
.has-dark-bg .blog-post .post-meta a, .blog-post .post-meta .has-dark-bg a, .has-dark-bg a.text-link,
.has-dark-bg .card-content p > a,
.card-content .has-dark-bg p > a, .has-dark-bg .button.text-link, .has-dark-bg .single-event-page .event-tickets .text-link.tribe-common-c-btn, .single-event-page .event-tickets .has-dark-bg .text-link.tribe-common-c-btn {
  border-color: #ffffff;
  color: #ffffff;
}
.has-dark-bg .blog-post .post-meta a:active, .blog-post .post-meta .has-dark-bg a:active, .has-dark-bg a.text-link:active,
.has-dark-bg .card-content p > a:active,
.card-content .has-dark-bg p > a:active, .has-dark-bg .button.text-link:active, .has-dark-bg .single-event-page .event-tickets .text-link.tribe-common-c-btn:active, .single-event-page .event-tickets .has-dark-bg .text-link.tribe-common-c-btn:active, .has-dark-bg .blog-post .post-meta a:focus, .blog-post .post-meta .has-dark-bg a:focus, .has-dark-bg a.text-link:focus,
.has-dark-bg .card-content p > a:focus,
.card-content .has-dark-bg p > a:focus, .has-dark-bg .button.text-link:focus, .has-dark-bg .single-event-page .event-tickets .text-link.tribe-common-c-btn:focus, .single-event-page .event-tickets .has-dark-bg .text-link.tribe-common-c-btn:focus, .has-dark-bg .blog-post .post-meta a:hover, .blog-post .post-meta .has-dark-bg a:hover, .has-dark-bg a.text-link:hover,
.has-dark-bg .card-content p > a:hover,
.card-content .has-dark-bg p > a:hover, .has-dark-bg .button.text-link:hover, .has-dark-bg .single-event-page .event-tickets .text-link.tribe-common-c-btn:hover, .single-event-page .event-tickets .has-dark-bg .text-link.tribe-common-c-btn:hover {
  background-color: transparent;
}
.has-dark-bg .blog-post .post-meta a::after, .blog-post .post-meta .has-dark-bg a::after, .has-dark-bg a.text-link::after,
.has-dark-bg .card-content p > a::after,
.card-content .has-dark-bg p > a::after, .has-dark-bg .button.text-link::after, .has-dark-bg .single-event-page .event-tickets .text-link.tribe-common-c-btn::after, .single-event-page .event-tickets .has-dark-bg .text-link.tribe-common-c-btn::after {
  background-color: #ffffff;
}
.blog-post .post-meta a:focus, a.text-link:focus,
.card-content p > a:focus, .button.text-link:focus, .single-event-page .event-tickets .text-link.tribe-common-c-btn:focus {
  outline: none;
}

form input[type=submit],
form input[type=button] {
  margin-top: 1.7142857143rem;
}
.has-dark-bg form input[type=submit],
.has-dark-bg form input[type=button] {
  background-color: #ffffff;
  color: #231f20;
}
.has-dark-bg form input[type=submit]:focus, .has-dark-bg form input[type=submit]:hover,
.has-dark-bg form input[type=button]:focus,
.has-dark-bg form input[type=button]:hover {
  background-color: #231f20;
  color: #ffffff;
}

a.text-link,
.card-content p > a {
  padding-bottom: 0.2857142857rem;
  text-decoration: none;
}

.button-group {
  margin: 1.1428571429rem 0 0;
}
.button-group.main-nav-buttons {
  margin: 0;
}
.button-group.main-nav-buttons .button, .button-group.main-nav-buttons .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .button-group.main-nav-buttons .tribe-common-c-btn,
.button-group.main-nav-buttons .button:first-child {
  margin-top: 0;
}
.button-group .button + .button, .button-group .single-event-page .event-tickets .tribe-common-c-btn + .button, .single-event-page .event-tickets .button-group .tribe-common-c-btn + .button, .button-group .single-event-page .event-tickets .button + .tribe-common-c-btn, .single-event-page .event-tickets .button-group .button + .tribe-common-c-btn, .button-group .single-event-page .event-tickets .tribe-common-c-btn + .tribe-common-c-btn, .single-event-page .event-tickets .button-group .tribe-common-c-btn + .tribe-common-c-btn,
.button-group .button + .tour-button,
.button-group .single-event-page .event-tickets .tribe-common-c-btn + .tour-button,
.single-event-page .event-tickets .button-group .tribe-common-c-btn + .tour-button {
  margin-top: 0.5714285714rem;
}
@media (min-width: 366px) {
  .button-group {
    margin-left: -1.1428571429rem;
  }
  .button-group .button:first-child, .button-group .single-event-page .event-tickets .tribe-common-c-btn:first-child, .single-event-page .event-tickets .button-group .tribe-common-c-btn:first-child,
  .button-group .button + .button,
  .button-group .single-event-page .event-tickets .tribe-common-c-btn + .button,
  .single-event-page .event-tickets .button-group .tribe-common-c-btn + .button,
  .button-group .single-event-page .event-tickets .button + .tribe-common-c-btn,
  .single-event-page .event-tickets .button-group .button + .tribe-common-c-btn,
  .button-group .single-event-page .event-tickets .tribe-common-c-btn + .tribe-common-c-btn,
  .single-event-page .event-tickets .button-group .tribe-common-c-btn + .tribe-common-c-btn,
  .button-group .button + .tour-button,
  .button-group .single-event-page .event-tickets .tribe-common-c-btn + .tour-button,
  .single-event-page .event-tickets .button-group .tribe-common-c-btn + .tour-button {
    margin-top: 1.1428571429rem;
    margin-left: 1.1428571429rem;
  }
  .button-group .button:last-child, .button-group .single-event-page .event-tickets .tribe-common-c-btn:last-child, .single-event-page .event-tickets .button-group .tribe-common-c-btn:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .button-group {
    margin-left: -1.5714285714rem;
  }
  .button-group .button:first-child, .button-group .single-event-page .event-tickets .tribe-common-c-btn:first-child, .single-event-page .event-tickets .button-group .tribe-common-c-btn:first-child,
  .button-group .button + .button,
  .button-group .single-event-page .event-tickets .tribe-common-c-btn + .button,
  .single-event-page .event-tickets .button-group .tribe-common-c-btn + .button,
  .button-group .single-event-page .event-tickets .button + .tribe-common-c-btn,
  .single-event-page .event-tickets .button-group .button + .tribe-common-c-btn,
  .button-group .single-event-page .event-tickets .tribe-common-c-btn + .tribe-common-c-btn,
  .single-event-page .event-tickets .button-group .tribe-common-c-btn + .tribe-common-c-btn,
  .button-group .button + .tour-button,
  .button-group .single-event-page .event-tickets .tribe-common-c-btn + .tour-button,
  .single-event-page .event-tickets .button-group .tribe-common-c-btn + .tour-button {
    margin-top: 1.5714285714rem;
    margin-left: 1.5714285714rem;
  }
  .button-group .button:last-child, .button-group .single-event-page .event-tickets .tribe-common-c-btn:last-child, .single-event-page .event-tickets .button-group .tribe-common-c-btn:last-child {
    margin-right: 0;
  }
}
.is-centered .button-group {
  margin-left: 0;
}

.filter .button, .filter .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .filter .tribe-common-c-btn {
  height: 2.1428571429rem;
  padding: 0 0.7857142857rem;
  background-color: #ffffff;
  border: 0.0714285714rem solid #231f20;
  border-radius: 0.1428571429rem;
  text-transform: none;
  transition: color 250ms ease, background-color 250ms ease, border-width 250ms ease;
}
.filter .button:hover, .filter .single-event-page .event-tickets .tribe-common-c-btn:hover, .single-event-page .event-tickets .filter .tribe-common-c-btn:hover, .filter .button.active, .filter .single-event-page .event-tickets .active.tribe-common-c-btn, .single-event-page .event-tickets .filter .active.tribe-common-c-btn {
  background-color: #231f20;
  color: #ffffff;
}
.filter .button:focus-visible, .filter .single-event-page .event-tickets .tribe-common-c-btn:focus-visible, .single-event-page .event-tickets .filter .tribe-common-c-btn:focus-visible {
  outline: dashed 0.1428571429rem rgba(35, 31, 32, 0.5);
}
.has-dark-bg .filter .button, .has-dark-bg .filter .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .has-dark-bg .filter .tribe-common-c-btn {
  background-color: #231f20;
  border-color: #ffffff;
}
.has-dark-bg .filter .button:hover, .has-dark-bg .filter .single-event-page .event-tickets .tribe-common-c-btn:hover, .single-event-page .event-tickets .has-dark-bg .filter .tribe-common-c-btn:hover, .has-dark-bg .filter .button.active, .has-dark-bg .filter .single-event-page .event-tickets .active.tribe-common-c-btn, .single-event-page .event-tickets .has-dark-bg .filter .active.tribe-common-c-btn {
  background-color: #ffffff;
  color: #231f20;
}

.button-group,
.filter {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 366px) {
  .button-group,
  .filter {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }
  .is-centered .button-group,
  .is-centered .filter {
    justify-content: center;
  }
  .is-centered .button-group *:first-child,
  .is-centered .filter *:first-child {
    margin-left: 0;
  }
}

.tour-button {
  display: inline-block;
  width: 3.4285714286rem;
  min-width: 3.4285714286rem;
  height: 3.4285714286rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
.room-card .card-content .card-slider-buttons .tour-button {
  width: 2.2142857143rem;
  height: 2.2142857143rem;
  margin-top: 0.7142857143rem;
  margin-left: 1.7857142857rem;
}
.tour-button svg {
  width: 100%;
  height: 100%;
}
.tour-button.black svg {
  fill: #231f20;
}
.tour-button.black:hover svg, .tour-button.black:focus svg {
  fill: #504c4e;
}
.tour-button.white svg {
  fill: #fff;
}
.tour-button.white:hover svg, .tour-button.white:focus svg {
  fill: #d6d6d4;
}

.input-wrap,
.input-label,
.gfield {
  display: block;
  position: relative;
  margin-bottom: 1.8571428571rem;
}
.input-wrap:last-child,
.input-label:last-child,
.gfield:last-child {
  margin-bottom: 0;
}

label,
legend {
  font-size: 1.1428571429rem;
  letter-spacing: -0.0114285714rem;
  text-align: left;
}
.input-wrap label, .gfield label,
.input-wrap legend,
.gfield legend {
  pointer-events: none;
  top: 1.4285714286rem;
  left: 0;
  transition: all 0.2s ease;
}
.newsletter-block .input-wrap label, .newsletter-block .gfield label,
.newsletter-block .input-wrap legend,
.newsletter-block .gfield legend {
  top: 1.4285714286rem;
}
.input-wrap label:focus-within, .gfield label:focus-within,
.input-wrap legend:focus-within,
.gfield legend:focus-within {
  color: #231f20;
}
.input-wrap label.has-value, .gfield label.has-value,
.input-wrap legend.has-value,
.gfield legend.has-value {
  top: 0;
  font-size: 0.8571428571rem;
  letter-spacing: -0.0085714286rem;
}
label.hidden,
legend.hidden {
  position: absolute;
  visibility: hidden;
}

.label-text,
legend {
  display: block;
  margin-bottom: 1.4285714286rem;
}

[type=text],
[type=password],
[type=email],
[type=number],
[type=tel],
[type=date],
[type=url],
[type=search],
select,
textarea {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
  margin-bottom: 0.7142857143rem;
  padding: 0.2857142857rem 1.5714285714rem 0 0;
  min-height: 3.4285714286rem;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: solid 0.0714285714rem #231f20;
  border-radius: 0;
  outline: none;
  color: #231f20;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: -0.01rem;
  line-height: 1.15;
  transition: border-color 250ms ease, color 250ms ease;
  vertical-align: middle;
}
[type=text]:focus,
[type=password]:focus,
[type=email]:focus,
[type=number]:focus,
[type=tel]:focus,
[type=date]:focus,
[type=url]:focus,
[type=search]:focus,
select:focus,
textarea:focus {
  border-color: #231f20;
  outline: 0;
  color: #231f20;
}
[type=text]:disabled,
[type=password]:disabled,
[type=email]:disabled,
[type=number]:disabled,
[type=tel]:disabled,
[type=date]:disabled,
[type=url]:disabled,
[type=search]:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  background-color: rgba(35, 31, 32, 0.25);
  border-color: rgba(35, 31, 32, 0.25);
}
.has-dark-bg [type=text],
.has-dark-bg [type=password],
.has-dark-bg [type=email],
.has-dark-bg [type=number],
.has-dark-bg [type=tel],
.has-dark-bg [type=date],
.has-dark-bg [type=url],
.has-dark-bg [type=search],
.has-dark-bg select,
.has-dark-bg textarea {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.has-dark-bg [type=text]:focus,
.has-dark-bg [type=password]:focus,
.has-dark-bg [type=email]:focus,
.has-dark-bg [type=number]:focus,
.has-dark-bg [type=tel]:focus,
.has-dark-bg [type=date]:focus,
.has-dark-bg [type=url]:focus,
.has-dark-bg [type=search]:focus,
.has-dark-bg select:focus,
.has-dark-bg textarea:focus {
  border-color: white;
}
.newsletter-block [type=text],
.newsletter-block [type=password],
.newsletter-block [type=email],
.newsletter-block [type=number],
.newsletter-block [type=tel],
.newsletter-block [type=date],
.newsletter-block [type=url],
.newsletter-block [type=search],
.newsletter-block select,
.newsletter-block textarea {
  min-height: 3.8571428571rem;
}
@media (min-width: 768px) {
  [type=text],
  [type=password],
  [type=email],
  [type=number],
  [type=tel],
  [type=date],
  [type=url],
  [type=search],
  select,
  textarea {
    font-size: 1.1428571429rem;
    letter-spacing: -0.0114285714rem;
  }
}

button[type=submit] + p {
  margin-top: 0.7857142857rem;
  font-size: 0.8571428571rem;
  line-height: 1.5rem;
}

textarea {
  display: block;
  padding: 1.5714285714rem;
  min-height: 7.1428571429rem;
  overflow: auto;
  resize: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background-color: transparent;
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 10 5;
}
.has-dark-bg select, .site-footer select {
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow-white.svg");
}

.input-label.select {
  position: relative;
}
.input-label.select::after {
  content: "▾";
  pointer-events: none;
  position: absolute;
  top: 4.4285714286rem;
  right: 1.5714285714rem;
  color: #6f6f6f;
  font-size: 1.7142857143rem;
  line-height: 0.5rem;
}
.input-label.select select {
  appearance: none;
  -webkit-appearance: none;
  height: 2.9285714286rem;
  width: 100%;
}

.input-file {
  display: flex;
  align-items: center;
  margin-top: 1.4285714286rem;
}
.input-file input[type=file] {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  margin-right: 0.7142857143rem;
  height: 1.7857142857rem;
  width: 1.7857142857rem;
  border: solid 0.0714285714rem #6f6f6f;
  border-radius: 0.1428571429rem;
  vertical-align: -0.4285714286rem;
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13 10;
}
input[type=checkbox]::-ms-check,
input[type=radio]::-ms-check {
  display: none;
}
input[type=checkbox][hidden],
input[type=radio][hidden] {
  position: absolute;
  visibility: hidden;
}
input[type=checkbox]:focus,
input[type=radio]:focus {
  border-color: #231f20;
  outline: none;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  background-image: url("/wp-content/themes/ace-hotel/assets/images/checkmark.svg");
}
input[type=checkbox]:disabled,
input[type=radio]:disabled {
  background: #ddd;
  border-color: #231f20;
  color: #ffffff;
}
input[type=checkbox]:disabled ::-webkit-input-placeholder,
input[type=radio]:disabled ::-webkit-input-placeholder {
  color: #ffffff;
}
input[type=checkbox]:disabled :-moz-placeholder,
input[type=radio]:disabled :-moz-placeholder {
  color: #ffffff;
}
input[type=checkbox]:disabled ::-moz-placeholder,
input[type=radio]:disabled ::-moz-placeholder {
  color: #ffffff;
}
input[type=checkbox]:disabled :-ms-input-placeholder,
input[type=radio]:disabled :-ms-input-placeholder {
  color: #ffffff;
}

input[type=radio] {
  border-radius: 1.5714285714rem;
}
input[type=radio]::before {
  border-radius: 1.5714285714rem;
}

::-webkit-input-placeholder {
  visibility: hidden;
}

:-moz-placeholder {
  visibility: hidden;
}

::-moz-placeholder {
  visibility: hidden;
}

:-ms-input-placeholder {
  visibility: hidden;
}

@media (min-width: 769px) {
  .form-row {
    display: flex;
    justify-content: space-between;
  }
  .form-row .input-wrap,
  .form-row .input-label {
    flex-basis: 47.5%;
  }
}

.gform-body {
  width: 100%;
}

.gform_wrapper .gform_heading {
  display: none !important;
}

.gform_wrapper {
  position: relative;
}
.gform_wrapper::before, .gform_wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  height: 0.2857142857rem;
  width: 100%;
  border: 1px solid #231f20;
  border-radius: 0.2857142857rem;
}
.gform_wrapper::before {
  top: 0;
}
.gform_wrapper::after {
  bottom: 0;
}
.gform_wrapper .gform_validation_errors > h2 {
  font-family: inherit;
  font-size: 1.1428571429rem !important;
  font-weight: 400;
  letter-spacing: 0.33;
}
.gform_wrapper.gravity-theme .gfield {
  position: relative;
  margin-bottom: 0;
}
.gform_wrapper.gravity-theme .gfield .datepicker {
  width: 100% !important;
}
.gform_wrapper.gravity-theme .gfield .datepicker::-webkit-input-placeholder {
  color: #231f20 !important;
}
.gform_wrapper.gravity-theme .gfield .datepicker::-moz-placeholder {
  color: #231f20 !important;
}
.gform_wrapper.gravity-theme .gfield .datepicker:-moz-placeholder {
  color: #231f20 !important;
}
.gform_wrapper.gravity-theme .gfield .datepicker::-ms-input-placeholder {
  color: #231f20 !important;
}
.gform_wrapper.gravity-theme .gfield .datepicker::placeholder {
  color: #231f20 !important;
}
.gform_wrapper.gravity-theme .gfield .ginput_container_date {
  min-width: 29%;
}
.gform_wrapper.gravity-theme .gfield .ginput_container_date select {
  min-width: 0 !important;
}
.gform_wrapper.gravity-theme .gfield.label-above .gfield_label {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  font-size: 0.8571428571rem !important;
}
.gform_wrapper.gravity-theme .gfield.gcheckbox {
  margin-top: 0.7142857143rem;
}
.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper.gravity-theme .gfield_input {
  font-weight: 100 !important;
}
.gform_wrapper.gravity-theme .gfield_label.has-value {
  top: -0.4285714286rem;
  font-size: 0.8571428571rem !important;
}
.gform_wrapper.gravity-theme .gchoice {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.gform_wrapper.gravity-theme .gchoice label {
  position: relative !important;
  top: 0.0714285714rem !important;
}
.gform_wrapper.gravity-theme .gfield_select {
  height: 1.1428571429rem;
}
.gform_wrapper.gravity-theme .ginput_counter {
  margin-top: 0.5714285714rem;
}
.gform_wrapper.gravity-theme .gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select.ui-datepicker-month {
  margin-bottom: 0.5rem;
  margin-left: 0;
  font-size: 1.1428571429rem;
  font-weight: 700;
}
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  padding-left: 0 !important;
  font-size: 1.1428571429rem !important;
}
.gform_wrapper.gravity-theme select option {
  padding: 0 !important;
}
.gform_wrapper .gform_button {
  background-color: #231f20;
  color: #ffffff;
}
.gform_wrapper .gform_button:active, .gform_wrapper .gform_button:focus, .gform_wrapper .gform_button:hover {
  background-color: transparent;
  color: #231f20;
}

.accordion-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
}
.accordion-toggle[data-toggle=open] .dropdown-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  height: 0;
  flex: 0 0 100%;
  overflow: hidden;
  transition: height 0.75s cubic-bezier(0, 1, 0, 1);
}
.accordion-content .inner {
  padding-top: 0.9285714286rem;
}
.accordion-content .sub-nav-item {
  opacity: 0;
  transition: opacity 0.2s ease 300ms;
}
.accordion-content[aria-hidden=false] {
  height: auto;
  opacity: 1;
  transition: height 0.75s ease-in-out;
}
.accordion-content[aria-hidden=false] .sub-nav-item {
  opacity: 1;
}

.m-accordion {
  padding: 5.7142857143rem 0;
}
.m-accordion + .m-accordion {
  padding-top: 0;
}
.m-accordion .accordion-heading {
  margin-bottom: 1.7142857143rem;
}
[lang=ja-JP] .m-accordion .accordion-heading .h2 {
  font-size: 3rem;
}
.m-accordion .subtitle {
  margin-bottom: 0.5714285714rem;
}
.m-accordion .accordion-intro-content {
  font-size: 1.2857142857rem;
  line-height: 1.5;
  margin-bottom: 5.7142857143rem;
}
.m-accordion .accordion-intro-content p {
  font-size: 1.2857142857rem;
  line-height: 1.5;
  margin-bottom: 1.7142857143rem;
}
.m-accordion .accordion .heading-eyebrow {
  font-size: 2.2857142857rem;
  text-align: left;
  line-height: 1.2;
}
.m-accordion .accordion-row {
  border-bottom: 1px solid rgba(35, 31, 32, 0.5);
}
.has-dark-bg.m-accordion .accordion-row {
  border-bottom-color: #ffffff;
}

.m-accordion .accordion-header-button {
  width: 100%;
  border: none;
  text-align: left;
  padding-left: 0;
  position: relative;
  background: transparent;
}
.m-accordion .accordion-header-button .dropdown-arrow {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  transition: all 0.24s;
}
.m-accordion .accordion-header {
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-weight: bolder;
  font-size: 1.2857142857rem;
  margin: 0.5714285714rem 0;
}
.m-accordion .accordion-content {
  font-size: 1.2857142857rem;
  line-height: 1.5;
  text-align: left;
}
.m-accordion .accordion-content p {
  font-size: 1.2857142857rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 1.7142857143rem;
}
.m-accordion .accordion-open .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.card-slider-buttons {
  margin-top: 0;
  min-height: 2.7142857143rem;
}

.m-carousel {
  justify-content: center;
}
.m-carousel .container {
  position: relative;
}
.m-carousel .carousel-text-container {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  padding: 38.5px 32px;
  height: calc(100% - 104px);
  z-index: 1;
}
.m-carousel .image-slide,
.m-carousel .video-slide {
  box-sizing: content-box;
  padding: 2.8571428571rem 0;
  min-height: 32.8571428571rem;
  height: auto;
  width: 100%;
}
.m-carousel .image-slide img,
.m-carousel .image-slide video,
.m-carousel .video-slide img,
.m-carousel .video-slide video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.m-carousel .image-slide.has-overlay::before,
.m-carousel .video-slide.has-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.45) 81%);
  z-index: 1;
}
.has-overlay.m-carousel .image-slide::before, .m-carousel .video-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.45) 81%);
  z-index: 1;
}

@media (min-width: 1024px) {
  .m-carousel .carousel,
  .m-carousel .carousel-single {
    position: relative;
    position: relative;
  }
  .m-carousel .carousel::before,
  .m-carousel .carousel-single::before {
    content: "";
    display: block;
    padding-top: 45.5147058824%;
    width: 100%;
  }
  .m-carousel .carousel > .content,
  .m-carousel .carousel-single > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .m-carousel .carousel .flickity-viewport,
  .m-carousel .carousel-single .flickity-viewport {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100% !important;
    width: 100%;
  }
  .m-carousel .carousel-single {
    overflow: hidden;
  }
  .m-carousel .carousel-single .image-slide,
  .m-carousel .carousel-single .video-slide {
    position: absolute;
    top: 0;
  }
  .m-carousel .carousel-text-container {
    display: grid;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    align-content: center;
    grid-template-columns: 1fr [colcentered-start] repeat(7, 1fr) [colcentered-end] repeat(4, 1fr);
    position: absolute;
    padding: 0;
    width: 100%;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .m-carousel .carousel-text-container {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .m-carousel .carousel-text-container .grid-col {
    grid-column: colcentered;
  }
}
@media (min-width: 1024px) {
  .m-carousel .carousel-text-container .button-group {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .m-carousel .image-slide {
    height: 100%;
  }
}
@media (min-width: 1360px) {
  .m-carousel .carousel-text-container {
    grid-template-columns: 1fr [colcentered-start] repeat(5, 1fr) [colcentered-end] repeat(6, 1fr);
  }
}
.is-centered .carousel-text-container .carousel-content {
  text-align: center;
}
@media (min-width: 1024px) {
  .is-centered .carousel-text-container {
    grid-template-columns: repeat(2, 1fr) [colcentered-start] repeat(8, 1fr) [colcentered-end] repeat(2, 1fr);
  }
  .is-centered .carousel-text-container .button-group {
    justify-content: center;
  }
}
@media (min-width: 1360px) {
  .is-centered .carousel-text-container {
    grid-template-columns: repeat(3, 1fr) [colcentered-start] repeat(6, 1fr) [colcentered-end] repeat(3, 1fr);
  }
}

.m-carousel.is-full-width .carousel-buttons {
  position: relative;
  bottom: 4.5714285714rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .m-carousel.is-full-width .container.is-full-width-tablet {
    margin-right: 0;
    margin-left: 0;
    max-width: none !important;
  }
  .m-carousel.is-full-width .carousel-buttons {
    bottom: 8.8571428571rem;
  }
  .m-carousel.is-full-width .flickity-page-dots {
    bottom: 1.5714285714rem;
  }
}
@media (min-width: 1024px) {
  .m-carousel.is-full-width .carousel {
    position: relative;
  }
  .m-carousel.is-full-width .carousel::before {
    content: "";
    display: block;
    padding-top: 42.9861111111%;
    width: 100%;
  }
  .m-carousel.is-full-width .carousel > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.m-carousel:not(.text-carousel):not(.text-image-slider) .carousel-text-container {
  color: #ffffff;
}
.m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .button.hollow, .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn, .single-event-page .event-tickets .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .hollow.tribe-common-c-btn {
  border-color: #ffffff;
  color: #ffffff;
}
.m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .button.hollow:active, .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:active, .single-event-page .event-tickets .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .hollow.tribe-common-c-btn:active, .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .button.hollow:focus, .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:focus, .single-event-page .event-tickets .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .hollow.tribe-common-c-btn:focus, .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .button.hollow:hover, .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:hover, .single-event-page .event-tickets .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .hollow.tribe-common-c-btn:hover {
  background-color: #231f20;
  border-color: #231f20;
}
.m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .button.hollow:focus, .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:focus, .single-event-page .event-tickets .m-carousel:not(.text-carousel):not(.text-image-slider) .button-group .hollow.tribe-common-c-btn:focus {
  background-color: #231f20;
  text-decoration: underline;
}

.carousel-buttons {
  display: flex;
  width: 100%;
  opacity: 1;
  text-align: center;
  z-index: 2;
}
.carousel-buttons .carousel-button-prev svg {
  transform: scaleX(-1);
}
.carousel-buttons .carousel-button-prev:active .icon-wrap, .carousel-buttons .carousel-button-prev:focus .icon-wrap, .carousel-buttons .carousel-button-prev:hover .icon-wrap {
  margin-right: 0;
  margin-left: 0.2857142857rem;
}
.carousel-buttons .carousel-button-next .icon-wrap {
  transform-origin: left;
}

.section-container .flickity-page-dots {
  display: flex;
  gap: 0.2857142857rem;
  justify-content: center;
}
.section-container .flickity-page-dots .dot {
  display: block;
  margin: 0;
  padding: 0;
  height: 0.2142857143rem;
  width: 0.2142857143rem;
  background-color: #231f20;
  border: 0;
  opacity: 1;
  transition: width 250ms ease-in-out;
}
.section-container .flickity-page-dots .dot.is-selected {
  width: 1.4285714286rem;
  background-color: #231f20;
  border-radius: 0.1071428571rem;
  opacity: 1;
}
.no-dots .section-container .flickity-page-dots {
  display: none;
}
.section-container.has-dark-bg .flickity-page-dots .dot {
  background-color: #ffffff;
}
.section-container.has-dark-bg .flickity-page-dots .dot.is-selected {
  background-color: #ffffff;
}

.m-content-carousel .carousel-text-container .carousel-content,
.m-image-carousel .carousel-text-container .carousel-content,
.text-image-slider .carousel-text-container .carousel-content {
  z-index: 3;
}
.m-content-carousel .carousel-buttons,
.m-image-carousel .carousel-buttons,
.text-image-slider .carousel-buttons {
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .m-content-carousel .carousel-buttons,
  .m-image-carousel .carousel-buttons,
  .text-image-slider .carousel-buttons {
    left: unset;
  }
}

.m-content-carousel .image-slide.has-overlay::before,
.m-image-carousel .image-slide.has-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.65) 81%);
  z-index: 1;
}

@media (min-width: 1024px) {
  .m-content-carousel .container,
  .m-image-carousel .container {
    margin-right: 2.2857142857rem;
    margin-left: 2.2857142857rem;
  }
}
@media (min-width: 1440px) {
  .m-content-carousel .container,
  .m-image-carousel .container {
    margin-right: auto;
    margin-left: auto;
  }
}
.m-content-carousel .button-group .button.light, .m-content-carousel .button-group .single-event-page .event-tickets .light.tribe-common-c-btn, .single-event-page .event-tickets .m-content-carousel .button-group .light.tribe-common-c-btn,
.m-image-carousel .button-group .button.light,
.m-image-carousel .button-group .single-event-page .event-tickets .light.tribe-common-c-btn,
.single-event-page .event-tickets .m-image-carousel .button-group .light.tribe-common-c-btn {
  border-color: #ffffff;
}
.m-content-carousel .button-group .button.light:focus, .m-content-carousel .button-group .single-event-page .event-tickets .light.tribe-common-c-btn:focus, .single-event-page .event-tickets .m-content-carousel .button-group .light.tribe-common-c-btn:focus, .m-content-carousel .button-group .button.light:hover, .m-content-carousel .button-group .single-event-page .event-tickets .light.tribe-common-c-btn:hover, .single-event-page .event-tickets .m-content-carousel .button-group .light.tribe-common-c-btn:hover,
.m-image-carousel .button-group .button.light:focus,
.m-image-carousel .button-group .single-event-page .event-tickets .light.tribe-common-c-btn:focus,
.single-event-page .event-tickets .m-image-carousel .button-group .light.tribe-common-c-btn:focus,
.m-image-carousel .button-group .button.light:hover,
.m-image-carousel .button-group .single-event-page .event-tickets .light.tribe-common-c-btn:hover,
.single-event-page .event-tickets .m-image-carousel .button-group .light.tribe-common-c-btn:hover {
  background-color: rgba(35, 31, 32, 0.33);
  color: #ffffff;
}
.m-content-carousel .button-group .button.hollow:focus, .m-content-carousel .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:focus, .single-event-page .event-tickets .m-content-carousel .button-group .hollow.tribe-common-c-btn:focus, .m-content-carousel .button-group .button.hollow:hover, .m-content-carousel .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:hover, .single-event-page .event-tickets .m-content-carousel .button-group .hollow.tribe-common-c-btn:hover,
.m-image-carousel .button-group .button.hollow:focus,
.m-image-carousel .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:focus,
.single-event-page .event-tickets .m-image-carousel .button-group .hollow.tribe-common-c-btn:focus,
.m-image-carousel .button-group .button.hollow:hover,
.m-image-carousel .button-group .single-event-page .event-tickets .hollow.tribe-common-c-btn:hover,
.single-event-page .event-tickets .m-image-carousel .button-group .hollow.tribe-common-c-btn:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #231f20 !important;
}
.m-content-carousel .carousel-buttons,
.m-image-carousel .carousel-buttons {
  pointer-events: none;
  justify-content: center;
  top: unset;
  bottom: 0;
  width: calc(100% - 32px);
}
.m-content-carousel .carousel-buttons .carousel-button-prev,
.m-content-carousel .carousel-buttons .carousel-button-next,
.m-image-carousel .carousel-buttons .carousel-button-prev,
.m-image-carousel .carousel-buttons .carousel-button-next {
  pointer-events: all;
}
.m-content-carousel .carousel-buttons .button:first-of-type, .m-content-carousel .carousel-buttons .single-event-page .event-tickets .tribe-common-c-btn:first-of-type, .single-event-page .event-tickets .m-content-carousel .carousel-buttons .tribe-common-c-btn:first-of-type,
.m-image-carousel .carousel-buttons .button:first-of-type,
.m-image-carousel .carousel-buttons .single-event-page .event-tickets .tribe-common-c-btn:first-of-type,
.single-event-page .event-tickets .m-image-carousel .carousel-buttons .tribe-common-c-btn:first-of-type {
  margin-right: 1.1428571429rem;
}
@media (min-width: 1024px) {
  .m-content-carousel .carousel-buttons,
  .m-image-carousel .carousel-buttons {
    justify-content: space-between;
    top: 50%;
    bottom: unset;
    width: calc(100% + 35px);
    transform: translate(-16px, -50%);
  }
}
@media (min-width: 1440px) {
  .m-content-carousel .carousel-buttons,
  .m-image-carousel .carousel-buttons {
    width: calc(100% + 67px);
    transform: translate(-32px, -50%);
  }
}

.m-content-carousel .button.text-link, .m-content-carousel .single-event-page .event-tickets .text-link.tribe-common-c-btn, .single-event-page .event-tickets .m-content-carousel .text-link.tribe-common-c-btn {
  border-bottom-color: #ffffff;
  color: #ffffff;
}
.m-content-carousel .button.text-link::after, .m-content-carousel .single-event-page .event-tickets .text-link.tribe-common-c-btn::after, .single-event-page .event-tickets .m-content-carousel .text-link.tribe-common-c-btn::after {
  background-color: #ffffff !important;
}

.wpcf7 .screen-reader-response {
  border: 0;
}
.wpcf7 .ajax-loader {
  display: inline-block;
  position: relative;
  right: -1.4285714286rem;
  margin: 0;
  padding: 0;
  height: 2.7142857143rem;
  width: 2.7142857143rem;
  background-image: url("../images/loader.png");
  background-size: 38px 38px;
  border: none;
  opacity: 0.8;
  vertical-align: middle;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-name: spin;
  animation-timing-function: linear;
  visibility: hidden;
}
.wpcf7 .ajax-loader.is-active {
  visibility: visible;
}
.wpcf7 .ajax-error {
  display: none;
}
.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7-mail-sent-ok,
.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-response-output,
.wpcf7-spam-blocked,
.wpcf7-validation-errors,
.wpcf7-acceptance-missing,
span.wpcf7-not-valid-tip {
  margin: 0;
  margin-top: 1.1428571429rem;
  padding: 0;
  border: 0;
  color: #c5341b;
  font-size: 0.8571428571rem;
  letter-spacing: 0.0642857143rem;
  line-height: 1.58;
}

span.wpcf7-not-valid-tip {
  display: block;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 100;
}

.wpcf7-acceptance-missing,
.wpcf7-spam-blocked {
  color: #ffa500;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-display-none {
  display: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#cookie-disclosure {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.0714285714rem;
  background-color: #231f20;
  color: #ffffff;
  text-align: center;
  transition: transform 250ms ease;
  z-index: 300;
}
#cookie-disclosure a {
  color: #ffffff;
}
#cookie-disclosure a:hover, #cookie-disclosure a:focus {
  text-decoration: none;
}
#cookie-disclosure .close-cookie {
  margin-top: 1.7857142857rem;
  transition: opacity 250ms ease;
}
#cookie-disclosure .close-cookie svg {
  margin-left: 0.7142857143rem;
  transition: transform 250ms ease;
}
#cookie-disclosure .close-cookie:active, #cookie-disclosure .close-cookie:focus, #cookie-disclosure .close-cookie:hover {
  opacity: 0.9;
}
#cookie-disclosure .close-cookie:active svg, #cookie-disclosure .close-cookie:focus svg, #cookie-disclosure .close-cookie:hover svg {
  transform: scale(0.9);
}
@media (min-width: 1024px) {
  #cookie-disclosure {
    text-align: left;
  }
  #cookie-disclosure .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #cookie-disclosure .container .close-cookie {
    margin-top: 0;
  }
}
#cookie-disclosure[aria-hidden=true] {
  transform: translate3d(0, 200%, 0);
}

html.no-js#cookie-disclosure {
  display: none;
}

.booking-calendar {
  /* Style for single month */
}
.booking-calendar .calendar {
  padding: 5px;
  border-spacing: 1px;
}
.booking-calendar .cal__container {
  height: 550px;
  overflow: hidden;
  overflow-y: scroll;
}
.booking-calendar .cal__controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-bottom: 2hide 0px;
  font-size: 22px;
}
.booking-calendar .cal__controls span {
  cursor: pointer;
  padding: 5px;
}
.booking-calendar .selected {
  background-color: rgba(35, 31, 32, 0.45) !important;
  color: #ffffff;
}
.booking-calendar .selected__startEnd {
  background-color: #231f20 !important;
  color: #ffffff !important;
}
.booking-calendar .disabled {
  cursor: not-allowed !important;
  color: #ffffff !important;
  text-decoration: line-through;
}
.booking-calendar .disabled:hover {
  background-color: #ffffff !important;
}
.booking-calendar .month {
  margin-top: 20px;
}
.booking-calendar .month span {
  font-size: 16px;
}
.booking-calendar table {
  margin-top: 10px;
  width: calc(100% - 1px);
  border-collapse: collapse;
}
.booking-calendar tr:first-of-type td {
  text-transform: uppercase;
}
.booking-calendar th {
  height: 30px;
  width: 30px;
  border: none !important;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.booking-calendar td {
  position: relative;
  height: 35px;
  font-size: 14px;
  text-align: center;
}
.booking-calendar td:hover {
  cursor: pointer;
  background-color: #ededed;
}
.booking-calendar select {
  height: 35px;
  width: 100%;
  font-size: 18px;
  text-align: center;
}
.booking-calendar .inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ededed;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.booking-calendar .inputs div {
  display: flex;
  justify-content: center;
  padding-left: 10px;
  height: 40px;
  border: none;
  text-align: center;
}
.booking-calendar .inputs div:nth-of-type(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.booking-calendar .inputs div:nth-of-type(2) {
  grid-column-start: 3;
  grid-column-end: 4;
}
.booking-calendar .inputs div:nth-of-type(3) {
  grid-column-start: 4;
  grid-column-end: 6;
}
.booking-calendar .inputs div input {
  margin: auto;
  position: relative;
  width: 100%;
  border: none;
}
.booking-calendar .circles {
  border-collapse: unset;
}
.booking-calendar .circles td:not(.today-cell) {
  border: none !important;
}
.booking-calendar .color__container {
  position: absolute;
  top: 700px;
  width: 150px;
  display: flex;
  left: calc(50% - 75px);
}
.booking-calendar .shapes__container {
  position: absolute;
  top: 750px;
  width: 150px;
  display: flex;
  left: calc(50% - 75px);
}
.booking-calendar .shapes {
  margin: auto;
}
.booking-calendar .shapes ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.booking-calendar .shapes li {
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #5a5a5a;
}
.booking-calendar .shapes li:nth-of-type(1) {
  border-radius: 50%;
}
.booking-calendar .shapes li:nth-of-type(2) {
  border-radius: 0;
}
.booking-calendar .colors {
  margin: auto;
}
.booking-calendar .colors ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.booking-calendar .colors li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.booking-calendar .colors li:nth-of-type(1) {
  background-color: #914669;
}
.booking-calendar .colors li:nth-of-type(2) {
  background-color: rgb(0, 166, 153);
}
.booking-calendar .colors li:nth-of-type(3) {
  background-color: #FF5A5F;
}
.booking-calendar .clear__btn {
  display: flex;
  height: 15px;
}
.booking-calendar .clear__btn .clear {
  display: block;
}
.booking-calendar .single table {
  animation: pop 0.1s forwards;
}
@keyframes pop {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.booking-calendar .single .cal__container {
  display: grid;
}
.booking-calendar .single .month__controls {
  display: grid;
  grid-template-columns: 15% 70% 15%;
  grid-template-rows: 1fr;
  justify-content: center;
}
.booking-calendar .single .month__controls div {
  text-align: center;
}
.booking-calendar .single .month__controls div:nth-of-type(1) {
  padding: 5px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  grid-column-start: 1;
  grid-column-end: 2;
  cursor: pointer;
}
.booking-calendar .single .month__controls div:nth-of-type(1):hover {
  background-color: #ededed;
}
.booking-calendar .single .month__controls div:nth-of-type(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  display: flex;
}
.booking-calendar .single .month__controls div:nth-of-type(2) span {
  margin: auto;
}
.booking-calendar .single .month__controls div:nth-of-type(3) {
  padding: 5px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  grid-column-start: 3;
  grid-column-end: 4;
  cursor: pointer;
}
.booking-calendar .single .month__controls div:nth-of-type(3):hover {
  background-color: #ededed;
}
.booking-calendar .single .month span {
  text-align: center;
}

body .buorg {
  background-color: #231f20;
  border: none;
  color: #ffffff;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

body div.buorg-pad {
  padding: 1.4285714286rem;
  line-height: 1.57143;
}

body .buorg-buttons {
  padding-top: 1.4285714286rem;
}
body .buorg-buttons a {
  padding-top: 0.7142857143rem;
}

body #buorgig,
body #buorgul,
body #buorgpermanent {
  padding: 0 1.3571428571rem;
  height: 3.4285714286rem;
  background-color: #ffffff;
  color: #231f20;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 250ms ease, background-color 250ms ease;
}
body #buorgig:active, body #buorgig:focus, body #buorgig:hover,
body #buorgul:active,
body #buorgul:focus,
body #buorgul:hover,
body #buorgpermanent:active,
body #buorgpermanent:focus,
body #buorgpermanent:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 640px) {
  body #buorgig,
  body #buorgul,
  body #buorgpermanent {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  body #buorgig,
  body #buorgul,
  body #buorgpermanent {
    margin: 0 0.7142857143rem;
  }
}

body #buorgig {
  background-color: transparent;
  border: 0.0714285714rem solid #231f20;
  color: #ffffff;
}
body #buorgig:active, body #buorgig:focus, body #buorgig:hover {
  background-color: #231f20;
  color: #ffffff;
}

body .buorg-test {
  display: none !important;
}

body .buorg-fadeout {
  transition: visibility 0s 5.5s, opacity 3s ease-out 2.5s;
}

.site-overlay-nav,
.locations-overlay-nav {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 7.7142857143rem;
  height: 100vh;
  width: 100vw;
  background-image: url("/wp-content/themes/ace-hotel/assets/images/grey-jean-with-charcoal.jpeg");
  overflow-y: scroll;
  color: #ffffff;
  transform: translate3d(0, -100%, 0);
  transition: transform 400ms ease;
  visibility: hidden;
  z-index: 5;
  margin-top: 0;
  transition: margin-top 400ms ease;
}
.alert-bar-visible .site-overlay-nav,
.alert-bar-visible .locations-overlay-nav {
  margin-top: 3.1428571429rem;
}
@media (min-width: 768px) {
  .alert-bar-visible .site-overlay-nav,
  .alert-bar-visible .locations-overlay-nav {
    padding-top: 10.8571428571rem;
  }
}
.site-overlay-nav .overlay-nav-wrapper,
.locations-overlay-nav .overlay-nav-wrapper {
  height: 100%;
  width: 100%;
  opacity: 0;
}
.site-overlay-nav .dropdown-arrow,
.locations-overlay-nav .dropdown-arrow {
  height: 0.4428571429rem;
  width: 0.8714285714rem;
  margin-left: 0.3857142857rem;
  transform: rotate(0deg);
  transition: transform 250ms ease;
}
.site-overlay-nav .current-site,
.locations-overlay-nav .current-site {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.8571428571rem;
  text-transform: uppercase;
}
.site-overlay-nav ul.primary-navigation,
.locations-overlay-nav ul.primary-navigation {
  margin-bottom: 1.7857142857rem;
}
.site-overlay-nav ul.secondary-navigation,
.locations-overlay-nav ul.secondary-navigation {
  padding-top: 2.5rem;
  border-top: 1px solid #ffffff;
}
.site-overlay-nav .overlay-nav-container,
.locations-overlay-nav .overlay-nav-container {
  justify-content: flex-start;
  margin-right: 3.5714285714rem;
  margin-left: 3.5714285714rem;
}
.site-overlay-nav .overlay-nav-item,
.locations-overlay-nav .overlay-nav-item {
  padding-bottom: 1.4285714286rem;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-size: 1.4285714286rem;
}
.site-overlay-nav .overlay-nav-item a,
.locations-overlay-nav .overlay-nav-item a {
  display: inline-block;
  padding: 0;
  letter-spacing: -0.0428571429rem;
  color: #ffffff !important;
  position: relative;
}
.site-overlay-nav .overlay-nav-item a::after,
.locations-overlay-nav .overlay-nav-item a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3571428571rem;
  left: 0;
  height: 0.0714285714rem;
  width: 0;
  background-color: #231f20;
  transition: width 200ms ease;
}
.site-overlay-nav .overlay-nav-item a:active::after, .site-overlay-nav .overlay-nav-item a:focus-visible::after, .site-overlay-nav .overlay-nav-item a:hover::after,
.locations-overlay-nav .overlay-nav-item a:active::after,
.locations-overlay-nav .overlay-nav-item a:focus-visible::after,
.locations-overlay-nav .overlay-nav-item a:hover::after {
  width: 100%;
}
.site-overlay-nav .overlay-nav-item a::after,
.locations-overlay-nav .overlay-nav-item a::after {
  background-color: #ffffff !important;
}
.site-overlay-nav .overlay-nav-item a:first-child a,
.locations-overlay-nav .overlay-nav-item a:first-child a {
  padding-top: 0;
}
@media (min-width: 1600px) {
  .site-overlay-nav .overlay-nav-item a,
  .locations-overlay-nav .overlay-nav-item a {
    padding-right: 0;
    padding-left: 0;
  }
  .site-overlay-nav .overlay-nav-item a::after,
  .locations-overlay-nav .overlay-nav-item a::after {
    bottom: -0.5714285714rem;
  }
}
.site-overlay-nav .overlay-nav-item a.current-menu-item::after,
.locations-overlay-nav .overlay-nav-item a.current-menu-item::after {
  width: 100%;
}
.site-overlay-nav .overlay-nav-item.has-sub-nav,
.locations-overlay-nav .overlay-nav-item.has-sub-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-overlay-nav .overlay-nav-item-supporting,
.site-overlay-nav .overlay-contact-item,
.locations-overlay-nav .overlay-nav-item-supporting,
.locations-overlay-nav .overlay-contact-item {
  font-size: 1rem;
  font-weight: normal;
}
.site-overlay-nav .overlay-nav-item-supporting a,
.site-overlay-nav .overlay-nav-item-supporting p,
.site-overlay-nav .overlay-contact-item a,
.site-overlay-nav .overlay-contact-item p,
.locations-overlay-nav .overlay-nav-item-supporting a,
.locations-overlay-nav .overlay-nav-item-supporting p,
.locations-overlay-nav .overlay-contact-item a,
.locations-overlay-nav .overlay-contact-item p {
  padding: 0.7142857143rem 0;
}
@media (min-width: 1600px) {
  .site-overlay-nav .overlay-nav-item-supporting a,
  .site-overlay-nav .overlay-nav-item-supporting p,
  .site-overlay-nav .overlay-contact-item a,
  .site-overlay-nav .overlay-contact-item p,
  .locations-overlay-nav .overlay-nav-item-supporting a,
  .locations-overlay-nav .overlay-nav-item-supporting p,
  .locations-overlay-nav .overlay-contact-item a,
  .locations-overlay-nav .overlay-contact-item p {
    padding-right: 0;
    padding-left: 0;
  }
}
.site-overlay-nav .overlay-nav-item-supporting,
.locations-overlay-nav .overlay-nav-item-supporting {
  padding-bottom: 0.7857142857rem;
}
.site-overlay-nav .overlay-nav-cta,
.locations-overlay-nav .overlay-nav-cta {
  border: 0;
}
.site-overlay-nav .overlay-nav-cta a,
.locations-overlay-nav .overlay-nav-cta a {
  display: flex;
  color: #ffffff;
}
.site-overlay-nav .social-links,
.locations-overlay-nav .social-links {
  display: flex;
  flex: 100%;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 2.0714285714rem 0 3rem;
}
.site-overlay-nav .social-links li,
.locations-overlay-nav .social-links li {
  display: inline-block;
}
.site-overlay-nav .social-links li:not(:last-child),
.locations-overlay-nav .social-links li:not(:last-child) {
  margin-right: 4.2857142857rem;
}
.site-overlay-nav .social-links li svg,
.locations-overlay-nav .social-links li svg {
  height: 1.7142857143rem;
  width: 1.7142857143rem;
}
@media (min-width: 1600px) {
  .site-overlay-nav .overlay-nav-container,
  .locations-overlay-nav .overlay-nav-container {
    display: flex;
    height: 100%;
  }
  .site-overlay-nav .overlay-nav-wrapper,
  .locations-overlay-nav .overlay-nav-wrapper {
    height: 100%;
    width: 50%;
  }
  .site-overlay-nav ul,
  .locations-overlay-nav ul {
    padding-right: 7.1428571429rem;
    padding-left: 7.1428571429rem;
  }
  .site-overlay-nav .overlay-nav-cta,
  .locations-overlay-nav .overlay-nav-cta {
    display: none;
  }
}
.site-overlay-nav[data-menu=open],
.locations-overlay-nav[data-menu=open] {
  transform: translate3d(0, 0, 0);
}
.site-overlay-nav[data-menu=open] .overlay-nav-wrapper,
.locations-overlay-nav[data-menu=open] .overlay-nav-wrapper {
  animation: fadeIn 0.4s ease forwards 0.25s;
}

.site-overlay-nav .language-selector {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-bottom: 0.1428571429rem;
  padding-right: 1.2142857143rem;
  border: 0;
}
.site-overlay-nav .language-selector .language-dropdown {
  margin: 0;
  padding: 0 0 0.7142857143rem 0;
  border: 0;
  min-height: auto;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow-white.svg");
  background-position: 26px 4px;
}
.site-overlay-nav .inner {
  margin-bottom: -0.4285714286rem;
}
.site-overlay-nav .sub-nav-item:not(:last-child) {
  padding-bottom: 0.6428571429rem;
}
@media (min-width: 1600px) {
  .site-overlay-nav {
    display: none;
  }
}

.locations-overlay-nav .overlay-nav-item {
  display: flex;
  align-items: center;
  font-family: "Tiempos Headline", Georgia, Times, "Times New Roman", serif;
  font-size: 1.4285714286rem;
  padding-bottom: 1.8571428571rem;
}
.locations-overlay-nav .overlay-nav-item a {
  padding: 0;
}
.locations-overlay-nav .overlay-nav-item .coming-soon-tagline {
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-size: 0.8571428571rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-left: 1.4285714286rem;
}
@media (min-width: 1600px) {
  .locations-overlay-nav .overlay-nav-item {
    font-size: 1.7142857143rem;
  }
}
.locations-overlay-nav .locations-nav {
  padding: 0;
}
@media (min-width: 1600px) {
  .locations-overlay-nav .locations-nav {
    padding-left: 8.1428571429rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
.m-popup {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba($black, 0.3);
  opacity: 0;
  transition: opacity 300ms ease-in;
  z-index: 301;

  .popup-content-wrapper {
    @include grid-columns;
    @include grid-row;
    align-items: flex-start;
    max-width: rem-calc(852);

    @include media(">=medium") {
      @include grid-two-symmetric-cols;
    }
  }

  .popup-copy-wrapper {
    text-align: center;
  }

  .popup-image-wrapper {
    display: none;
    height: 100%;

    img {
      height: 100%;
      object-fit: cover;
    }

    @include media(">=medium") {
      display: block;
    }
  }

  form {
    input[type="email"] {
      margin-bottom: rem-calc(14);
      text-align: center;

      &:active,
      &:focus,
      &:hover {
        padding-left: 0;
        background-color: transparent;
      }
    }
    .checkbox-group {
      padding: rem-calc(0 20);
    }
  }

  .checkbox-group {
    display: inline-flex;
    text-align: left;

    input {
      flex-shrink: 0;
      margin-top: rem-calc(3);
    }

    p,
    a {
      color: $white;
      font: {
        family: $typeface-header;
        size: rem-calc(12);
        weight: $font-weight-normal;
      }
      letter-spacing: 0;
      line-height: 2;
      text-transform: none;
    }

    a {
      color: $black;
    }
  }

  .popup-copy-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: rem-calc(35 30);
    height: 100%;
    background-color: $white;

    .heading-eyebrow {
      margin-bottom: rem-calc(18);
    }

    h2 {
      padding-bottom: rem-calc(12);
    }

    .popup-buttons {
      &.button-group {
        justify-content: center;
        margin-left: 0;
      }

      a {
        padding: rem-calc(0 30);
        min-width: rem-calc(172);
      }
    }

    @media screen and (max-height: 575px) {
      max-height: 100%;
      overflow: auto;
    }

    @include media(">=large") {
      padding: rem-calc(40 60);
    }

    @media screen and (min-width: 1024px) and (max-height: 800px) {
      h2,
      .h2 {
        font-size: rem-calc(28);
      }
      p {
        font-size: rem-calc(14);
      }
    }

    .close-popup {
      cursor: pointer;
      position: absolute;
      right: rem-calc(10);
      top: rem-calc(9);
      padding: 0;
      height: rem-calc(45);
      min-width: rem-calc(45);
      width: rem-calc(45);
      background-color: $white;
      border: none;
      z-index: 2;

      &::before,
      &::after {
        content: " ";
        position: absolute;
        height: rem-calc(34);
        width: rem-calc(2);
        background-color: $black;
        transition: opacity 0.3s ease;
      }
      &::before {
        transform: rotate(45deg);
      }
      &::after {
        transform: rotate(-45deg);
      }

      &:active,
      &:focus,
      &:hover {
        &::before,
        &::after {
          opacity: 0.6;
        }
      }

      &:focus {
        border-color: $black;
      }

      span {
        color: $black;
      }
    }
  }

  .popup-content-wrapper.container {
    grid-column-gap: 0;
    min-height: rem-calc(426);
    opacity: 0;
    overflow: hidden;
    transform: translateY(15px);
    transition: transform 300ms ease-in, opacity 300ms linear;
  }

  &[aria-hidden="false"] {
    opacity: 1;

    .popup-content-wrapper.container {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
*/
.form-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 21;
}
.form-modal .form-modal-background {
  height: 100%;
  width: 100%;
  background: rgba(35, 31, 32, 0.2);
}
.form-modal .form-modal-container {
  position: absolute !important;
  top: 50%;
  left: 50%;
  height: 90vh;
  width: 90%;
  border: 0.0714285714rem solid #6f6f6f;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.form-modal .form-modal-container:focus {
  outline: none;
}
.form-modal .form-modal-container.grid-row {
  grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
}
@media (min-width: 1024px) {
  .form-modal .form-modal-container.grid-row {
    display: grid;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    grid-column-gap: 0 !important;
    grid-template-columns: [col1-start] repeat(6, 1fr) [col1-end col2-start] repeat(6, 1fr) [col2-end];
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .form-modal .form-modal-container.grid-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .form-modal .form-modal-container.grid-row .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .form-modal .form-modal-container.grid-row .grid-col:nth-child(2n) {
    grid-column: col2;
  }
}
@media (min-width: 1360px) {
  .form-modal .form-modal-container {
    width: 66%;
  }
}
.form-modal .col-image {
  display: none;
  position: relative;
  height: 100%;
}
@media (min-width: 1024px) {
  .form-modal .col-image {
    display: block;
  }
}
.form-modal .col-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.form-modal .col-form {
  position: relative;
  background-color: #ffffff;
  border-left: 0.0714285714rem solid #6f6f6f;
  overflow-y: scroll;
  height: 100%;
}
@media (min-width: 1024px) {
  .form-modal .col-form {
    border-top-right-radius: 0.1428571429rem;
    border-bottom-right-radius: 0.1428571429rem;
  }
}
.form-modal .col-form.form-modal-copy-wrapper::before,
.form-modal .col-form.form-modal-copy-wrapper .form-content::after {
  content: "";
  position: fixed;
  height: 0.2857142857rem;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #231f20;
  border-radius: 0.2857142857rem;
}
@media (min-width: 1024px) {
  .form-modal .col-form.form-modal-copy-wrapper::before,
  .form-modal .col-form.form-modal-copy-wrapper .form-content::after {
    max-width: 50%;
  }
}
.form-modal .col-form.form-modal-copy-wrapper::before {
  top: 0;
}
.form-modal .col-form .form-content {
  padding: 2.7142857143rem 2.1428571429rem 1.1428571429rem;
}
.form-modal .col-form .form-content::after {
  right: 0;
  bottom: 0;
}
.form-modal .col-form .form-content h2 {
  margin-bottom: 1.4285714286rem;
  padding-right: 4.7142857143rem;
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2.2857142857rem;
}
.form-modal .col-form .form-content p {
  font-size: 1.1428571429rem;
  letter-spacing: -0.0114285714rem;
  line-height: 1.4285714286rem;
}
.form-modal .col-form .form-wrapper form {
  padding: 1.1428571429rem 2.1428571429rem;
}
.form-modal .col-form .form-wrapper .gform_wrapper {
  position: relative;
}
.form-modal .col-form .form-wrapper .gform_wrapper::before, .form-modal .col-form .form-wrapper .gform_wrapper::after {
  display: none;
}
.form-modal .close-panel {
  position: absolute;
  top: 2.8571428571rem;
  right: 2.1428571429rem;
  margin: 0;
  background: transparent;
  border: 0;
  color: #231f20;
}
.form-modal .close-panel svg {
  display: block;
  position: relative;
  height: 1rem;
  width: 1rem;
}
.form-modal .close-panel:active svg, .form-modal .close-panel:focus svg, .form-modal .close-panel:hover svg {
  opacity: 0.7;
}
.form-modal[data-visible=true] {
  opacity: 1;
}

.share-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  grid-column: col-start 1/span 12;
  margin: 2.8571428571rem 0 5.3571428571rem;
}
@media (max-width: 767px) {
  .share-container {
    margin-bottom: 2.8571428571rem;
  }
}
.share-container .share-text {
  flex: 100%;
  margin-bottom: 0.7142857143rem;
  text-transform: uppercase;
  text-align: center;
}
.share-container .social-share {
  display: flex;
  align-items: center;
}
.share-container .social-share a {
  display: block;
  width: 1.7142857143rem;
  height: 1.7142857143rem;
  margin-left: 1.7142857143rem;
}
.share-container .social-share a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 200ms ease-in, opacity 200ms ease-in;
}
.share-container .social-share a.icon-email {
  width: 1.8571428571rem;
}
.share-container .social-share a:hover svg, .share-container .social-share a:focus-within svg {
  transform: translateY(-4px);
  opacity: 0.7;
}

.site-footer {
  flex-shrink: 0;
  padding: 2.8571428571rem 0 1.2857142857rem;
  background: #231f20 url("/wp-content/themes/ace-hotel/assets/images/grey-jean-with-charcoal.jpeg") repeat;
  text-align: center;
  color: #ffffff;
}
.site-footer p,
.site-footer a {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}
.site-footer .arrow-link a .arrow {
  margin-left: 0;
}
.site-footer .arrow-link a:active, .site-footer .arrow-link a:focus, .site-footer .arrow-link a:hover {
  color: inherit;
}
.site-footer .arrow-link a:active .arrow, .site-footer .arrow-link a:focus .arrow, .site-footer .arrow-link a:hover .arrow {
  margin-left: 0.5rem;
}
.site-footer a {
  position: relative;
  text-decoration: none;
  transition: opacity 250ms ease;
}
.site-footer a .arrow {
  opacity: 0;
}
.site-footer a:active, .site-footer a:focus, .site-footer a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.site-footer a:active .arrow, .site-footer a:focus .arrow, .site-footer a:hover .arrow {
  opacity: 0.8;
}
.site-footer ul li {
  margin-bottom: 0.5714285714rem;
}
.site-footer .footer-top,
.site-footer .footer-bottom {
  display: flex;
  flex-flow: row wrap;
}
.site-footer .footer-top {
  position: relative;
  padding-bottom: 2.1428571429rem;
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.site-footer .footer-top::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 0.2857142857rem;
  width: 70%;
  max-width: 19.6428571429rem;
  border: 0.0714285714rem solid #231f20;
  border-radius: 0.1428571429rem;
  transform: translateX(-50%);
  transition: width 500ms ease-out;
}
@media (min-width: 769px) {
  .site-footer .footer-top::after {
    width: 21.4285714286rem;
  }
}
.site-footer .footer-top[data-visible=true]::after {
  width: 90%;
}
@media (min-width: 768px) {
  .site-footer .footer-top[data-visible=true]::after {
    width: 28.5714285714rem;
  }
}
.has-dark-bg .site-footer .footer-top::after {
  border-color: #ffffff;
}
.site-footer .footer-top::after {
  max-width: none;
  width: 80%;
  border-color: #ffffff;
}
.site-footer .footer-top[data-visible=true]::after {
  width: 100%;
}
.site-footer .footer-bottom {
  padding-top: 1.4285714286rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    justify-content: normal;
  }
}
.site-footer .footer-bottom .footer-image {
  background-image: url("../images/atelier-ace.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 10px 0 0;
}
.site-footer .footer-bottom .footer-image:hover, .site-footer .footer-bottom .footer-image:focus {
  border: 1px dashed #ffffff;
  padding: 10px;
}
.site-footer .footer-bottom p {
  opacity: 0.7;
  font-size: 0.8571428571rem;
  top: 1px;
  position: relative;
}
.site-footer .footer-bottom a {
  margin-right: 1.4285714286rem;
  height: 0.8571428571rem;
  width: 4.2857142857rem;
}
.site-footer .footer-bottom a svg {
  height: 100%;
  width: 100%;
}
.site-footer .footer-logo {
  display: block;
  margin: 0 auto 1.2857142857rem;
  height: 2.1428571429rem;
  width: 5.5714285714rem;
}
.site-footer .footer-logo svg {
  height: 100%;
  width: 100%;
}
.site-footer .footer-logo:hover, .site-footer .footer-logo:focus {
  color: #eeb114;
}
.site-footer .footer-nav {
  display: grid;
  align-items: center;
}
.site-footer .footer-nav,
.site-footer .logo-wrapper {
  flex: 100%;
}
.site-footer .social-links {
  display: flex;
  flex: 100%;
  flex-flow: row wrap;
  justify-content: center;
  order: -1;
  margin-bottom: 1.8571428571rem;
}
.site-footer .social-links.desktop-socials {
  display: none;
}
@media (min-width: 768px) {
  .site-footer .social-links.mobile-socials {
    display: none;
  }
  .site-footer .social-links.desktop-socials {
    display: flex;
  }
}
.site-footer .social-links li {
  display: inline-block;
  margin: 0 1.2142857143rem;
}
.site-footer .social-links li a {
  position: relative;
  height: 1.6428571429rem;
  width: 1.6428571429rem;
  color: inherit;
}
.site-footer .social-links li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3571428571rem;
  left: 0;
  height: 0.0714285714rem;
  width: 0;
  background-color: #231f20;
  transition: width 200ms ease;
}
.site-footer .social-links li a:active::after, .site-footer .social-links li a:focus-visible::after, .site-footer .social-links li a:hover::after {
  width: 100%;
}
.site-footer .social-links li a::after {
  height: 0.1428571429rem;
  background-color: #ffffff;
}
.site-footer .social-links li a:focus, .site-footer .social-links li a:hover {
  color: white;
}
.site-footer .social-links li svg {
  height: 1.6428571429rem;
  width: 1.6428571429rem;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 1.7857142857rem 0 1.1428571429rem;
  }
  .site-footer .footer-top {
    display: grid;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    grid-template-columns: [col1-start] 1fr [col1-end col2-start] repeat(9, 1fr) [col2-end col3-start] repeat(2, 1fr) [col3-end];
    padding-bottom: 2.0714285714rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .site-footer .footer-top {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .site-footer .footer-top .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .site-footer .footer-top .grid-col:nth-child(2n) {
    grid-column: col2;
  }
  .site-footer .footer-top .grid-col:nth-child(3n) {
    grid-column: col3;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-bottom a {
    margin-right: 2.1428571429rem;
  }
}
@media (min-width: 768px) {
  .site-footer .logo-wrapper {
    flex: auto;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-logo {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-nav .nav-links {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    column-gap: 2.0714285714rem;
    row-gap: 0.7142857143rem;
  }
  .site-footer .footer-nav .footer-nav-item {
    display: inline-block;
    min-width: max-content;
    margin-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .site-footer .social-links {
    justify-content: flex-end;
    flex-wrap: nowrap;
    order: 1;
    margin: 0;
  }
  .site-footer .social-links li {
    margin: 0;
  }
  .site-footer .social-links li:not(:last-child) {
    margin-right: 1.4285714286rem;
  }
}

.m-capacity-chart .container {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .m-capacity-chart .container {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .m-capacity-chart .container .grid-col {
    grid-column: colcentered;
  }
}
@media (min-width: 768px) {
  .m-capacity-chart .container {
    grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
  }
}
.m-capacity-chart .btn-wrap {
  margin-top: 30px;
  text-align: center;
}
.m-capacity-chart .module-header {
  margin-bottom: 19.25px;
}
@media (min-width: 769px) {
  .m-capacity-chart .module-header {
    margin-bottom: 25.6666666667px;
  }
}
@media (min-width: 1025px) {
  .m-capacity-chart .module-header {
    margin-bottom: 38.5px;
  }
}
.m-capacity-chart .capacity-chart-table {
  width: 100%;
  border-collapse: collapse;
}
.m-capacity-chart .capacity-chart-table-container {
  position: relative;
}
@media (max-width: 767px) {
  .m-capacity-chart .capacity-chart-table-container {
    width: fit-content;
  }
}
.m-capacity-chart .capacity-chart-table-container::before, .m-capacity-chart .capacity-chart-table-container::after {
  content: "";
  position: absolute;
  left: 0;
  height: 0.2857142857rem;
  width: 100%;
  border: 1px solid #231f20;
  border-radius: 0.2857142857rem;
}
.m-capacity-chart .capacity-chart-table-container::before {
  bottom: 100%;
}
.m-capacity-chart .capacity-chart-table-container::after {
  top: 100%;
}
.m-capacity-chart .capacity-chart-table th,
.m-capacity-chart .capacity-chart-table td {
  border: solid 1px;
  text-align: center;
}
.m-capacity-chart .capacity-chart-table th:first-child,
.m-capacity-chart .capacity-chart-table td:first-child {
  text-align: left;
}
@media (max-width: 1023px) {
  .m-capacity-chart .capacity-chart-table th,
  .m-capacity-chart .capacity-chart-table td {
    display: none;
  }
}
.m-capacity-chart .capacity-chart-table th {
  padding: 1.4285714286rem 1.1428571429rem 1.1428571429rem;
  vertical-align: bottom;
  border-bottom: solid 3px;
}
.m-capacity-chart .capacity-chart-table td {
  padding: 0.7857142857rem 1.1428571429rem;
}
.m-capacity-chart .capacity-chart-table td:first-child {
  padding-right: 3.2857142857rem;
}
.m-capacity-chart .capacity-chart-table .td-part-of-room {
  padding-left: 40px;
}
@media (max-width: 1023px) {
  .m-capacity-chart .capacity-chart-table .compare,
  .m-capacity-chart .capacity-chart-table th:first-child,
  .m-capacity-chart .capacity-chart-table td:first-child,
  .m-capacity-chart .capacity-chart-table td.active {
    display: table-cell;
  }
}
@media (min-width: 1024px) {
  .m-capacity-chart .capacity-chart-table .compare,
  .m-capacity-chart .capacity-chart-table th:last-child,
  .m-capacity-chart .capacity-chart-table td:last-child {
    display: none;
  }
}
.m-capacity-chart .capacity-chart-table .compare-select {
  margin-bottom: 0;
}
.m-capacity-chart .capacity-chart-table .name {
  display: block;
  font-size: 1.1428571429rem;
  font-weight: 700;
  margin-bottom: 0.2857142857rem;
}
.m-capacity-chart .capacity-chart-table .sq-ft + .dimensions::before {
  content: "|";
  color: #c4c4c4;
  margin-left: 0.4285714286rem;
  margin-right: 0.4285714286rem;
}
.m-capacity-chart .capacity-chart-table .cell-360-deg {
  position: absolute;
  border: none;
  padding: 8px;
  display: block;
}
.m-capacity-chart .capacity-icon {
  display: block;
  width: 2.5714285714rem;
  height: 2.5714285714rem;
  object-fit: contain;
  object-position: 50%;
  margin: 0 auto 0.5714285714rem;
}

.card-list .card-container .links {
  display: flex;
  align-items: center;
}
.card-list .card-container .links a {
  border-bottom: 0;
}
.card-list .card-container .links a.tour-button {
  padding: 0;
}

.m-card-slider.section-container {
  padding-bottom: 51.3333333333px;
  overflow: hidden;
}
.m-card-slider.section-container.blog-slider, .m-card-slider.section-container.events-slider {
  padding-bottom: 31.1111111111px;
}
@media (min-width: 768px) {
  .m-card-slider.section-container {
    padding-bottom: 77px;
  }
  .m-card-slider.section-container.blog-slider, .m-card-slider.section-container.events-slider {
    padding-bottom: 46.6666666667px;
  }
}
.m-card-slider .container {
  margin: 0;
  max-width: none;
}
@media (max-width: 767px) {
  .m-card-slider .container {
    margin-left: 1.0714285714rem;
  }
}
.m-card-slider .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: 1.0714285714rem;
  margin-bottom: 2rem;
}
.m-card-slider .header-row .show-on-mobile {
  flex: 100%;
  padding-top: 1.1428571429rem;
}
.m-card-slider .header-row .module-heading {
  flex-shrink: 0;
  margin: 0;
}
.m-card-slider .header-row a {
  flex-shrink: 0;
  margin-left: auto;
  padding-right: 1.2857142857rem;
  text-transform: uppercase;
}
.m-card-slider .carousel {
  height: auto;
  width: 100%;
  opacity: 0;
  overflow-x: clip;
  transition: opacity 0.4s;
}
.m-card-slider .carousel.flickity-enabled {
  opacity: 1;
}
.m-card-slider .carousel:not(.js-card-scrollable-mobile) .card-slider-item:last-child {
  opacity: 0;
}
.m-card-slider .carousel.js-card-scrollable-mobile::after {
  content: "flickity";
  display: none;
}
.m-card-slider .card-slider-item {
  margin-right: 1.1428571429rem;
  height: auto;
  width: 22.5714285714rem;
  max-width: 100vw;
  padding: 0;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.m-card-slider .card-slider-item .card-content {
  height: 100%;
}
.m-card-slider .card-slider-item .card-content .card-eyebrow {
  margin-bottom: 0.4285714286rem;
}
.m-card-slider .card-slider-item .card-content .event-location {
  display: block;
  font-weight: bold;
}
.m-card-slider .card-slider-item .card-content .button, .m-card-slider .card-slider-item .card-content .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .m-card-slider .card-slider-item .card-content .tribe-common-c-btn {
  margin-top: 1.2857142857rem;
}
.m-card-slider .card-slider-item .card-content .button.text-link, .m-card-slider .card-slider-item .card-content .single-event-page .event-tickets .text-link.tribe-common-c-btn, .single-event-page .event-tickets .m-card-slider .card-slider-item .card-content .text-link.tribe-common-c-btn {
  margin-top: 0.4285714286rem;
}
.m-card-slider .card-slider-item .card-content p:last-of-type {
  margin-bottom: 0;
}
.m-card-slider .card-slider-item .card-image-container {
  height: 22.9285714286rem;
  overflow: hidden;
}
.m-card-slider .card-slider-item .card-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: scale3d(1, 1, 1);
  transition: transform 1s;
}
.m-card-slider .card-slider-item .card-image-container figcaption {
  align-items: center;
  padding-bottom: 2.1428571429rem;
  text-transform: none;
}
.m-card-slider .card-slider-item .card-image-container figcaption img {
  max-height: 3rem;
  max-width: 70%;
  object-fit: contain;
}
.m-card-slider .card-slider-item .card-image-container figcaption .text-version-of-logo {
  max-width: 14.2857142857rem;
  font-size: 2rem;
  letter-spacing: -0.0357142857rem;
  line-height: 1;
  text-align: center;
}
.m-card-slider .card-slider-item .card-image-container figcaption .tagline {
  margin-bottom: -0.9285714286rem;
  font-size: 0.8571428571rem;
}
.m-card-slider .card-slider-item .card-text-container {
  padding: 1.4285714286rem 0 0;
  height: auto;
}
@media (min-width: 768px) {
  .m-card-slider .card-slider-item {
    margin-right: 2.1428571429rem;
  }
  .m-card-slider .card-slider-item.is-wide {
    width: 39.1428571429rem;
  }
  .m-card-slider .card-slider-item.food-card {
    width: 33.3333333333%;
  }
  .m-card-slider .card-slider-item.food-card .card-image-container figcaption img {
    max-height: 3rem;
  }
  .m-card-slider .card-slider-item .card-image-container {
    height: 30.7857142857rem;
  }
  .m-card-slider .card-slider-item .card-image-container figcaption .text-version-of-logo {
    font-size: 2.3571428571rem;
    letter-spacing: -0.0571428571rem;
  }
  .m-card-slider .card-slider-item .card-image-container figcaption img {
    max-height: 5.7142857143rem;
  }
  .m-card-slider .card-slider-item .card-text-container {
    padding: 1.2857142857rem 0.8571428571rem 0.8571428571rem;
  }
}
.m-card-slider .card-slider-item .card-text-container {
  transition: padding 250ms ease, transform 250ms ease;
}
.m-card-slider .flickity-viewport {
  position: relative;
  width: 100%;
  overflow: visible;
  transition: height 0.2s;
}
.m-card-slider .card-slider-row {
  position: relative;
}
.m-card-slider .carousel-buttons {
  pointer-events: none;
  justify-content: space-between;
  position: absolute;
  top: calc(50% - 33px);
  margin-left: -0.3571428571rem;
  padding: 0 0.7142857143rem 0 0;
  width: calc(100% + 5px);
  transform: translateY(-50%);
}
.m-card-slider .carousel-buttons button {
  pointer-events: all;
}
.m-card-slider.events-slider {
  min-height: 40rem;
}
.m-card-slider.events-slider .header-row {
  flex-wrap: wrap;
}
.m-card-slider.events-slider .link-col {
  text-align: right;
}
.m-card-slider.events-slider.has-dark-bg .event-location {
  color: #ffffff;
}
@media (max-width: 767px) {
  .m-card-slider.events-slider .header-row + p {
    display: none;
  }
}
@media (min-width: 500px) {
  .m-card-slider.events-slider .locations-select-wrap {
    width: max-content;
  }
}
@media (min-width: 768px) {
  .m-card-slider.events-slider .header-row {
    flex-wrap: nowrap;
  }
  .m-card-slider.events-slider .link-col {
    margin-bottom: 1.1428571429rem;
    width: auto;
  }
  .m-card-slider.events-slider .locations-select-wrap {
    order: inherit;
    margin-left: 2.7142857143rem;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .m-card-slider.events-slider .locations-select-wrap {
    min-width: 20.8571428571rem;
    margin-bottom: 0.7142857143rem;
    margin-left: 5.7142857143rem;
  }
}
.m-card-slider.blog-slider .card-image-container, .m-card-slider.events-slider .card-image-container {
  height: auto;
  max-height: 30.7857142857rem;
}
.m-card-slider.blog-slider .card-image-container img, .m-card-slider.events-slider .card-image-container img {
  height: auto;
  object-position: top center;
  max-height: 28rem;
}
.m-card-slider.blog-slider .card-text-container, .m-card-slider.events-slider .card-text-container {
  padding-top: 0.7142857143rem !important;
}
.m-card-slider.blog-slider .card-text-container .intro-copy, .m-card-slider.events-slider .card-text-container .intro-copy {
  min-height: 5.7142857143rem;
}
@supports (-webkit-line-clamp: 4) {
  .m-card-slider.blog-slider .card-text-container .intro-copy, .m-card-slider.events-slider .card-text-container .intro-copy {
    -webkit-line-clamp: 4;
  }
}
.m-card-slider .card-text-container h2 {
  margin-bottom: 0.8571428571rem;
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.0071428571rem;
  line-height: 2.3571428571rem;
}
.m-card-slider .card-text-container .intro-copy {
  min-height: 3.1428571429rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@supports (-webkit-line-clamp: 3) {
  .m-card-slider .card-text-container .intro-copy {
    display: -webkit-box;
    white-space: initial;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.m-card-slider .no-carousel {
  display: flex;
  flex-flow: row wrap;
  gap: 1.1428571429rem;
  margin-right: 1.0714285714rem;
  overflow: visible;
}
.m-card-slider .no-carousel .card-slider-item {
  width: 100%;
  margin-right: 0;
  flex: 1 1 315px;
}
@media (max-width: 899px) {
  .m-card-slider .link-col {
    margin-top: 1.7142857143rem;
  }
  .m-card-slider .link-col p {
    display: none;
  }
  .m-card-slider .link-col.show-on-mobile p {
    display: block;
  }
  .m-card-slider .intro-copy {
    display: none;
  }
}
@media (min-width: 768px) {
  .m-card-slider .container {
    margin-left: 1.0714285714rem;
    overflow: hidden;
  }
  .m-card-slider .show-on-mobile {
    flex: auto;
    padding-top: 0;
  }
  .m-card-slider .no-carousel {
    gap: 2.1428571429rem;
  }
  .m-card-slider .header-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    margin-right: 1.0714285714rem;
  }
  .m-card-slider .header-row .link-col {
    display: flex;
    align-items: center;
    column-gap: 1.4285714286rem;
    justify-content: space-between;
    flex: 100%;
    justify-content: space-between;
    margin-left: 1.4285714286rem;
  }
  .m-card-slider .header-row .link-col p {
    margin: 0;
    max-width: 30.7857142857rem;
  }
  .m-card-slider.blog-slider .carousel, .m-card-slider.events-slider .carousel {
    margin-left: -0.8571428571rem;
  }
  .m-card-slider.blog-slider .card-slider-item, .m-card-slider.events-slider .card-slider-item {
    margin-right: 1.5714285714rem;
  }
  .m-card-slider .carousel-buttons {
    margin-left: 0;
    padding: 0 1.0714285714rem 0 0;
    width: 100%;
  }
  .m-card-slider .card-slider-item:focus-within, .m-card-slider .card-slider-item:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 34px rgba(35, 31, 32, 0.33);
    transform: scale3d(1.05, 1.05, 1.05);
    z-index: 21;
  }
  .m-card-slider .card-slider-item:focus-within .card-text-container, .m-card-slider .card-slider-item:hover .card-text-container {
    transform: scale3d(0.98, 0.98, 0.98);
  }
  .m-card-slider.has-dark-bg .card-slider-item:focus-within, .m-card-slider.has-dark-bg .card-slider-item:hover {
    background: rgba(35, 31, 32, 0.3);
    box-shadow: 0 2px 34px rgba(255, 255, 255, 0.33);
  }
}
@media (min-width: 1024px) {
  .m-card-slider {
    overflow: hidden;
  }
  .m-card-slider .container {
    margin-left: 2.8571428571rem;
    max-width: 97.1428571429rem;
    overflow: visible;
  }
  .m-card-slider .container.is-aligned-right {
    display: block;
  }
  .m-card-slider .header-row {
    margin-right: 2.8571428571rem;
  }
  .m-card-slider .header-row .link-col {
    margin: 0 0 0.6428571429rem 2.8571428571rem;
  }
  .m-card-slider .header-row.has-large-title .link-col {
    margin-left: 3.7857142857rem;
  }
  .m-card-slider .no-carousel {
    margin-right: 2.8571428571rem;
  }
  .m-card-slider .no-carousel .card-slider-item {
    max-width: 50%;
  }
  .m-card-slider .carousel {
    opacity: 1;
    padding-left: 3.4285714286rem;
    margin-left: -3.4285714286rem;
    width: calc(100% + 48px);
  }
  .m-card-slider .carousel.js-card-scrollable-mobile {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  .m-card-slider .carousel.js-card-scrollable-mobile::after {
    content: "";
  }
  .m-card-slider.mobile-carousel .carousel-buttons {
    display: none;
  }
  .m-card-slider .carousel-slider-item {
    transition: left 0.3s;
  }
  .m-card-slider .carousel-buttons {
    margin-left: -1.7857142857rem;
    padding: 0 1.0714285714rem 0 0;
    width: calc(100% + 25px);
  }
  .m-card-slider.blog-slider .carousel, .m-card-slider.events-slider .carousel {
    padding-left: 2.6428571429rem;
    margin-left: -3.4285714286rem;
  }
}
@media (min-width: 1400px) {
  .m-card-slider .container {
    margin: 0 auto;
  }
  .m-card-slider .container.is-aligned-right .header-row,
  .m-card-slider .container.is-aligned-right .header-row + p {
    margin-right: auto;
    margin-left: auto;
    max-width: 1360px;
  }
  .m-card-slider .container.is-aligned-right .card-slider-wrapper {
    margin-right: 0;
    width: calc(100vw - (100vw - 1360px) / 2 + 48px);
  }
  .m-card-slider .container .carousel-buttons {
    left: -2.5rem;
    margin: 0;
    padding: 0;
    width: calc(100vw - (100vw - 1360px) / 2 + 20px);
  }
}
.m-card-slider .no-events {
  font-size: 2.2857142857rem;
  margin-top: 11.4285714286rem;
}

.locations-select-wrap {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex: none;
  order: 3;
  margin-top: 0.9285714286rem;
  height: 3.2142857143rem;
  width: 100%;
  border-bottom: 0.0714285714rem solid #231f20;
}
.locations-select-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0.0714285714rem;
  width: 100%;
  background-color: #231f20;
  transform-origin: top;
  transition: transform 250ms ease;
}
.locations-select-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0.9285714286rem;
  background-color: transparent;
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow.svg");
  background-position: right 53%;
  background-repeat: no-repeat;
  background-size: 10 5;
  transition: transform 200ms ease;
}
.locations-select-wrap:active::before, .locations-select-wrap:focus::before, .locations-select-wrap:hover::before {
  transform: scaleY(3);
}
.locations-select-wrap:focus {
  outline: 0;
}
.locations-select-wrap[data-toggle=open]::after {
  transform: rotate(180deg);
}
.locations-select-wrap label {
  padding-right: 3.0714285714rem;
  font-size: 1.1428571429rem;
}
.posts-page .locations-select-wrap label {
  padding-right: 0;
}
.locations-select-wrap > label {
  pointer-events: none;
}
.locations-select-wrap .checkbox-group {
  position: absolute;
  padding: 0;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 0.0714285714rem solid #231f20;
  max-height: 0;
  opacity: 0;
  z-index: 10;
  overflow: hidden;
  overflow-y: scroll;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.locations-select-wrap .checkbox-group[aria-hidden=false] {
  opacity: 1;
  max-height: 21.7142857143rem;
  padding: 0.6428571429rem 0.7142857143rem 1.4285714286rem;
  transition: max-height 0.5s ease;
}
.locations-select-wrap .checkbox-group label {
  cursor: pointer;
  display: block;
  font-size: 1.1428571429rem;
}
.locations-select-wrap .checkbox-group label:not(:last-child) {
  margin-bottom: 0.7142857143rem;
}
.locations-select-wrap .checkbox-group label:active, .locations-select-wrap .checkbox-group label:focus, .locations-select-wrap .checkbox-group label:hover, .locations-select-wrap .checkbox-group label:focus-within {
  font-weight: bold;
}
.locations-select-wrap .checkbox-group label:active input, .locations-select-wrap .checkbox-group label:focus input, .locations-select-wrap .checkbox-group label:hover input, .locations-select-wrap .checkbox-group label:focus-within input {
  border-color: #231f20;
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.47);
}
.locations-select-wrap .checkbox-group input {
  cursor: pointer;
  margin-right: 1.5714285714rem;
  transition: box-shadow 250ms ease;
}
.has-dark-bg .locations-select-wrap {
  border-color: #ffffff;
  color: #ffffff;
}
.has-dark-bg .locations-select-wrap::before {
  background-color: #ffffff;
}
.has-dark-bg .locations-select-wrap::after {
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow-white.svg");
}
.has-dark-bg .locations-select-wrap .checkbox-group {
  background-color: rgba(35, 31, 32, 0.9);
  border-color: #ffffff;
}
@media (min-width: 768px) {
  .locations-select-wrap label {
    font-size: 1.1428571429rem;
  }
}

@media (min-width: 1024px) {
  [lang=ja-JP] .m-card-slider .module-heading {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.m-form-card-slider .grid-row {
  grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
  grid-column-gap: 0 !important;
  margin-left: 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .m-form-card-slider .grid-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
.m-form-card-slider .grid-row .header-row {
  margin-bottom: 2.8571428571rem;
}
.m-form-card-slider .grid-row .header-row .intro-text {
  margin-top: 1.1428571429rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 29.8571428571rem;
  font-size: 1.1428571429rem;
  letter-spacing: -0.0114285714rem;
  line-height: 2.1428571429rem;
}
.m-form-card-slider .grid-row .col-slider {
  position: relative;
  text-align: center;
}
.m-form-card-slider .grid-row .col-slider .card-slider-wrapper {
  padding-right: 1.1428571429rem;
  padding-left: 1.1428571429rem;
}
@media (min-width: 1360px) {
  .m-form-card-slider .grid-row .col-slider .card-slider-wrapper {
    padding: 0;
  }
}
.m-form-card-slider .grid-row .col-slider .carousel {
  height: auto;
  width: 100%;
  opacity: 1;
  overflow: visible;
  transition: opacity 0.4s;
}
.m-form-card-slider .grid-row .col-slider .carousel.flickity-enabled {
  opacity: 1;
}
.m-form-card-slider .grid-row .col-slider .carousel .flickity-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: height 0.2s;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item {
  margin-right: 1.1428571429rem;
  height: auto;
  width: 22.5714285714rem;
  max-width: 100vw;
  padding: 0;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content {
  height: 100%;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .card-eyebrow {
  margin-bottom: 0.4285714286rem;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .event-location {
  display: block;
  font-weight: bold;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .button, .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .tribe-common-c-btn {
  margin-top: 1.2857142857rem;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .button.text-link, .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .single-event-page .event-tickets .text-link.tribe-common-c-btn, .single-event-page .event-tickets .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .text-link.tribe-common-c-btn {
  margin-top: 0.4285714286rem;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content p:last-of-type {
  margin-bottom: 0;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container {
  height: 22.9285714286rem;
  overflow: hidden;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: scale3d(1, 1, 1);
  transition: transform 1s;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container figcaption {
  align-items: center;
  padding-bottom: 2.1428571429rem;
  text-transform: none;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container figcaption img {
  max-height: 3rem;
  max-width: 70%;
  object-fit: contain;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container figcaption .text-version-of-logo {
  max-width: 14.2857142857rem;
  font-size: 2rem;
  letter-spacing: -0.0357142857rem;
  line-height: 1;
  text-align: center;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container figcaption .tagline {
  margin-bottom: -0.9285714286rem;
  font-size: 0.8571428571rem;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-text-container {
  padding: 1.4285714286rem 0 0;
  height: auto;
}
@media (min-width: 768px) {
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item {
    margin-right: 2.1428571429rem;
  }
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item.is-wide {
    width: 39.1428571429rem;
  }
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item.food-card {
    width: 33.3333333333%;
  }
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item.food-card .card-image-container figcaption img {
    max-height: 3rem;
  }
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container {
    height: 30.7857142857rem;
  }
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container figcaption .text-version-of-logo {
    font-size: 2.3571428571rem;
    letter-spacing: -0.0571428571rem;
  }
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-image-container figcaption img {
    max-height: 5.7142857143rem;
  }
  .m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-text-container {
    padding: 1.2857142857rem 0.8571428571rem 0.8571428571rem;
  }
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content {
  height: 100%;
  text-align: left;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .card-image-container {
  margin: 0;
  height: 23.4285714286rem;
  width: 100%;
  overflow: hidden;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .card-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.m-form-card-slider .grid-row .col-slider .carousel .card-slider-item .card-content .card-text-container h2 {
  margin-bottom: 0.8571428571rem;
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.0071428571rem;
  line-height: 2.3571428571rem;
}
.m-form-card-slider .grid-row .col-slider .carousel-buttons {
  justify-content: space-between;
  position: absolute;
  top: 50%;
  margin: 0;
  padding-right: 0.5714285714rem;
  padding-left: 0.5714285714rem;
  width: 100%;
}
@media (min-width: 1360px) {
  .m-form-card-slider .grid-row .col-slider .carousel-buttons {
    padding-right: 2.2857142857rem;
    padding-left: 2.2857142857rem;
  }
}
.m-form-card-slider .grid-row .col-slider .flickity-page-dots {
  bottom: -2.2857142857rem;
}
.m-form-card-slider.blog-slider .card-slider-item, .m-form-card-slider.events-slider .card-slider-item {
  margin-right: 1.5714285714rem;
}
.m-form-card-slider .carousel {
  opacity: 1;
  overflow: visible;
}
.m-form-card-slider .carousel.js-carousel-mobile {
  display: flex;
  width: 100%;
}
.m-form-card-slider .carousel.js-carousel-mobile::after {
  content: "";
}
.m-form-card-slider.mobile-carousel .carousel-buttons {
  display: none;
}
.m-form-card-slider .carousel-slider-item {
  transition: left 0.3s;
}
.m-form-card-slider .carousel-buttons {
  margin-left: -1.7857142857rem;
  padding: 0 1.0714285714rem 0 0;
  width: calc(100% + 25px);
}
@media (min-width: 1440px) {
  .m-form-card-slider .container .card-slider-wrapper {
    margin-right: 0;
    margin-left: auto;
    width: calc(100vw - (100vw - 1360px) / 2);
  }
}

.m-form p {
  font-size: 1.1428571429rem;
}
.m-form .col-form {
  margin-top: 2.4285714286rem;
}
.m-form .form-heading {
  margin-bottom: 1.4285714286rem;
}
@media (min-width: 768px) {
  .m-form .form-heading {
    margin-bottom: 2.1428571429rem;
  }
}
.m-form .container {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 20px;
}
.m-form form {
  padding: 1.7857142857rem;
  border: 0.0714285714rem solid #231f20;
  border-radius: 0.1428571429rem;
}
@media (min-width: 1024px) {
  .m-form .container {
    grid-template-columns: 1fr [col1-start] repeat(4, 1fr) [col1-end] 1fr [col2-start] repeat(6, 1fr) [col2-end];
  }
  .m-form .gform_wrapper {
    margin: 0 5.4285714286rem 0 5.4285714286rem;
  }
  .m-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.1428571429rem;
  }
  .m-form form .input-wrap {
    flex: 0 0 47.5%;
  }
  .m-form form .input-wrap.submit {
    flex: 0 0 100%;
  }
  [lang=ja-JP] .m-form .h2 {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
.m-form.has-dark-bg ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.m-form.has-dark-bg :-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.m-form.has-dark-bg ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.m-form.has-dark-bg :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.m-form.has-dark-bg form {
  border-color: #ffffff;
}
.m-form.has-dark-bg .gform_wrapper::before, .m-form.has-dark-bg .gform_wrapper::after {
  border-color: #ffffff;
}

@media (min-width: 768px) {
  .m-image-carousel.gallery-slider {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.m-image-carousel.gallery-slider .has-overlay::before {
  display: none;
}
.m-image-carousel.gallery-slider .is-draggable .flickity-viewport {
  cursor: -webkit-grab;
  cursor: grab;
}
.m-image-carousel.gallery-slider .is-draggable .flickity-viewport:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.m-image-carousel.gallery-slider .flickity-page-dots {
  display: none;
}
.m-image-carousel.gallery-slider .caption-container::before, .m-image-carousel.gallery-slider .caption-container::after {
  content: "";
  display: block;
  width: 100%;
}
.m-image-carousel.gallery-slider .caption-container::before {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 4px);
  background: linear-gradient(90deg, white 2%, rgba(255, 255, 255, 0.83) 5%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0.83) 95%, white 98%);
  z-index: 9;
}
.m-image-carousel.gallery-slider .caption-container::after {
  content: "";
  display: block;
  height: 0.2857142857rem;
  border: 0.0714285714rem solid #231f20;
  border-radius: 0.2857142857rem;
}
.m-image-carousel.gallery-slider .caption-container .carousel::before {
  content: "";
  display: block;
  padding-top: 6.8571428571rem !important;
  width: 100%;
}
.m-image-carousel.gallery-slider .caption-container .carousel .flickity-viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100% !important;
  width: 100%;
}
.m-image-carousel.gallery-slider .caption-container .caption-item {
  padding: 2.8571428571rem 2.2857142857rem;
  min-height: 3.1428571429rem;
  width: 66%;
  background: transparent;
  border: none;
  opacity: 0.5;
  text-align: center;
  transition: background-color 250ms ease, opacity 250ms ease, color 250ms ease;
}
.m-image-carousel.gallery-slider .caption-container .caption-item.is-selected {
  opacity: 1;
}
@media (min-width: 768px) {
  .m-image-carousel.gallery-slider .caption-container .caption-item {
    padding-right: 4rem;
    padding-left: 4rem;
    min-width: 33%;
    width: max-content;
    max-width: 75%;
  }
}
@media (min-width: 1024px) {
  .m-image-carousel.gallery-slider .caption-container .caption-item {
    min-width: 25%;
    max-width: 66%;
  }
}
.m-image-carousel.gallery-slider.has-light-bg .caption-container::before {
  background: linear-gradient(90deg, #ededed 2%, rgba(237, 237, 237, 0.83) 5%, rgba(237, 237, 237, 0) 15%, rgba(237, 237, 237, 0) 50%, rgba(237, 237, 237, 0) 85%, rgba(237, 237, 237, 0.83) 95%, #ededed 98%);
}
.m-image-carousel.gallery-slider.has-dark-bg .caption-container::before {
  background: linear-gradient(90deg, #2f2a2b 2%, rgba(47, 42, 43, 0.83) 5%, rgba(47, 42, 43, 0) 15%, rgba(47, 42, 43, 0) 50%, rgba(47, 42, 43, 0) 85%, rgba(47, 42, 43, 0.83) 95%, #2f2a2b 98%);
}
.m-image-carousel.gallery-slider.has-dark-bg .caption-container::after {
  border-color: #ffffff;
}
.m-image-carousel .carousel::before {
  content: "";
  display: block;
  height: 20rem;
  width: 100%;
}
.m-image-carousel .carousel .flickity-viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100% !important;
  width: 100%;
}
.m-image-carousel .image-slide {
  min-height: unset;
  height: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .m-image-carousel .image-slide img {
    height: 100%;
  }
}
.m-image-carousel .carousel-single .image-slide img {
  position: relative;
}

.m-instagram-feed {
  padding-bottom: 0 !important;
  text-align: center;
}
.m-instagram-feed .heading-eyebrow {
  margin-bottom: 1.2142857143rem;
}
.m-instagram-feed .instagram-feed-row {
  display: flex;
  justify-content: center;
  height: 13.4285714286rem;
  overflow: hidden;
}
.m-instagram-feed .instagram-feed-row .flickity-viewport {
  position: unset;
}
.m-instagram-feed .instagram-feed-row .col-image {
  position: relative;
  height: 13.4285714286rem;
  width: 13.4285714286rem;
}
@media (min-width: 768px) {
  .m-instagram-feed .instagram-feed-row .col-image {
    padding-top: 25%;
    width: 25%;
  }
  .m-instagram-feed .instagram-feed-row .col-image:nth-child(n+5) {
    display: none;
  }
}
@media (min-width: 1024px) {
  .m-instagram-feed .instagram-feed-row .col-image {
    padding-top: 20%;
    width: 20%;
  }
  .m-instagram-feed .instagram-feed-row .col-image:nth-child(5) {
    display: block;
  }
}
@media (min-width: 1800px) {
  .m-instagram-feed .instagram-feed-row .col-image {
    padding-top: 0;
    height: 20.5714285714rem;
    width: 20.5714285714rem;
    flex-shrink: 0;
  }
  .m-instagram-feed .instagram-feed-row .col-image:nth-child(n+5) {
    display: block;
  }
}
.m-instagram-feed .instagram-feed-row .col-image::before {
  display: none; /* Default override - Allow for link to be clickable */
}
.m-instagram-feed .instagram-feed-row .col-image .instagram-feed-image,
.m-instagram-feed .instagram-feed-row .col-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.m-instagram-feed .instagram-feed-row .col-image img {
  object-fit: cover;
  opacity: 1;
  transition: opacity 250ms ease;
}
.m-instagram-feed .instagram-feed-row .col-image .instagram-feed-image {
  background: #231f20;
}
.m-instagram-feed .instagram-feed-row .col-image .instagram-feed-image:active img, .m-instagram-feed .instagram-feed-row .col-image .instagram-feed-image:focus img, .m-instagram-feed .instagram-feed-row .col-image .instagram-feed-image:hover img {
  opacity: 0.83;
}
.m-instagram-feed .instagram-feed-row.carousel:after {
  content: "flickity";
  display: none;
}
@media (min-width: 768px) {
  .m-instagram-feed .instagram-feed-row {
    height: auto;
  }
  .m-instagram-feed .instagram-feed-row.carousel:after {
    content: "";
  }
}

.section-container.has-dark-bg + .m-instagram-feed.has-dark-bg,
.section-container.has-light-bg + .m-instagram-feed.has-light-bg {
  padding-top: 0.7142857143rem;
}

.link-list .link-list-heading {
  margin-bottom: 2.8571428571rem;
}
.link-list .link-grid {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  column-gap: 2.2857142857rem;
  row-gap: 2.8571428571rem;
}
.link-list .link-grid .link-container {
  grid-column: span 6;
}
@media (max-width: 767px) {
  .link-list .link-grid .link-container {
    grid-column: span 12;
  }
}
.link-list .link-grid a {
  font-size: 1.7142857143rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #231f20;
  padding: 0.5714285714rem 0;
}
@media (max-width: 767px) {
  .link-list .link-grid a {
    font-size: 1.1428571429rem;
  }
}
.link-list .link-grid a svg {
  width: 1.7142857143rem;
  height: 1.7142857143rem;
  margin-left: 1.1428571429rem;
  transition: all 0.24s;
}
.link-list .link-grid a:hover svg {
  transform: translateX(8px);
}
@media (min-width: 1024px) {
  [lang=ja-JP] .link-list .h3 {
    font-size: 2.7rem;
  }
}

#map {
  min-height: 35.7142857143rem;
  height: 50vh;
}
@media (min-width: 1024px) {
  #map {
    height: 44.2142857143rem;
  }
}

.m-menu-block {
  background-color: #ffffff;
  background-image: url("/wp-content/themes/ace-hotel/assets/images/grey-jean.png");
}
.m-menu-block.section-container {
  padding: 1.7142857143rem 0 0;
}
.m-menu-block .booking-link-wrapper {
  justify-content: center;
  width: 100%;
  padding-bottom: 2.1428571429rem;
}
@media (min-width: 1024px) {
  .m-menu-block .booking-link-wrapper {
    padding-bottom: 5.3571428571rem;
  }
}
.m-menu-block .grid-row {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .m-menu-block .grid-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
.m-menu-block .grid-row .grid-col {
  width: 100%;
}
.m-menu-block .grid-row.text-row {
  padding-bottom: 60px;
  text-align: center;
}
.m-menu-block .grid-row.text-row .heading-eyebrow {
  font-weight: 300;
  margin-bottom: 1.4285714286rem;
}
.m-menu-block .grid-row.text-row .text-container .heading-eyebrow {
  margin-bottom: 0.3571428571rem;
}
@media (min-width: 768px) {
  .m-menu-block .header-row {
    display: grid;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    grid-template-columns: [colcentered-start] repeat(12, 1fr) [colcentered-end];
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .m-menu-block .header-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .m-menu-block .header-row .header-col {
    display: inline-flex;
    grid-column: colcentered;
  }
  .m-menu-block .header-row .header-col .menu-link + .right-side {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .m-menu-block .grid-row {
    grid-template-columns: [colcentered-start] repeat(12, 1fr) [colcentered-end];
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .m-menu-block .grid-row .grid-col {
    grid-column: colcentered;
  }
}
@media (min-width: 768px) {
  .m-menu-block .grid-row .grid-col:nth-child(n+3) {
    margin-top: 4.8571428571rem;
  }
}
@media (min-width: 1024px) {
  .m-menu-block .grid-row {
    grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
  }
  .m-menu-block .grid-row .grid-col {
    max-width: 66.8928571429rem;
    margin: 0 auto;
  }
  .m-menu-block .grid-row .grid-col .menu-block-row {
    padding: 0 0 5.7142857143rem;
  }
}
.m-menu-block .menu-block-links {
  margin-bottom: 1.5714285714rem;
}
.m-menu-block .menu-block-links .header-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2.8571428571rem;
}
.m-menu-block .menu-block-links .menu-jump-links {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1.4285714286rem;
  transition: font 250ms ease;
}
.m-menu-block .menu-block-links .menu-jump-links::before {
  content: attr(data-text);
  content: attr(data-text)/"";
  height: 0;
  visibility: hidden;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  font-weight: 700;
}
@media speech {
  .m-menu-block .menu-block-links .menu-jump-links::before {
    display: none;
  }
}
.m-menu-block .menu-block-links .menu-jump-links:hover, .m-menu-block .menu-block-links .menu-jump-links.active {
  border-bottom-color: transparent;
  font-weight: 700;
}
.m-menu-block .menu-block-links .menu-jump-links:focus {
  outline: none;
}
.m-menu-block .menu-block-row {
  display: none;
  transition: opacity 400ms ease;
}
.m-menu-block .menu-block-row:not(.active) {
  opacity: 0;
}
.m-menu-block .menu-block-row.active {
  display: block;
}
.m-menu-block .menu-header {
  margin-bottom: 3.4285714286rem;
}
.m-menu-block .menu-header h1,
.m-menu-block .menu-header h2 {
  color: #231f20;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.m-menu-block .category-col .category-heading {
  margin-bottom: 2.2857142857rem;
}
.m-menu-block .h4 {
  font-size: 2.2857142857rem;
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
}
.m-menu-block .category-menu-row {
  padding-left: 0;
}
@media (min-width: 768px) {
  .m-menu-block .category-menu-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .m-menu-block .category-menu-row .menu-item {
    flex: 0 0 46.2%;
  }
}
.m-menu-block .menu-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.8214285714rem;
  padding-bottom: 0.7142857143rem;
  border-bottom: 0.0714285714rem solid #6f6f6f;
}
.m-menu-block .menu-item > * {
  font-size: 1.1428571429rem;
}
.m-menu-block .menu-item .item-title {
  flex: 0 0 80%;
  margin-bottom: 0.4285714286rem;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.7142857143rem;
}
.m-menu-block .menu-item .item-price {
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
}
.m-menu-block .menu-item .item-description {
  flex: 0 0 100%;
  order: 2;
  letter-spacing: -0.0114285714rem;
  line-height: 1.7142857143rem;
}

.m-post .container,
.blog-page-grid .container {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .m-post .container,
  .blog-page-grid .container {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .m-post .container .grid-col,
  .blog-page-grid .container .grid-col {
    grid-column: colcentered;
  }
}
.m-post .post-grid .grid-sizer,
.blog-page-grid .post-grid .grid-sizer {
  width: 0;
}
.m-post .post-grid .post-item,
.blog-page-grid .post-grid .post-item {
  width: 100%;
  max-width: none;
}
@media (min-width: 640px) {
  .m-post .post-grid .grid-sizer,
  .m-post .post-grid .post-item,
  .blog-page-grid .post-grid .grid-sizer,
  .blog-page-grid .post-grid .post-item {
    width: 48%;
  }
  .m-post .post-grid .gutter-sizer,
  .blog-page-grid .post-grid .gutter-sizer {
    width: 4%;
  }
}
@media (min-width: 768px) {
  .m-post .container,
  .blog-page-grid .container {
    grid-template-columns: [colcentered-start] repeat(12, 1fr) [colcentered-end];
  }
}
@media (min-width: 1024px) {
  .m-post .post-grid,
  .blog-page-grid .post-grid {
    margin-bottom: -3rem;
  }
  .m-post .post-grid .grid-sizer,
  .m-post .post-grid .post-item,
  .blog-page-grid .post-grid .grid-sizer,
  .blog-page-grid .post-grid .post-item {
    width: 32%;
  }
  .m-post .post-grid .post-item,
  .blog-page-grid .post-grid .post-item {
    margin-bottom: 3rem;
  }
  .m-post .post-grid .gutter-sizer,
  .blog-page-grid .post-grid .gutter-sizer {
    width: 2%;
  }
}

.m-post .header-row h2 {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  [lang=ja-JP] .m-post .header-row h2 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
@media (max-width: 1023px) {
  [lang=ja-JP] .m-post .header-row h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  [lang=ja-JP] .m-post .header-row h2 {
    padding-top: 2rem;
  }
}
.m-post .header-row p {
  max-width: 47.4285714286rem;
  margin: 2.2142857143rem auto 0;
  font-size: 1.1428571429rem;
  line-height: 1.7142857143rem;
}
.m-post .filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.m-post .filter-container > .filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-basis: 100%;
}
@media (max-width: 767px) {
  .m-post .filter-container > .filters {
    display: none;
  }
}
.m-post .filter-container > .filters p {
  width: 100%;
  flex: 100%;
  margin-bottom: 0.5714285714rem;
  text-align: center;
}
.m-post .filter-container > .filters ul {
  width: 100%;
}
.m-post .filter-container > .filters ul li {
  margin: 0 0.7142857143rem 0.7142857143rem 0.7142857143rem;
}
.m-post .filter-container > .filters .filter {
  justify-content: center;
  row-gap: 1.0714285714rem;
}
.m-post .post-item {
  width: 100%;
  margin-bottom: 1.8571428571rem;
  margin-right: 0 !important;
  border: 0.0714285714rem solid #cacaca;
  background: #f6f6f6;
  margin-right: 1.1428571429rem;
  height: auto;
  width: 22.5714285714rem;
  max-width: 100vw;
}
.has-dark-bg.m-post .post-item p,
.has-dark-bg.m-post .post-item a,
.has-dark-bg.m-post .post-item h3 {
  color: #231f20;
  border-color: #231f20;
}
.has-dark-bg.m-post .post-item a::after {
  background-color: #231f20;
}

.m-post .post-item .card-content {
  height: 100%;
}
.m-post .post-item .card-content .card-eyebrow {
  margin-bottom: 0.4285714286rem;
}
.m-post .post-item .card-content .event-location {
  display: block;
  font-weight: bold;
}
.m-post .post-item .card-content .button, .m-post .post-item .card-content .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .m-post .post-item .card-content .tribe-common-c-btn {
  margin-top: 1.2857142857rem;
}
.m-post .post-item .card-content .button.text-link, .m-post .post-item .card-content .single-event-page .event-tickets .text-link.tribe-common-c-btn, .single-event-page .event-tickets .m-post .post-item .card-content .text-link.tribe-common-c-btn {
  margin-top: 0.4285714286rem;
}
.m-post .post-item .card-content p:last-of-type {
  margin-bottom: 0;
}
.m-post .post-item .card-image-container {
  height: 22.9285714286rem;
  overflow: hidden;
}
.m-post .post-item .card-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: scale3d(1, 1, 1);
  transition: transform 1s;
}
.m-post .post-item .card-image-container figcaption {
  align-items: center;
  padding-bottom: 2.1428571429rem;
  text-transform: none;
}
.m-post .post-item .card-image-container figcaption img {
  max-height: 3rem;
  max-width: 70%;
  object-fit: contain;
}
.m-post .post-item .card-image-container figcaption .text-version-of-logo {
  max-width: 14.2857142857rem;
  font-size: 2rem;
  letter-spacing: -0.0357142857rem;
  line-height: 1;
  text-align: center;
}
.m-post .post-item .card-image-container figcaption .tagline {
  margin-bottom: -0.9285714286rem;
  font-size: 0.8571428571rem;
}
.m-post .post-item .card-text-container {
  padding: 1.4285714286rem 0 0;
  height: auto;
}
@media (min-width: 768px) {
  .m-post .post-item {
    margin-right: 2.1428571429rem;
  }
  .m-post .post-item.is-wide {
    width: 39.1428571429rem;
  }
  .m-post .post-item.food-card {
    width: 33.3333333333%;
  }
  .m-post .post-item.food-card .card-image-container figcaption img {
    max-height: 3rem;
  }
  .m-post .post-item .card-image-container {
    height: 30.7857142857rem;
  }
  .m-post .post-item .card-image-container figcaption .text-version-of-logo {
    font-size: 2.3571428571rem;
    letter-spacing: -0.0571428571rem;
  }
  .m-post .post-item .card-image-container figcaption img {
    max-height: 5.7142857143rem;
  }
  .m-post .post-item .card-text-container {
    padding: 1.2857142857rem 0.8571428571rem 0.8571428571rem;
  }
}
.m-post .post-item .card-image-container {
  height: auto;
  position: relative;
}
.m-post .post-item .card-image-container::before {
  content: "";
  display: block;
  padding-top: 65.9722222222%;
  width: 100%;
}
.m-post .post-item .card-image-container > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.m-post .post-item .card-image-container figcaption {
  align-items: flex-start;
  padding-bottom: 0.7142857143rem;
  font-weight: bold;
}
.m-post .post-item .card-text-container {
  position: relative;
  padding: 2rem 1.4642857143rem 2.1428571429rem 1.3928571429rem;
}
.m-post .post-item .card-text-container h3 {
  font-size: 2.2857142857rem;
  line-height: 1.2;
}
[lang=ja-JP] .m-post .post-item .card-text-container h3 {
  font-size: 1.7857142857rem;
}
.m-post .post-item .card-text-container .bold {
  font-weight: bold;
}
.m-post .post-item .card-text-container p:last-of-type + a {
  display: inline-flex;
  margin-top: 0.8571428571rem;
}
.m-post .post-item .card-text-container a {
  white-space: wrap;
}
.m-post .filter-count {
  padding-top: 2.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .m-post .filter-count {
    display: none;
  }
}
.m-post.offers-grid {
  padding-top: 0;
}
[lang=ja-JP] .m-post.offers-grid .h2 {
  font-size: 2.8rem;
  line-height: 1.5;
}
.m-post.offers-grid .dark-bg-container {
  position: relative;
  padding: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .m-post.offers-grid .dark-bg-container {
    padding: 2.1428571429rem 0;
  }
}
.m-post.offers-grid .dark-bg-container:not(.text-image-block) {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .m-post.offers-grid .dark-bg-container:not(.text-image-block) {
    padding-bottom: 3.2142857143rem;
  }
}
.m-post.offers-grid .text-image-block {
  padding-bottom: 2.5rem;
  z-index: 0;
}
@media (min-width: 768px) {
  .m-post.offers-grid .text-image-block {
    padding-bottom: 0.7857142857rem;
  }
}
.m-post.offers-grid .text-image-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: #231f20 url("/wp-content/themes/ace-hotel/assets/images/grey-jean-with-charcoal.jpeg") repeat;
}
.m-post.offers-grid .text-image-block .container {
  background: #f4f4f4;
}
@media (min-width: 768px) {
  .m-post.offers-grid .text-image-block .grid-row {
    flex-wrap: nowrap;
  }
}
.m-post.offers-grid .text-image-block_image {
  position: relative;
}
.m-post.offers-grid .text-image-block_image::before {
  content: "";
  display: block;
  padding-top: 60%;
  width: 100%;
}
.m-post.offers-grid .text-image-block_image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .m-post.offers-grid .text-image-block_image {
    position: relative;
    max-width: none;
  }
  .m-post.offers-grid .text-image-block_image::before {
    content: "";
    display: block;
    padding-top: 59.9397590361%;
    width: 100%;
  }
  .m-post.offers-grid .text-image-block_image > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.m-post.offers-grid .text-image-block_text {
  padding: 2.2142857143rem 3.5rem 3.5714285714rem;
}
.m-post.offers-grid .text-image-block_text .heading-eyebrow {
  font-size: 1.1428571429rem;
  font-weight: 700;
  text-transform: none;
}
.m-post.offers-grid .text-image-block_text .button, .m-post.offers-grid .text-image-block_text .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .m-post.offers-grid .text-image-block_text .tribe-common-c-btn {
  margin: 1.8571428571rem 0 1.5714285714rem;
  margin-right: 1.1428571429rem;
}
.m-post.offers-grid .text-image-block_text .button:last-of-type, .m-post.offers-grid .text-image-block_text .single-event-page .event-tickets .tribe-common-c-btn:last-of-type, .single-event-page .event-tickets .m-post.offers-grid .text-image-block_text .tribe-common-c-btn:last-of-type {
  margin-right: 0;
}
@media (max-width: 767px) {
  .m-post.offers-grid .text-image-block_text .button, .m-post.offers-grid .text-image-block_text .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .m-post.offers-grid .text-image-block_text .tribe-common-c-btn {
    margin-bottom: 32px;
  }
}
.m-post.offers-grid .text-image-block-heading, .m-post.offers-grid .text-image-block-content {
  max-width: none;
}
.m-post.offers-grid .text-image-block-content {
  margin-bottom: 0 !important;
}
.m-post.offers-grid .grid-col.filter-container {
  margin-top: 0;
}
.m-post.offers-grid .mobile-filters-wrap {
  background-color: #231f20;
  outline-color: #ffffff;
}
.m-post.offers-grid .mobile-filters-wrap .filter-container {
  flex-direction: column;
}
.m-post.offers-grid .mobile-filters-wrap .filters {
  background-color: #231f20;
  outline-color: #ffffff;
}
.m-post.offers-grid .mobile-filters-wrap .filters::before {
  background-color: #231f20;
}
.m-post.offers-grid .mobile-filters-wrap .filters .filter {
  padding: 0.5rem 0 0.8571428571rem;
}
.m-post.offers-grid .mobile-filters-wrap .post-filter-buttons {
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.m-post.offers-grid .mobile-filters-wrap .post-filter-buttons li {
  width: 100%;
  padding: 0;
}
.m-post.offers-grid .mobile-filters-wrap label,
.m-post.offers-grid .mobile-filters-wrap button {
  color: #ffffff;
  background-color: #231f20;
}
.m-post.offers-grid .mobile-filters-wrap label {
  padding-right: 0;
  font-size: 1rem;
  text-transform: uppercase;
}
.m-post.offers-grid .mobile-filters-wrap label::after {
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow-white.svg");
}
.m-post.offers-grid .mobile-filters-wrap button {
  width: 100%;
  text-transform: none;
  border: 0;
}
.m-post.offers-grid .mobile-filters-wrap button:hover, .m-post.offers-grid .mobile-filters-wrap button:focus {
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.25);
}
.m-post.offers-grid .post-item {
  border: 0;
}
.m-post.offers-grid .post-item .card-text-container {
  padding-top: 1.2142857143rem;
}
.m-post.offers-grid .post-item .card-text-container .button, .m-post.offers-grid .post-item .card-text-container .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .m-post.offers-grid .post-item .card-text-container .tribe-common-c-btn {
  margin-right: 1.1428571429rem;
  margin-top: 2.2857142857rem;
}
.m-post.offers-grid .post-item .card-text-container .button:last-of-type, .m-post.offers-grid .post-item .card-text-container .single-event-page .event-tickets .tribe-common-c-btn:last-of-type, .single-event-page .event-tickets .m-post.offers-grid .post-item .card-text-container .tribe-common-c-btn:last-of-type {
  margin-right: 0;
  margin-top: 1.1428571429rem;
}
.m-post.offers-grid .post-item .card-text-container h3 {
  margin-bottom: 0.9285714286rem;
}
.m-post .mobile-filters-wrap {
  position: relative;
  cursor: pointer;
  height: 3.4285714286rem;
  width: calc(100% + 32px);
  margin: 0 -1.1428571429rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  outline: 0.0714285714rem solid #231f20;
  outline-offset: -0.0714285714rem;
}
.m-post .mobile-filters-wrap[data-toggle=open] label::after {
  transform: rotate(180deg);
}
.m-post .mobile-filters-wrap .filters {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  opacity: 0;
  z-index: 1000;
  background-color: #ffffff;
  outline: 0.0714285714rem solid #231f20;
  outline-offset: -0.0714285714rem;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.2s ease 0.5s;
}
.m-post .mobile-filters-wrap .filters::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 0.0714285714rem;
  width: calc(100% - 2px);
  transform: translateX(-50%);
  background-color: #ffffff;
}
.m-post .mobile-filters-wrap .filters[aria-hidden=false] {
  opacity: 1;
  max-height: 100vh;
  transition: max-height 0.8s ease;
}
.m-post .mobile-filters-wrap .post-filter-tabs {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 1.5rem 1.2142857143rem 1rem;
  column-gap: 0.7142857143rem;
}
.m-post .mobile-filters-wrap .post-filter-tabs li {
  padding: 0;
}
.m-post .mobile-filters-wrap label,
.m-post .mobile-filters-wrap button {
  cursor: pointer;
  color: #231f20;
  background-color: #ffffff;
}
.m-post .mobile-filters-wrap label {
  position: relative;
  padding-right: 0;
  text-transform: uppercase;
}
.m-post .mobile-filters-wrap label::after {
  content: "";
  position: absolute;
  right: -1.2857142857rem;
  top: 0;
  height: 100%;
  width: 0.9285714286rem;
  background-color: transparent;
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow.svg");
  background-position: right 53%;
  background-repeat: no-repeat;
  background-size: 10px 5px;
  transition: transform 200ms ease;
}
.m-post .mobile-filters-wrap button {
  height: 2rem;
  margin-bottom: 0.5rem;
  transition: font-weight 250ms ease, background-color 250ms ease;
}
@media (min-width: 768px) {
  .m-post .mobile-filters-wrap {
    display: none;
  }
}
@media (min-width: 768px) {
  .m-post .filter-container .filters p {
    width: initial;
    text-transform: uppercase;
    font-weight: bold;
  }
  .m-post .filter-container .filters ul {
    height: 100%;
    width: initial;
  }
  .m-post .filter-container .filters ul li {
    padding: 0 0.7142857143rem;
    margin: 0;
    position: relative;
  }
  .m-post .grid-col:not(.header-row):not(.text-image-block_image):not(.text-image-block_text) {
    margin-top: 2.3571428571rem;
  }
}
@media (min-width: 900px) {
  .m-post .filter-container .filters {
    flex-basis: auto;
  }
}
@media (min-width: 1360px) {
  .m-post .post-grid .card-text-wrapper {
    width: 22.1428571429rem;
    left: 5%;
    transform: translateX(0);
  }
}

.room-list, .card-list {
  background: transparent;
}
.room-list .grid-row, .card-list .grid-row {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  column-gap: 2.2857142857rem;
  row-gap: 4rem;
}
.room-list .grid-row .room-container, .card-list .grid-row .room-container, .room-list .grid-row .card-list .card-container, .card-list .grid-row .card-container {
  grid-column: span 6;
  position: relative;
}
@media (max-width: 767px) {
  .room-list .grid-row .room-container, .card-list .grid-row .room-container, .room-list .grid-row .card-list .card-container, .card-list .grid-row .card-container {
    grid-column: span 12;
  }
}
.room-list .image-slide, .card-list .image-slide {
  width: 100%;
  height: 400px;
}
@media (max-width: 767px) {
  .room-list .image-slide, .card-list .image-slide {
    height: 280px;
  }
}
.room-list .image-slide img, .card-list .image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-list h3, .card-list h3 {
  font-size: 2.2857142857rem;
  line-height: 1.125;
  letter-spacing: -0.0228571429rem;
  margin-top: 2.8571428571rem;
  margin-bottom: 1.7142857143rem;
}
[lang=ja-JP] .room-list h3, [lang=ja-JP] .card-list h3 {
  font-size: 1.8571428571rem;
}
.room-list p, .card-list p {
  font-size: 1.1428571429rem;
  line-height: 1.5;
  margin-bottom: 1.7142857143rem;
}
.room-list .links, .card-list .links {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .room-list .links, .card-list .links {
    flex-wrap: wrap;
  }
}
.room-list .links a, .card-list .links a {
  font-size: 1rem;
  line-height: 1.0714285714;
  text-transform: uppercase;
  border-bottom: 1px solid #231f20;
  padding: 0.5714285714rem 20px;
  margin-right: 2.8571428571rem;
}
@media (max-width: 1023px) {
  .room-list .links a, .card-list .links a {
    margin-bottom: 15px;
    margin-right: 2vw;
  }
}
.room-list .links a.button, .room-list .links .single-event-page .event-tickets a.tribe-common-c-btn, .single-event-page .event-tickets .room-list .links a.tribe-common-c-btn, .card-list .links a.button, .card-list .links .single-event-page .event-tickets a.tribe-common-c-btn, .single-event-page .event-tickets .card-list .links a.tribe-common-c-btn, .room-list .links a.tour-button, .card-list .links a.tour-button {
  border-bottom: 0;
}
.room-list .links a.tour-button, .card-list .links a.tour-button {
  padding: 0;
}
.room-list .carousel-buttons, .card-list .carousel-buttons {
  width: 100%;
  position: absolute;
  top: 200px;
}
@media (max-width: 767px) {
  .room-list .carousel-buttons, .card-list .carousel-buttons {
    top: 140px;
  }
}
.room-list .carousel-buttons .carousel-button-prev, .card-list .carousel-buttons .carousel-button-prev {
  position: absolute;
  left: 2.2857142857rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .room-list .carousel-buttons .carousel-button-prev, .card-list .carousel-buttons .carousel-button-prev {
    left: 1.1428571429rem;
  }
}
.room-list .carousel-buttons .carousel-button-next, .card-list .carousel-buttons .carousel-button-next {
  position: absolute;
  right: 2.2857142857rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .room-list .carousel-buttons .carousel-button-next, .card-list .carousel-buttons .carousel-button-next {
    right: 1.1428571429rem;
  }
}
.room-list .flickity-page-dots, .card-list .flickity-page-dots {
  justify-content: flex-end;
  bottom: 24px;
  right: 24px;
}
.room-list .flickity-page-dots .dot, .card-list .flickity-page-dots .dot {
  background: #ffffff;
}

.m-shopify.section-container.text-image-block {
  overflow-y: hidden;
  padding: 0 !important;
}
.m-shopify.section-container.text-image-block .grid-row {
  grid-gap: 0;
}
.m-shopify .text-image-block_image {
  align-self: normal;
  min-height: 25.7142857143rem;
}
.m-shopify .text-image-block_image .image-content-wrapper {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
}
.m-shopify .text-image-block_image .image-content-wrapper .heading-eyebrow {
  margin-bottom: 0.4285714286rem;
}
.m-shopify .text-image-block_image .image-content-wrapper h2 {
  margin-bottom: 0.0714285714rem;
}
.m-shopify .text-image-block_image .image-content-wrapper .button-group {
  margin-top: 0;
}
@media (min-width: 769px) {
  .m-shopify .text-image-block_image .image-content-wrapper {
    bottom: 100px;
  }
}
@media (max-width: 767px) {
  .m-shopify .text-image-block_image .image-content-wrapper::before {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.45) 81%);
  }
}
.m-shopify .text-image-block_text {
  padding: 2.2142857143rem 0 5.3571428571rem;
}
.m-shopify .text-image-block_text .fp-image {
  position: relative;
  height: 16.2142857143rem;
  width: 16.2142857143rem;
}
.m-shopify .text-image-block_text .fp-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.m-shopify .text-image-block_text .fp-content {
  margin-top: 1.2857142857rem;
}
.m-shopify .text-image-block_text .carousel-wrapper {
  display: none;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  max-width: 20.8571428571rem;
}
.m-shopify .text-image-block_text .carousel-wrapper.visible {
  display: flex;
}
.m-shopify .text-image-block_text .carousel-wrapper .carousel-grid {
  max-width: 16.2142857143rem;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.m-shopify .text-image-block_text .carousel-wrapper .is-selected {
  opacity: 1 !important;
}
.m-shopify .text-image-block_text .carousel-wrapper .heading-eyebrow {
  margin-bottom: 0.2857142857rem;
  text-transform: none;
}
.m-shopify .text-image-block_text .carousel-wrapper .lead {
  margin-bottom: 1rem;
}
.m-shopify .text-image-block_text .carousel-wrapper .button-group {
  margin-top: 0;
}
.m-shopify .text-image-block_text .carousel-wrapper .button-group button:first-child {
  margin-top: 1.4285714286rem;
}
.m-shopify .text-image-block_text .carousel-wrapper .shopify-buy__collection {
  width: 100%;
}
.m-shopify .text-image-block_text .carousel-wrapper .shopify-buy-frame {
  min-height: 27rem;
  opacity: 0;
  transition: opacity 250ms ease;
}
.m-shopify .text-image-block_text .carousel-wrapper .shopify-buy-frame.flickity-enabled {
  opacity: 1;
}
.m-shopify .text-image-block_text .carousel-buttons {
  position: absolute;
  top: 40%;
  justify-content: space-between;
  width: calc(100% + 52px);
}
.m-shopify .text-image-block_text .carousel-buttons .carousel-button .icon-wrap {
  background-color: transparent;
  box-shadow: none;
}
.m-shopify .text-image-block_text .carousel-buttons .carousel-button .icon-wrap svg {
  width: 1.3571428571rem;
  height: 1.1428571429rem;
}
.m-shopify .text-image-block_text .filter-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0;
  padding-bottom: 1.7142857143rem;
  list-style: none;
}
.m-shopify .text-image-block_text .filter-list li {
  padding: 0 0.6071428571rem;
}
.m-shopify.has-dark-bg .carousel-button {
  color: #ffffff;
}
.m-shopify.has-dark-bg .carousel-wrapper .fp-title .heading-eyebrow {
  color: #acacac;
}
.m-shopify.has-dark-bg .text-image-block_text {
  display: block;
  z-index: 1;
}
@media (min-width: 768px) {
  .m-shopify .text-image-block_text .fp-image {
    height: 19.6428571429rem;
    width: 19.6428571429rem;
  }
  .m-shopify .text-image-block_text .lead {
    margin-bottom: 1rem;
    font-size: 1.2857142857rem;
  }
  .m-shopify .text-image-block_text .carousel-wrapper {
    max-width: 25.5rem;
  }
  .m-shopify .text-image-block_text .carousel-wrapper .shopify-buy-frame {
    min-height: 30.4285714286rem;
  }
  .m-shopify .text-image-block_text .carousel-wrapper .carousel-grid {
    max-width: 19.6428571429rem;
  }
  .m-shopify .text-image-block_text .filter-list li {
    padding: 0 1.0714285714rem;
  }
}
@media (min-width: 1024px) {
  .m-shopify .text-image-block_text {
    padding: 1.5rem 0 3.4285714286rem;
  }
  .m-shopify .text-image-block_text .fp-image {
    height: 23.1428571429rem;
    width: 23.1428571429rem;
  }
  .m-shopify .text-image-block_text .carousel-wrapper {
    max-width: 31.2857142857rem;
  }
  .m-shopify .text-image-block_text .carousel-wrapper .shopify-buy-frame {
    min-height: 34.2857142857rem;
  }
  .m-shopify .text-image-block_text .carousel-wrapper .shopify-buy-frame .flickity-page-dots {
    bottom: -31px;
  }
  .m-shopify .text-image-block_text .carousel-wrapper .carousel-grid {
    max-width: 23.1428571429rem;
  }
  .m-shopify .text-image-block_text .carousel-wrapper .filter-list li {
    padding: 0 1.5rem;
  }
  .m-shopify .text-image-block_text .filter-list {
    padding-bottom: 5.3571428571rem;
  }
}
.m-shopify .pricing-info-container {
  margin-top: 1.4285714286rem;
}

@media (min-width: 1024px) {
  [lang=ja-JP] .m-shopify .h2 {
    font-size: 3.5rem;
    line-height: 1.5;
  }
}

.single-newsletter.has-dark-bg input {
  border-color: #ffffff;
}
.single-newsletter.has-dark-bg .newsletter-social li a::after {
  background-color: #ffffff;
}
.single-newsletter.has-dark-bg:last-child {
  padding-bottom: 38.5px;
}
.single-newsletter .input-wrap,
.single-newsletter .lead > p,
.single-newsletter ul.newsletter-social {
  margin: 0 auto 1.8571428571rem;
  max-width: 34.8571428571rem;
}
.single-newsletter label {
  position: absolute;
}
.single-newsletter ul.newsletter-social {
  display: flex;
  flex-direction: row;
  margin: 3rem auto 1.8571428571rem;
  padding: 0;
  width: 100%;
  list-style-type: none;
}
.single-newsletter ul.newsletter-social li {
  margin: 0 0.5714285714rem;
  padding: 0;
}
.single-newsletter ul.newsletter-social li:first-child() {
  margin-left: 0;
}
.single-newsletter ul.newsletter-social li a {
  position: relative;
  height: 1.7857142857rem;
  width: 1.7857142857rem;
}
.single-newsletter ul.newsletter-social li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3571428571rem;
  left: 0;
  height: 0.0714285714rem;
  width: 0;
  background-color: #231f20;
  transition: width 200ms ease;
}
.single-newsletter ul.newsletter-social li a:active::after, .single-newsletter ul.newsletter-social li a:focus-visible::after, .single-newsletter ul.newsletter-social li a:hover::after {
  width: 100%;
}
.single-newsletter ul.newsletter-social li a::after {
  height: 0.1428571429rem;
}
.single-newsletter ul.newsletter-social .social-icon svg {
  height: 1.7857142857rem;
  width: 1.7857142857rem;
}
.single-newsletter .h6 {
  margin-bottom: 0.7857142857rem;
}
.single-newsletter .heading-eyebrow {
  margin-bottom: 0.3571428571rem;
}
.single-newsletter label {
  font-size: 1.1428571429rem;
}
.single-newsletter:not(.dark-bg-container) {
  padding: 5.2857142857rem 0;
}
.single-newsletter .grid-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  row-gap: 2.8571428571rem;
}
.single-newsletter .grid-row .grid-col {
  flex: 100%;
}
.single-newsletter .grid-row > .single-newsletter-heading {
  flex: 100%;
  max-width: 34.8571428571rem;
  margin: 0 auto;
}
.single-newsletter-heading {
  padding-bottom: 0.8571428571rem;
}
@media (min-width: 768px) {
  .single-newsletter:not(.dark-bg-container) {
    padding: 6.0714285714rem 0;
  }
  .single-newsletter.is-reversed .grid-col:last-child {
    order: -1;
  }
  .single-newsletter .grid-row {
    justify-content: center;
    row-gap: 0;
  }
  .single-newsletter .grid-row .grid-col {
    flex: 0 50%;
  }
  .single-newsletter .grid-row > .single-newsletter-heading {
    margin: 0;
    max-width: none;
  }
  .single-newsletter .grid-row > .single-newsletter-heading ~ .grid-col {
    padding: 3.5714285714rem 0;
  }
  .single-newsletter .grid-col-heading,
  .single-newsletter .grid-col form {
    margin: 0 auto;
    max-width: calc(100% - 40px);
  }
  .single-newsletter .lead > p,
  .single-newsletter ul.newsletter-social {
    max-width: none;
    margin: 0 0 1.8571428571rem;
  }
  .single-newsletter ul.newsletter-social {
    margin-top: 3rem;
  }
  .single-newsletter .heading-eyebrow {
    margin-bottom: 0.2857142857rem;
  }
}
@media (min-width: 1024px) {
  .single-newsletter:not(.dark-bg-container) {
    padding: 7.1428571429rem 0;
  }
  .single-newsletter .grid-col-heading,
  .single-newsletter .grid-col form {
    max-width: 38rem;
  }
}
@media (min-width: 1040px) {
  .single-newsletter .grid-row {
    max-width: 71.4285714286rem;
    margin: 0 auto;
  }
}

.text-image-block:not(.newsletter-block):not(.dark-bg-container):not(.m-shopify) {
  padding: 5.2857142857rem 0 !important;
}
.text-image-block.newsletter-block + .section-container {
  background: none;
}
.text-image-block.newsletter-block.has-dark-bg input {
  border-color: #ffffff;
}
.text-image-block.newsletter-block.has-dark-bg .newsletter-social li a::after {
  background-color: #ffffff;
}
.text-image-block.newsletter-block .locations-select-wrap {
  margin: 0 auto;
  max-width: 34.8571428571rem;
}
.text-image-block.newsletter-block .input-wrap {
  margin: 0 auto 1.8571428571rem;
  max-width: 34.8571428571rem;
}
.text-image-block.newsletter-block .input-wrap label {
  position: absolute;
}
.text-image-block.newsletter-block .newsletter-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 2rem 0 0;
  padding: 0;
  width: 100%;
  list-style-type: none;
}
.text-image-block.newsletter-block .newsletter-social li {
  margin: 0 0.5714285714rem;
  padding: 0;
}
.text-image-block.newsletter-block .newsletter-social li a {
  position: relative;
  height: 1.7857142857rem;
  width: 1.7857142857rem;
}
.text-image-block.newsletter-block .newsletter-social li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3571428571rem;
  left: 0;
  height: 0.0714285714rem;
  width: 0;
  background-color: #231f20;
  transition: width 200ms ease;
}
.text-image-block.newsletter-block .newsletter-social li a:active::after, .text-image-block.newsletter-block .newsletter-social li a:focus-visible::after, .text-image-block.newsletter-block .newsletter-social li a:hover::after {
  width: 100%;
}
.text-image-block.newsletter-block .newsletter-social li a::after {
  height: 0.1428571429rem;
}
.text-image-block.newsletter-block .newsletter-social .social-icon svg {
  height: 1.7857142857rem;
  width: 1.7857142857rem;
}
@media (max-width: 767px) {
  .text-image-block.newsletter-block {
    padding-top: 3.5714285714rem;
  }
}
.text-image-block.newsletter-block:first-of-type {
  padding-top: 115.5px !important;
}
@media (min-width: 768px) {
  .text-image-block.newsletter-block:first-of-type {
    padding-top: 3.8571428571rem !important;
  }
}
@media (min-width: 1360px) {
  .text-image-block.newsletter-block:first-of-type {
    padding-top: 5rem !important;
  }
}
.text-image-block.newsletter-block .revinate-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-image-block.newsletter-block .revinate-form-new.has-dark-bg .input-wrap input,
.text-image-block.newsletter-block .revinate-form-new.has-dark-bg .input-wrap select {
  border: 1px solid #fff;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap {
  max-width: none;
}
.text-image-block.newsletter-block .revinate-form-new .privacy-text {
  margin-top: 12px;
  font-size: 12px;
  text-align: left;
  padding-right: 20px;
}
.text-image-block.newsletter-block .revinate-form-new .privacy-text a:hover, .text-image-block.newsletter-block .revinate-form-new .privacy-text a:focus {
  color: #eeb114;
}
.text-image-block.newsletter-block .revinate-form-new .revinate-form {
  margin-top: 40px;
}
.text-image-block.newsletter-block .revinate-form-new .revinate-form-footer {
  margin-top: 40px;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap {
  margin: initial;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap label {
  left: 15px;
  color: #999;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap label:focus-within {
  color: #231f20;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap label.has-value {
  top: 1.4285714286rem;
  opacity: 0;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap select,
.text-image-block.newsletter-block .revinate-form-new .input-wrap input {
  border: 1px solid #000;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-top: 17px;
  padding-bottom: 17px;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap select option[value=""] {
  color: #999;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap select.unchecked-color, .text-image-block.newsletter-block .revinate-form-new .input-wrap select:invalid {
  color: #999;
}
.text-image-block.newsletter-block .revinate-form-new .input-wrap.unchecked-color select {
  color: #999;
}
.text-image-block.newsletter-block .revinate-form-new .form-row {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .text-image-block.newsletter-block .revinate-form-new .form-row .half-width + .half-width {
    margin-top: 25px;
  }
}
.text-image-block.newsletter-block .revinate-form-new .hidden-input {
  display: none;
}
.text-image-block .grid-row {
  display: flex;
  flex-flow: row wrap;
  row-gap: 3.5rem;
}
.text-image-block .grid-row .grid-col {
  flex: 100%;
}
.text-image-block .grid-row label {
  font-size: 1.1428571429rem;
}
.text-image-block .heading-eyebrow {
  margin-bottom: 0.3571428571rem;
}
.text-image-block ul {
  margin-left: 1.2857142857rem;
  padding-left: 0;
}
.text-image-block_text {
  align-self: center;
}
.text-image-block_text.is-narrow .text-image-block-content,
.text-image-block_text.is-narrow .text-image-block-heading {
  margin: 0 auto;
  max-width: 22.5rem;
}
.text-image-block_text.has-headline-paragraph .text-image-block-content {
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
}
.text-image-block_text .h2 {
  margin-bottom: 0.7857142857rem;
}
@media (min-width: 768px) {
  .text-image-block_text .h2 {
    font-size: 4.5714285714rem;
    line-height: 5.3571428571rem;
  }
}
.text-image-block-list-content h2.h5 {
  margin-bottom: 0.8571428571rem;
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2.1428571429rem;
  letter-spacing: -0.0071428571rem;
  line-height: 2.3571428571rem;
}
[lang=ja-JP] .text-image-block-list-content h2.h5 {
  font-size: 1.7142857143rem;
}
.text-image-block-list-content ul {
  margin: 0 0 3.5714285714rem;
  padding: 0;
  width: 100%;
}
.text-image-block-list-content li {
  padding-top: 1.7857142857rem;
  padding-bottom: 1.7857142857rem;
  border-bottom: 0.0714285714rem solid rgba(35, 31, 32, 0.5);
  list-style: none;
  font-size: 1.1428571429rem;
}
.text-image-block-heading {
  padding-bottom: 0.8571428571rem;
}
.text-image-block_image {
  position: relative;
}
.text-image-block_image::before {
  content: "";
  display: block;
  padding-top: 109.2753623188%;
  width: 100%;
}
.text-image-block_image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .text-image-block_image {
    max-height: 26.9285714286rem;
  }
}
.text-image-block_image .content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.text-image-block.is-full-width .text-image-block_text {
  margin: 0 1.1428571429rem;
}
.text-image-block.is-full-width_image {
  position: relative;
}
.text-image-block.is-full-width_image::before {
  content: "";
  display: block;
  padding-top: 96%;
  width: 100%;
}
.text-image-block.is-full-width_image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .text-image-block.is-full-width_image {
    max-height: 25.7142857143rem;
  }
}
.text-image-block.is-reversed:not(.newsletter-block) .grid-row {
  row-gap: 1.5714285714rem;
}
@media (max-width: 767px) {
  .text-image-block.is-reversed:not(.newsletter-block).has-eyebrow {
    padding: 7.5714285714rem 0 5.2857142857rem !important;
  }
  .text-image-block.is-reversed:not(.newsletter-block).has-eyebrow .heading-eyebrow {
    position: absolute;
    top: -1.8571428571rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.text-image-block.is-reversed:not(.newsletter-block) .grid-col:last-child {
  order: -1;
}
.text-image-block.newsletter-block {
  padding: 3.5714285714rem 0 0;
  z-index: 1;
}
.text-image-block.remove-padding {
  padding: 0 !important;
}
@media (min-width: 768px) {
  .text-image-block:not(.newsletter-block):not(.dark-bg-container):not(.m-shopify) {
    padding: 6.0714285714rem 0 !important;
  }
  .text-image-block .grid-row {
    justify-content: space-between;
  }
  .text-image-block .grid-row .grid-col {
    flex: 0 50%;
  }
  .text-image-block.newsletter-block .grid-row {
    justify-content: center;
  }
  .text-image-block.is-full-width .text-image-block_image {
    max-width: 100vw;
    height: 100%;
    padding: 7.1428571429rem 0;
    box-sizing: content-box;
  }
  .text-image-block.is-full-width .text-image-block_image .content {
    position: relative;
    max-height: 56.2857142857rem;
    min-height: 56rem;
  }
  .text-image-block.is-full-width .text-image-block_image::before {
    content: none;
  }
  .text-image-block.is-full-width .text-image-block_text {
    margin: 0;
  }
  .text-image-block_image {
    position: relative;
    max-width: 44.4285714286rem;
  }
  .text-image-block_image::before {
    content: "";
    display: block;
    padding-top: 109.3247588424%;
    width: 100%;
  }
  .text-image-block_image > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .text-image-block_text {
    padding: 3.5714285714rem 0;
  }
  .text-image-block_text .text-image-block-heading,
  .text-image-block_text .text-image-block-content,
  .text-image-block_text form {
    margin: 0 auto;
    max-width: calc(100% - 40px);
  }
  .text-image-block_text .heading-eyebrow {
    margin-bottom: 0.2857142857rem;
  }
  .text-image-block_text .text-image-block-content {
    margin-bottom: 1.9285714286rem;
  }
  .text-image-block_text.is-narrow .text-image-block-content,
  .text-image-block_text.is-narrow .text-image-block-heading {
    max-width: calc(100% - 90px);
  }
  .text-image-block.newsletter-block {
    padding: 0 !important;
  }
  .text-image-block.newsletter-block.is-reversed .grid-col:last-child {
    order: -1;
  }
}
@media (min-width: 1024px) {
  .text-image-block:not(.newsletter-block):not(.dark-bg-container):not(.m-shopify) {
    padding: 7.1428571429rem 0 !important;
  }
  .text-image-block-buttons {
    margin-top: 0;
  }
}
@media (min-width: 1150px) {
  .text-image-block_text .text-image-block-heading,
  .text-image-block_text .text-image-block-content,
  .text-image-block_text form {
    max-width: 38rem;
  }
  .text-image-block_text.is-narrow .text-image-block-content,
  .text-image-block_text.is-narrow .text-image-block-heading {
    max-width: 27.5714285714rem;
  }
}

@media (min-width: 1024px) {
  [lang=ja-JP] .image-carousel-heading h2,
  [lang=ja-JP] .image-carousel-heading .h2,
  [lang=ja-JP] .text-image-block-heading h2,
  [lang=ja-JP] .text-image-block-heading .h2,
  [lang=ja-JP] .newsletter-block h2,
  [lang=ja-JP] .newsletter-block .h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media (max-width: 1023px) {
  [lang=ja-JP] .image-carousel-heading h2,
  [lang=ja-JP] .image-carousel-heading .h2,
  [lang=ja-JP] .text-image-block-heading h2,
  [lang=ja-JP] .text-image-block-heading .h2,
  [lang=ja-JP] .newsletter-block h2,
  [lang=ja-JP] .newsletter-block .h2 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.text-image-slider .grid-row {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
  grid-row-gap: 38.5px;
  position: relative;
}
@media (min-width: 768px) {
  .text-image-slider .grid-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .text-image-slider .grid-row {
    grid-template-columns: [col1-start] repeat(6, 1fr) [col1-end col2-start] repeat(6, 1fr) [col2-end];
    grid-column-gap: 16px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-image-slider .grid-row .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .text-image-slider .grid-row .grid-col:nth-child(2n) {
    grid-column: col2;
  }
}
@media (min-width: 1024px) {
  .text-image-slider .grid-row {
    grid-template-columns: [col1-start] repeat(5, 1fr) [col1-end col2-start] repeat(7, 1fr) [col2-end];
  }
}
@media (min-width: 1360px) {
  .text-image-slider .grid-row {
    grid-template-columns: [col1-start] repeat(4, 1fr) [col1-end col2-start] repeat(8, 1fr) [col2-end];
  }
}
@media (min-width: 768px) {
  .text-image-slider.is-reversed .grid-row {
    grid-column-gap: 32px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-image-slider.is-reversed .grid-row .grid-col {
    grid-row: 1;
  }
  .text-image-slider.is-reversed .grid-row .grid-col:nth-child(1) {
    grid-column: col2;
  }
  .text-image-slider.is-reversed .grid-row .grid-col:nth-child(2) {
    grid-column: col1;
  }
}
@media (min-width: 768px) {
  .text-image-slider.is-reversed .carousel-text-container {
    padding: 0 1.1428571429rem;
  }
}
@media (min-width: 1024px) {
  .text-image-slider.is-reversed .grid-row {
    grid-template-columns: [col1-start] repeat(7, 1fr) [col1-end col2-start] repeat(4, 1fr) [col2-end];
  }
}
@media (min-width: 1360px) {
  .text-image-slider.is-reversed .grid-row {
    grid-template-columns: [col1-start] repeat(8, 1fr) [col1-end col2-start] repeat(4, 1fr) [col2-end];
  }
}
.text-image-slider.has-dark-bg .carousel-text-container {
  color: #ffffff;
}
.text-image-slider .carousel-container,
.text-image-slider .carousel-text-container {
  position: relative;
}
.text-image-slider .carousel-text-container {
  align-items: flex-start;
  flex-direction: column;
  grid-template-columns: unset;
  padding: 0;
  height: 100%;
  color: #231f20;
}
@media (min-width: 768px) {
  .text-image-slider .carousel-text-container {
    padding-right: 2.8571428571rem;
  }
}
.text-image-slider .carousel-text-container p,
.text-image-slider .carousel-text-container ol,
.text-image-slider .carousel-text-container ul,
.text-image-slider .carousel-text-container dl {
  font-size: 1.1428571429rem;
  line-height: 1.7142857143rem;
}
.text-image-slider .carousel-text-container .image-carousel-heading {
  margin-bottom: 1.1428571429rem;
}
.text-image-slider .carousel-text-container .button-group {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .text-image-slider .carousel-text-container {
    order: 2;
  }
}
@media (min-width: 768px) {
  .text-image-slider .carousel-text-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.text-image-slider .carousel-text-container p.carousel-text-container__offer-terms {
  margin-top: 1.8571428571rem;
  font-style: italic;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .text-image-slider .carousel-container {
    grid-column: col2;
  }
}
@media (min-width: 768px) {
  .text-image-slider .carousel-container .carousel .image-slide,
  .text-image-slider .carousel-container .carousel-single .image-slide {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .text-image-slider .carousel-container .carousel,
  .text-image-slider .carousel-container .carousel-single {
    min-height: 45.5714285714rem;
  }
}
@media (max-width: 1024px) {
  .text-image-slider .carousel-container .carousel .flickity-page-dots,
  .text-image-slider .carousel-container .carousel-single .flickity-page-dots {
    bottom: -1.1428571429rem;
  }
}
.text-image-slider .carousel-buttons {
  width: calc(100% - 32px);
}
@media (min-width: 1024px) {
  .text-image-slider .carousel-buttons {
    width: calc(100% + 35px);
    transform: translate(-16px, -50%);
  }
}

.m-text-multi .grid-row {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
  grid-row-gap: 19.25px;
}
@media (min-width: 768px) {
  .m-text-multi .grid-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
.m-text-multi .text-multi-content p,
.m-text-multi .text-multi-content li,
.m-text-multi .text-multi-list p,
.m-text-multi .text-multi-list li {
  font-size: 1rem;
  line-height: 1.8571428571rem;
  letter-spacing: -0.01rem;
}
@media screen and (min-width: 1024px) {
  .m-text-multi .text-multi-content p,
  .m-text-multi .text-multi-content li,
  .m-text-multi .text-multi-list p,
  .m-text-multi .text-multi-list li {
    font-size: 1.1428571429rem;
    line-height: 2.1428571429rem;
    letter-spacing: -0.0114285714rem;
  }
}
@media (min-width: 768px) {
  .m-text-multi .grid-row {
    grid-template-columns: [col1-start] repeat(6, 1fr) [col1-end col2-start] repeat(6, 1fr) [col2-end];
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .m-text-multi .grid-row .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .m-text-multi .grid-row .grid-col:nth-child(2n) {
    grid-column: col2;
  }
}
@media (min-width: 768px) {
  .m-text-multi.two-columns .header-row {
    display: grid;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .m-text-multi.two-columns .header-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .m-text-multi.two-columns .header-row .header-cell {
    grid-column: colcentered;
  }
}
@media (min-width: 768px) {
  .m-text-multi.three-columns .grid-row {
    grid-template-columns: [col1-start] repeat(4, 1fr) [col1-end col2-start] repeat(4, 1fr) [col2-end col3-start] repeat(4, 1fr) [col3-end];
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .m-text-multi.three-columns .grid-row .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .m-text-multi.three-columns .grid-row .grid-col:nth-child(2n) {
    grid-column: col2;
  }
  .m-text-multi.three-columns .grid-row .grid-col:nth-child(3n) {
    grid-column: col3;
  }
}
@media (min-width: 1024px) {
  .m-text-multi .grid-row {
    grid-template-columns: 1fr [col1-start] repeat(5, 1fr) [col1-end col2-start] repeat(5, 1fr) [col2-end] 1fr;
  }
  .m-text-multi.four-columns .grid-row {
    grid-template-columns: [col1-start] repeat(3, 1fr) [col1-end col2-start] repeat(3, 1fr) [col2-end col3-start] repeat(3, 1fr) [col3-end col4-start] repeat(3, 1fr) [col4-end];
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .m-text-multi.four-columns .grid-row .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .m-text-multi.four-columns .grid-row .grid-col:nth-child(2n) {
    grid-column: col2;
  }
  .m-text-multi.four-columns .grid-row .grid-col:nth-child(3n) {
    grid-column: col3;
  }
  .m-text-multi.four-columns .grid-row .grid-col:nth-child(4n) {
    grid-column: col4;
  }
}
@media (min-width: 1024px) {
  .m-text-multi.is-asymmetric .grid-row {
    grid-template-columns: 1fr [col1-start] repeat(5, 1fr) [col1-end col2-start] repeat(6, 1fr) [col2-end];
  }
  .m-text-multi.is-asymmetric.two-columns .grid-col:nth-child(2) {
    margin-left: 3.2142857143rem;
    max-width: 39.1428571429rem;
  }
  .m-text-multi.is-asymmetric.three-columns .grid-row {
    grid-template-columns: [col1-start] repeat(6, 1fr) [col1-end col2-start] repeat(3, 1fr) [col2-end col3-start] repeat(3, 1fr) [col3-end];
  }
  .m-text-multi.is-asymmetric.four-columns .grid-row {
    grid-template-columns: [col1-start] repeat(6, 1fr) [col1-end col2-start] repeat(2, 1fr) [col2-end col3-start] repeat(2, 1fr) [col3-end col4-start] repeat(2, 1fr) [col4-end];
  }
}

.m-two-col-details .grid-row {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .m-two-col-details .grid-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .m-two-col-details .grid-row .grid-col {
    grid-column: colcentered;
  }
}
@media (min-width: 768px) {
  .m-two-col-details .grid-row {
    grid-template-columns: repeat(2, 1fr) [colcentered-start] repeat(8, 1fr) [colcentered-end] repeat(2, 1fr);
  }
  .m-two-col-details .grid-row .grid-col {
    grid-column: colcentered;
  }
}
.m-two-col-details .two-col-details-list {
  margin-left: 0;
  padding-left: 0;
  width: 100%;
  list-style: none;
}
.m-two-col-details .two-col-details-list li,
.m-two-col-details .two-col-details-list p {
  font-size: 1.1428571429rem;
}
.m-two-col-details .two-col-details-list li {
  display: flex;
  align-items: center;
  padding: 1.2857142857rem 0 1rem;
  height: 4.5714285714rem;
  border-bottom: 1px solid #e7e7e7;
}
@media (min-width: 1024px) {
  .m-two-col-details .two-col-details-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .m-two-col-details .two-col-details-list li {
    width: 48%;
  }
}

.m-text-single .container,
.m-text-intro .container {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .m-text-single .container,
  .m-text-intro .container {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .m-text-single .container .grid-col,
  .m-text-intro .container .grid-col {
    grid-column: colcentered;
  }
}
@media (min-width: 768px) {
  .m-text-single .container,
  .m-text-intro .container {
    grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
  }
}
@media (min-width: 1024px) {
  .m-text-single .container,
  .m-text-intro .container {
    grid-template-columns: repeat(3, 1fr) [colcentered-start] repeat(6, 1fr) [colcentered-end] repeat(3, 1fr);
  }
}
@media (min-width: 1025px) {
  .m-text-single.is-wide .text-single-container,
  .m-text-intro.is-wide .text-single-container {
    grid-template-columns: repeat(2, 1fr) [colcentered-start] repeat(8, 1fr) [colcentered-end] repeat(2, 1fr);
  }
}
.m-text-single.remove-separator .container .text-intro-content.intro-text::after,
.m-text-intro.remove-separator .container .text-intro-content.intro-text::after {
  display: none;
}
.m-text-single .container .text-single-heading + .text-single-content,
.m-text-intro .container .text-single-heading + .text-single-content {
  margin-top: 19.25px;
}
.m-text-single .container .text-single-content p,
.m-text-single .container .text-single-content li,
.m-text-single .container .text-intro-content p,
.m-text-single .container .text-intro-content li,
.m-text-intro .container .text-single-content p,
.m-text-intro .container .text-single-content li,
.m-text-intro .container .text-intro-content p,
.m-text-intro .container .text-intro-content li {
  font-size: 1rem;
  line-height: 1.8571428571rem;
  letter-spacing: -0.01rem;
}
@media screen and (min-width: 1024px) {
  .m-text-single .container .text-single-content p,
  .m-text-single .container .text-single-content li,
  .m-text-single .container .text-intro-content p,
  .m-text-single .container .text-intro-content li,
  .m-text-intro .container .text-single-content p,
  .m-text-intro .container .text-single-content li,
  .m-text-intro .container .text-intro-content p,
  .m-text-intro .container .text-intro-content li {
    font-size: 1.1428571429rem;
    line-height: 2.1428571429rem;
    letter-spacing: -0.0114285714rem;
  }
}
.m-text-single .container .text-single-content.intro-text,
.m-text-single .container .text-intro-content.intro-text,
.m-text-intro .container .text-single-content.intro-text,
.m-text-intro .container .text-intro-content.intro-text {
  position: relative;
  padding-bottom: 3.9285714286rem;
  text-align: center;
}
.m-text-single .container .text-single-content.intro-text::after,
.m-text-single .container .text-intro-content.intro-text::after,
.m-text-intro .container .text-single-content.intro-text::after,
.m-text-intro .container .text-intro-content.intro-text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 0.2857142857rem;
  width: 70%;
  max-width: 19.6428571429rem;
  border: 0.0714285714rem solid #231f20;
  border-radius: 0.1428571429rem;
  transform: translateX(-50%);
  transition: width 500ms ease-out;
}
@media (min-width: 769px) {
  .m-text-single .container .text-single-content.intro-text::after,
  .m-text-single .container .text-intro-content.intro-text::after,
  .m-text-intro .container .text-single-content.intro-text::after,
  .m-text-intro .container .text-intro-content.intro-text::after {
    width: 21.4285714286rem;
  }
}
.m-text-single .container .text-single-content.intro-text[data-visible=true]::after,
.m-text-single .container .text-intro-content.intro-text[data-visible=true]::after,
.m-text-intro .container .text-single-content.intro-text[data-visible=true]::after,
.m-text-intro .container .text-intro-content.intro-text[data-visible=true]::after {
  width: 90%;
}
@media (min-width: 768px) {
  .m-text-single .container .text-single-content.intro-text[data-visible=true]::after,
  .m-text-single .container .text-intro-content.intro-text[data-visible=true]::after,
  .m-text-intro .container .text-single-content.intro-text[data-visible=true]::after,
  .m-text-intro .container .text-intro-content.intro-text[data-visible=true]::after {
    width: 28.5714285714rem;
  }
}
.has-dark-bg .m-text-single .container .text-single-content.intro-text::after,
.has-dark-bg .m-text-single .container .text-intro-content.intro-text::after,
.has-dark-bg .m-text-intro .container .text-single-content.intro-text::after,
.has-dark-bg .m-text-intro .container .text-intro-content.intro-text::after {
  border-color: #ffffff;
}
.m-text-single .container .text-single-content.intro-text p,
.m-text-single .container .text-intro-content.intro-text p,
.m-text-intro .container .text-single-content.intro-text p,
.m-text-intro .container .text-intro-content.intro-text p {
  margin: 0 auto;
  max-width: 23.7857142857rem;
  font-family: "Tiempos Headline", Georgia, Times, "Times New Roman", serif;
  font-size: 1.7142857143rem;
  letter-spacing: -0.0171428571rem;
  line-height: 1.5;
}
.m-text-single .container .text-single-content.intro-text p + p,
.m-text-single .container .text-intro-content.intro-text p + p,
.m-text-intro .container .text-single-content.intro-text p + p,
.m-text-intro .container .text-intro-content.intro-text p + p {
  margin-top: 1.7857142857rem;
}
@media (min-width: 768px) {
  .m-text-single .container .text-single-content.intro-text.intro-text p,
  .m-text-single .container .text-intro-content.intro-text.intro-text p,
  .m-text-intro .container .text-single-content.intro-text.intro-text p,
  .m-text-intro .container .text-intro-content.intro-text.intro-text p {
    max-width: 58.2857142857rem;
    font-size: 2.8571428571rem;
    letter-spacing: -0.0285714286rem;
  }
  [lang=ja-JP] .m-text-single .container .text-single-content.intro-text.intro-text p,
  [lang=ja-JP] .m-text-single .container .text-intro-content.intro-text.intro-text p,
  [lang=ja-JP] .m-text-intro .container .text-single-content.intro-text.intro-text p,
  [lang=ja-JP] .m-text-intro .container .text-intro-content.intro-text.intro-text p {
    font-size: 2.5rem;
  }
}
.m-text-single #NVTag1.ngp-form,
.m-text-intro #NVTag1.ngp-form {
  padding: 30px 0;
}
@media screen and (min-width: 960px) {
  .m-text-single #NVTag1.ngp-form,
  .m-text-intro #NVTag1.ngp-form {
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .m-text-single #NVTag1.ngp-form .HeaderHtml,
  .m-text-intro #NVTag1.ngp-form .HeaderHtml {
    max-width: 40%;
    float: left;
  }
  .m-text-single #NVTag1.ngp-form .HeaderHtml ~ form,
  .m-text-intro #NVTag1.ngp-form .HeaderHtml ~ form {
    max-width: 60%;
    float: left;
    padding-right: 25px;
  }
}
@media (min-width: 1024px) {
  .m-text-single #NVTag1.ngp-form,
  .m-text-intro #NVTag1.ngp-form {
    margin-right: -290px;
    margin-left: -270px;
    max-width: 1200px;
  }
}
.m-text-single #NVTag1.ngp-form .at-step > *:before,
.m-text-intro #NVTag1.ngp-form .at-step > *:before {
  line-height: 1.6;
}
.m-text-single #NVTag1.ngp-form .HeaderHtml + form,
.m-text-intro #NVTag1.ngp-form .HeaderHtml + form {
  padding-left: 25px;
  padding-right: 40px;
}

.m-text-intro.remove-bottom-padding {
  padding-bottom: 0;
}
.m-text-intro.overlap-next-section {
  padding-bottom: 280px;
  margin-bottom: -280px;
}
.m-text-intro:first-child {
  padding-top: 48.5px;
}
@media (min-width: 768px) {
  .m-text-intro:first-child {
    padding-top: 61.3333333333px;
  }
}
@media (min-width: 1024px) {
  .m-text-intro:first-child {
    padding-top: 87px;
  }
}
@media (min-width: 1024px) {
  .m-text-intro {
    padding-bottom: 2.6428571429rem;
  }
}
.m-text-intro.has-scroll-indicator .dropdown-arrow {
  display: block;
  width: 1.7142857143rem;
  height: 1.4285714286rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 19.25px;
}
@media (min-width: 768px) {
  .m-text-intro.has-scroll-indicator .dropdown-arrow {
    width: 2.2857142857rem;
    height: 1.4285714286rem;
    margin-top: 3.9285714286rem;
  }
}

@media (min-width: 1024px) {
  [lang=ja-JP] .m-text-single .h2 {
    font-size: 3rem;
    line-height: 1.5;
  }
}

.m-two-up-card-block .grid-row {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
  grid-row-gap: 19.25px;
}
@media (min-width: 768px) {
  .m-two-up-card-block .grid-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
.m-two-up-card-block .image-content {
  position: relative;
}
.m-two-up-card-block .image-content::before {
  content: "";
  display: block;
  padding-top: 59.807073955%;
  width: 100%;
}
.m-two-up-card-block .image-content > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.m-two-up-card-block .image-content .content {
  height: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.m-two-up-card-block .text-content {
  margin-top: 1.4285714286rem;
}
.m-two-up-card-block .text-content h2,
.m-two-up-card-block .text-content .subtitle {
  margin-bottom: 0.8571428571rem;
}
.m-two-up-card-block .text-content .subtitle {
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.m-two-up-card-block .text-content .button-group {
  margin-top: -0.4285714286rem;
}
@media (min-width: 768px) {
  .m-two-up-card-block .grid-row {
    grid-template-columns: [col1-start] repeat(6, 1fr) [col1-end col2-start] repeat(6, 1fr) [col2-end];
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .m-two-up-card-block .grid-row .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .m-two-up-card-block .grid-row .grid-col:nth-child(2n) {
    grid-column: col2;
  }
}
@media (min-width: 1360px) {
  .m-two-up-card-block .grid-row {
    margin: 0 auto;
    max-width: 91.1428571429rem;
  }
}

.posts-page .section-container {
  background: transparent;
}
.posts-page .blog-page-header {
  z-index: 2;
  padding-top: 77.5px;
  opacity: 1;
}
.posts-page .blog-page-header .container {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  opacity: 1 !important;
}
@media (min-width: 768px) {
  .posts-page .blog-page-header .container {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .posts-page .blog-page-header .container .grid-col:nth-child(1n) {
    grid-column: col1;
  }
  .posts-page .blog-page-header .container .grid-col:nth-child(2n) {
    grid-column: col2;
  }
}
.posts-page .blog-page-header:not(:first-child) {
  padding-top: 0;
}
@media (min-width: 768px) {
  .posts-page .blog-page-header:not(:first-child) {
    padding-top: 2.1428571429rem;
  }
  .posts-page .blog-page-header:not(:first-child) .container {
    grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
  }
  .posts-page .blog-page-header:not(:first-child) .container .filter-container {
    grid-column: colcentered;
  }
  .posts-page .blog-page-header:not(:first-child) .container .filters-wrap {
    justify-content: center;
  }
}
@media (min-width: 1440px) {
  .posts-page .blog-page-header:not(:first-child) .inner {
    grid-template-areas: "topics filters search";
    grid-template-columns: max-content 14.6428571429rem 17.5rem;
  }
}
@media (min-width: 768px) {
  .posts-page .blog-page-header .hide-desktop {
    display: none;
  }
}
.posts-page .blog-page-header .filters p {
  flex: 100%;
  margin-bottom: 0.1428571429rem;
  text-transform: uppercase;
}
.posts-page .blog-page-header .filter {
  width: auto;
  align-items: flex-end;
  justify-content: flex-start;
  row-gap: 1.0714285714rem;
  padding-bottom: 0.1428571429rem;
}
.posts-page .blog-page-header .filter li {
  padding: 0;
  margin: 0 1.4285714286rem 0 0;
}
.posts-page .blog-page-header .filter li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .posts-page .blog-page-header .filters-wrap {
    position: relative;
    cursor: pointer;
    height: 3.4285714286rem;
    width: calc(100% + 32px);
    margin: 0 -1.1428571429rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    outline: 0.0714285714rem solid #231f20;
    outline-offset: -0.0714285714rem;
  }
  .posts-page .blog-page-header .filters-wrap > label {
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
  }
  .posts-page .blog-page-header .filters-wrap > label::after {
    content: "";
    position: absolute;
    right: -1.2857142857rem;
    top: 0;
    height: 100%;
    width: 0.9285714286rem;
    background-color: transparent;
    background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow.svg");
    background-position: right 53%;
    background-repeat: no-repeat;
    background-size: 10px 5px;
    transition: transform 200ms ease;
  }
  .posts-page .blog-page-header .filters-wrap .filters {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    z-index: 1000;
    background-color: #ffffff;
    outline: 0.0714285714rem solid #231f20;
    outline-offset: -0.0714285714rem;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.2s ease 0.5s;
  }
  .posts-page .blog-page-header .filters-wrap .filters::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 0.0714285714rem;
    width: calc(100% - 2px);
    transform: translateX(-50%);
    background-color: #ffffff;
  }
  .posts-page .blog-page-header .filters-wrap .filters .inner {
    padding: 1.4285714286rem 1.0714285714rem 2.1428571429rem;
  }
  .posts-page .blog-page-header .filters-wrap .filters[aria-hidden=false] {
    opacity: 1;
    max-height: 100vh;
    transition: max-height 0.8s ease;
  }
  .posts-page .blog-page-header .filters-wrap .filter {
    row-gap: 0.7142857143rem;
  }
  .posts-page .blog-page-header .filters-wrap .filter li:not(:last-child) {
    margin-right: 0.7142857143rem;
  }
  .posts-page .blog-page-header .filters-wrap .locations-select-wrap {
    position: fixed;
    opacity: 0;
  }
  .posts-page .blog-page-header .filters-wrap .search-form {
    margin-top: 5.3571428571rem;
  }
  .posts-page .blog-page-header .filters-wrap[data-toggle=open] label::after {
    transform: rotate(180deg);
  }
  .posts-page .blog-page-header .filters-wrap[data-toggle=open] .locations-select-wrap {
    opacity: 1;
    transition: opacity 0.15s ease 0.18s;
  }
}
.posts-page .blog-page-grid {
  position: relative;
  padding: 0;
}
.posts-page .blog-page-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff url("/wp-content/themes/ace-hotel/assets/images/grey-jean.png") repeat;
}
.posts-page .blog-page-grid .container {
  row-gap: 0;
}
.posts-page .blog-page-grid .post-grid {
  padding-bottom: 1.6071428571rem;
}
.posts-page .load-more-container {
  justify-content: center;
  padding-top: 0;
}
@media (min-width: 768px) {
  .posts-page .blog-page-header {
    padding-top: 90.3333333333px;
  }
  .posts-page .blog-page-header .container {
    grid-template-columns: [col1-start] repeat(3, 1fr) [col1-end] 1fr [col2-start] repeat(8, 1fr) [col2-end];
  }
  .posts-page .blog-page-header .filters-wrap {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.9285714286rem;
  }
  .posts-page .blog-page-header .closed,
  .posts-page .blog-page-header .open {
    display: none !important;
  }
  .posts-page .blog-page-header .inner {
    display: grid;
    grid-template-areas: "topics topics" "filters search";
    align-items: flex-end;
    gap: 1.0714285714rem 2.5rem;
  }
  .posts-page .blog-page-header .inner .locations-select-wrap {
    margin-top: 0;
  }
  .posts-page .blog-page-grid::before {
    height: 7.8571428571rem;
  }
  .posts-page .blog-page-grid .post-grid {
    padding-bottom: 4.4285714286rem;
  }
}
@media (min-width: 1024px) {
  .posts-page .blog-page-header {
    padding-top: 131px;
  }
  .posts-page .locations-select-wrap {
    min-width: 14.6428571429rem;
  }
  .posts-page .search-form input {
    min-width: 17.5rem;
  }
}
.posts-page .topics {
  grid-area: topics;
}
.posts-page .topics .post-filter-buttons {
  margin-top: 1.0714285714rem;
}
.posts-page .locations-select-wrap {
  grid-area: filters;
}
.posts-page .search-form {
  grid-area: search;
  order: 4;
}

.posts-page .post-item,
.blog-post .post-item {
  width: 100%;
  margin-bottom: 1.8571428571rem;
  margin-right: 0 !important;
}
.posts-page .post-item .card-text-container,
.blog-post .post-item .card-text-container {
  padding: 1.0714285714rem 0 0;
}
.posts-page .post-item .card-text-container .card-eyebrow > a,
.blog-post .post-item .card-text-container .card-eyebrow > a {
  border: none;
}
.posts-page .post-item .card-text-container .location,
.blog-post .post-item .card-text-container .location {
  font-weight: 700;
}
.posts-page .post-item .card-text-container h2,
.blog-post .post-item .card-text-container h2 {
  margin-bottom: 0.8571428571rem;
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.0071428571rem;
  line-height: 2.3571428571rem;
}
.posts-page .post-item .card-text-container .button-group,
.blog-post .post-item .card-text-container .button-group {
  margin-top: 0;
}
.posts-page .post-item .card-text-container .button-group .button, .posts-page .post-item .card-text-container .button-group .single-event-page .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .posts-page .post-item .card-text-container .button-group .tribe-common-c-btn,
.blog-post .post-item .card-text-container .button-group .button,
.blog-post .post-item .card-text-container .button-group .single-event-page .event-tickets .tribe-common-c-btn,
.single-event-page .event-tickets .blog-post .post-item .card-text-container .button-group .tribe-common-c-btn {
  margin-top: 0;
}
.posts-page .post-item .card-image-container,
.blog-post .post-item .card-image-container {
  height: auto;
}

.blog-post .blog-header {
  z-index: 2;
  padding: 92.5px 0 0;
}
@media (min-width: 768px) {
  .blog-post .blog-header {
    padding-top: 105.3333333333px;
  }
}
@media (min-width: 1024px) {
  .blog-post .blog-header {
    padding-top: 10.3571428571rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .blog-post .blog-header .container {
    margin-left: 1.1428571429rem;
    margin-right: 1.1428571429rem;
  }
}
@media (min-width: 1392px) {
  .blog-post .blog-header .container {
    max-width: calc(100% - 5.7142857143rem);
  }
}
.blog-post .blog-header .grid-row {
  display: grid;
  gap: 2.8571428571rem;
  grid-template-areas: "meta";
  align-items: center;
}
@media (min-width: 768px) {
  .blog-post .blog-header .grid-row {
    grid-template-areas: ". meta .";
    grid-template-columns: 1fr 10fr 1fr;
  }
}
@media (min-width: 1024px) {
  .blog-post .blog-header .grid-row {
    grid-template-columns: 2fr 8fr 2fr;
  }
}
.blog-post .blog-header-text {
  grid-area: meta;
  text-align: center;
}
@media (min-width: 768px) {
  .blog-post .blog-header-text {
    margin-bottom: 3.4285714286rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .blog-post .blog-header-text .post-header h1.h2 {
    font-size: 3.5714285714rem;
    line-height: 4.2857142857rem;
    letter-spacing: -0.0357142857rem;
  }
}
.blog-post .blog-header.has-image .grid-row {
  grid-template-areas: "meta" "image";
}
@media (min-width: 768px) {
  .blog-post .blog-header.has-image .grid-row {
    grid-template-areas: "meta image";
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-post .blog-header.has-image .grid-row {
    grid-template-areas: "meta . image";
    grid-template-columns: 5fr 1fr 6fr;
  }
}
.blog-post .blog-header.has-image .blog-header-text {
  text-align: left;
}
.blog-post .blog-header-image {
  grid-area: image;
  margin-bottom: -3.4285714286rem;
}
.blog-post .post-meta {
  font-size: 1rem;
  line-height: 1.8571428571rem;
  letter-spacing: -0.01rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 1024px) {
  .blog-post .post-meta {
    font-size: 1.1428571429rem;
    line-height: 2.1428571429rem;
    letter-spacing: -0.0114285714rem;
  }
}
.blog-post .post-meta a {
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 0.4285714286rem;
}
.blog-post .post-meta .divider {
  padding: 0 0.5714285714rem;
}
.blog-post .post-meta time {
  font-style: italic;
}
.blog-post .blog-content {
  position: relative;
  padding-top: 86.5px;
  padding-bottom: 38.5px;
}
.blog-post .blog-content::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 0.2857142857rem;
  width: 70%;
  max-width: 19.6428571429rem;
  border: 0.0714285714rem solid #231f20;
  border-radius: 0.1428571429rem;
  transform: translateX(-50%);
  transition: width 500ms ease-out;
}
@media (min-width: 769px) {
  .blog-post .blog-content::after {
    width: 21.4285714286rem;
  }
}
.blog-post .blog-content[data-visible=true]::after {
  width: 90%;
}
@media (min-width: 768px) {
  .blog-post .blog-content[data-visible=true]::after {
    width: 28.5714285714rem;
  }
}
.has-dark-bg .blog-post .blog-content::after {
  border-color: #ffffff;
}
.blog-post .blog-content::after {
  max-width: 28.5714285714rem;
}
@media (min-width: 768px) {
  .blog-post .blog-content {
    padding-top: 99.3333333333px;
    padding-bottom: 51.3333333333px;
  }
}
@media (min-width: 1024px) {
  .blog-post .blog-content {
    padding-top: 125px;
    padding-bottom: 77px;
  }
}
.blog-post .blog-content .text-single-content p,
.blog-post .blog-content .text-single-content li {
  line-height: 1.5;
}
.blog-post .blog-content .is-style-interview-question {
  text-transform: uppercase;
}
.blog-post .blog-content .is-style-interview-answer + .is-style-interview-question {
  margin-top: 3.5714285714rem;
}
.blog-post .blog-content blockquote.is-style-large,
.blog-post .blog-content blockquote.is-style-large p,
.blog-post .blog-content blockquote.is-style-big-quote,
.blog-post .blog-content blockquote.is-style-big-quote p {
  padding: 0 !important;
  margin-top: 2.5rem;
  font-size: 1.7142857143rem;
  line-height: 2.2857142857rem;
  letter-spacing: 0;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .blog-post .blog-content blockquote.is-style-large,
  .blog-post .blog-content blockquote.is-style-large p,
  .blog-post .blog-content blockquote.is-style-big-quote,
  .blog-post .blog-content blockquote.is-style-big-quote p {
    margin-top: 4rem;
    font-size: 2.2857142857rem;
    line-height: 3rem;
  }
}
.blog-post .blog-content .blocks-gallery-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .blog-post .blog-content hr.wp-block-separator::after {
    max-width: 28.5714285714rem;
  }
}
.blog-post .blog-content .wp-block-coblocks-row:not(:first-child),
.blog-post .blog-content .wp-block-image:not(:first-child) {
  margin-top: 3.5714285714rem;
}
@media (min-width: 768px) {
  .blog-post .blog-content .wp-block-coblocks-row:not(:first-child),
  .blog-post .blog-content .wp-block-image:not(:first-child) {
    margin-top: 5rem;
  }
}
.blog-post a {
  text-underline-offset: 0.2857142857rem;
}
.blog-post .text-single-content figcaption {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 0 !important;
  padding: 0;
  text-transform: none;
  font-size: 1.1428571429rem;
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
}
.blog-post .text-single-content figcaption::before {
  content: none;
}
@media (min-width: 768px) {
  .blog-post .text-single-content figcaption {
    margin-top: 2.5rem;
  }
}
.blog-post .post-tags {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.8571428571rem;
  letter-spacing: -0.01rem;
  padding: 0;
  column-gap: 2.8571428571rem;
}
@media screen and (min-width: 1024px) {
  .blog-post .post-tags {
    font-size: 1.1428571429rem;
    line-height: 2.1428571429rem;
    letter-spacing: -0.0114285714rem;
  }
}
.blog-post .post-tags li {
  list-style: none;
  text-transform: uppercase;
}
.blog-post .post-tags li a {
  text-decoration: none;
}
.blog-post .post-navigation {
  padding-bottom: 0;
}
.blog-post .blog-page-grid {
  padding-bottom: 0;
}
.blog-post .blog-page-grid .h2 {
  margin-bottom: 2.1428571429rem;
}
.blog-post .blog-page-grid .post-grid {
  display: flex;
  flex-flow: row wrap;
  column-gap: 2.2857142857rem;
}
@media (max-width: 1023px) {
  .blog-post .blog-page-grid .post-item:nth-child(3) {
    display: none;
  }
}
@media (min-width: 640px) {
  .blog-post .blog-page-grid .post-item {
    width: calc((100% - 32px) / 2);
  }
}
@media (min-width: 768px) {
  .blog-post .blog-page-grid .h2 {
    margin-bottom: 3.5714285714rem;
  }
}
@media (min-width: 1024px) {
  .blog-post .blog-page-grid .post-item {
    width: calc((100% - 64px) / 3);
  }
}
.blog-post .post-paginate {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.blog-post .post-paginate a .arrow {
  position: relative;
  top: -0.1428571429rem;
  width: 1.3571428571rem;
  height: 1.1428571429rem;
  transition: transform 200ms ease;
}
.blog-post .post-paginate a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blog-post .post-paginate a.prev .arrow {
  margin-right: 0.6428571429rem;
}
.blog-post .post-paginate a.prev svg {
  transform: rotate(180deg) translateX(-2px);
}
.blog-post .post-paginate a.next .arrow {
  margin-left: 0.6428571429rem;
}
.blog-post .post-paginate a.next svg {
  transform: translateX(2px);
}
.blog-post .post-paginate a:hover.prev .arrow, .blog-post .post-paginate a:focus.prev .arrow {
  transform: translateX(-4px);
}
.blog-post .post-paginate a:hover.next .arrow, .blog-post .post-paginate a:focus.next .arrow {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .blog-post .post-paginate {
    justify-content: space-between;
  }
}
.blog-post .share-container {
  margin-top: 4.1428571429rem;
}
@media (min-width: 768px) {
  .blog-post .share-container {
    margin-bottom: 5.9285714286rem;
  }
}

.search-form {
  position: relative;
}
.search-form .input-wrap:only-of-type {
  margin: 0;
}
.search-form .input-wrap label {
  position: absolute;
  top: 1rem;
  font-style: italic;
}
.search-form .input-wrap label.has-value {
  opacity: 0;
  font-size: 1.1428571429rem;
}
.search-form .input-wrap input {
  min-height: 3.2142857143rem;
  height: 3.2142857143rem;
  margin: 0;
}
.search-form .search-submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  background: none;
  width: 1.2857142857rem;
  height: 3.2142857143rem;
  padding: 0;
}
.search-form .search-submit .icon {
  margin-top: 0.2857142857rem;
  width: 1.2857142857rem;
  height: 1rem;
}

.page-header-row {
  padding: 0 38.5px;
  text-align: center;
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .page-header-row {
    grid-column-gap: 32px;
    grid-row-gap: 0;
  }
}
@media (min-width: 768px) {
  .page-header-row .grid-col {
    grid-column: colcentered;
  }
}
@media (min-width: 768px) {
  .page-header-row {
    grid-template-columns: 1fr [colcentered-start] repeat(10, 1fr) [colcentered-end] 1fr;
    padding: 51.3333333333px 0;
  }
}
@media (min-width: 1024px) {
  .page-header-row {
    grid-template-columns: repeat(3, 1fr) [colcentered-start] repeat(6, 1fr) [colcentered-end] repeat(3, 1fr);
    padding: 77px 0;
  }
}

html.js .section-container:not(.m-hero) .container {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 500ms ease;
}
html.js .section-container:not(.m-hero)[data-visible=true] .container {
  opacity: 1;
  transform: translateY(0);
}
html.js .section-container.has-dark-bg + .has-dark-bg,
html.js .section-container.has-light-bg + .has-light-bg {
  opacity: 1;
  transform: translateY(0);
}
html.js .animated-item {
  opacity: 0;
  transform: translateY(16px);
  transition: all 400ms ease 300ms;
}
html.js .animated-item[data-visible=true] {
  opacity: 1;
  transform: translateY(0);
}
html.js .animated-item.staggered:nth-child(1) {
  transition-delay: 0ms;
}
html.js .animated-item.staggered:nth-child(2) {
  transition-delay: 150ms;
}
html.js .animated-item.staggered:nth-child(3) {
  transition-delay: 300ms;
}
html.js .animated-item.staggered:nth-child(4) {
  transition-delay: 450ms;
}
html.js .animated-item.staggered:nth-child(5) {
  transition-delay: 600ms;
}
html.js .animated-item.staggered:nth-child(6) {
  transition-delay: 750ms;
}
html.js .animated-item.staggered:nth-child(7) {
  transition-delay: 900ms;
}
html.js .animated-item.staggered:nth-child(8) {
  transition-delay: 1050ms;
}
html.js .animated-item.staggered:nth-child(9) {
  transition-delay: 1200ms;
}
html.js .animated-item.staggered:nth-child(10) {
  transition-delay: 1350ms;
}
html.js .animated-item.staggered:nth-child(11) {
  transition-delay: 1500ms;
}
html.js .animated-item.staggered:nth-child(12) {
  transition-delay: 1650ms;
}
html.js .animated-item.staggered:nth-child(13) {
  transition-delay: 1800ms;
}
html.js .animated-item.staggered:nth-child(14) {
  transition-delay: 1950ms;
}
html.js .animated-item.staggered:nth-child(15) {
  transition-delay: 2100ms;
}
html.js .animated-item.staggered:nth-child(16) {
  transition-delay: 2250ms;
}
html.js .animated-item.staggered:nth-child(17) {
  transition-delay: 2400ms;
}
html.js .animated-item.staggered:nth-child(18) {
  transition-delay: 2550ms;
}
html.js .animated-item.staggered:nth-child(19) {
  transition-delay: 2700ms;
}
html.js .animated-item.staggered:nth-child(20) {
  transition-delay: 2850ms;
}
html.js .animated-item.staggered:nth-child(21) {
  transition-delay: 3000ms;
}

body.template-error .content-wrapper {
  text-align: center;
}

.event-calendar-grid-container {
  overflow: hidden;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.calendar-location-links-container {
  background: #231f20;
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 1.1428571429rem;
  height: 14.2857142857rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .calendar-location-links-container {
    height: 8.5714285714rem;
  }
}
.calendar-location-links-container .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-location-links-container .locations-drop-down-container {
  width: 17.1428571429rem;
  background: #231f20;
  position: relative;
}
.calendar-location-links-container .locations-drop-down {
  padding: 1.1428571429rem 0.5714285714rem;
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
  position: relative;
}
.calendar-location-links-container .locations-drop-down svg {
  width: 1.1428571429rem;
  height: 1.1428571429rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5714285714rem;
  transition: all 0.24s;
}
.calendar-location-links-container .locations-drop-down.open svg {
  transform: translateY(-50%) rotate(180deg);
}
.calendar-location-links-container .link-list-container {
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #231f20;
  transition: all 0.4s;
}
.calendar-location-links-container .link-list {
  list-style: none;
  margin: 0;
  font-size: 1.1428571429rem;
  padding: 1rem 0;
  box-sizing: content-box;
}
.calendar-location-links-container .link-list li {
  height: 3rem;
  padding: 0;
  line-height: 3rem;
}
.calendar-location-links-container .link-list a {
  text-decoration: none;
  padding: 0.5714285714rem;
  transition: all 0.24s;
}
.calendar-location-links-container .link-list a:hover {
  color: #ffffff;
  opacity: 0.64;
}

#event-calendar-grid {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  gap: 2.2857142857rem;
  max-width: 1440px;
  margin: 0 auto;
}
#event-calendar-grid .event-calendar-container {
  grid-column: col-start 2/span 6;
  padding-top: 5.7142857143rem;
}
@media (max-width: 1440px) {
  #event-calendar-grid .event-calendar-container {
    grid-column: col-start 1/span 8;
  }
}
@media (max-width: 1024px) {
  #event-calendar-grid .event-calendar-container {
    grid-column: col-start 1/span 12;
  }
}
@media (max-width: 768px) {
  #event-calendar-grid .event-calendar-container {
    padding-top: 2.8571428571rem;
    padding-bottom: 2.8571428571rem;
  }
}
#event-calendar-grid .event-calendar-carousel-section {
  grid-column: col-start 9/span 4;
  padding-top: 28.5714285714rem;
  background-color: #f6f6f6;
  position: relative;
}
#event-calendar-grid .event-calendar-carousel-section:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 10000px;
  background: #f6f6f6;
}
@media (max-width: 1440px) {
  #event-calendar-grid .event-calendar-carousel-section {
    padding-top: 27.1428571429rem;
  }
}
@media (max-width: 1024px) {
  #event-calendar-grid .event-calendar-carousel-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    padding-top: 0;
    padding-bottom: 0;
    background: #231f20 url(/wp-content/themes/ace-hotel/assets/images/grey-jean-with-charcoal.jpeg) repeat;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
  }
  #event-calendar-grid .event-calendar-carousel-section .event-calendar-carousel-container {
    width: 720px;
    margin: 32px auto;
  }
}
@media (max-width: 768px) {
  #event-calendar-grid .event-calendar-carousel-section .event-calendar-carousel-container {
    width: 100%;
  }
}
#event-calendar-grid .event-calendar-day {
  min-height: 0;
  border: none;
}
#event-calendar-grid .event-calendar-day button[aria-controls] + .event-calendar-day-cell button {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 50%;
}
#event-calendar-grid .event-calendar-day:hover:after {
  background-color: #ffffff;
}
#event-calendar-grid .event-calendar-day-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100%;
}
#event-calendar-grid .event-calendar-day-cell .event-calendar-day-date {
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#event-calendar-grid .event-calendar-body {
  border: none;
}
#event-calendar-grid .event-calendar-week {
  border: none;
}
#event-calendar-grid .event-calendar-header {
  text-align: center;
  font-size: 1.7142857143rem;
  font-weight: bold;
}
#event-calendar-grid .event-calendar-thumb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  display: block;
  line-height: 0;
}
#event-calendar-grid .event-calendar-month-events {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#event-calendar-grid .event-calendar-event-container {
  position: static;
}
#event-calendar-grid .event-calendar-event-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
#event-calendar-grid .event-calendar-top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.8571428571rem;
}
#event-calendar-grid .event-calendar-top-bar li {
  padding: 0;
}
#event-calendar-grid .event-calendar-datepicker {
  flex: 0 1 auto;
}
#event-calendar-grid .event-calendar-datepicker-button {
  cursor: default;
  padding: 0 5.7142857143rem;
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 5rem;
  line-height: 5.9285714286rem;
  letter-spacing: -0.05rem;
}
@media (max-width: 1440px) {
  #event-calendar-grid .event-calendar-datepicker-button {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  #event-calendar-grid .event-calendar-datepicker-button {
    padding: 0 2.8571428571rem;
  }
}
#event-calendar-grid .event-calendar-carousel-container {
  position: relative;
}
#event-calendar-grid .event-calendar-carousel-container .carousel-buttons {
  position: absolute;
  top: 12.5714285714rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 1024px) {
  #event-calendar-grid .event-calendar-carousel-container .carousel-buttons {
    top: 50%;
    transform: translateY(-50%);
  }
}
#event-calendar-grid .js-event-carousel-slide {
  height: 680px;
  width: calc(100% - 64px);
  margin-left: 32px;
  display: none;
}
#event-calendar-grid .js-event-carousel-slide.flickity-enabled {
  display: block;
}
#event-calendar-grid .js-event-carousel-slide.flickity-enabled + .carousel-buttons {
  opacity: 1;
}
@media (max-width: 1024px) {
  #event-calendar-grid .js-event-carousel-slide {
    height: calc(100vh - 64px);
  }
}
#event-calendar-grid .event-slide {
  background: #f6f6f6;
  width: 100%;
  height: 100%;
}
#event-calendar-grid .event-slide.is-hidden {
  display: none;
}
#event-calendar-grid .event-slide .image-container {
  padding-top: 100%;
  position: relative;
}
#event-calendar-grid .event-slide .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#event-calendar-grid .event-slide .event {
  background: #f6f6f6;
}
#event-calendar-grid .event-slide .image-section {
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
  aspect-ratio: 1;
}
#event-calendar-grid .event-slide .image-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.45) 81%);
  z-index: 1;
}
#event-calendar-grid .event-slide .image-section::before {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 150%);
}
#event-calendar-grid .event-slide .info-section {
  flex-grow: 1;
  flex-basis: 0;
  padding: 1.1428571429rem 0;
}
@media (max-width: 1440px) {
  #event-calendar-grid .event-slide .info-section {
    padding: 2.2857142857rem;
  }
}
#event-calendar-grid .event-slide .info-section p {
  margin-bottom: 1.1428571429rem;
}
#event-calendar-grid .event-slide .event-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#event-calendar-grid .event-slide .date-box {
  background: #ffffff;
  position: absolute;
  top: 1.7142857143rem;
  left: 1.7142857143rem;
  text-align: center;
  padding: 1.1428571429rem;
  border-radius: 0.2857142857rem;
  z-index: 1;
}
#event-calendar-grid .event-slide .date {
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2.2857142857rem;
  line-height: 2.7142857143rem;
  letter-spacing: -0.0228571429rem;
}
#event-calendar-grid .event-slide .month {
  text-transform: uppercase;
  color: #1a1919;
}
#event-calendar-grid .event-slide .image-info {
  position: absolute;
  bottom: 1.7142857143rem;
  left: 1.7142857143rem;
  color: #ffffff;
  line-height: 1.4285714286rem;
  z-index: 1;
}
#event-calendar-grid .event-slide .location {
  font-weight: bolder;
}
#event-calendar-grid .event-slide h3 {
  font-size: 2.2857142857rem;
  line-height: 2.5714285714rem;
  letter-spacing: -0.0228571429rem;
  margin-bottom: 1.1428571429rem;
}
#event-calendar-grid .event-slide .event-read-more {
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0.5714285714rem;
  border-bottom: 1px solid #231f20;
  padding-bottom: 0.5714285714rem;
}
#event-calendar-grid .icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  pointer-events: auto;
}
@media (max-width: 1440px) {
  #event-calendar-grid .icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
#event-calendar-grid .calendar-prev,
#event-calendar-grid .calendar-prev-disabled,
#event-calendar-grid .calendar-next,
#event-calendar-grid .calendar-next-disabled {
  width: 19px;
  height: 16px;
}
#event-calendar-grid .calendar-prev,
#event-calendar-grid .calendar-prev-disabled {
  transform: scaleX(-1);
}
#event-calendar-grid .calendar-prev-disabled,
#event-calendar-grid .calendar-next-disabled {
  opacity: 0.24;
}
#event-calendar-grid .button.button-action, #event-calendar-grid .single-event-page .event-tickets .button-action.tribe-common-c-btn, .single-event-page .event-tickets #event-calendar-grid .button-action.tribe-common-c-btn {
  height: 40px;
  min-width: 40px;
}
@media (max-width: 767px) {
  #event-calendar-grid .tribe-events-calendar-month__day-date {
    height: 80%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  #event-calendar-grid .tribe-events-calendar-month__mobile-events-icon {
    display: none;
  }
  #event-calendar-grid .tribe-events-calendar-month__day-cell--mobile {
    justify-content: center;
  }
  #event-calendar-grid .tribe-events-calendar-month__day-date-daynum {
    font-size: 1.1428571429rem;
  }
  #event-calendar-grid .event-calendar-day-cell {
    display: flex !important;
    visibility: visible;
  }
  #event-calendar-grid .event-calendar-day-date {
    height: 80% !important;
    width: 80% !important;
  }
  #event-calendar-grid .event-calendar-day-cell button {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }
  #event-calendar-grid .event-calendar-thumb {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
  }
  #event-calendar-grid .tribe-events-c-top-bar__datepicker-desktop {
    font-size: 2.2857142857rem;
  }
  #event-calendar-grid .svg-icons--arrow-dims {
    height: 32px;
  }
}
#event-calendar-grid .tribe-events-c-top-bar__datepicker-mobile {
  display: none;
}
#event-calendar-grid .tribe-events-c-top-bar__datepicker-desktop {
  display: block !important;
  visibility: visible;
  line-height: 1.18;
}
#event-calendar-grid #event-modal-close {
  width: 1.1428571429rem;
  height: 1.1428571429rem;
  position: absolute;
  top: 0.7142857143rem;
  right: 0.7142857143rem;
  color: #ffffff;
}

#main-content .tribe-filter-bar-c-filter__container {
  background: #231f20 !important;
}
#main-content .tribe-common-form-control-checkbox__label {
  color: white;
}
#main-content .tribe-common-form-control-checkbox__input:checked {
  background: white;
}
#main-content .tribe-filter-bar-c-filter__filters-legend {
  color: white;
}
#main-content .tribe-filter-bar-c-filter__filters-close-icon path {
  stroke: white !important;
}
#main-content .tribe-events .tribe-events-calendar-month__calendar-event--featured:before,
#main-content .tribe-events-calendar-month__calendar-event-featured-image-wrapper {
  display: none;
}

@media only all and (max-width: 767px) {
  #main-content .tribe-events-c-view-selector__list {
    margin: 0 !important;
    top: -40px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  #main-content .tribe-filter-bar__filters-slider-container {
    width: calc(100% - 56px);
  }
  #main-content .tribe-filter-bar__filters {
    display: flex;
    width: calc(100% - 56px);
  }
  #main-content .tribe-filter-bar-c-filter {
    width: 50%;
    padding: 8px !important;
    padding-top: 104px !important;
  }
  #main-content .tribe-filter-bar-c-filter.tribe-filter-bar-c-filter--open {
    background: #231f20;
  }
  #main-content .tribe-filter-bar-c-filter .tribe-common-form-control-checkbox__label {
    color: white;
  }
  #main-content .tribe-filter-bar-c-filter .tribe-common-form-control-checkbox__input:checked {
    background: white;
  }
  #main-content .tribe-filter-bar__filters-slider-wrapper {
    display: flex;
  }
  #main-content .tribe-filter-bar__filters-slide {
    position: relative;
  }
  #main-content .tribe-filter-bar-c-pill {
    width: 100%;
    height: 76px;
    line-height: 76px;
    background: #231f20;
  }
  #main-content .tribe-filter-bar-c-pill__pill {
    width: 100%;
    height: 76px !important;
  }
  #main-content .tribe-filter-bar__selected-filters,
  #main-content .tribe-filter-bar-c-filter__toggle-wrapper,
  #main-content .tribe-filter-bar__actions {
    display: none !important;
  }
  #main-content .tribe-filter-bar .tribe-filter-bar__filters {
    border-bottom: none;
  }
  #main-content .tribe-filter-bar-c-pill__pill-selections {
    display: none;
  }
}
.tribe-events-view--list {
  background: #ffffff !important;
  z-index: 1;
  position: relative;
}

.tribe-events-page-template {
  overflow-x: hidden;
}

#event-list-container {
  max-width: 1440px;
  padding-bottom: 5.7142857143rem;
  min-height: 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  #event-list-container {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
  #event-list-container .tribe-events-header {
    width: 100%;
    margin: 0;
  }
  #event-list-container .padding-box {
    padding-right: 2.2857142857rem;
  }
  #event-list-container .event-list-image-wrapper {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  #event-list-container .event-list-content-wrapper {
    display: flex;
  }
  #event-list-container .event-list-image-wrapper {
    position: relative;
  }
  #event-list-container .image-info {
    padding-left: 0.5714285714rem;
  }
}
#event-list-container .tribe-events-calendar-list__event-description {
  display: block !important;
  visibility: visible;
  margin-top: 1.1428571429rem;
}
#event-list-container .event-list-grid {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  gap: 2.2857142857rem;
}
#event-list-container .event-list-grid .calendar-list-item {
  grid-column: span 6;
  background: #f6f6f6;
  margin: 0;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #event-list-container .event-list-grid .calendar-list-item {
    grid-column: span 12;
  }
}
#event-list-container .date-box {
  background: #ffffff;
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 1.1428571429rem;
  min-width: 0;
  border-radius: 0.2857142857rem;
  z-index: 2;
}
#event-list-container .date-info {
  padding: 0;
}
#event-list-container .event-list-content-wrapper {
  flex-direction: row;
}
#event-list-container .event-list-image-wrapper {
  position: relative;
  padding: 0;
  flex-grow: 1;
  flex-basis: 0;
}
#event-list-container .event-list-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.45) 81%);
  z-index: 1;
}
#event-list-container .event-list-image-wrapper::before {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 150%);
}
#event-list-container .event-list-wrapper {
  display: flex;
}
#event-list-container .event-list-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#event-list-container .event-list-details {
  flex-grow: 1;
  flex-basis: 0;
  padding: 0;
  font-size: 1.1428571429rem;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
}
#event-list-container .event-list-details p {
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  font-size: 1.1428571429rem;
}
#event-list-container .padding-box {
  padding: 2.2857142857rem;
}
#event-list-container .image-info {
  position: absolute;
  bottom: 1.7142857143rem;
  left: 1.7142857143rem;
  color: #ffffff;
  font-size: 1.1428571429rem;
  line-height: 1.4285714286rem;
  z-index: 1;
}
#event-list-container .image-info .location {
  font-weight: bolder;
}
#event-list-container .date-number {
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2.2857142857rem;
  line-height: 2.7142857143rem;
  letter-spacing: -0.0228571429rem;
  font-weight: 400;
}
#event-list-container .month {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.0714285714rem;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
}
#event-list-container .event-list-title {
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 2.2857142857rem;
  line-height: 2.5714285714rem;
  letter-spacing: -0.0228571429rem;
}
#event-list-container .event-list-cost {
  font-size: 1.1428571429rem;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
}
#event-list-container .event-list-read-more {
  text-transform: uppercase;
  margin-top: 2.8571428571rem;
  font-size: 1rem;
  padding-bottom: 0.5714285714rem;
  display: inline-block;
  border-bottom: 1px solid #231f20;
}
#event-list-container .event {
  height: 100%;
  overflow-y: auto;
}

.table-condensed {
  display: table;
  border-spacing: 0;
  border-collapse: collapse;
}
.table-condensed thead,
.table-condensed tbody {
  width: calc(100% - 1px);
  text-align: center;
}
.table-condensed th,
.table-condensed td {
  display: table-cell;
  padding: unset;
}
.table-condensed td {
  height: 3.5714285714rem;
  width: 3.5714285714rem;
}
.table-condensed td.today-cell {
  border: 1px solid #231f20 !important;
}
@media (min-width: 768px) {
  .table-condensed td {
    height: 3.9285714286rem;
    width: 3.9285714286rem;
  }
}
.table-condensed tr th,
.table-condensed tr td {
  border: none !important;
}

.tribe-events .datepicker .day.active,
.tribe-events .datepicker .day.active.focused,
.tribe-events .datepicker .day.active:focus,
.tribe-events .datepicker .day.active:hover,
.tribe-events .datepicker .month.active,
.tribe-events .datepicker .month.active.focused,
.tribe-events .datepicker .month.active:focus,
.tribe-events .datepicker .month.active:hover,
.tribe-events .datepicker .year.active,
.tribe-events .datepicker .year.active.focused,
.tribe-events .datepicker .year.active:focus,
.tribe-events .datepicker .year.active:hover {
  background: #231f20 !important;
  color: #ffffff;
}

.tribe-common .tribe-common-c-loader__dot circle {
  fill: #231f20 !important;
}

.tribe-events .tribe-events-c-view-selector__button:before {
  background-color: #231f20 !important;
}

#main-content .tribe-filter-bar-c-clear-button {
  display: none;
}
#main-content .tribe-events-c-view-selector__list {
  display: flex;
  margin-left: 5.7142857143rem;
}
#main-content .tribe-filter-bar {
  background: #231f20;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#main-content .tribe-filter-bar .tribe-common-c-svgicon__svg-fill {
  fill: #ffffff;
}
#main-content .tribe-events-header {
  position: static;
  padding-top: 200px;
}
#main-content .tribe-filter-bar-c-pill__pill {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1428571429rem;
  font-weight: 400;
  font-family: "Bianco Sans", Helvetica, Arial, sans-serif;
  height: 2.8571428571rem;
  display: flex;
  align-items: center;
  background-image: url("/wp-content/themes/ace-hotel/assets/images/dropdown-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  border-radius: 0;
  padding-right: 1.7142857143rem;
  margin-right: 1.7142857143rem;
}
#main-content .tribe-filter-bar .tribe-filter-bar-c-pill__remove-button-icon path {
  stroke: #ffffff;
  display: none;
}
#main-content .tribe-events-c-view-selector__list-item-text {
  color: #ffffff;
}
#main-content .tribe-events-c-view-selector__list-item:hover {
  background: #231f20;
}
#main-content .tribe-events-c-view-selector__list-item--active {
  background: #ffffff;
}
#main-content .tribe-events-c-view-selector__list-item--active .tribe-events-c-view-selector__list-item-text {
  color: #231f20;
}
#main-content .tribe-events-c-view-selector__list-item--active path {
  stroke: #231f20;
}
#main-content .tribe-events-c-view-selector__list-item--active:hover {
  background: #ffffff;
}
#main-content .select2-selection {
  border-radius: 0;
}

@media (max-width: 767px) {
  .tribe-filter-bar__form {
    width: 100%;
  }
  .tribe-filter-bar__filters {
    position: absolute;
  }
  .tribe-filter-bar .tribe-filter-bar-c-filter__container {
    display: none;
  }
  div.tribe-filter-bar .tribe-swiper-slide {
    width: 50%;
  }
  .tribe-filter-bar__filters-slide tribe-swiper-slide,
  div.tribe-filter-bar .tribe-filter-bar__filters-slider-container {
    display: block;
    visibility: visible;
    position: absolute;
    z-index: 2;
  }
  #main-content .tribe-events-c-view-selector__list {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 12px;
  }
  div.tribe-filter-bar__filters-slider-wrapper tribe-swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: static;
  }
}
.single-room .alert-bar-visible ~ main section:first-of-type {
  padding-top: 130px;
}
@media (min-width: 768px) {
  .single-room .alert-bar-visible ~ main section:first-of-type {
    padding-top: 148px;
  }
}
@media (min-width: 1024px) {
  .single-room .alert-bar-visible ~ main section:first-of-type {
    padding-top: 189px;
  }
}
.single-room section:first-of-type {
  padding-top: 86px;
}
@media (min-width: 768px) {
  .single-room section:first-of-type {
    padding-top: 104px;
  }
}
@media (min-width: 1024px) {
  .single-room section:first-of-type {
    padding-top: 145px;
  }
}

#main-content #tribe-events-pg-template {
  max-width: none;
  padding: 0;
}

.single-event-page .page-top {
  background: url("/wp-content/themes/ace-hotel/assets/images/grey-jean.png");
  padding: 11.4285714286rem 0 2.8571428571rem;
}
@media (max-width: 768px) {
  .single-event-page .page-top {
    padding-top: 6.8571428571rem;
  }
}
.single-event-page .page-top .container {
  display: flex;
  justify-content: flex-end;
}
.single-event-page .page-top .back-to-events {
  display: flex;
  padding: 0 0 0.5714285714rem;
  text-transform: uppercase;
}
.single-event-page .page-top .back-to-events .arrow {
  position: relative;
  margin-left: 0;
  margin-right: 0.7142857143rem;
  display: block;
  width: 1.3571428571rem;
  height: 1.1428571429rem;
  transform: scaleX(-1);
  transition: transform 250ms ease;
}
.single-event-page .page-top .back-to-events .arrow svg {
  width: 100%;
  height: 100%;
}
.single-event-page .page-top .back-to-events:hover .arrow, .single-event-page .page-top .back-to-events:focus .arrow {
  transform: scaleX(-1) translateX(5px);
}
.single-event-page .event-grid {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  gap: 2.2857142857rem;
  margin-top: -4rem;
}
@media (max-width: 1360px) {
  .single-event-page .event-grid {
    margin-top: -1.7142857143rem;
  }
}
.single-event-page .event-grid .image {
  display: flex;
  justify-content: right;
  align-items: center;
  grid-column: col-start/span 6;
}
@media (max-width: 1024px) {
  .single-event-page .event-grid .image {
    grid-column: col-start 2/span 10;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .single-event-page .event-grid .image {
    grid-column: col-start 1/span 12;
  }
}
.single-event-page .event-grid .image img {
  max-width: 65%;
}
.single-event-page .event-grid .info {
  grid-column: col-start 7/span 4;
  padding-top: 6.2857142857rem;
}
@media (max-width: 1440px) {
  .single-event-page .event-grid .info {
    grid-row: 1/2;
    padding-top: 0;
  }
}
@media (max-width: 1024px) {
  .single-event-page .event-grid .info {
    grid-column: col-start 2/span 10;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .single-event-page .event-grid .info {
    grid-column: col-start 1/span 12;
  }
  .single-event-page .event-grid .info h1 {
    font-size: 2.8571428571rem;
    line-height: 1.2;
  }
}
.single-event-page .event-grid .copy {
  grid-column: col-start 3/span 8;
}
@media (max-width: 1024px) {
  .single-event-page .event-grid .copy {
    grid-column: col-start 2/span 10;
  }
}
@media (max-width: 768px) {
  .single-event-page .event-grid .copy {
    grid-column: col-start 1/span 12;
  }
}
.single-event-page .event-grid .copy p,
.single-event-page .event-grid .copy div {
  font-size: 1.1428571429rem;
  line-height: 1.5;
}
.single-event-page .event-grid .share-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  grid-column: col-start 1/span 12;
  margin: 2.8571428571rem 0 5.3571428571rem;
}
@media (max-width: 768px) {
  .single-event-page .event-grid .share-container {
    margin-bottom: 2.8571428571rem;
  }
}
.single-event-page .event-grid .share-container .share-text {
  flex: 100%;
  margin-bottom: 0.7142857143rem;
  text-transform: uppercase;
  text-align: center;
}
.single-event-page .event-grid .share-container .social-share {
  display: flex;
  align-items: center;
}
.single-event-page .event-grid .share-container .social-share a {
  display: block;
  width: 1.7142857143rem;
  height: 1.7142857143rem;
  margin-left: 1.7142857143rem;
}
.single-event-page .event-grid .share-container .social-share a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-event-page .event-grid .share-container .social-share a.icon-email {
  width: 1.8571428571rem;
}
.single-event-page h1 {
  font-size: 5rem;
  line-height: 5.9285714286rem;
  letter-spacing: -0.05rem;
  margin-bottom: 1.7142857143rem;
}
.single-event-page ul {
  padding: 0;
  list-style: none;
  font-size: 1.1428571429rem;
  margin-bottom: 1.7142857143rem;
}
.single-event-page ul li {
  padding-bottom: 0.8571428571rem;
}
.single-event-page ul li.venue-address {
  margin-top: -0.7142857143rem;
}
.single-event-page .buttons {
  display: flex;
}
.single-event-page .buttons .button, .single-event-page .buttons .event-tickets .tribe-common-c-btn, .single-event-page .event-tickets .buttons .tribe-common-c-btn {
  position: relative;
  margin-left: 1.1428571429rem;
}
.single-event-page .buttons .button:first-child, .single-event-page .buttons .event-tickets .tribe-common-c-btn:first-child, .single-event-page .event-tickets .buttons .tribe-common-c-btn:first-child {
  margin-left: 0;
}
@media (max-width: 1024px) {
  .single-event-page .buttons {
    justify-content: center;
  }
}
.single-event-page .other-events-container {
  padding: 4rem 0;
}
.single-event-page .other-events-container.other-events-container-dark {
  background: #231f20;
}
.single-event-page .other-events-container.other-events-container-dark h2 {
  color: #f6f6f6;
}
.single-event-page .other-events-container.other-events-container-dark .no-events {
  color: #f6f6f6;
}
.single-event-page .other-events-container h2 {
  font-size: 5rem;
  line-height: 5.9285714286rem;
  letter-spacing: -0.05rem;
  color: #231f20;
  margin-bottom: 2.8571428571rem;
}
@media (max-width: 768px) {
  .single-event-page .other-events-container h2 {
    font-size: 2.2857142857rem;
    line-height: 1.1857142857;
  }
}
.single-event-page .other-events-container .other-events-grid {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  gap: 2.2857142857rem;
}
.single-event-page .other-events-container .other-events-grid .event {
  grid-column: span 6;
  background: #f6f6f6;
  display: flex;
}
@media (max-width: 1360px) {
  .single-event-page .other-events-container .other-events-grid .event {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .single-event-page .other-events-container .other-events-grid .event {
    flex-direction: column;
  }
}
.single-event-page .other-events-container .other-events-grid .image-section {
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
}
.single-event-page .other-events-container .other-events-grid .image-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.45) 81%);
  z-index: 1;
}
.single-event-page .other-events-container .other-events-grid .image-section::before {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 150%);
}
.single-event-page .other-events-container .other-events-grid .info-section {
  flex-grow: 1;
  flex-basis: 0;
  padding: 2.2857142857rem;
}
.single-event-page .other-events-container .other-events-grid .event-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-event-page .other-events-container .other-events-grid .date-box {
  background: #ffffff;
  position: absolute;
  top: 1.7142857143rem;
  left: 1.7142857143rem;
  text-align: center;
  padding: 1.1428571429rem;
  border-radius: 0.2857142857rem;
  z-index: 1;
}
.single-event-page .other-events-container .other-events-grid .date {
  font-family: "Toronto Gothic", Helvetica, Arial, sans-serif;
  font-size: 2.2857142857rem;
  line-height: 2.7142857143rem;
  letter-spacing: -0.0228571429rem;
}
.single-event-page .other-events-container .other-events-grid .month {
  text-transform: uppercase;
  color: #1a1919;
}
.single-event-page .other-events-container .other-events-grid .image-info {
  position: absolute;
  bottom: 1.7142857143rem;
  left: 1.7142857143rem;
  color: #ffffff;
  line-height: 1.4285714286rem;
  z-index: 1;
}
.single-event-page .other-events-container .other-events-grid .location {
  font-weight: bolder;
}
.single-event-page .other-events-container .other-events-grid h3 {
  font-size: 2.2857142857rem;
  line-height: 2.5714285714rem;
  letter-spacing: -0.0228571429rem;
  margin-bottom: 1.1428571429rem;
}
.single-event-page .other-events-container .other-events-grid .event-read-more {
  text-transform: uppercase;
  display: inline-block;
  margin-top: 1.7142857143rem;
  border-bottom: 1px solid #231f20;
  padding-bottom: 0.5714285714rem;
}
.single-event-page .other-events-container .no-events {
  font-size: 1.7142857143rem;
  grid-column: span 12;
}
.single-event-page__buttons {
  position: relative;
}
.single-event-page .event-tickets {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  z-index: 99;
}
.single-event-page .event-tickets .tribe-common-c-btn {
  font-weight: 400;
}
.single-event-page .event-tickets--show {
  max-height: 600px;
  text-align: left;
}
@media all and (max-width: 476px) {
  .single-event-page .event-tickets--show {
    max-height: 100%;
  }
}
.single-event-page .event-tickets .tribe-tickets__rsvp-message {
  background-color: white;
}
.single-event-page .event-tickets .tribe-tickets__rsvp-actions-success-going-check-icon {
  background-color: #231f20;
}
@media (min-width: 1441px) {
  .single-event-page .event-tickets {
    position: absolute;
    left: -9999999px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    width: 580px;
  }
  .single-event-page .event-tickets--show {
    left: 75px;
    top: 33px;
    transform: translateX(-50%);
    opacity: 1;
    max-height: none;
  }
  .single-event-page .event-tickets .tribe-tickets__rsvp-wrapper {
    box-shadow: 0 2px 21px 0 rgba(0, 0, 0, 0.17);
    overflow: visible;
  }
  .single-event-page .event-tickets .tribe-tickets__rsvp-wrapper:after {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: -5px;
    left: 50%;
    background: white;
    transform: rotate(45deg) translateX(-50%);
    overflow: show;
    border-top: 1px solid var(--tec-color-border-secondary);
    border-left: 1px solid var(--tec-color-border-secondary);
  }
}
.single-event-page__cal-export {
  margin-top: 1.8571428571rem;
}
.single-event-page div.tribe-events-cal-links {
  display: flex;
  flex-flow: row wrap;
  column-gap: 1.2857142857rem;
  row-gap: 0.7142857143rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .single-event-page div.tribe-events-cal-links {
    justify-content: center;
  }
}
.single-event-page a.tribe-events-gcal, .single-event-page a.tribe-events-ical, .single-event-page a.tribe-events-ics {
  color: #231f20;
}
.single-event-page a.tribe-events-gcal:hover, .single-event-page a.tribe-events-gcal:focus, .single-event-page a.tribe-events-ical:hover, .single-event-page a.tribe-events-ical:focus, .single-event-page a.tribe-events-ics:hover, .single-event-page a.tribe-events-ics:focus {
  color: #231f20;
}
.single-event-page a.tribe-events-gcal {
  margin-right: 0;
}
.single-event-page__rsvp-note {
  margin-top: 1.1428571429rem;
}
/*# sourceMappingURL=app.css.map */
