@charset "UTF-8";
@keyframes backgroundColorShift {
  0% {
    background-color: #d0e0eb;
  } /* Blue */
  25% {
    background-color: #f6ebd7;
  }
  50% {
    background-color: #dbe2d7;
  } /* Green */
  75% {
    background-color: #e6d0d6;
  } /* Dark Red */
  100% {
    background-color: #d0e0eb;
  } /* Back to Blue */
}
/* VALIDATION */
.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  line-height: 18px;
  cursor: pointer;
  z-index: 5000;
}

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

.formError .formErrorContent {
  background: #b31919;
  position: relative;
  z-index: 5001;
  color: #fff;
  width: 150px;
  font-size: 11px;
  text-align: left;
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

.ui-datepicker {
  display: none;
  padding: 10px;
  background: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-radius: 8px;
}
body > .ui-datepicker {
  z-index: 30;
}
.ui-datepicker:after {
  display: block;
  content: "";
  height: 0;
  overflow: hidden;
  clear: both;
}
@media only screen and (min-width: 768px) {
  .ui-datepicker {
    padding: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .ui-datepicker {
    width: calc(100% - 36px);
    padding: 12px;
  }
}

.ui-datepicker-header {
  position: relative;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: #006BB6;
}

.ui-datepicker-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ui-datepicker-title .ui-datepicker-month,
.ui-datepicker-title .ui-datepicker-year {
  font-family: "Lexend Exa", "sans-serif";
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.ui-datepicker-prev, .ui-datepicker-next {
  position: absolute;
  top: 0;
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 20;
}
.ui-datepicker-prev:after, .ui-datepicker-next:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  transition: border-color 350ms ease-in-out;
}
.ui-datepicker-prev.ui-state-disabled, .ui-datepicker-next.ui-state-disabled {
  opacity: 0.3;
}

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

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

.ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 252px;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-calendar {
    width: 100%;
  }
}
.ui-datepicker-calendar thead {
  border-bottom: 1px solid #006BB6;
  margin-bottom: 8px;
}
.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  line-height: 40px;
  width: 48px;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.ui-datepicker-calendar th {
  font-size: 12px;
  font-weight: 600;
  color: #910028;
  text-transform: uppercase;
}
.ui-datepicker-calendar th span {
  font-family: "Montserrat", "sans-serif";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.12px;
  color: #000;
}
.ui-datepicker-calendar td {
  font-size: 12px;
  color: #000;
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  color: #a9a9a9;
}
.ui-datepicker-calendar td.ui-datepicker-other-month span, .ui-datepicker-calendar td.ui-state-disabled span {
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
.ui-datepicker-calendar td.ui-datepicker-other-month span:hover, .ui-datepicker-calendar td.ui-state-disabled span:hover {
  color: inherit;
  background: none;
}
.ui-datepicker-calendar tbody tr:first-child td {
  padding-top: 8px;
}
.ui-datepicker-calendar a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.ui-datepicker-calendar .ui-datepicker-highlight a, .ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-state-default:hover {
  background: #006BB6;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.ui-datepicker-calendar .ui-datepicker-today a {
  background: #FCB131;
  color: #fff;
}

.ui-datepicker-trigger {
  float: left;
  margin: 10px 0 0 8px;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") -200px -76px no-repeat;
}
.ui-datepicker-trigger:hover {
  background-position: -240px -76px;
}

.ui-selectmenu-button {
  position: relative;
  display: block;
  width: auto !important;
  height: 40px;
  line-height: 40px;
  border: thin solid #d1d1d1;
  font-size: 14px;
  text-align: left;
  color: #53565a;
  background: #fff;
  transition: all 0.2s;
}
.ui-selectmenu-button::-moz-placeholder {
  color: #292C2D;
}
.ui-selectmenu-button::placeholder {
  color: #292C2D;
}
.ui-selectmenu-button .ui-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #292C2D;
}
.ui-selectmenu-button:hover .ui-icon {
  border-top-color: #54baba;
}
.ui-selectmenu-button .ui-selectmenu-text {
  display: block;
  height: 100%;
  padding: 0 30px 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-selectmenu-button .ui-selectmenu-text strong {
  font-weight: 700;
}

.ui-selectmenu-menu {
  position: absolute;
  z-index: 9999999;
  display: none;
  max-height: 258px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.ui-selectmenu-menu.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-menu li .ui-menu-item-wrapper {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  color: #000;
}
.ui-selectmenu-menu li .ui-state-active {
  background: #eee;
  cursor: pointer;
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
}

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

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

html.mobile-device.app-smart-banner-visible #header,
html.tablet.app-smart-banner-visible #header {
  top: 84px;
}
html.mobile-device.app-smart-banner-visible #header + #photos,
html.tablet.app-smart-banner-visible #header + #photos {
  margin-top: 154px;
}
html.mobile-device.app-smart-banner-visible #mobile-navigation,
html.tablet.app-smart-banner-visible #mobile-navigation {
  top: 80px;
}

#app-smart-banner {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}
#app-smart-banner.hidden {
  display: none;
}
#app-smart-banner .wrapper {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
#app-smart-banner .wrapper .close {
  flex-grow: 1;
  /* Styling for the close button */
  /* Creating the X with before and after pseudo-elements */
}
#app-smart-banner .wrapper .close .close-button {
  display: inline-block;
  position: relative;
  padding: 10px;
  color: #888;
  /* Gray color */
  text-decoration: none;
  text-indent: -999px;
  padding-inline: 12px 0px;
  flex-grow: 0.3;
}
#app-smart-banner .wrapper .close .close-button::before,
#app-smart-banner .wrapper .close .close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}
#app-smart-banner .wrapper .close .close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#app-smart-banner .wrapper .image {
  flex-grow: 2;
}
#app-smart-banner .wrapper .image img {
  width: 56px;
  height: 56px;
}
#app-smart-banner .wrapper .middle {
  flex-grow: 2;
}
#app-smart-banner .wrapper .middle .app-name {
  color: #070707;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 25px;
}
#app-smart-banner .wrapper .middle p {
  color: #848484;
  font-size: 13px;
  letter-spacing: 0.13px;
  line-height: 13px;
}
#app-smart-banner .wrapper .button-wrapper {
  flex-grow: 0.2;
}
#app-smart-banner .wrapper .button-wrapper .button {
  background: #006ab6;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15px;
  line-height: 10px;
  padding: 12px 17px;
  border: none;
}

#header .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  padding: 0;
  min-width: 180px;
  box-sizing: initial;
  min-height: 100px;
  text-align: left;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
#header .submenu li:first-child a {
  padding-top: 18px;
}
#header .submenu li:last-child a {
  padding-bottom: 18px;
}
#header .submenu li:hover > .sub-submenu,
#header .submenu li.expanded > .sub-submenu {
  display: block;
  opacity: 1;
}
#header .submenu a {
  display: block;
  padding: 5px 20px;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  color: #fff;
}
#header .submenu a:hover, #header .submenu a.active {
  color: #fff;
  text-decoration: underline;
  text-decoration-line: #fff;
  text-underline-offset: 6px;
}
#header .submenu a:hover .thumbnail-wrapper, #header .submenu a.active .thumbnail-wrapper {
  opacity: 1;
  display: block;
}
#header .submenu a .thumbnail-wrapper {
  display: none;
  position: absolute;
  top: 0;
  right: -200px;
  width: 200px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 350ms ease-in-out;
  z-index: 2;
}
#header .submenu a .thumbnail-wrapper:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 6px solid transparent;
  border-top-color: #006BB6;
  border-bottom-color: #FCB131;
  border-left-color: #910028;
  border-right-color: #518439;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#header .submenu a .thumbnail-wrapper:before {
  margin: -18px 0 0 -18px;
}
#header .submenu a .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: opacity 350ms ease-in-out;
}
#header li:hover .menu.submenu,
#header .expanded .menu.submenu {
  display: block;
}
#header li:last-child .submenu,
#header li:nth-last-child(2) > .submenu,
#header li:nth-last-child(3) > .submenu,
#header li:nth-last-child(4) > .submenu {
  left: auto;
  right: 0;
  text-align: right;
}
#header li:last-child .submenu a .thumbnail-wrapper,
#header li:nth-last-child(2) > .submenu a .thumbnail-wrapper,
#header li:nth-last-child(3) > .submenu a .thumbnail-wrapper,
#header li:nth-last-child(4) > .submenu a .thumbnail-wrapper {
  right: auto;
  left: -200px;
}
#header li:last-child .submenu .sub-submenu,
#header li:nth-last-child(2) > .submenu .sub-submenu,
#header li:nth-last-child(3) > .submenu .sub-submenu,
#header li:nth-last-child(4) > .submenu .sub-submenu {
  right: auto;
  left: -200px;
  text-align: right;
}
#header .sub-submenu {
  display: none;
  position: absolute;
  right: -200px;
  top: 0;
  padding: 13px 20px;
  min-width: 200px;
  width: 200px;
  box-sizing: initial;
  min-height: 100%;
  text-align: left;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: 350ms ease-in-out;
}
#header .sub-submenu:hover {
  background: black;
}
#header .sub-submenu.visible {
  opacity: 1;
  display: block;
}
#header .sub-submenu a {
  font-size: 12px;
  background: none;
  padding: 5px 0 !important;
  white-space: normal;
}

#booking-datepicker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transition: opacity 200ms ease, z-index 200ms ease, top 350ms ease-in-out, max-height 350ms ease-in-out;
  display: none;
  max-height: 0;
  z-index: 5;
  top: 88px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#booking-datepicker.visible {
  display: block;
  max-height: 100%;
  max-width: 400px;
}

#content {
  position: relative;
  z-index: 10;
}
#content:after {
  clear: both;
  content: "";
  display: table;
}
.home #content {
  padding: 0 !important;
}
#content:focus {
  outline: none;
}
#content .center-column + .additional-content {
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  #content .center-column + .additional-content {
    margin: 56px auto;
  }
}
#content.acm-present .page-content.content-present {
  margin-bottom: 0;
}

#main-content {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  #main-content {
    display: block;
    overflow: hidden;
  }
}
#main-content #side-submenu {
  flex-shrink: 0;
}
#main-content > .page-content {
  width: 100%;
}
.home #main-content {
  display: none;
}
#main-content .page-content:not(.content-present) h1, #main-content .page-content:not(.content-present) h2 {
  display: none;
}
#main-content .page-content h1, #main-content .page-content h2 {
  text-align: center;
}

#content-submenu ul {
  margin: 0;
}
#content-submenu ul ul {
  display: none;
}
#content-submenu li {
  margin: 0;
}

#mobile-trigger {
  display: none;
  background: #fafcfc;
  padding: 20px 36px 20px 20px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  width: 100%;
  border: thin solid #d1d1d1;
  text-align: left;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  #mobile-trigger {
    display: block;
  }
}
#mobile-trigger:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(-45deg) translateY(-50%);
  margin-top: -4px;
  pointer-events: none;
}
#mobile-trigger:hover {
  color: #006BB6;
}

#side-submenu {
  width: 340px;
  margin-right: 40px;
}
@media only screen and (max-width: 1023px) {
  #side-submenu {
    width: 100%;
    margin-right: 0;
    border: thin solid #d1d1d1;
    border-top: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    padding: 20px;
  }
  #side-submenu.visible {
    position: static;
    top: auto;
    left: auto;
    opacity: 1;
    transition: opacity 350ms ease-in-out;
  }
}
#side-submenu .submenu-root {
  display: block;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}
#side-submenu .submenu-root:hover {
  color: #006BB6;
}
#side-submenu ul {
  margin: 20px 0 0 20px;
}
@media only screen and (max-width: 1023px) {
  #side-submenu ul {
    margin: 10px 0 0 0;
  }
}
#side-submenu ul ul {
  margin: 10px;
}
#side-submenu a {
  font-size: 16px;
  line-height: 2;
  text-decoration: none;
  color: #282828;
  text-transform: uppercase;
}
#side-submenu a.active, #side-submenu a:hover {
  color: #006BB6;
}
#side-submenu a.active {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  html.mobile-navigation-visible {
    overflow: hidden;
  }
}
#mobile-navigation {
  position: fixed;
  right: -100%;
  top: 0;
  padding-top: 100px;
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #F6F5F3;
  transition: right 200ms;
  text-align: center;
  z-index: 60;
}
@media only screen and (max-width: 1400px) {
  #mobile-navigation {
    display: block;
  }
  #mobile-navigation .top-menu-list {
    display: none;
  }
}
.home.desktop #mobile-navigation {
  padding-top: 200px;
}
.mobile-navigation-visible #mobile-navigation {
  right: 0;
}
#mobile-navigation .top-wrapper .left-right-wrapper {
  margin-top: 24px;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top .p-small-2 {
  color: #000;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.left-side .morongo img,
#mobile-navigation .top-wrapper .left-right-wrapper .top.left-side .casino img {
  height: 36px;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.left-side .blue-bar {
  display: none;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side {
  margin-top: 20px;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .right-side-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .right-side-icons.weather,
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .right-side-icons.gas-prices,
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .weather-forcast,
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .fuel-prices {
  display: none;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .sign-in .p-small-2 {
  font: 600 17px/1.2 "Open Sans", "Arial", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .sign-in .p-small-2:hover {
  color: #000;
  text-decoration: underline;
  text-decoration-line: #000;
  text-underline-offset: 6px;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .morongo-app .button.skinny-button {
  font: 600 17px/1.2 "Open Sans", "Arial", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  background: none;
  padding: 0;
  overflow: initial;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .morongo-app .button.skinny-button:before {
  content: none;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side .morongo-app .button.skinny-button:hover {
  color: #000;
  text-decoration: underline;
  text-decoration-line: #000;
  text-underline-offset: 6px;
}
#mobile-navigation .top-wrapper .left-right-wrapper .top.right-side svg {
  color: #910028;
}
#mobile-navigation .main-menu {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  #mobile-navigation .main-menu {
    max-width: 90%;
  }
}
#mobile-navigation .main-menu .menu li {
  position: relative;
}
#mobile-navigation .main-menu .menu a {
  display: block;
  padding: 10px 40px;
}
#mobile-navigation .main-menu .menu.level-1 {
  padding-top: 10px;
}
#mobile-navigation .main-menu .menu.level-1 > li > a {
  font: 600 17px/1.2 "Open Sans", "Arial", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
}
#mobile-navigation .main-menu .menu.level-1 > li > a:hover, #mobile-navigation .main-menu .menu.level-1 > li > a.active {
  color: #000;
  text-decoration: underline;
  text-decoration-line: #000;
  text-underline-offset: 6px;
}
#mobile-navigation .main-menu .menu.level-1 > li > a.casino-button {
  width: 240px;
  overflow: hidden;
  transition: opacity 200ms ease;
  margin: 0 auto;
}
#mobile-navigation .main-menu .menu.level-1 > li > a.casino-button span {
  display: none;
}
#mobile-navigation .main-menu .menu.level-1 > li > a.casino-button img {
  width: 100%;
  height: auto;
}
#mobile-navigation .main-menu .menu.level-1 > li > a.casino-button:hover {
  opacity: 0.8;
}
#mobile-navigation .main-menu .menu.level-1 > li > .plus {
  top: 4px;
}
#mobile-navigation .main-menu .menu.submenu,
#mobile-navigation .main-menu .menu.sub-submenu {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 222ms cubic-bezier(0, 1, 0, 1), padding 333ms;
}
#mobile-navigation .main-menu .menu.submenu a,
#mobile-navigation .main-menu .menu.sub-submenu a {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  padding-top: 6px;
  padding-bottom: 6px;
}
#mobile-navigation .main-menu .menu.submenu a:hover, #mobile-navigation .main-menu .menu.submenu a.active,
#mobile-navigation .main-menu .menu.sub-submenu a:hover,
#mobile-navigation .main-menu .menu.sub-submenu a.active {
  color: #000;
  text-decoration: underline;
  text-decoration-line: #000;
  text-underline-offset: 6px;
}
#mobile-navigation .main-menu .parent.expanded > .submenu,
#mobile-navigation .main-menu .parent.expanded > .sub-submenu {
  max-height: 800px;
  padding: 10px 0;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms;
}
#mobile-navigation .main-menu .menu.sub-submenu a {
  font-size: 13px;
  color: #000;
}
#mobile-navigation .main-menu .menu.sub-submenu a:hover, #mobile-navigation .main-menu .menu.sub-submenu a.active {
  color: #000;
  text-decoration: underline;
}
#mobile-navigation .main-menu .plus {
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
#mobile-navigation .main-menu .plus .horizontal,
#mobile-navigation .main-menu .plus .vertical {
  position: absolute;
  transition: all 333ms ease-in-out;
  transform: rotate(-90deg);
  background-color: #000;
}
#mobile-navigation .main-menu .plus .horizontal {
  width: 8px;
  height: 2px;
  margin-left: 12px;
  margin-top: 15px;
}
#mobile-navigation .main-menu .plus .vertical {
  width: 2px;
  height: 8px;
  margin-left: 15px;
  margin-top: 12px;
}
#mobile-navigation .main-menu .parent.expanded > .plus > .vertical,
#mobile-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: rotate(90deg);
  background: #000 !important;
}
#mobile-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#mobile-navigation .main-menu .menu.submenu .plus {
  top: 0;
}

.keyboard-navigation #mobile-navigation .main-menu .parent > .submenu,
.keyboard-navigation #mobile-navigation .main-menu .parent > .sub-submenu {
  max-height: 800px;
  padding: 10px 0;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms;
}

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

.home .home-arc {
  position: relative;
}
.home .home-arc .mobile-arc {
  display: none;
}
.home .home-arc svg {
  position: absolute;
  left: calc(50% - 100px);
  margin-top: -30px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .home .home-arc svg {
    left: calc(50% - 0px);
    margin-top: 100px;
    transform: translateX(-50%);
  }
  .home .home-arc svg.desktop-arc {
    display: none;
  }
  .home .home-arc svg.mobile-arc {
    display: flex;
  }
}

.casino-page-wrapper {
  position: relative;
}
.casino-page-wrapper .casino-background-wrapper {
  position: absolute;
  height: calc(100% - 65px);
  left: 50%;
  transform: translateX(-50%);
  top: 130px;
}
@media only screen and (max-width: 767px) {
  .casino-page-wrapper .casino-background-wrapper {
    top: 0;
    height: 100%;
  }
}
.casino-page-wrapper .casino-background-logo {
  width: 100%;
  display: flex;
  position: sticky;
  top: 150px;
}
@media only screen and (max-width: 767px) {
  .casino-page-wrapper .casino-background-logo {
    top: 0;
  }
}
.casino-page-wrapper .casino-background-logo svg {
  width: 100vw;
  padding: 0 10px;
}

.casino-logo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .casino-logo-wrapper {
    position: initial;
  }
}

.casino-logo-blur {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  width: calc(100% - 36px);
  height: 100%;
  max-height: 335px;
  background: url("../images/casino-logo-white-blur.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1023px) {
  .casino-logo-blur {
    width: calc(100% - 180px);
    top: 50%;
  }
}

.admin .preview-item {
  overflow: hidden;
  margin: 0;
  padding: 20px;
  height: auto;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.admin .preview-item .common-slideshow {
  text-align: left;
}
.admin .preview-item .promo {
  width: 400px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .admin .preview-item .promo {
    width: 340px;
  }
}
.admin .preview-item .promo .thumbnail img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
}
.admin .preview-item#preview-template-j .promo {
  display: block !important;
}
.admin .preview-item#preview-template-j .promo .popup_modal {
  display: block !important;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  background: none;
  height: 520px;
}
.admin .preview-item#preview-template-j .promo .popup_modal .inner-popup {
  top: auto;
  left: auto;
  transform: translate(0, 0);
}
.admin .preview-item#preview-template-j .promo .popup_modal .inner-popup .close {
  display: none;
}

.home #promos {
  margin-top: -58px;
}

#home-rooms.slideshow {
  padding-top: 0;
}

#promos,
#acm-content-tiles,
.widget-area,
.common-slideshow {
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 50;
}
#promos nav,
#acm-content-tiles nav,
.widget-area nav,
.common-slideshow nav {
  white-space: nowrap;
}
#promos nav button,
#acm-content-tiles nav button,
.widget-area nav button,
.common-slideshow nav button {
  color: #fff;
  background: transparent;
  height: 58px;
  font: 600 14px/58px "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  padding: 0 30px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: background 350ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #promos nav button,
  #acm-content-tiles nav button,
  .widget-area nav button,
  .common-slideshow nav button {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  #promos nav button,
  #acm-content-tiles nav button,
  .widget-area nav button,
  .common-slideshow nav button {
    padding: 0 10px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 500px) {
  #promos nav button,
  #acm-content-tiles nav button,
  .widget-area nav button,
  .common-slideshow nav button {
    font-size: 10px;
  }
}
@media only screen and (max-width: 430px) {
  #promos nav button,
  #acm-content-tiles nav button,
  .widget-area nav button,
  .common-slideshow nav button {
    padding: 0 5px;
    font-size: 9px;
  }
}
#promos nav button.active,
#acm-content-tiles nav button.active,
.widget-area nav button.active,
.common-slideshow nav button.active {
  background: #006BB6;
}
#promos nav button.active:hover,
#acm-content-tiles nav button.active:hover,
.widget-area nav button.active:hover,
.common-slideshow nav button.active:hover {
  background: #006BB6;
}
#promos nav button:hover,
#acm-content-tiles nav button:hover,
.widget-area nav button:hover,
.common-slideshow nav button:hover {
  background: #FCB131;
}
#promos .slideshow,
#acm-content-tiles .slideshow,
.widget-area .slideshow,
.common-slideshow .slideshow {
  position: absolute;
  top: -9999px;
  overflow: hidden;
  background: #006BB6;
}
#promos .slideshow.active,
#acm-content-tiles .slideshow.active,
.widget-area .slideshow.active,
.common-slideshow .slideshow.active {
  position: relative;
  top: auto;
}
.home #promos .slideshow,
.home #acm-content-tiles .slideshow,
.home .widget-area .slideshow,
.home .common-slideshow .slideshow {
  padding-top: 2px;
}
.spa-page #promos .slideshow,
.spa-page #acm-content-tiles .slideshow,
.spa-page .widget-area .slideshow,
.spa-page .common-slideshow .slideshow {
  background: #5E6D25;
}
.casino-page #promos .slideshow,
.casino-page #acm-content-tiles .slideshow,
.casino-page .widget-area .slideshow,
.casino-page .common-slideshow .slideshow {
  background: #064F94;
}
#promos .slideshow .no-events,
#acm-content-tiles .slideshow .no-events,
.widget-area .slideshow .no-events,
.common-slideshow .slideshow .no-events {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  padding: 40px 20px;
}
#promos .slideshow .no-events span,
#acm-content-tiles .slideshow .no-events span,
.widget-area .slideshow .no-events span,
.common-slideshow .slideshow .no-events span {
  display: block;
  margin: 10px 0;
}
#promos.active .slideshow,
#acm-content-tiles.active .slideshow,
.widget-area.active .slideshow,
.common-slideshow.active .slideshow {
  position: relative;
  top: auto;
}
#promos .slideshow-wrapper,
#acm-content-tiles .slideshow-wrapper,
.widget-area .slideshow-wrapper,
.common-slideshow .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#promos#promos-events .promo .details strong,
#acm-content-tiles#promos-events .promo .details strong,
.widget-area#promos-events .promo .details strong,
.common-slideshow#promos-events .promo .details strong {
  color: #fff;
}
#promos .promo,
#acm-content-tiles .promo,
.widget-area .promo,
.common-slideshow .promo {
  position: relative;
  display: inline-block;
  width: 25%;
  height: 480px;
  vertical-align: top;
  overflow: hidden;
  white-space: normal;
  color: #fff;
  background-color: #006BB6;
  text-shadow: 0px 0px 5px #444;
}
@media only screen and (max-width: 1023px) {
  #promos .promo,
  #acm-content-tiles .promo,
  .widget-area .promo,
  .common-slideshow .promo {
    height: 380px;
  }
}
#promos .promo .inner-wrapper,
#acm-content-tiles .promo .inner-wrapper,
.widget-area .promo .inner-wrapper,
.common-slideshow .promo .inner-wrapper {
  width: 100%;
  height: 100%;
}
#promos .promo .thumbnail,
#acm-content-tiles .promo .thumbnail,
.widget-area .promo .thumbnail,
.common-slideshow .promo .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1);
  transition: transform 600ms;
}
#promos .promo .thumbnail:after,
#acm-content-tiles .promo .thumbnail:after,
.widget-area .promo .thumbnail:after,
.common-slideshow .promo .thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: 350ms ease-in-out;
}
#promos .promo .thumbnail .loading:before,
#acm-content-tiles .promo .thumbnail .loading:before,
.widget-area .promo .thumbnail .loading:before,
.common-slideshow .promo .thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 6px solid transparent;
  border-top-color: #006BB6;
  border-bottom-color: #FCB131;
  border-left-color: #910028;
  border-right-color: #518439;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#promos .promo .thumbnail .loading:before,
#acm-content-tiles .promo .thumbnail .loading:before,
.widget-area .promo .thumbnail .loading:before,
.common-slideshow .promo .thumbnail .loading:before {
  top: 8%;
  right: 8%;
  left: auto;
  margin: auto;
}
#promos .promo:hover .thumbnail,
#acm-content-tiles .promo:hover .thumbnail,
.widget-area .promo:hover .thumbnail,
.common-slideshow .promo:hover .thumbnail {
  transform: scale(1.1);
}
#promos .promo:hover .thumbnail:after,
#acm-content-tiles .promo:hover .thumbnail:after,
.widget-area .promo:hover .thumbnail:after,
.common-slideshow .promo:hover .thumbnail:after {
  background: rgba(0, 0, 0, 0.6);
}
#promos .promo .content,
#acm-content-tiles .promo .content,
.widget-area .promo .content,
.common-slideshow .promo .content {
  position: absolute;
  bottom: 60px;
  left: 10%;
  right: 10%;
}
@media only screen and (max-width: 1640px) {
  #promos .promo .content,
  #acm-content-tiles .promo .content,
  .widget-area .promo .content,
  .common-slideshow .promo .content {
    bottom: 50px;
  }
}
@media only screen and (max-width: 1540px) {
  #promos .promo .content,
  #acm-content-tiles .promo .content,
  .widget-area .promo .content,
  .common-slideshow .promo .content {
    bottom: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  #promos .promo .content,
  #acm-content-tiles .promo .content,
  .widget-area .promo .content,
  .common-slideshow .promo .content {
    bottom: 30px;
  }
}
#promos .promo h3,
#acm-content-tiles .promo h3,
.widget-area .promo h3,
.common-slideshow .promo h3 {
  position: absolute;
  bottom: 50%;
  left: 14%;
  right: 14%;
  color: #fff;
  font: 500 32px/1.2 "Open Sans", "Arial", sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
  word-wrap: break-word;
}
@media only screen and (max-width: 1023px) {
  #promos .promo h3,
  #acm-content-tiles .promo h3,
  .widget-area .promo h3,
  .common-slideshow .promo h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #promos .promo h3,
  #acm-content-tiles .promo h3,
  .widget-area .promo h3,
  .common-slideshow .promo h3 {
    font-size: 20px;
  }
}
#promos .promo h3 a,
#acm-content-tiles .promo h3 a,
.widget-area .promo h3 a,
.common-slideshow .promo h3 a {
  color: inherit;
  text-decoration: none;
}
#promos .promo h4,
#acm-content-tiles .promo h4,
.widget-area .promo h4,
.common-slideshow .promo h4 {
  position: absolute;
  top: 80px;
  left: 14%;
  right: 14%;
  color: #FCB131;
  font: 600 14px/1.2 "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  word-wrap: break-word;
}
@media only screen and (max-width: 1640px) {
  #promos .promo h4,
  #acm-content-tiles .promo h4,
  .widget-area .promo h4,
  .common-slideshow .promo h4 {
    top: 50px;
  }
}
@media only screen and (max-width: 1540px) {
  #promos .promo h4,
  #acm-content-tiles .promo h4,
  .widget-area .promo h4,
  .common-slideshow .promo h4 {
    top: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  #promos .promo h4,
  #acm-content-tiles .promo h4,
  .widget-area .promo h4,
  .common-slideshow .promo h4 {
    top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #promos .promo h4,
  #acm-content-tiles .promo h4,
  .widget-area .promo h4,
  .common-slideshow .promo h4 {
    font-size: 12px;
  }
}
#promos .promo h4 a,
#acm-content-tiles .promo h4 a,
.widget-area .promo h4 a,
.common-slideshow .promo h4 a {
  color: inherit;
  text-decoration: none;
}
#promos .promo p,
#acm-content-tiles .promo p,
.widget-area .promo p,
.common-slideshow .promo p {
  display: none;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 20px;
}
#promos .promo .details,
#acm-content-tiles .promo .details,
.widget-area .promo .details,
.common-slideshow .promo .details {
  display: block;
  font: 600 14px/24px "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #promos .promo .details,
  #acm-content-tiles .promo .details,
  .widget-area .promo .details,
  .common-slideshow .promo .details {
    font-size: 12px;
  }
}
#promos .promo .details a,
#acm-content-tiles .promo .details a,
.widget-area .promo .details a,
.common-slideshow .promo .details a {
  color: inherit;
  text-decoration: none;
}
#promos .promo .details strong,
#acm-content-tiles .promo .details strong,
.widget-area .promo .details strong,
.common-slideshow .promo .details strong {
  font-size: 24px;
  color: #FCB131;
}
@media only screen and (max-width: 767px) {
  #promos .promo .details strong,
  #acm-content-tiles .promo .details strong,
  .widget-area .promo .details strong,
  .common-slideshow .promo .details strong {
    font-size: 18px;
  }
}
#promos .promo .promo-button,
#acm-content-tiles .promo .promo-button,
.widget-area .promo .promo-button,
.common-slideshow .promo .promo-button {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 20px;
  overflow: visible;
  height: 60px;
  font: 600 14px/60px "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  -moz-text-align-last: auto;
       text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  background: none;
  border: 1px solid #fff;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
  margin-top: 24px;
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
  text-shadow: none;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  #promos .promo .promo-button,
  #acm-content-tiles .promo .promo-button,
  .widget-area .promo .promo-button,
  .common-slideshow .promo .promo-button {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 12px;
  }
}
#promos .promo .promo-button:hover,
#acm-content-tiles .promo .promo-button:hover,
.widget-area .promo .promo-button:hover,
.common-slideshow .promo .promo-button:hover {
  background: #fff;
  color: #006BB6;
}
.spa-page #promos .promo .promo-button:hover,
.spa-page #acm-content-tiles .promo .promo-button:hover,
.spa-page .widget-area .promo .promo-button:hover,
.spa-page .common-slideshow .promo .promo-button:hover {
  color: #5E6D25;
}
.casino-page #promos .promo .promo-button:hover,
.casino-page #acm-content-tiles .promo .promo-button:hover,
.casino-page .widget-area .promo .promo-button:hover,
.casino-page .common-slideshow .promo .promo-button:hover {
  color: #064F94;
}
#promos .promo .promo-button:active,
#acm-content-tiles .promo .promo-button:active,
.widget-area .promo .promo-button:active,
.common-slideshow .promo .promo-button:active {
  top: auto;
  box-shadow: none;
}
@media only screen and (max-width: 1023px) {
  #promos .promo,
  #acm-content-tiles .promo,
  .widget-area .promo,
  .common-slideshow .promo {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #promos .promo,
  #acm-content-tiles .promo,
  .widget-area .promo,
  .common-slideshow .promo {
    width: 83%;
  }
}
#promos .slideshow-button,
#acm-content-tiles .slideshow-button,
.widget-area .slideshow-button,
.common-slideshow .slideshow-button {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #promos .slideshow-button,
  #acm-content-tiles .slideshow-button,
  .widget-area .slideshow-button,
  .common-slideshow .slideshow-button {
    display: none;
  }
}
#promos .slideshow-button:hover,
#acm-content-tiles .slideshow-button:hover,
.widget-area .slideshow-button:hover,
.common-slideshow .slideshow-button:hover {
  border-color: #FCB131;
}
#promos .slideshow-button.swiper-button-lock,
#acm-content-tiles .slideshow-button.swiper-button-lock,
.widget-area .slideshow-button.swiper-button-lock,
.common-slideshow .slideshow-button.swiper-button-lock {
  opacity: 0;
  visibility: hidden;
}
#promos .slideshow-button.previous,
#acm-content-tiles .slideshow-button.previous,
.widget-area .slideshow-button.previous,
.common-slideshow .slideshow-button.previous {
  left: 30px;
  transform: rotate(-135deg);
}
@media only screen and (max-width: 1023px) {
  #promos .slideshow-button.previous,
  #acm-content-tiles .slideshow-button.previous,
  .widget-area .slideshow-button.previous,
  .common-slideshow .slideshow-button.previous {
    right: 20px;
  }
}
#promos .slideshow-button.next,
#acm-content-tiles .slideshow-button.next,
.widget-area .slideshow-button.next,
.common-slideshow .slideshow-button.next {
  right: 30px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1023px) {
  #promos .slideshow-button.next,
  #acm-content-tiles .slideshow-button.next,
  .widget-area .slideshow-button.next,
  .common-slideshow .slideshow-button.next {
    right: 20px;
  }
}

.popup_modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
}
@media only screen and (max-width: 1023px) {
  .popup_modal {
    display: none !important;
  }
}
.popup_modal .inner-popup {
  width: 800px;
  height: 520px;
  background: #006BB6;
  z-index: 3;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup_modal .logo {
  background: url("../images/logo.svg") no-repeat 0 0;
  display: block;
  width: 164px;
  height: 119px;
  margin-left: 48px;
  margin-top: 30px;
  background-size: cover;
}
.popup_modal .text-wrapper {
  display: block;
  width: 250px;
  text-align: center;
  font: 14px/1.5 "Open Sans", "Arial", sans-serif;
  color: #fff;
  margin: 1px 14px 15px auto;
}
.popup_modal .hero {
  float: left;
}
.popup_modal .image-wrapper {
  width: 520px;
  height: 520px;
  overflow: hidden;
}
.popup_modal .close {
  float: right;
  right: 7px;
  top: -7px;
  font-size: 37px;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.popup_modal .promo-button {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 20px;
  overflow: visible;
  height: 50px;
  font: 600 14px/50px "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  -moz-text-align-last: auto;
       text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  background: none;
  border: 1px solid #fff;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
  margin-top: 24px;
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
  text-shadow: none;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  .popup_modal .promo-button {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 12px;
  }
}
.popup_modal .promo-button:hover {
  background: #fff;
  color: #006BB6;
}
.popup_modal .promo-button:active {
  top: auto;
  box-shadow: none;
}
.popup_modal .copy {
  color: #fff;
  width: 180px;
  text-decoration: none;
  margin-top: 10px;
}
.popup_modal .title {
  color: #FCB131;
  width: 180px;
  text-decoration: none;
  font: 500 26px/1.2 "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  display: block;
  margin: 30px auto;
}

#promos .promo .content {
  min-height: 110px;
}

#events {
  position: relative;
  background: #F0F0F0;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
#events h2 {
  font: 500 36px/1.2 "Open Sans", "Arial", sans-serif;
  margin-bottom: 20px;
  color: #006BB6;
  text-transform: uppercase;
}
#events h2 a {
  text-decoration: none;
}
#events nav {
  clear: both;
  margin-top: 40px;
}
#events .slideshow {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
#events .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#events .event {
  position: relative;
  display: inline-block;
  width: 33.3333333333%;
  padding: 0 10px;
  box-sizing: border-box;
  height: 300px;
  overflow: hidden;
  vertical-align: top;
  white-space: normal;
}
@media only screen and (max-width: 767px) {
  #events .event {
    width: 100%;
    height: auto;
    margin: 0 0 40px 0;
  }
}
#events .event .thumbnail {
  position: relative;
  width: 100%;
  height: 350px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #events .event .thumbnail {
    height: 266px;
  }
}
#events .event .thumbnail.no-thumbnail {
  background: #dbdbdb;
}
#events .event .thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 6px solid transparent;
  border-top-color: #006BB6;
  border-bottom-color: #FCB131;
  border-left-color: #910028;
  border-right-color: #518439;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#events .event .date {
  display: block;
  position: relative;
  margin: 0 0 34px;
  color: #FCB131;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}
#events .event .date a {
  color: inherit;
  text-decoration: none;
}
#events .event .date a:hover {
  text-decoration: underline;
}
#events .event .date:after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #E0E0E0;
}
#events .event h3 {
  font: 200 20px/1.33 "Open Sans", "Arial", sans-serif;
  color: #000;
  margin-bottom: 16px;
  text-transform: uppercase;
}
#events .event .copy {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #events .event .copy {
    padding: 0 10px;
  }
}
#events .event .button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#events .slideshow-pagination {
  margin: 20px 0;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #events .slideshow-pagination {
    display: none;
  }
}
#events .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #327d7d;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
#events .slideshow-pagination > *:hover, #events .slideshow-pagination > *.active {
  background: #54baba;
}

/* TEMPLATE 3*/
.rooms {
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 160px;
}
@media only screen and (max-width: 1023px) {
  .rooms {
    padding-bottom: 80px;
  }
}
.rooms-category .rooms {
  padding: 160px 0;
}
@media only screen and (max-width: 1023px) {
  .rooms-category .rooms {
    padding: 80px 0;
  }
}
.rooms .categories-descr {
  padding: 0 20px;
}
.rooms .categories-descr .category-descr {
  display: none;
}
.rooms .categories-descr .category-descr.active {
  display: block;
}
.rooms .category-selector {
  padding: 72px 0;
}
.rooms .rooms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1259px;
  margin: auto;
  padding: 0 18px;
}
.rooms .rooms-entry {
  min-height: 490px;
  display: flex;
  opacity: 1;
  overflow: hidden;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
}
.rooms .rooms-entry.hide {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry {
    flex-direction: column;
    height: initial;
    min-height: initial;
  }
}
.rooms .rooms-entry .rooms-thumbnail {
  width: 100%;
  position: relative;
  max-width: 704px;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .rooms-thumbnail {
    height: 200px;
    max-width: initial;
  }
}
.rooms .rooms-entry .rooms-thumbnail .room-image {
  height: 100%;
}
.rooms .rooms-entry .rooms-thumbnail .rooms-item-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.rooms .rooms-entry .rooms-thumbnail .rooms-item-gallery img {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
}
.rooms .rooms-entry .side-content {
  width: 805px;
  position: relative;
  padding: 50px 66px;
  justify-content: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  max-width: 519px;
}
@media only screen and (max-width: 1023px) {
  .rooms .rooms-entry .side-content {
    padding: 24px 18px;
    flex-direction: column;
    width: 100%;
    flex-shrink: initial;
    max-width: initial;
  }
}
.rooms .rooms-entry .side-content nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.rooms .rooms-entry .side-content h3,
.rooms .rooms-entry .side-content p,
.rooms .rooms-entry .side-content nav {
  text-align: left;
  opacity: 1;
}
.rooms .rooms-entry .side-content p {
  text-align: left;
}
.rooms .rooms-entry .side-content .rooms-icons {
  display: flex;
  gap: 16px;
}
.rooms .rooms-entry .side-content .rooms-icons .single-icon-wrapper .icon a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.room.single-room {
  text-align: left;
}
@media only screen and (max-width: 1440px) {
  .room.single-room .thumbnail {
    width: 700px;
    height: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .room.single-room .thumbnail {
    width: 500px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .room.single-room .thumbnail {
    display: block;
    width: 100%;
  }
}
.room.single-room .thumbnail img {
  width: 100%;
  height: auto;
}
.room.single-room .price {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  text-decoration: none;
  color: #006BB6;
}

.rooms-page .center-column#main-content {
  max-width: initial;
  padding: 0;
}
.rooms-page #photos {
  overflow: visible;
}

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

#feeds {
  position: relative;
  padding: 10px 0;
  z-index: 10;
}
#feeds h2 {
  font: 200 36px/1.2 "Open Sans", "Arial", sans-serif;
  margin-bottom: 30px;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}
#feeds.loading {
  min-height: 300px;
}
#feeds.loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 6px solid transparent;
  border-top-color: #006BB6;
  border-bottom-color: #FCB131;
  border-left-color: #910028;
  border-right-color: #518439;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#feeds .feed-content {
  overflow: hidden;
  position: relative;
  margin: 0 10px;
  text-align: center;
}
#feeds .feed-items {
  font-size: 0;
  margin-bottom: 10px;
}
#feeds .feed-items:after {
  clear: both;
  content: "";
  display: table;
}
#feeds .pattern {
  position: relative;
}
#feeds .feed-item {
  position: relative;
  display: inline-block;
  width: calc((100% - 120px) / 6);
  height: auto;
  padding-top: 15%;
  margin: 10px;
  font: italic 14px/18px "Open Sans", "Arial", sans-serif;
  overflow: hidden;
  text-align: left;
  background: #000;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  #feeds .feed-item {
    width: calc((100% - 80px) / 4);
    padding-top: 25%;
  }
}
@media only screen and (max-width: 767px) {
  #feeds .feed-item {
    width: calc((100% - 40px) / 2);
    padding-top: 50%;
  }
}
#feeds .feed-item:hover:after {
  opacity: 0.6;
}
#feeds .feed-item:hover .feed-thumb {
  transform: scale(1.1);
}
#feeds .feed-item:hover .feed-descr {
  opacity: 1;
  visibility: visible;
}
#feeds .feed-item:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 20px;
  margin-left: -10px;
  background: url("../images/sprite.svg") -180px -150px no-repeat;
  z-index: 5;
}
#feeds .feed-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  z-index: 4;
  transition: 350ms ease-in-out;
}
#feeds .feed-item.invisible {
  opacity: 0;
}
#feeds .feed-item .feed-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scale(1);
  transition: transform 600ms;
}
#feeds .feed-item .feed-thumb div {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.6;
}
#feeds .feed-item.instagram .feed-thumb div {
  opacity: 1;
}
#feeds .feed-item .feed-descr {
  position: absolute;
  bottom: 0;
  top: 0;
  overflow: hidden;
  padding: 50px 15px 15px;
  width: 100%;
  font: 14px/18px "Open Sans", "Arial", sans-serif;
  text-align: left;
  color: #ffffff;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
@media only screen and (min-width: 1800px) {
  #feeds .feed-item .feed-descr {
    padding: 50px 20px 20px;
  }
}
#feeds .feed-item .feed-descr h3 {
  display: none;
}
#feeds .feed-item .feed-title {
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: underline;
  transition: all 350ms ease-in-out;
  padding-right: 30px;
}
#feeds .feed-item .feed-date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}
#feeds .feed-item .feed-text {
  display: inline-block;
  font-family: "Open Sans", "Arial", sans-serif;
  font-weight: 200;
}
#feeds .feed-item .feed-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#feeds .feed-item.instagram {
  background: #833ab4;
}
#feeds .feed-item.instagram:before {
  background-position: 0 -150px;
}
#feeds .feed-item.instagram a {
  color: inherit;
}
#feeds .feed-item.facebook {
  background: #3b5998;
}
#feeds .feed-item.facebook:before {
  background-position: -50px -150px;
}
#feeds .feed-item.twitter {
  background: #657786;
}
#feeds .feed-item.twitter:before {
  background-position: -100px -150px;
}
#feeds .feed-item.blog:before {
  background-position: -150px -150px;
}
#feeds .feed-item.blog .feed-thumb {
  display: none;
}
#feeds .feed-item.blog h3 {
  color: #ACA394;
  padding-right: 30px;
  margin-bottom: 7px;
  transition: all 350ms ease-in-out;
}
#feeds .feed-item.blog h3:hover {
  opacity: 0.7;
}
#feeds .feed-item.blog .feed-descr {
  color: #5c574f;
}
#feeds .feed-controls {
  display: block;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 110px;
}

#bus-tables {
  padding-top: 20px;
  position: relative;
}
#bus-tables .selector-wrapper {
  min-width: 250px;
  box-sizing: border-box;
  border: 2px solid #006AB6;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  margin: 0 0 45px 50%;
  transform: translateX(-50%);
}
#bus-tables .selector-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 8px;
  top: 15px;
  right: 17px;
  background: url("../images/sprite.svg") -258px -106px;
  transition: background 200ms ease;
}
#bus-tables .selector-wrapper .table-title {
  padding: 0 40px 0 17px;
  line-height: 40px;
  height: 40px;
}
#bus-tables .selector-wrapper:hover:after {
  background-position: -258px -91px;
}
#bus-tables .selector-wrapper ul.table-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #F6F6F6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease-in-out;
}
#bus-tables .selector-wrapper ul.table-list.visible {
  max-height: 1000px;
}
#bus-tables .selector-wrapper ul.table-list li {
  padding: 0 17px;
  height: 40px;
  line-height: 40px;
}
#bus-tables .selector-wrapper ul.table-list li.active, #bus-tables .selector-wrapper ul.table-list li:hover {
  background: #C9C9C9;
}
#bus-tables .table-wrapper {
  position: relative;
}
@media only screen and (max-width: 767px) {
  #bus-tables .table-wrapper.center-column {
    padding: 0;
  }
}
#bus-tables .table-wrapper table {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  font-size: 16px;
  line-height: 22px;
}
@media only screen and (max-width: 1023px) {
  #bus-tables .table-wrapper table {
    font-size: 13px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #bus-tables .table-wrapper table {
    font-size: 10px;
    line-height: 12px;
  }
}
#bus-tables .table-wrapper table.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#bus-tables .table-wrapper table tr {
  text-align: left;
}
#bus-tables .table-wrapper table th, #bus-tables .table-wrapper table td {
  padding: 15px 30px;
}
@media only screen and (max-width: 1023px) {
  #bus-tables .table-wrapper table th, #bus-tables .table-wrapper table td {
    padding: 13px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #bus-tables .table-wrapper table th, #bus-tables .table-wrapper table td {
    padding: 12px 6px;
  }
}
#bus-tables .table-wrapper table thead {
  color: #fff;
  background: #4C4C4C;
}
#bus-tables .table-wrapper table tbody {
  color: #000;
}
#bus-tables .table-wrapper table tbody tr:nth-child(even) {
  background: #F0F0F0;
}
#bus-tables .table-wrapper table tbody tr:hover {
  background: #ccc;
}
#bus-tables .page-content {
  margin-top: 60px;
}

#footer {
  position: relative;
  font-size: 14px;
  color: #fff;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
.casino-page #footer {
  background-color: transparent;
}
#footer a {
  color: #fff;
  text-decoration: none;
}
#footer h2 {
  color: #FCB131;
  text-transform: uppercase;
}
#footer .bg {
  position: absolute;
  width: 100%;
  height: 256px;
  bottom: 0;
  right: 0;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  #footer .bg {
    background-size: contain;
    height: 82px;
  }
}
.casino-page #footer .bg {
  display: none;
}
#footer .casino-magenta-bar {
  display: none;
  height: 16px;
  background-color: #C0136B;
  width: 100%;
}
#footer .casino-magenta-bar.bar-top {
  margin-bottom: 4px;
}
#footer .casino-magenta-bar.bar-bottom {
  margin-top: 4px;
}
.casino-page #footer .casino-magenta-bar {
  display: flex;
}
#footer .row-1 {
  display: flex;
  justify-content: center;
  padding: 63px 130px 83px 80px;
  text-align: left;
  position: relative;
  background-image: url("../images/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.casino-page #footer .row-1 {
  background-image: url("../images/footer-bg-blue.jpg");
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .casino-page #footer .row-1 {
    background-position: center 67%;
  }
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 {
    flex-direction: column;
    padding: 72px 24px 24px 24px;
  }
}
.casino-page #footer .row-1 .column-1,
.casino-page #footer .row-1 .column-2,
.casino-page #footer .row-1 .column-3,
.casino-page #footer .row-1 .footer-line {
  position: relative;
  z-index: 2;
}
#footer .row-1 .column-1 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  #footer .row-1 .column-1 {
    max-width: 250px;
  }
  .casino-page #footer .row-1 .column-1 {
    max-width: 275px;
  }
}
#footer .row-1 .column-1 .contact-header,
#footer .row-1 .column-1 .p-text {
  color: #fff;
  text-align: left;
}
#footer .row-1 .column-1 .address {
  font-weight: 500;
  max-width: 208px;
}
.casino-page #footer .row-1 .column-1 .address {
  font-weight: 700;
}
#footer .row-1 .column-1 .social-links {
  display: flex;
  justify-content: left;
}
#footer .row-1 .column-1 .social-links .socials {
  font-size: 0;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  #footer .row-1 .column-1 .social-links .socials {
    float: none;
  }
}
#footer .row-1 .column-1 .social-links .socials li {
  display: contents;
}
#footer .row-1 .column-1 .social-links .socials a {
  position: relative;
  display: block;
  height: 24px;
  width: 24px;
  opacity: 1;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 0 no-repeat;
  transition: 350ms ease-in-out;
}
#footer .row-1 .column-1 .social-links .socials a:hover {
  opacity: 0.5;
  transition: 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  #footer .row-1 .column-1 .social-links .socials a {
    display: inline-block;
  }
}
#footer .row-1 .column-1 .social-links .socials a.facebook {
  background-image: url("../images/icons/facebook.svg");
}
#footer .row-1 .column-1 .social-links .socials a.instagram {
  background-image: url("../images/icons/instagram.svg");
}
#footer .row-1 .column-1 .social-links .socials a.tiktok {
  background-image: url("../images/icons/tiktok.svg");
}
#footer .row-1 .column-1 .social-links .socials a.twitter {
  background-image: url("../images/icons/twitter.svg");
}
.casino-page #footer .row-1 .column-1 .social-links .socials a.facebook {
  background-image: url("../images/icons/facebook-casino.svg");
}
.casino-page #footer .row-1 .column-1 .social-links .socials a.instagram {
  background-image: url("../images/icons/instagram-casino.svg");
}
.casino-page #footer .row-1 .column-1 .social-links .socials a.tiktok {
  background-image: url("../images/icons/tiktok-casino.svg");
}
.casino-page #footer .row-1 .column-1 .social-links .socials a.twitter {
  background-image: url("../images/icons/twitter-casino.svg");
}
#footer .row-1 .column-2 {
  flex-shrink: 0;
}
#footer .row-1 .column-2 ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .column-2 ul {
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#footer .row-1 .column-2 ul li {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #footer .row-1 .column-2 ul li {
    line-height: 12px;
  }
}
#footer .row-1 .column-2 ul li a.active, #footer .row-1 .column-2 ul li:hover a {
  text-decoration: underline;
  text-underline-offset: 6px;
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .column-3 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
#footer .row-1 .column-3 .apps-header {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .column-3 .apps-header {
    margin: 0 auto 24px auto;
  }
}
#footer .row-1 .column-3 .apps-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .column-3 .apps-wrapper {
    margin: auto;
    gap: 18px;
    justify-content: center;
  }
}
#footer .row-1 .column-3 .apps-wrapper a {
  display: flex;
}
#footer .row-1 .column-3 .morongo-app {
  margin-top: 24px;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .column-3 .morongo-app {
    margin: 16px auto 0 auto;
  }
}
#footer .row-1 .footer-line {
  position: relative;
  width: 1px;
  background-color: rgba(246, 245, 243, 0.3);
  height: auto;
  flex-shrink: 0;
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .footer-line {
    height: 1px;
    width: auto;
  }
}
#footer .row-1 .footer-line.footer-line-1 {
  margin-left: 55px;
  margin-right: 87px;
}
.casino-page #footer .row-1 .footer-line.footer-line-1 {
  margin-left: 34px;
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .footer-line.footer-line-1 {
    margin: 48px 0 24px 0;
  }
}
#footer .row-1 .footer-line.footer-line-2 {
  margin-left: 185px;
  margin-right: 87px;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  #footer .row-1 .footer-line.footer-line-2 {
    margin-left: 55px;
  }
}
@media only screen and (max-width: 1023px) {
  #footer .row-1 .footer-line.footer-line-2 {
    margin: 24px 0 24px 0;
  }
}
#footer .row-2 #newsletter {
  width: 100%;
  position: relative;
  z-index: 2;
  font-size: 0;
  padding: 40px 80px 36px 80px;
}
@media only screen and (max-width: 1023px) {
  #footer .row-2 #newsletter {
    padding: 29px 24px 43px 24px;
  }
}
.casino-page #footer .row-2 #newsletter {
  background-color: #D8E2EA;
}
.casino-page #footer .row-2 #newsletter form .form-builder-group .form-builder-field ::-moz-placeholder {
  color: #000;
}
.casino-page #footer .row-2 #newsletter h3,
.casino-page #footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=text],
.casino-page #footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=email],
.casino-page #footer .row-2 #newsletter .form-builder-group .form-builder-field.privacy-policy p,
.casino-page #footer .row-2 #newsletter .form-builder-group .form-builder-field.privacy-policy p a,
.casino-page #footer .row-2 #newsletter form .form-builder-group .form-builder-field ::placeholder {
  color: #000;
}
.casino-page #footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=text],
.casino-page #footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=email] {
  background-color: rgba(255, 255, 255, 0.4);
}
#footer .row-2 #newsletter h3 {
  font-family: "Open Sans", "Arial", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  font-size: 18px;
  color: #fff;
  border-bottom: none;
  padding-left: 2px;
  margin: 0 0 12px 0;
}
@media only screen and (max-width: 1023px) {
  #footer .row-2 #newsletter h3 {
    margin: 0 0 16px 0;
  }
}
#footer .row-2 #newsletter form {
  padding: 0;
  margin: 0;
}
#footer .row-2 #newsletter form fieldset {
  display: flex;
  flex-direction: column;
  max-width: 1221px;
  margin: auto;
}
#footer .row-2 #newsletter form .form-builder-group {
  justify-content: center;
  gap: 16px;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  #footer .row-2 #newsletter form .form-builder-group {
    flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 1023px) {
  #footer .row-2 #newsletter form .form-builder-group {
    row-gap: 24px;
  }
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field {
  width: 100%;
  margin-bottom: 0;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=text],
#footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=email] {
  height: 40px;
  background-color: #666666;
  padding: 12px 0 10px 12px;
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  width: 100%;
  max-width: 403px;
  border: none;
  margin-top: 0;
}
@media only screen and (max-width: 1023px) {
  #footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=text],
  #footer .row-2 #newsletter form .form-builder-group .form-builder-field input[type=email] {
    max-width: initial;
  }
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field ::-moz-placeholder {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-transform: none;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field ::placeholder {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-transform: none;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field em,
#footer .row-2 #newsletter form .form-builder-group .form-builder-field label {
  display: none;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field.name, #footer .row-2 #newsletter form .form-builder-group .form-builder-field.email {
  width: 100%;
  max-width: 403px;
}
@media only screen and (max-width: 1023px) {
  #footer .row-2 #newsletter form .form-builder-group .form-builder-field.name, #footer .row-2 #newsletter form .form-builder-group .form-builder-field.email {
    max-width: initial;
  }
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field.button {
  width: auto;
  height: -moz-min-content;
  height: min-content;
  flex-shrink: 0;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field.privacy-policy {
  max-width: 186px;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field.privacy-policy label {
  display: flex;
  margin: 0;
  gap: 10px;
  width: 100%;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field.privacy-policy p {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 160px;
  margin-bottom: 0;
}
#footer .row-2 #newsletter form .form-builder-group .form-builder-field.privacy-policy p a {
  text-decoration: underline;
}
#footer .row-2 #newsletter form .form-builder-group .button:hover input[type=submit] {
  color: #000;
}
#footer .row-2 #newsletter form .form-builder-group input[type=submit] {
  margin: 0;
  font-family: "Open Sans", "Arial", sans-serif;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #footer .row-2 #newsletter form .form-builder-group input[type=submit] {
    line-height: 12px;
  }
}
.casino-page #footer .row-2 #newsletter form .form-builder-group input[type=submit] {
  font-family: "gotham", sans-serif;
}
#footer .row-3 {
  padding: 56px 18px 60px 18px;
  background-color: #262626;
}
.casino-page #footer .row-3 {
  background-color: #064F94;
}
#footer .row-3 .h5 {
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
#footer .row-3 .awards-wrapper {
  display: flex;
  gap: 72px;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #footer .row-3 .awards-wrapper {
    gap: 12px;
  }
}
#footer .row-3 .awards-wrapper .award {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #footer .row-3 .awards-wrapper .award {
    width: 100px;
  }
}
#footer .row-3 .awards-wrapper .award.diamond-award img {
  height: 92px;
}
@media only screen and (max-width: 767px) {
  #footer .row-3 .awards-wrapper .award.diamond-award img {
    height: 62px;
  }
}
#footer .row-3 .awards-wrapper .award.best-award img {
  height: 86px;
}
@media only screen and (max-width: 767px) {
  #footer .row-3 .awards-wrapper .award.best-award img {
    height: 58px;
  }
}
#footer .row-3 .awards-wrapper .award.health-award img {
  height: 90px;
}
@media only screen and (max-width: 767px) {
  #footer .row-3 .awards-wrapper .award.health-award img {
    height: 60px;
  }
}
#footer .row-3 .awards-wrapper .award.best-inland img {
  height: 86px;
}
@media only screen and (max-width: 767px) {
  #footer .row-3 .awards-wrapper .award.best-inland img {
    height: 57px;
  }
}
#footer .row-3 .awards-wrapper .award.casino-south img {
  height: 102px;
}
@media only screen and (max-width: 767px) {
  #footer .row-3 .awards-wrapper .award.casino-south img {
    height: 68px;
  }
}
#footer .row-4 .wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 30px 108px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  #footer .row-4 .wrapper {
    padding: 78px 24px;
    justify-content: center;
  }
}
#footer .row-4 .wrapper ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #footer .row-4 .wrapper ul {
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#footer .row-4 .wrapper ul li {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #footer .row-4 .wrapper ul li {
    line-height: 12px;
  }
}
#footer .row-4 .wrapper ul li:hover a {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.casino-page #footer .row-4 .wrapper ul li a {
  font-family: "gotham", sans-serif;
  color: #000;
}
#footer .row-4 .wrapper .copyright {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  #footer .row-4 .wrapper .copyright {
    display: none;
  }
}
.casino-page #footer .row-4 .wrapper .copyright {
  font-family: "gotham", sans-serif;
  color: #000;
}

#hebs-gallery {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  /* FULL SIZE IMAGE */
  /* FULL SIZE IMAGE -> Navigation */
  /* FULL SIZE IMAGE -> Loading */
  /* THUMBNAILS */
  /* THUMBNAILS -> Navigation */
  /* INFO */
}
#hebs-gallery .galleria {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#hebs-gallery .close-button {
  position: absolute;
  right: 20px;
  top: 12px;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .close-button:hover {
  background-position: -37px 0;
}
#hebs-gallery .close-button:active {
  background-position: -74px 0;
}
#hebs-gallery .galleria-container {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
}
#hebs-gallery .select-wrapper {
  position: relative;
  float: left;
  margin: 5px 0 0 20px;
  z-index: 2;
}
#hebs-gallery .category-selector {
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  background: #fff;
  font-size: 14px;
  color: #000;
}
#hebs-gallery .galleria-stage {
  position: absolute;
  top: 40px;
  bottom: 120px;
  left: 0;
  right: 0;
  padding: 20px 72px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  #hebs-gallery .galleria-stage {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  #hebs-gallery .galleria-stage {
    bottom: 0;
  }
}
#hebs-gallery .galleria-stage .galleria-image img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#hebs-gallery .galleria-container.touch .galleria-stage {
  padding: 0;
}
#hebs-gallery.no-controls .galleria-stage {
  bottom: 0;
  padding: 20px;
}
#hebs-gallery.no-controls .galleria-image-nav {
  display: none;
}
@media only screen and (max-width: 1023px) {
  #hebs-gallery .galleria-image-nav {
    display: none;
  }
}
#hebs-gallery .galleria-image-nav-left, #hebs-gallery .galleria-image-nav-right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 31px;
  height: 61px;
  margin-top: -30px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-image-nav-left {
  left: 20px;
  background-position: 0 -37px;
}
#hebs-gallery .galleria-image-nav-left:hover {
  background-position: -51px -37px;
}
#hebs-gallery .galleria-image-nav-left:active {
  background-position: -102px -37px;
}
#hebs-gallery .galleria-image-nav-right {
  right: 20px;
  background-position: 0 -118px;
}
#hebs-gallery .galleria-image-nav-right:hover {
  background-position: -51px -118px;
}
#hebs-gallery .galleria-image-nav-right:active {
  background-position: -102px -118px;
}
#hebs-gallery .galleria-loader {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
}
#hebs-gallery .galleria-loader:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 6px solid transparent;
  border-top-color: #006BB6;
  border-bottom-color: #FCB131;
  border-left-color: #910028;
  border-right-color: #518439;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hebs-gallery.no-controls .galleria-thumbnails-container {
  display: none;
}
#hebs-gallery .galleria-thumbnails-container {
  height: 120px;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: #000;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  #hebs-gallery .galleria-thumbnails-container {
    display: none;
  }
}
#hebs-gallery .galleria-carousel .galleria-thumbnails-list {
  margin-left: 52px;
  margin-right: 52px;
}
#hebs-gallery .galleria-thumbnails {
  margin: 20px auto 0;
}
#hebs-gallery .galleria-thumbnails .galleria-image {
  height: 80px !important;
  width: 80px !important;
  background: #000;
  margin: 0 6px 0 0;
  float: left;
  cursor: pointer;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active {
  border: 3px solid #fff;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active img {
  margin: -3px 0 0 -3px;
}
#hebs-gallery .galleria-thumb-nav-left, #hebs-gallery .galleria-thumb-nav-right {
  display: none;
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 21px;
  height: 21px;
  margin-top: -10px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-carousel .galleria-thumb-nav-left, #hebs-gallery .galleria-carousel .galleria-thumb-nav-right {
  display: block;
}
#hebs-gallery .galleria-thumb-nav-left.disabled, #hebs-gallery .galleria-thumb-nav-right.disabled {
  opacity: 0.5;
  cursor: default;
}
#hebs-gallery .galleria-thumb-nav-left {
  left: 15px;
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:hover {
  background-position: -26px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:active {
  background-position: -57px -199px;
}
#hebs-gallery .galleria-thumb-nav-left.disabled {
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-right {
  right: 15px;
  background-position: 5px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:hover {
  background-position: -26px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:active {
  background-position: -57px -240px;
}
#hebs-gallery .galleria-thumb-nav-right.disabled {
  background-position: 5px -240px;
}
#hebs-gallery .galleria-info {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 40px;
}
#hebs-gallery .galleria-info .galleria-info-description {
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 300px;
  right: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#share-this-site-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAAA1BMVEUAAACnej3aAAAAAXRSTlOzEo46UAAAAA5JREFUeAFjoACMglEAAAJAAAGccJWlAAAAAElFTkSuQmCC");
  background: rgba(0, 0, 0, 0.7);
}
#share-this-site-overlay .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 140px;
  padding: 20px;
  margin: -90px 0 0 -230px;
  background: #327d7d;
}
#share-this-site-overlay .close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
  cursor: pointer;
  z-index: 2;
}
#share-this-site-overlay .close-button:hover {
  background-position: -37px 0;
}
#share-this-site-overlay .close-button:active {
  background-position: -74px 0;
}

#share-this-site {
  padding: 0;
  margin: 0 5px 5px;
  width: 420px;
}
#share-this-site li {
  float: left;
  width: 130px;
  margin: 0 5px;
  font-size: 0;
}
#share-this-site a {
  position: relative;
  display: block;
  height: 16px;
  margin: 5px 0;
  padding-left: 20px;
  font: 12px/16px "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #f7fcfc;
}
#share-this-site a:hover {
  color: #6dc7c7;
}
#share-this-site a .icon {
  float: left;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: url(../images/share.png) 0 0 no-repeat;
}
#share-this-site a.share_facebook .icon {
  background-position: 0 0;
}
#share-this-site a.share_facebook:hover .icon {
  background-position: -36px 0;
}
#share-this-site a.share_twitter .icon {
  background-position: 0 -36px;
}
#share-this-site a.share_twitter:hover .icon {
  background-position: -36px -36px;
}
#share-this-site a.share_tumblr .icon {
  background-position: 0 -72px;
}
#share-this-site a.share_tumblr:hover .icon {
  background-position: -36px -72px;
}
#share-this-site a.share_linkedin .icon {
  background-position: 0 -108px;
}
#share-this-site a.share_linkedin:hover .icon {
  background-position: -36px -108px;
}
#share-this-site a.share_digg .icon {
  background-position: 0 -144px;
}
#share-this-site a.share_digg:hover .icon {
  background-position: -36px -144px;
}
#share-this-site a.share_delicious .icon {
  background-position: 0 -180px;
}
#share-this-site a.share_delicious:hover .icon {
  background-position: -36px -180px;
}
#share-this-site a.share_stumbleupon .icon {
  background-position: 0 -216px;
}
#share-this-site a.share_stumbleupon:hover .icon {
  background-position: -36px -216px;
}
#share-this-site a.share_orkut .icon {
  background-position: 0 -252px;
}
#share-this-site a.share_orkut:hover .icon {
  background-position: -36px -252px;
}
#share-this-site a.share_myspace .icon {
  background-position: 0 -288px;
}
#share-this-site a.share_myspace:hover .icon {
  background-position: -36px -288px;
}
#share-this-site a.share_yammer .icon {
  background-position: 0 -324px;
}
#share-this-site a.share_yammer:hover .icon {
  background-position: -36px -324px;
}
#share-this-site a.share_pinterest .icon {
  background-position: 0 -360px;
}
#share-this-site a.share_pinterest:hover .icon {
  background-position: -36px -360px;
}
#share-this-site a.share_bebo .icon {
  background-position: 0 -396px;
}
#share-this-site a.share_bebo:hover .icon {
  background-position: -36px -396px;
}
#share-this-site a.share_live .icon {
  background-position: 0 -432px;
}
#share-this-site a.share_live:hover .icon {
  background-position: -36px -432px;
}
#share-this-site a.share_google .icon {
  background-position: 0 -468px;
}
#share-this-site a.share_google:hover .icon {
  background-position: -36px -468px;
}
#share-this-site a.share_email .icon {
  background-position: 0 -504px;
}
#share-this-site a.share_email:hover .icon {
  background-position: -36px -504px;
}

.forecast-link {
  position: relative;
  float: right;
}

@media only screen and (max-width: 1450px) {
  .secondary-nav .forecast-link {
    display: none;
  }
}

.weather-widget {
  position: relative;
  margin-left: 20px;
  float: right;
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  transition: all 350ms ease-in-out;
  border-left: 1px solid #fff;
  display: block;
  padding-left: 20px;
  /* WEATHER FORECAST ICONS */
}
.weather-widget.acm-block {
  float: none;
  margin: 0 auto;
  display: block;
  text-align: center;
  max-width: 700px;
  padding: 0;
}
.weather-widget .weather-text {
  font-size: 9px;
}
.weather-widget .current-weather {
  height: auto;
  width: auto;
  box-sizing: border-box;
  margin-top: -5px;
}
.weather-widget .current-weather > span {
  float: left;
  font-size: 16px;
  line-height: 1.2;
}
.weather-widget .current-weather .ic {
  margin-right: 10px;
  width: 28px;
  height: 28px;
}
.weather-widget .current-weather .forecast-condition {
  position: relative;
  display: block;
  font-size: 9px;
  line-height: 1;
}
.weather-widget .forecast {
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 25px 30px 30px 15px;
  white-space: nowrap;
  font-size: 0;
  top: 100%;
  right: 0;
  background: #000;
  border-radius: 0 0 5px 5px;
  z-index: 50;
}
.weather-widget .forecast.acm-block {
  top: auto;
  right: auto;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast {
    display: inline-block;
    top: 75%;
    right: 20%;
    padding: 20px 0;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .weather-widget .forecast {
    width: 100%;
    padding: 20px 0;
  }
}
.weather-widget .forecast-city {
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}
.weather-widget .forecast-region {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  color: #fff;
}
.weather-widget .forecast-controls {
  position: absolute;
  right: 30px;
  top: 15px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-controls {
    position: relative;
    display: inline-block;
    overflow: auto;
    margin: 10px auto 10px;
    text-align: center;
    right: auto;
    top: auto;
  }
}
.weather-widget .forecast-controls button {
  margin-left: 5px;
  float: left;
  width: 36px;
  height: 20px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
.weather-widget .forecast-controls button:hover, .weather-widget .forecast-controls button.active {
  background: #fff;
  color: #000;
}
.weather-widget .forecast-list {
  height: 155px;
  margin-top: 22px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-list {
    height: auto;
    width: 100%;
    margin-top: 0;
  }
}
.weather-widget .forecast-day {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 8px 0 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day {
    display: block;
    overflow: auto;
    height: 65px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
  }
}
.weather-widget .forecast-day > span {
  display: block;
}
.weather-widget .forecast-day > span.day, .weather-widget .forecast-day > span.date {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: -2px;
  line-height: 16px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day > span.day, .weather-widget .forecast-day > span.date {
    margin-top: 0;
    position: absolute;
    top: 30%;
    left: 20%;
  }
}
.weather-widget .forecast-day > span.date {
  padding-bottom: 32px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day > span.date {
    padding-bottom: 0;
    position: absolute;
    top: 55%;
  }
}
.weather-widget .forecast-day > span.ic {
  opacity: 1;
  margin: 0 auto 27px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day > span.ic {
    margin-bottom: 0;
    position: absolute;
    top: 5%;
    right: 20%;
  }
}
.weather-widget .forecast-day .temp {
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  vertical-align: top;
  padding-left: 7px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day .temp {
    position: absolute;
    padding-left: 0;
    margin-bottom: 0;
    bottom: 5%;
    right: 20%;
  }
}
.weather-widget .forecast-day:first-child {
  padding: 0;
  width: 90px;
  border: 0;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day:first-child {
    display: block;
    overflow: auto;
    height: 80px;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 0;
  }
}
.weather-widget .forecast-day:first-child > span {
  font-size: 16px;
  line-height: 18px;
}
.weather-widget .forecast-day:first-child > span.day, .weather-widget .forecast-day:first-child > span.date {
  margin-top: 0;
  line-height: 18px;
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day:first-child > span.day, .weather-widget .forecast-day:first-child > span.date {
    margin-top: 0;
    position: absolute;
    top: 30%;
    left: 20%;
  }
}
.weather-widget .forecast-day:first-child > span.date {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day:first-child > span.date {
    margin-top: 0;
    position: absolute;
    top: 55%;
  }
}
.weather-widget .forecast-day:first-child > span.ic {
  opacity: 1;
  margin-bottom: 16px;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day:first-child > span.ic {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 20%;
  }
}
.weather-widget .forecast-day:first-child > span.temp {
  padding: 0;
  font-size: 36px;
  line-height: 40px;
}
@media only screen and (max-width: 1023px) {
  .weather-widget .forecast-day:first-child > span.temp {
    position: absolute;
    padding-left: 0;
    margin-bottom: 0;
    bottom: 10%;
    right: 15%;
  }
}
#header .weather-widget.visible:hover .forecast {
  display: block;
}
.weather-widget .ic {
  display: block;
  width: 28px;
  height: 28px;
  background: url(../images/weather-sprite.svg) no-repeat -12px -10px;
}
.weather-widget .cms-icon-weather-rain-light {
  background-position: -12px -10px;
}
.weather-widget .cms-icon-weather-snow {
  background-position: -12px -58px;
}
.weather-widget .cms-icon-weather-rain-heavy {
  background-position: -12px -908px;
}
.weather-widget .cms-icon-weather-thunderstorm {
  background-position: -12px -160px;
}
.weather-widget .cms-icon-weather-clouds {
  background-position: -12px -210px;
}
.weather-widget .cms-icon-weather-drizzle {
  background-position: -12px -10px;
}
.weather-widget .cms-icon-weather-atmosphere {
  background-position: -12px -210px;
}
.weather-widget .cms-icon-weather-clear {
  background-position: -12px -958px;
}
.weather-widget .cms-icon-weather-tornado {
  background-position: -12px -260px;
}
.weather-widget .cms-icon-weather-tropicalstorm {
  background-position: -12px -1010px;
}
.weather-widget .cms-icon-weather-hurricane {
  background-position: -12px -1010px;
}
.weather-widget .cms-icon-weather-cold {
  background-position: -12px -858px;
}
.weather-widget .cms-icon-weather-hot {
  background-position: -12px -958px;
}
.weather-widget .cms-icon-weather-windy {
  background-position: -12px -358px;
}
.weather-widget .cms-icon-weather-hail {
  background-position: -12px -309px;
}
.weather-widget .cms-icon-weather-calm {
  background-position: -12px -460px;
}
.weather-widget .cms-icon-weather-breeze {
  background-position: -12px -409px;
}
.weather-widget .cms-icon-weather-gale {
  background-position: -12px -359px;
}
.weather-widget .cms-icon-weather-storm {
  background-position: -12px -1009;
}

.anniversary-popup {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.86) url("../images/сonfetti.gif") 50% 50%/auto 100% no-repeat;
  transition: visibility 333ms, opacity 333ms;
  z-index: 80;
}
.anniversary-popup.visible {
  opacity: 1;
  visibility: visible;
}
.anniversary-popup img {
  display: block;
  width: 100%;
  max-width: 620px;
  transition: transform 333ms cubic-bezier(0.175, 0.885, 0.205, 1.65);
}
.anniversary-popup a:hover img {
  transform: scale(0.96);
}
.anniversary-popup button {
  position: absolute;
  right: 30px;
  top: 30px;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .anniversary-popup button {
    right: 16px;
    top: 16px;
  }
}
.anniversary-popup button span {
  position: relative;
  margin-left: 8px;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  transition: background 186ms;
}
@media only screen and (max-width: 767px) {
  .anniversary-popup button span {
    width: 42px;
    height: 42px;
  }
}
.anniversary-popup button span:before, .anniversary-popup button span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}
@media only screen and (max-width: 767px) {
  .anniversary-popup button span:before, .anniversary-popup button span:after {
    width: 24px;
  }
}
.anniversary-popup button span:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.anniversary-popup button span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.anniversary-popup button:hover span {
  background: #fcb131;
}

#modal-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
  background: rgba(0, 0, 0, 0.9);
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 600ms ease;
}
#modal-popup.visible {
  z-index: 99999;
  visibility: visible;
}
#modal-popup.in-transition {
  opacity: 1;
}
#modal-popup.in-transition .popup,
#modal-popup.in-transition .popup-2 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 200ms;
}
#modal-popup .popup,
#modal-popup .popup-2 {
  background-color: transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  min-width: 300px;
  max-width: 1115px;
  width: 80%;
  min-height: 150px;
  max-height: 80%;
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
#modal-popup .popup video,
#modal-popup .popup iframe,
#modal-popup .popup-2 video,
#modal-popup .popup-2 iframe {
  display: block;
  width: 100%;
}
#modal-popup .popup video,
#modal-popup .popup-2 video {
  height: auto;
}
#modal-popup .popup iframe,
#modal-popup .popup-2 iframe {
  height: 80vh;
}
#modal-popup .close {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 0;
}
#modal-popup .slide .thumbnail {
  display: flex;
  position: relative;
}
#modal-popup .slide .thumbnail img {
  max-height: 606px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#modal-popup .slide .caption {
  margin-top: 19px;
}
#modal-popup .slide.swiper-slide-prev .thumbnail, #modal-popup .slide.swiper-slide-next .thumbnail {
  overflow: hidden;
  padding-top: 35px;
  padding-bottom: 25px;
}
#modal-popup .slide.swiper-slide-prev .thumbnail::after, #modal-popup .slide.swiper-slide-next .thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  pointer-events: none;
  z-index: 1;
  height: calc(100% - 60px);
  top: 35px;
}
#modal-popup .slide.swiper-slide-prev .caption, #modal-popup .slide.swiper-slide-next .caption {
  display: none;
}

#popup-view {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.85);
}
#popup-view .popup-inner {
  position: absolute;
  top: 4%;
  right: 4%;
  bottom: 4%;
  left: 4%;
}
#popup-view .popup-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#popup-view .popup-close-view {
  position: absolute;
  top: 1.5%;
  right: 2%;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  background: url("../images/common.svg") 0 0 no-repeat;
}
@media only screen and (max-width: 767px) {
  #popup-view .popup-close-view {
    top: 1%;
  }
}

.specials #main-content.center-column {
  padding: 0;
}
.specials .one-column-acm {
  margin-bottom: 56px;
}
.specials .image-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1260px;
  margin: auto;
  padding: 0 18px;
  margin-bottom: 96px;
}
.specials .image-list.acms-present {
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .specials .image-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.specials .image-list-item {
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1023px) {
  .specials .image-list-item {
    max-width: initial;
    width: 100%;
  }
}
.specials .image-list-item .special-thumbnail {
  position: relative;
}
.specials .image-list-item .special-thumbnail .image {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  width: 100%;
  height: 369px;
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .special-thumbnail .image {
    height: 200px;
  }
}
.specials .image-list-item .special-thumbnail .bubble-text {
  position: absolute;
  left: 24px;
  top: 24px;
  border-radius: 160px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  text-transform: uppercase;
  z-index: 1;
  max-width: calc(100% - 104px);
}
.specials .image-list-item .special-thumbnail .bubble-text.dark-blur {
  background: rgba(0, 0, 0, 0.4);
}
.specials .image-list-item .special-thumbnail .share-icon {
  opacity: 1;
  pointer-events: all;
}
.specials .image-list-item .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  overflow: hidden;
  flex-grow: 1;
  padding: 26px 24px;
}
@media only screen and (max-width: 1023px) {
  .specials .image-list-item .content-wrapper {
    flex-direction: column;
    padding: 18px;
  }
}
@media only screen and (max-width: 1023px) {
  .specials .image-list-item .content-wrapper .top-side {
    display: flex;
    align-self: flex-start;
    flex-direction: column;
  }
}
.specials .image-list-item .content-wrapper h4 {
  margin-bottom: 10px;
  max-width: 288px;
  text-align: left;
}
.specials .image-list-item .content-wrapper .buttons-container {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .specials .image-list-item .content-wrapper .buttons-container {
    margin-top: 24px;
  }
}
.specials .image-list-item .content-wrapper h3 {
  color: #006BB6;
  font-weight: 700;
  line-height: 48px;
}
.specials .image-list-item .content-wrapper .p-text {
  text-align: left;
  text-transform: uppercase;
}
.specials .image-list-item .content-wrapper .content {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.72px;
}

.single-special {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .single-special .socials {
    text-align: center;
  }
}
.single-special .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .single-special .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.page-content .careers .narrow {
  width: 20%;
}

.google-map {
  position: relative;
  background: #000;
}
.google-map:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 6px solid transparent;
  border-top-color: #006BB6;
  border-bottom-color: #FCB131;
  border-left-color: #910028;
  border-right-color: #518439;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.google-map.loaded:before {
  content: none;
}

.hotel-location-map,
.poi-map-canvas {
  height: 450px;
  background: #000;
}
.hotel-location-map h4,
.poi-map-canvas h4 {
  margin: 0;
  font: 500 16px/24px "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  color: #FCB131;
}
.hotel-location-map p,
.poi-map-canvas p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
}
.hotel-location-map a,
.poi-map-canvas a {
  color: #FCB131;
}
.hotel-location-map a:hover,
.poi-map-canvas a:hover {
  color: #fff;
}
.hotel-location-map .button,
.poi-map-canvas .button {
  display: block;
}
.hotel-location-map .map-content,
.poi-map-canvas .map-content {
  overflow: hidden;
}

.hotel-location-map .map-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hotel-location-map .leaflet-popup-close-button {
  display: none;
}
.hotel-location-map .leaflet-bar {
  border-radius: 6px;
  border: none;
}
.hotel-location-map .leaflet-bar a:first-child,
.hotel-location-map .leaflet-bar a:last-child {
  border-radius: 6px;
}
.hotel-location-map .leaflet-control-attribution a {
  display: none;
}
.hotel-location-map .leaflet-bar a,
.hotel-location-map .leaflet-bar a:hover {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  margin-top: 1px;
  border-radius: 6px;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
  background: #FCB131;
  transition: background 300ms;
  top: 50%;
}
.hotel-location-map .leaflet-bar a,
.hotel-location-map .leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.hotel-location-map .leaflet-control-container {
  position: absolute;
  right: 72px;
  bottom: 84px;
  border-radius: 12px;
  font-size: 0;
  z-index: 500;
}
.hotel-location-map .leaflet-control-zoom.leaflet-bar.leaflet-control:first-child {
  margin-top: 0;
  top: -35px;
}
.hotel-location-map .leaflet-control-zoom.leaflet-bar.leaflet-control:after {
  content: "";
  background: #000;
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  left: 14px;
  top: 62px;
}
.hotel-location-map .leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-in {
  position: relative;
  bottom: 11px;
  border: none;
}
.hotel-location-map .leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-in:before {
  content: "";
  background: #000;
  display: block;
  width: 2px;
  height: 12px;
  position: absolute;
  left: 19px;
  top: 15px;
}
.hotel-location-map .leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-in:after {
  content: "";
  background: #000;
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  left: 14px;
  top: 20px;
}

.map-content {
  background: #006BB6;
  font-size: 14px;
  line-height: 24px;
  overflow: visible !important;
  padding: 12px;
  position: absolute;
  text-align: center;
  color: #fff;
  min-width: 160px;
}
.map-content:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #006BB6;
}
.map-content h3, .map-content p {
  margin-bottom: 5px;
  font-weight: 400;
}
.map-content h3 {
  font: 500 16px/24px "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.map-content a {
  color: #fff;
}
.map-content a:hover {
  color: #fff;
}
.map-content .p-small-2 {
  white-space: nowrap;
}
.map-content .button {
  margin-top: 20px;
}

.pressroom {
  text-align: center;
}
.pressroom .pressroom-item {
  display: inline-block;
  vertical-align: top;
  width: calc(33% - 20px);
  height: 400px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 20px 0;
  background-color: #000;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .pressroom .pressroom-item {
    width: calc(40% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
    margin: 10px 0;
  }
}
.pressroom .pressroom-item h4 {
  color: #FCB131;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pressroom .pressroom-item time {
  color: #006BB6;
  font-weight: 600;
  display: block;
  margin: 5px 0;
}
.pressroom .pressroom-item.img .description {
  background: rgba(0, 0, 0, 0.7);
}
.pressroom .pressroom-item .description {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px 20px 20px;
}
.pressroom .pressroom-item .description .content-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.pressroom .pressroom-item .description .centered time {
  margin: 10px 0;
  display: block;
  font-weight: bold;
}
.pressroom .pressroom-item .description p {
  color: #fff;
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 0;
}
.pressroom .pressroom-item .pdf {
  color: #FCB131;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  line-height: 16px;
  padding-left: 0 !important;
}
.pressroom .pressroom-item .pdf:hover {
  color: #fff;
}
.pressroom .pressroom-item .view-gallery {
  margin-top: 20px;
}

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

.form {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .form {
    text-align: left;
  }
}
.form .ui-menu-item a {
  text-align: left;
}
.form h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d1d1;
}
.form label {
  width: 40%;
  line-height: 1.2;
  margin: 12px 20px 0 0;
  float: left;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .form label {
    display: block;
    float: none;
    margin: 0 0 20px;
    text-align: left;
    width: auto;
  }
}
.form label em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
.form p {
  margin-bottom: 10px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .form p {
    margin-bottom: 20px;
  }
}
.form p:after {
  clear: both;
  content: "";
  display: table;
}
.form p span {
  float: left;
  margin: 0 10px 0 0;
}
.form p span.checkbox-group {
  margin-bottom: 10px;
}
.form p span input {
  display: inline;
  float: none;
  margin: 0;
}
.form p span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}
.form p span.group label {
  display: block;
  margin-bottom: 10px;
}
.form p span.group label input {
  margin-right: 0.4em;
}
.form input[type=text], .form input[type=date], .form textarea, .form select, .form .input-overlay {
  background: #fff;
  color: #53565a;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 270px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .form input[type=text], .form input[type=date], .form textarea, .form select, .form .input-overlay {
    padding: 0 20px;
    width: 100%;
    text-align: left;
  }
}
.form .input-overlay {
  opacity: 0;
  margin-top: -40px;
}
@media only screen and (max-width: 767px) {
  .form .select-wrapper {
    width: 100%;
  }
}
.form textarea {
  height: 100px;
  overflow: auto;
  line-height: 20px;
  padding: 10px;
}
.form input[type=checkbox],
.form input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
  float: left;
}
.form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .datepicker-input-wrapper {
  float: left;
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick, .form .input-overlay {
  width: 100px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .form input.date-pick, .form .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
.form .input-overlay {
  clear: both;
}
.form .ui-datepicker-trigger {
  float: left;
  position: static;
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .controls p {
  padding: 20px 0 0 40%;
  width: auto;
  background: none;
}
@media only screen and (max-width: 767px) {
  .form .controls p {
    padding: 0;
    text-align: center;
  }
}
.form .controls .button {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    display: inline-block;
    margin: 0;
  }
}

#tournament-sign-up-form .radio-group {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #tournament-sign-up-form .radio-group {
    width: 100%;
  }
}

#row_sponsorship_level .radio-group span, #row_hotel_stay_package .radio-group span {
  margin-bottom: 10px;
  float: none;
  display: inline-block;
}
#row_sponsorship_level .radio-group span:nth-of-type(1), #row_hotel_stay_package .radio-group span:nth-of-type(1) {
  font-weight: 500;
}
#row_sponsorship_level .radio-group span:not(:nth-of-type(1)), #row_hotel_stay_package .radio-group span:not(:nth-of-type(1)) {
  padding-left: 20px;
  position: relative;
}
#row_sponsorship_level .radio-group span:not(:nth-of-type(1)):before, #row_hotel_stay_package .radio-group span:not(:nth-of-type(1)):before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  background: #006BB6;
  border-radius: 100%;
  transition: background 350ms ease-in-out;
}
#row_sponsorship_level .radio-group span:not(:nth-of-type(1)):hover:before, #row_hotel_stay_package .radio-group span:not(:nth-of-type(1)):hover:before {
  background-color: #FCB131;
}
#row_sponsorship_level .radio-group span span, #row_hotel_stay_package .radio-group span span {
  font-weight: 400 !important;
}
#row_sponsorship_level .radio-group span br + span, #row_hotel_stay_package .radio-group span br + span {
  margin-top: 10px;
  margin-left: 20px;
}

#row_hotel_stay_package > label:nth-of-type(1) span {
  float: none;
  display: inline-block;
  margin-top: 10px;
}

#row_deadline, #row_sizes, #row_credit_pay {
  margin-left: calc(40% + 20px);
}
@media only screen and (max-width: 767px) {
  #row_deadline, #row_sizes, #row_credit_pay {
    margin-left: 0;
  }
}

#compliance {
  float: none;
}

@media only screen and (min-width: 1024px) {
  #dinner-to-go-request input[type=text], #dinner-to-go-request input[type=date], #dinner-to-go-request textarea, #dinner-to-go-request select, #dinner-to-go-request .input-overlay {
    width: 325px;
  }
}
#dinner-to-go-request .container {
  margin-bottom: 35px;
  width: 100%;
  height: 20px;
}
#dinner-to-go-request .container .total {
  display: inline-block;
  float: left;
  font-size: 15px;
  margin-top: 8px;
  font-weight: 500;
  color: #777;
}
@media only screen and (max-width: 767px) {
  #dinner-to-go-request .container .total {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  #spa-intake-form #appointment {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #spa-intake-form #appointment .type_datepicker {
    margin-left: 0;
  }
}
#spa-intake-form #appointment #row_appointment_time input {
  width: 120px;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  padding: 0 10px;
  background: #fff;
  color: #53565a;
  resize: none;
  border: 1px solid #d1d1d1;
}
@media only screen and (max-width: 767px) {
  #spa-intake-form #appointment #row_appointment_time input {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #spa-intake-form #appointment #row_appointment_time {
    width: 100%;
    margin-left: 0;
  }
}
#spa-intake-form #appointment #row_serice_type {
  flex-basis: 100%;
}

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

#form_module_container_errors {
  color: #b31919;
}

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

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

#form_module_container_success {
  color: green;
}

[id*=form_form_] {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] {
    text-align: left;
  }
}
[id*=form_form_] fieldset + fieldset {
  margin-top: 20px;
}
[id*=form_form_] h3 {
  text-align: left;
}
[id*=form_form_] em {
  color: #477831;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  font-style: normal;
  align-self: flex-start;
}
[id*=form_form_] label {
  color: #000;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] label {
    font-size: 16px;
  }
}
[id*=form_form_] p {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] p {
    margin-bottom: 20px;
  }
}
[id*=form_form_] p:after {
  clear: both;
  content: "";
  display: table;
}
[id*=form_form_] p span {
  float: left;
  margin: 0 10px 0 0;
}
[id*=form_form_] p span.checkbox-group {
  margin-bottom: 10px;
}
[id*=form_form_] p span input {
  display: inline;
  float: none;
  margin: 0;
}
[id*=form_form_] p span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}
[id*=form_form_] p span.group {
  margin-top: 12px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] p span.group {
    margin-top: 0;
  }
}
[id*=form_form_] p span.group label {
  display: block;
  margin-bottom: 10px !important;
  margin-top: 0;
}
[id*=form_form_] p span.group label input {
  margin-right: 0.4em;
}
[id*=form_form_] .select-wrapper {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .select-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .select-wrapper .select-icon {
  position: absolute;
  top: 44px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) translateY(-50%);
  margin-top: 0px;
  pointer-events: none;
}
[id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
  background: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  color: #000;
  height: 56px;
  padding: 0 18px;
  resize: none;
  width: 100%;
  font-size: 16px;
  line-height: 32px;
  margin-top: 18px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.8px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
    width: 100%;
    text-align: left;
  }
}
[id*=form_form_] input[type=text].form_module_field_error, [id*=form_form_] input[type=number].form_module_field_error, [id*=form_form_] input[type=email].form_module_field_error, [id*=form_form_] input[type=phone].form_module_field_error, [id*=form_form_] input[type=url].form_module_field_error, [id*=form_form_] input[type=datepicker].form_module_field_error, [id*=form_form_] textarea.form_module_field_error, [id*=form_form_] select.form_module_field_error, [id*=form_form_] .input-overlay.form_module_field_error {
  border-color: #b31919;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
    text-align: left;
  }
}
[id*=form_form_] input[type=text]::-moz-placeholder, [id*=form_form_] input[type=number]::-moz-placeholder, [id*=form_form_] input[type=email]::-moz-placeholder, [id*=form_form_] input[type=phone]::-moz-placeholder, [id*=form_form_] input[type=url]::-moz-placeholder, [id*=form_form_] input[type=datepicker]::-moz-placeholder, [id*=form_form_] textarea::-moz-placeholder, [id*=form_form_] select::-moz-placeholder, [id*=form_form_] .input-overlay::-moz-placeholder {
  color: #000;
}
[id*=form_form_] input[type=text]::placeholder, [id*=form_form_] input[type=number]::placeholder, [id*=form_form_] input[type=email]::placeholder, [id*=form_form_] input[type=phone]::placeholder, [id*=form_form_] input[type=url]::placeholder, [id*=form_form_] input[type=datepicker]::placeholder, [id*=form_form_] textarea::placeholder, [id*=form_form_] select::placeholder, [id*=form_form_] .input-overlay::placeholder {
  color: #000;
}
[id*=form_form_] textarea {
  float: left;
  height: 100px;
  overflow: auto;
  line-height: 20px;
  padding: 12px 18px;
}
[id*=form_form_] input[type=checkbox],
[id*=form_form_] input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=checkbox],
  [id*=form_form_] input[type=radio] {
    margin-right: 5px;
  }
}
[id*=form_form_] .datepicker-input-wrapper {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .datepicker-input-wrapper {
    float: none;
  }
}
[id*=form_form_] input[type=datepicker], [id*=form_form_] .input-overlay {
  float: left;
  width: 100%;
}
[id*=form_form_] .input-overlay {
  width: 100px;
  float: left;
  clear: both;
  opacity: 0;
  position: absolute;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
[id*=form_form_] .ui-datepicker-trigger {
  float: left;
  right: 18px;
  bottom: calc(50% - 32px);
  position: absolute;
  margin: 0;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/date-picker.svg") 0 0 no-repeat;
}
[id*=form_form_] .ui-datepicker-trigger:hover {
  background-position: 0 0;
}
[id*=form_form_] .button:hover input[type=submit] {
  color: #000;
}
[id*=form_form_] input[type=submit] {
  display: block;
  font: 700 12px/18px "Open Sans", "Arial", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  -moz-text-align-last: auto;
       text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}
[id*=form_form_] .g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
[id*=form_form_] .form-builder-field {
  position: relative;
  width: 100%;
  text-align: left;
  clear: both;
  margin-bottom: 24px;
}
[id*=form_form_] .form-builder-field[class*=textarea] label {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=textarea] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputhidden] {
  display: none;
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] > label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] > label, [id*=form_form_] .form-builder-field[class*=radiogroup] > label {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] > label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] > label, [id*=form_form_] .form-builder-field[class*=radiogroup] > label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label {
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] label {
  width: 60%;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] label {
    margin-left: 0;
    width: 100%;
  }
}
[id*=form_form_] .form-builder-field[class*=inputsubmit] {
  margin-left: 20px;
  padding: 20px 0 0 40%;
  width: auto;
  background: none;
}
[id*=form_form_] .form-builder-field .compliance {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
[id*=form_form_] .form-builder-field .compliance em {
  padding: 12px 10px 0 0;
  font-size: 14px;
}
[id*=form_form_] .form-builder-field .compliance input[type=checkbox] {
  margin: 10px 5px 0 0;
}
[id*=form_form_] .form-builder-field .compliance > label {
  width: auto;
  text-transform: none;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  font-weight: normal;
  margin-left: 5px;
  margin-top: 10px;
}
[id*=form_form_] .form-builder-field[class*=paragraph] {
  width: 100%;
  margin: 64px auto 36px 0;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=paragraph] {
    margin: 32px auto 18px 0;
  }
}
[id*=form_form_] .form-builder-field[class*=paragraph] p {
  color: #000;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.8px;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-field[class*=paragraph] p {
    line-height: 36px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputfile] {
  line-height: 1;
}
[id*=form_form_] .form-builder-field[class*=inputfile] input[type=file] {
  margin-top: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputfile] label {
    margin-right: 20px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputfile] .fake-input {
  font: 500 16px/1.2 "Open Sans", "Arial", sans-serif;
  color: #000;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
  width: 50%;
}
[id*=form_form_] .form-builder-field[class*=inputfile] .fake-input:before {
  content: "";
  background: url("../images/paperclip.png") no-repeat;
  background-size: contain;
  width: 16px;
  height: 17px;
  display: block;
  position: relative;
  float: left;
  margin-right: 10px;
}
[id*=form_form_] .form-builder-field .radio-group-wrapper {
  display: block;
  float: none;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
}
[id*=form_form_] .form-builder-field .radio-group-wrapper .radio-group-custom {
  display: flex;
  flex-flow: column;
}
[id*=form_form_] .form-builder-field .radio-group-wrapper .radio-group-custom .inner-wrapper {
  text-align: left;
}
[id*=form_form_] .form-builder-field .radio-group-wrapper .radio-group-custom .inner-wrapper ul {
  line-height: 1.5;
  margin-top: 10px;
}
[id*=form_form_] .form-builder-field .radio-group-wrapper .radio-group-custom .inner-wrapper > .label-name {
  margin-left: 6px;
}
[id*=form_form_] .form-builder-group {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-2 .form-builder-field input[type=email] {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-2.submission-row {
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-2.submission-row {
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field {
  width: auto;
  align-content: center;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field {
    width: -moz-fit-content;
    width: fit-content;
    align-self: center;
  }
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field.privacy label.checkbox-label {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-left: 30px;
  top: 0;
  gap: 8px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field.privacy label.checkbox-label {
    top: 8px;
  }
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field.privacy label.checkbox-label p {
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.8px;
  color: #000;
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field.privacy input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 24px;
  width: 24px;
  left: -39px;
  top: 1px;
  z-index: 1;
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field.privacy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 0;
  transition: all 0.2s ease;
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field.privacy.checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 40%;
  transform: translateY(-50%);
  width: 8px;
  height: 15px;
  border-left: 2px solid #006BB6;
  border-bottom: 2px solid #006BB6;
  transform: rotate(45deg) translateY(-50%) scaleX(-1);
  transition: all 0.2s ease;
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field a {
  color: #000;
  text-decoration: underline;
}
[id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field a:hover {
  color: #000;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-2.submission-row .form-builder-field.button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
  width: calc(33.33% - 16px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-3 .form-builder-field input[type=email] {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
  width: calc(25% - 18px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-4 .form-builder-field input[type=email] {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] label {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field {
  width: calc(66.66% - 20px);
}
[id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field:nth-child(even) {
  width: calc(33.33% - 20px);
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field:nth-child(even) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .custom-checkbox, [id*=form_form_] .custom-radio {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 2em;
  line-height: 1.4em;
}
[id*=form_form_] .custom-checkbox:before, [id*=form_form_] .custom-radio:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  background: #fff;
  transition: transform 350ms ease-in-out/2;
  border: #000 1px solid;
}
@media only screen and (min-width: 1024px) {
  [id*=form_form_] .custom-checkbox:hover:before, [id*=form_form_] .custom-radio:hover:before {
    transform: scale(1.1);
  }
  [id*=form_form_] .custom-checkbox:active:before, [id*=form_form_] .custom-radio:active:before {
    transform: scale(1);
  }
}
[id*=form_form_] .custom-checkbox:after, [id*=form_form_] .custom-radio:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid #b31919;
  border-left: 2px solid #b31919;
  transform: rotate(-45deg) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: transform 350ms ease-in-out/2 350ms ease-in-out/3, opacity 350ms ease-in-out/2, visibility 350ms ease-in-out/2;
  pointer-events: none;
}
[id*=form_form_] .custom-checkbox.checked:after, [id*=form_form_] .custom-radio.checked:after {
  transform: rotate(-45deg) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 350ms ease-in-out/3, opacity 350ms ease-in-out/3, visibility 350ms ease-in-out/3;
}
[id*=form_form_] .custom-checkbox input, [id*=form_form_] .custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
[id*=form_form_] .custom-checkbox.active, [id*=form_form_] .custom-radio.active {
  color: #000;
}
[id*=form_form_] .custom-radio:before {
  border-radius: 50%;
}
[id*=form_form_] .custom-radio:after {
  border: none;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 3px;
  border-radius: 50%;
  transform: scale(2);
  background: #b31919;
}
[id*=form_form_] .custom-radio.checked:after {
  transform: scale(1);
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] input[type=file] {
    width: 100%;
  }
}
[id*=form_form_] .clear-file-input {
  font-size: 12px;
  transition: opacity 350ms ease-in-out;
}
[id*=form_form_] .clear-file-input.inactive {
  opacity: 0;
  visibility: hidden;
}

[id=form_form_15] #fieldset_hFo2WvQhTxGT9tNwBIlQ h3 {
  display: none;
}

.poi-widget {
  padding-top: 110px;
}
@media only screen and (max-width: 767px) {
  .poi-widget {
    padding-top: 40px;
  }
}

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

.poi-zoom {
  position: absolute;
  right: 32px;
  bottom: 84px;
  border-radius: 12px;
  font-size: 0;
  z-index: 500;
  display: none;
}
@media only screen and (max-width: 767px) {
  .poi-zoom {
    display: block;
  }
}
.poi-zoom .poi-zoom-button {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  margin-top: 1px;
  border-radius: 6px;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
  background: #FCB131;
  transition: background 300ms;
  top: 50%;
}
.poi-zoom .poi-zoom-button:first-child {
  margin-top: 0;
}
.poi-zoom .poi-zoom-button:after {
  content: "";
  background: #000;
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  left: 14px;
  top: 20px;
}
.poi-zoom .poi-zoom-button.zoom-in:before {
  content: "";
  background: #000;
  display: block;
  width: 2px;
  height: 12px;
  position: absolute;
  left: 19px;
  top: 15px;
}
.poi-zoom .poi-zoom-button.zoom-in:after {
  content: "";
  background: #000;
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  left: 14px;
  top: 20px;
}
.poi-zoom .poi-zoom-button.zoom-in {
  position: relative;
  bottom: 11px;
}

.poi-widget .poi-overlay .category-selector {
  margin-bottom: 0;
}
.poi-widget .poi-overlay .background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  background-size: cover;
}
@media only screen and (max-width: 1023px) {
  .poi-widget .poi-overlay .background {
    display: none;
  }
}
.poi-widget .poi-overlay .background.background1 {
  left: 356px;
  bottom: -24px;
  width: 110px;
  height: 110px;
  z-index: 3;
}
@media only screen and (max-width: 1800px) {
  .poi-widget .poi-overlay .background.background1 {
    left: 256px;
  }
}
@media only screen and (max-width: 1700px) {
  .poi-widget .poi-overlay .background.background1 {
    left: 156px;
  }
}
@media only screen and (max-width: 1600px) {
  .poi-widget .poi-overlay .background.background1 {
    left: 56px;
  }
}
@media only screen and (max-width: 1200px) {
  .poi-widget .poi-overlay .background.background1 {
    left: -25px;
  }
}
.poi-widget .poi-overlay .background.background2 {
  left: 225px;
  bottom: -13px;
  width: 305px;
  height: 265px;
  z-index: 2;
}
@media only screen and (max-width: 1800px) {
  .poi-widget .poi-overlay .background.background2 {
    left: 125px;
  }
}
@media only screen and (max-width: 1700px) {
  .poi-widget .poi-overlay .background.background2 {
    left: 25px;
  }
}
@media only screen and (max-width: 1600px) {
  .poi-widget .poi-overlay .background.background2 {
    left: -75px;
  }
}
@media only screen and (max-width: 1200px) {
  .poi-widget .poi-overlay .background.background2 {
    left: auto;
    right: -150px;
    bottom: -100px;
  }
}
.poi-widget .poi-overlay .background.background3 {
  left: 93px;
  bottom: 40px;
  width: 253px;
  height: 194px;
  z-index: -1;
}
@media only screen and (max-width: 1800px) {
  .poi-widget .poi-overlay .background.background3 {
    left: 10px;
  }
}
@media only screen and (max-width: 1700px) {
  .poi-widget .poi-overlay .background.background3 {
    left: -100px;
  }
}
@media only screen and (max-width: 1600px) {
  .poi-widget .poi-overlay .background.background3 {
    left: auto;
    right: -120px;
    bottom: -100px;
    z-index: 1;
  }
}
@media only screen and (max-width: 1200px) {
  .poi-widget .poi-overlay .background.background3 {
    display: none;
  }
}

.poi-acm {
  position: relative;
}
.poi-acm .h2 {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 401;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .h2 {
    top: 91px;
  }
}
.poi-acm .poi-map {
  height: 720px;
  background: #000;
  /* Safari still needs this vendor-prefix: https://caniuse.com/mdn-css_selectors_fullscreen */
  /* stylelint-disable-next-line selector-no-vendor-prefix */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .poi-map {
    height: 513px;
  }
}
.poi-acm .poi-map .poi-opened {
  filter: grayscale(100%) brightness(0.85) contrast(2) saturate(0%);
  z-index: 701 !important;
}
.poi-acm .poi-map .leaflet-popup-close-button {
  display: none;
}
.poi-acm .poi-map .leaflet-fullscreen-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.909088' y='0.90918' width='18.1818' height='18.1818' stroke='black' stroke-width='1.5'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.7273 0H7.27273V7.27273H0V12.7273H7.27273V20H12.7273V12.7273H20V7.27273H12.7273V0Z' fill='%23FCB131'/%3E%3C/svg%3E");
}
.poi-acm .poi-map .leaflet-bar.leaflet-control {
  border-radius: 12px;
  border: none;
  margin: 0;
  position: absolute;
  bottom: 32px;
  right: 32px;
}
.poi-acm .poi-map .leaflet-bar.leaflet-control a {
  background-color: #FCB131;
  border-radius: 6px !important;
  width: 40px;
  height: 40px;
}
.poi-acm .poi-map .leaflet-bar.leaflet-control a:hover {
  background-color: #FCB131;
}
.poi-acm .poi-map .leaflet-container:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  z-index: 99999;
}
.poi-acm .poi-map .leaflet-container:-webkit-full-screen,
.poi-acm .poi-map .leaflet-container:fullscreen {
  width: 100% !important;
  height: 100% !important;
  z-index: 99999;
}
.poi-acm .poi-map .leaflet-pseudo-fullscreen {
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999;
}

.poi-overlay {
  position: relative;
  text-align: center;
  z-index: 20;
}
.poi-overlay .category-selector {
  position: relative;
  margin: 0 0 20px 0;
  white-space: normal;
}
.home .poi-overlay .category-selector {
  background: #006BB6;
  margin-top: 60px;
}
.home .poi-overlay .category-selector .button {
  position: relative;
  margin: 0;
  border: none;
  background: none;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  transition: 350ms ease-in-out;
  z-index: 4;
}
.home .poi-overlay .category-selector .button:hover, .home .poi-overlay .category-selector .button.active {
  color: #FCB131;
}
.home .poi-overlay .category-selector .select-wrapper {
  margin: 0 10px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.home .poi-overlay .category-selector select {
  margin: 0;
}

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

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

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

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

#calendar-year {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-year {
    display: none;
  }
}
#calendar-year:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-year li {
  float: left;
}
#calendar-year a {
  display: block;
  padding: 5px 0;
  margin-right: 1px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
  transition: 350ms ease-in-out;
}
#calendar-year a:hover {
  border-color: #FCB131;
  color: #FCB131;
}
#calendar-year .active a {
  border-color: #006BB6;
  color: #006BB6;
}
#calendar-year .active a:hover {
  border-color: #FCB131;
  color: #FCB131;
}

#calendar-month {
  height: 40px;
  margin-bottom: 20px;
  position: relative;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: newspaper;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
}
#calendar-month:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-month:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 100%;
  height: 0;
}
#calendar-month li {
  display: inline;
}
#calendar-month a {
  display: inline-block;
  vertical-align: top;
  padding: 0 9px;
  height: 40px;
  line-height: 40px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #006BB6;
  transition: 350ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #calendar-month a {
    padding: 0 5px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-month a {
    padding: 0 7px;
    font-size: 11px;
    text-align: center;
  }
}
#calendar-month a:hover {
  background: #FCB131;
  color: #fff;
}
#calendar-month a.active {
  background: #006BB6;
  color: #fff;
}
#calendar-month a.active:hover {
  background: #006BB6;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  #calendar-month li {
    display: none;
  }
  #calendar-month li.current, #calendar-month li.prev, #calendar-month li.next {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 30%;
  }
  #calendar-month li.current a {
    font-size: 12px;
    padding: 0 10px;
    display: block;
  }
  #calendar-month li.prev a, #calendar-month li.next a {
    display: block;
    font-size: 12px;
    padding-right: 0;
    padding-left: 30px;
  }
  #calendar-month li.prev a:after, #calendar-month li.next a:after {
    background: url("../images/common.svg") -200px -196px no-repeat;
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 11px;
    width: 11px;
    height: 18px;
  }
  #calendar-month li.prev a:hover, #calendar-month li.next a:hover {
    background-color: transparent;
    color: #FCB131;
  }
  #calendar-month li.prev a:hover:after, #calendar-month li.next a:hover:after {
    background-position: -231px -196px;
  }
  #calendar-month li.prev a:active, #calendar-month li.next a:active {
    top: auto;
  }
  #calendar-month li.next a {
    padding-left: 0;
    padding-right: 30px;
  }
  #calendar-month li.next a:after {
    background-position: -200px -234px;
    left: auto;
    right: 5px;
  }
  #calendar-month li.next a:hover:after {
    background-position: -231px -234px;
  }
}

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

#calendar-week, #calendar-days {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#calendar-week li, #calendar-days li {
  display: inline-block;
  width: 13%;
}

#calendar-week {
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-week {
    display: none;
  }
}
#calendar-week li {
  color: #FCB131;
  text-align: center;
  font-weight: 500;
}
#calendar-week li .short {
  display: none;
}
@media only screen and (max-width: 1023px) {
  #calendar-week li .full {
    display: none;
  }
  #calendar-week li .short {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-week li .full {
    display: none;
  }
  #calendar-week li .short {
    display: inline;
  }
}

#calendar-days {
  position: relative;
}
#calendar-days li {
  margin: 0 0 1em;
  min-height: 8em;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  vertical-align: top;
  position: static;
  background: rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 767px) {
  #calendar-days li {
    display: block;
    float: none;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
  }
  #calendar-days li dl {
    margin-top: auto !important;
    height: auto;
  }
  #calendar-days li dl dt {
    width: 100% !important;
    padding-bottom: 10px;
  }
}
#calendar-days li time a {
  text-align: center;
  color: #000;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
}
#calendar-days li time a:hover {
  background: #d1d1d1;
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(0, 0, 0, 0.02);
}
#calendar-days li.prev_month time a, #calendar-days li.next_month time a {
  color: rgba(0, 0, 0, 0.3);
}
#calendar-days li.prev_month time a:hover, #calendar-days li.next_month time a:hover {
  background: #f1f1f1;
}
#calendar-days li.day_items3 {
  height: 9em;
}
#calendar-days li.day_items4 {
  height: 11em;
}
#calendar-days li.day_items5 {
  height: 13em;
}
#calendar-days li.day_items6 {
  height: 15em;
}
#calendar-days li.day_items7 {
  height: 17em;
}
#calendar-days li.day_items8 {
  height: 19em;
}
#calendar-days li.day_items9 {
  height: 21em;
}
#calendar-days li.day_items10 {
  height: 23em;
}
#calendar-days li.day_items11 {
  height: 25em;
}
#calendar-days li.day_items12 {
  height: 27em;
}
#calendar-days li.day_items13 {
  height: 29em;
}
#calendar-days li.day_items14 {
  height: 31em;
}
#calendar-days li.day_items15 {
  height: 33em;
}
#calendar-days li.day_items16 {
  height: 35em;
}
#calendar-days li.day_items17 {
  height: 37em;
}
#calendar-days li.day_items18 {
  height: 39em;
}
#calendar-days li.day_items19 {
  height: 41em;
}
#calendar-days li.day_items20 {
  height: 43em;
}
#calendar-days dl {
  display: block;
  height: 2em;
}
#calendar-days dl:hover {
  position: relative;
}
#calendar-days dl.hide {
  display: none;
}
@media only screen and (max-width: 767px) {
  #calendar-days dl.hide {
    display: block;
  }
}
#calendar-days dt {
  position: relative;
}
#calendar-days dt a {
  display: block;
  height: 1.8em;
  width: auto;
  line-height: 1.8em;
  padding: 0 0.5em 0 1em;
  text-decoration: none;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.7em;
  background: #006BB6;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #calendar-days dt a {
    height: 2.8em;
    line-height: 2.8em;
  }
}
#calendar-days dl.w1 dt {
  width: 100%;
}
#calendar-days dl.w2 dt {
  width: 211.538%;
}
#calendar-days dl.w3 dt {
  width: 323.076%;
}
#calendar-days dl.w4 dt {
  width: 434.614%;
}
#calendar-days dl.w5 dt {
  width: 546.152%;
}
#calendar-days dl.w6 dt {
  width: 657.69%;
}
#calendar-days dl.w7 dt {
  width: 769.228%;
}
#calendar-days dl.c1 dt a {
  background-color: #8db294;
}
#calendar-days dl.c2 dt a {
  background-color: #ada39a;
}
#calendar-days dl.c3 dt a {
  background-color: #85a9b7;
}
#calendar-days dl.c4 dt a {
  background-color: #bc8e8f;
}
#calendar-days dl.c5 dt a {
  background-color: #ac9bc1;
}
#calendar-days dl.c6 dt a {
  background-color: #87b6c7;
}
#calendar-days dl.c7 dt a {
  background-color: #bb85aa;
}
#calendar-days dl.c8 dt a {
  background-color: #a4a4a4;
}
#calendar-days dl dd {
  position: absolute;
  left: 0;
  bottom: 28px;
  background: #000;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
  padding: 20px;
  text-align: left;
  visibility: hidden;
  width: 240px;
  z-index: 999;
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  #calendar-days dl dd {
    display: none !important;
  }
}
#calendar-days dl dd .triangle {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
#calendar-days dl dd .triangle span {
  display: block;
  width: 0;
  margin: 0 auto;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 14px solid #000;
}
#calendar-days dl dd h3 {
  color: #FCB131;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
}
#calendar-days dl dd img {
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}
#calendar-days dl dd p {
  font-size: 12px;
  line-height: 18px;
  padding: 0 0 10px 0;
  width: 100%;
}
#calendar-days dl dd a {
  color: #FCB131;
}
#calendar-days dl dd a:hover {
  color: #fff;
}
#calendar-days dl:hover dd {
  visibility: visible;
}
#calendar-days dl.t1 {
  margin-top: 2em;
}
#calendar-days dl.t2 {
  margin-top: 4em;
}
#calendar-days dl.t3 {
  margin-top: 6em;
}
#calendar-days dl.t4 {
  margin-top: 8em;
}
#calendar-days dl.t5 {
  margin-top: 10em;
}
#calendar-days dl.t6 {
  margin-top: 12em;
}
#calendar-days dl.t7 {
  margin-top: 14em;
}
#calendar-days dl.t8 {
  margin-top: 16em;
}
#calendar-days dl.t9 {
  margin-top: 18em;
}
#calendar-days dl.t10 {
  margin-top: 20em;
}
#calendar-days dl.t11 {
  margin-top: 22em;
}
#calendar-days dl.t12 {
  margin-top: 24em;
}
#calendar-days dl.t13 {
  margin-top: 26em;
}
#calendar-days dl.t14 {
  margin-top: 28em;
}
#calendar-days dl.t15 {
  margin-top: 30em;
}
#calendar-days dl.t16 {
  margin-top: 32em;
}
#calendar-days dl.t17 {
  margin-top: 34em;
}
#calendar-days dl.t18 {
  margin-top: 36em;
}
#calendar-days dl.t19 {
  margin-top: 38em;
}
#calendar-days dl.t20 {
  margin-top: 40em;
}

#calendar.list-view h2 a:hover {
  text-decoration: underline;
}
#calendar.list-view .image-list {
  position: relative;
  overflow: hidden;
  padding: 0;
}
#calendar.list-view .image-list h2 {
  color: #000;
}
#calendar.list-view .image-list h2 a {
  color: inherit;
  text-decoration: none;
}
#calendar.list-view .image-list h2 a:hover {
  color: #FCB131;
}
#calendar.list-view .image-list h3 a {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  text-decoration: none;
}

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

#calendar .single-event {
  text-align: left;
}
#calendar .single-event .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  #calendar .single-event .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

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

#calendar .dates > small {
  display: block;
  color: #006BB6;
  font-weight: 600;
}

#calendar .dates strong {
  color: #910028;
  font-weight: 600;
}

.calendar .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item {
    height: auto;
  }
}
.calendar .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #d1d1d1;
  z-index: -1;
}
.calendar .image-list-item .background {
  position: relative;
  width: 350px;
  height: 300px;
  margin-left: 40px;
  display: block;
  float: right;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .calendar .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .background {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.calendar .image-list-item .description {
  width: 100%;
  display: block;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description {
    text-align: center;
  }
}
.calendar .image-list-item .description h3 {
  font: 24px/30px "Open Sans", "Arial", sans-serif;
  color: #006BB6;
  margin-bottom: 15px;
}
.calendar .image-list-item .description h3 a {
  text-decoration: none;
}
.calendar .image-list-item .description h3 a:hover {
  color: #FCB131;
}
.calendar .image-list-item .description .button {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description .button {
    text-align: center;
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
  }
}

.customlist.image-list {
  display: flex;
  overflow: auto !important;
  flex-wrap: wrap;
  flex-direction: row;
}
.customlist.image-list .image-list-item {
  width: calc(32% - 15px);
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 535px;
  margin: 0 10px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1440px) {
  .customlist.image-list .image-list-item {
    width: calc(24% - 15px);
  }
}
@media only screen and (max-width: 1023px) {
  .customlist.image-list .image-list-item {
    width: calc(49% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .customlist.image-list .image-list-item {
    width: calc(100% - 15px);
  }
}
.customlist.image-list .image-list-item .background {
  margin-left: 0;
  width: 100%;
  float: none;
}
.customlist.image-list .image-list-item .description .button {
  position: relative;
  bottom: auto;
  left: auto;
}

h1, .h1 {
  font-family: "Open Sans", "Arial", sans-serif;
  color: #000;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  h1, .h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 24px;
  }
}
.casino-page h1, .casino-page .h1 {
  font-family: "neulis-sans", sans-serif;
}

h2, .h2 {
  font-family: "Open Sans", "Arial", sans-serif;
  color: #000;
  font-style: normal;
  font-size: 48px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: unset;
}
@media only screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1023px) {
  h2, .h2 {
    text-align: center;
  }
}
html.casino-page h2, html.casino-page .h2 {
  font-family: "neulis-sans", sans-serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #064F94;
}
html.casino-page h2 strong, html.casino-page .h2 strong {
  color: #C0136B;
  -webkit-text-stroke: initial;
}
html.casino-page h2.casino-h2-navy, .casino-h2-navy html.casino-page h2, html.casino-page .h2.casino-h2-navy, .casino-h2-navy html.casino-page .h2 {
  color: transparent;
  -webkit-text-stroke: 1.5px #04325E;
}
html.casino-page h2.casino-h2-navy strong, .casino-h2-navy html.casino-page h2 strong, html.casino-page .h2.casino-h2-navy strong, .casino-h2-navy html.casino-page .h2 strong {
  color: #04325E;
  -webkit-text-stroke: initial;
}
html.casino-page h2.casino-h2-white, .casino-h2-white html.casino-page h2, html.casino-page .h2.casino-h2-white, .casino-h2-white html.casino-page .h2 {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
}
html.casino-page h2.casino-h2-white strong, .casino-h2-white html.casino-page h2 strong, html.casino-page .h2.casino-h2-white strong, .casino-h2-white html.casino-page .h2 strong {
  color: #fff;
  -webkit-text-stroke: initial;
}

h3, .h3 {
  color: #000;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 36px;
  font-style: normal;
  line-height: 48px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
  }
}
.casino-page h3, .casino-page .h3 {
  font-family: "gotham", sans-serif;
}

h4, .h4, .h4 p {
  color: #000;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  h4, .h4, .h4 p {
    line-height: 24px;
  }
}
.casino-page h4, .casino-page .h4, .casino-page .h4 p {
  font-family: "neulis-sans", sans-serif;
}

h5, .h5 {
  color: #000;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 4.167px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  h5, .h5 {
    text-align: center;
  }
}
.casino-page h5, .casino-page .h5 {
  font-family: "neulis-sans", sans-serif;
}
.casino-page h5.casino-h5-navy, .casino-page .h5.casino-h5-navy {
  color: #04325E;
}

h6, .h6 {
  color: #000;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 12px;
}
@media only screen and (max-width: 1023px) {
  h6, .h6 {
    text-align: center;
  }
}
.casino-page h6, .casino-page .h6 {
  font-family: "gotham", sans-serif;
}

.p-large {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .p-large {
    font-size: 16px;
  }
}
.casino-page .p-large {
  font-family: "gotham", sans-serif;
}

p, .p-text {
  color: #000;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.8px;
}
@media only screen and (max-width: 767px) {
  p, .p-text {
    line-height: 36px;
  }
}
@media only screen and (max-width: 1023px) {
  p, .p-text {
    text-align: center;
  }
}
.casino-page p, .casino-page .p-text {
  font-family: "gotham", sans-serif;
}

.p-small {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.casino-page .p-small {
  font-family: "gotham", sans-serif;
}

.p-small-2 {
  color: #fff;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.casino-page .p-small-2 {
  font-family: "gotham", sans-serif;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

section ul li {
  position: relative;
  font-weight: 400;
}
section ul li:before {
  content: "•";
  position: relative;
  padding-right: 10px;
  left: 0;
  color: #000;
}

.custom-page-logo {
  display: none;
}
.spa-page .custom-page-logo {
  display: block;
  width: 380px;
  height: 120px;
  margin: 60px auto;
  background-image: url("../images/logo-spa.svg");
  background-size: cover;
  background-position: 50% 50%;
}
.casino-page .custom-page-logo {
  display: block;
  width: 380px;
  height: 186px;
  margin: 60px auto;
  background-image: url("../images/casino-morongo.png");
  background-size: cover;
  background-position: 50% 50%;
}

.page-content {
  text-align: center;
}
.page-content:after {
  clear: both;
  content: "";
  display: table;
}
.page-content.content-present {
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .page-content.content-present {
    margin: 56px auto;
  }
}
#side-submenu + .page-content {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  #side-submenu + .page-content {
    margin-top: 40px;
  }
}
.page-content .sitemap {
  text-align: left;
}
.page-content hr {
  display: block;
  height: 1px;
  margin: 20px auto;
  border: none;
  background: rgba(0, 107, 182, 0.5);
  color: rgba(0, 107, 182, 0.5);
}
.page-content h2, .page-content .h2, .page-content h3, .page-content .h3, .page-content h4, .page-content h5, .page-content h6, .page-content p, .page-content ul, .page-content ol, .page-content table {
  margin-bottom: 20px;
}
.page-content sup, .page-content sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
.page-content sup {
  top: -0.5em;
}
.page-content sub {
  bottom: -0.25em;
}
.page-content p, .page-content table {
  overflow: visible;
}
.page-content ol {
  list-style: decimal inside;
}
.page-content ul {
  list-style: none;
}
.page-content ol, .page-content ul {
  margin-left: 20px;
}
.page-content ol ol, .page-content ol ul, .page-content ul ul, .page-content ul ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.page-content ol li, .page-content ul li {
  position: relative;
}
.page-content ul > li {
  position: relative;
  padding-left: 0px;
  font-size: 16px;
  line-height: 32px;
}
.page-content ul > li:before {
  content: "•";
  position: relative;
  left: 0;
  padding-right: 10px;
  color: #000;
  transition: color 350ms ease-in-out;
}
.page-content ul > li:hover:before {
  color: #FCB131;
}
@media only screen and (max-width: 767px) {
  .page-content ol, .page-content ul {
    margin-left: 0;
  }
  .page-content .sitemap ol, .page-content .sitemap ul {
    margin-left: 20px;
  }
  .page-content ol ol, .page-content ol ul, .page-content ul ul, .page-content ul ol {
    font-size: 90%;
  }
}
.page-content td, .page-content th, .page-content caption {
  padding: 10px 15px;
  text-align: left;
  vertical-align: middle;
}
.page-content th, .page-content caption {
  vertical-align: bottom;
  padding-top: 0;
  padding-bottom: 20px;
  font: 22px/1 "Open Sans", "Arial", sans-serif;
  color: #006BB6;
}
.page-content td {
  border-top: 1px solid #f7fcfc;
  background: #f2f7f7;
}
.page-content .even td {
  background: #edf5f5;
}
.page-content table p {
  margin: 10px 0;
}
@media only screen and (max-width: 1023px) {
  .page-content .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.page-content .thumbnail {
  float: right;
  margin: 0 0 20px 20px;
}
.page-content .thumbnail a {
  display: block;
}
.page-content .thumbnail img {
  display: block;
}
.page-content .socials {
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 0;
}
.page-content .socials iframe {
  display: inline-block;
  width: 90px;
  height: 21px;
  margin: 0 10px 0 0;
}
.page-content a.pdf {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  padding-left: 23px;
  position: relative;
}
.page-content a.pdf:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 13px;
  height: 16px;
  vertical-align: top;
  margin-right: 10px;
  background: url("../images/common.svg") -600px 0 no-repeat;
}
.page-content a.pdf:hover:before {
  background-position: -633px 0;
}
.page-content a.pdf:active:before {
  background-position: -666px 0;
}
.page-content a.pdf + .size {
  color: #aaa;
  font-size: 10px;
}
.page-content .hotel-location-map {
  margin-bottom: 20px;
}
.page-content .sitemap-description {
  opacity: 0.8;
  font-size: 86%;
}

.checkers-blocks:last-child {
  margin-bottom: -110px;
}
@media only screen and (max-width: 767px) {
  .checkers-blocks:last-child {
    margin-bottom: 0;
  }
}
.checkers-blocks .slideshow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.checkers-blocks .slideshow-wrapper {
  width: 100%;
  height: 100%;
}
.checkers-blocks .checkers-item {
  position: relative;
}
.checkers-blocks .checkers-item .images {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .checkers-blocks .checkers-item .images {
    position: relative;
    width: 100%;
    height: 300px;
  }
}
.checkers-blocks .checkers-item .images .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 6px solid transparent;
  border-top-color: #006BB6;
  border-bottom-color: #FCB131;
  border-left-color: #910028;
  border-right-color: #518439;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.checkers-blocks .checkers-item .images .loading:before {
  top: 8%;
  right: 8%;
  left: auto;
  margin: auto;
}
.checkers-blocks .checkers-item .images .slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.checkers-blocks .checkers-item .content {
  padding: 150px 0;
  margin-left: calc(50% + 120px);
  text-align: left;
  z-index: 1;
}
@media only screen and (max-width: 1440px) {
  .checkers-blocks .checkers-item .content {
    padding: 100px 0;
    margin-left: calc(50% + 40px);
  }
}
@media only screen and (max-width: 767px) {
  .checkers-blocks .checkers-item .content {
    padding: 40px 0;
    margin-left: 0;
  }
}
.checkers-blocks .checkers-item .content p {
  margin-bottom: 20px;
}
.checkers-blocks .checkers-item .content .description h4 {
  margin-bottom: 20px;
}
.checkers-blocks .checkers-item nav {
  margin-top: 40px;
}
.checkers-blocks .checkers-item.right .images {
  left: auto;
  right: 0;
}
.checkers-blocks .checkers-item.right .content {
  margin-left: 0;
  margin-right: calc(50% + 120px);
}
@media only screen and (max-width: 1440px) {
  .checkers-blocks .checkers-item.right .content {
    margin-right: calc(50% + 40px);
  }
}
@media only screen and (max-width: 767px) {
  .checkers-blocks .checkers-item.right .content {
    margin-right: 0;
  }
}
.checkers-blocks .checkers-item.right .slideshow-pagination {
  left: 30px;
  margin-left: 0;
}
.checkers-blocks .checkers-item .slideshow-pagination {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: -46px;
  width: 16px;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .checkers-blocks .checkers-item .slideshow-pagination {
    display: none;
  }
}
.checkers-blocks .checkers-item .slideshow-pagination > * {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: none;
  border: 2px solid #fff;
  margin: 6px 0;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
  transition: 350ms ease-in-out;
  cursor: pointer;
}
.checkers-blocks .checkers-item .slideshow-pagination > *:hover, .checkers-blocks .checkers-item .slideshow-pagination > *.active {
  border-color: #FCB131;
}

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

.two-block {
  margin: 172px auto 161px auto;
  padding: 0 131px 0 110px;
  overflow-x: clip;
}
@media only screen and (max-width: 1023px) {
  .two-block {
    margin: 84px auto 34px auto;
    padding: 0 18px;
  }
}
.two-block .falling-cards-wrapper {
  display: none;
}
.two-block.no-decoration {
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .two-block.no-decoration {
    margin: 56px auto;
  }
}
.two-block.no-margin-top {
  margin-top: 0;
}
@media only screen and (max-width: 1023px) {
  .two-block.falling-cards {
    margin-bottom: 260px;
  }
}
@media only screen and (min-width: 1024px) {
  .two-block.falling-cards .content-wrapper {
    padding: 100px 0;
  }
}
.two-block.falling-cards .falling-cards-wrapper {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  top: calc(100% - 125px);
  right: -236px;
}
@media only screen and (max-width: 1023px) {
  .two-block.falling-cards .falling-cards-wrapper {
    right: initial;
    top: calc(100% + 136px);
    left: calc(50% - 32px);
    transform: translateX(-50%);
    z-index: -1;
    width: -moz-available;
  }
}
.two-block.falling-cards .falling-cards-wrapper .card {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .two-block.falling-cards .falling-cards-wrapper .card {
    width: 100%;
    width: -moz-available;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block.falling-cards .falling-cards-wrapper .ace-hearts {
    height: 92px;
  }
}
.two-block.falling-cards .falling-cards-wrapper .ace-spades {
  top: -160px;
}
@media only screen and (max-width: 1023px) {
  .two-block.falling-cards .falling-cards-wrapper .ace-spades {
    height: 178px;
    top: -172px;
    right: 70px;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block.falling-cards .falling-cards-wrapper.desktop {
    display: none;
  }
}
.two-block.falling-cards .falling-cards-wrapper.mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .two-block.falling-cards .falling-cards-wrapper.mobile {
    display: flex;
  }
}
.two-block .chips-wrapper {
  display: none;
}
.two-block.chips {
  margin-top: 160px;
  margin-bottom: 160px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips {
    margin-top: 78px;
    margin-bottom: 114px;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block.chips .wrapper {
    gap: 84px;
  }
}
.two-block.chips .chips-wrapper {
  display: flex;
}
.two-block.chips .chip {
  position: absolute;
  z-index: 1;
}
.two-block.chips .chip.red-chip-1 {
  left: 37%;
  bottom: -159px;
  width: 118px;
  height: 74px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips .chip.red-chip-1 {
    bottom: -62px;
    height: 44px;
  }
}
.two-block.chips .chip.red-chip-2 {
  right: -50px;
  top: 32%;
  width: 78px;
  height: 63px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips .chip.red-chip-2 {
    height: 38px;
    right: -11px;
  }
}
.two-block.chips .chip.black-chip-1 {
  left: -30px;
  top: 26%;
  width: 85px;
  height: 76px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips .chip.black-chip-1 {
    height: 46px;
    left: -10px;
  }
}
.two-block.chips .chip.black-chip-2 {
  top: -107px;
  left: 21%;
  width: 47px;
  height: 68px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips .chip.black-chip-2 {
    top: -62px;
    height: 41px;
  }
}
.two-block.chips-casino {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 96px;
  padding-bottom: 96px;
}
.casino-page .two-block.chips-casino {
  background-color: rgba(202, 220, 228, 0.5);
}
@media only screen and (max-width: 1023px) {
  .two-block.chips-casino {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block.chips-casino .wrapper {
    gap: 84px;
  }
}
.two-block.chips-casino .chips-wrapper {
  display: flex;
}
.two-block.chips-casino .chip {
  position: absolute;
  z-index: 1;
}
.two-block.chips-casino .chip.red-chip-1 {
  left: 39.2%;
  bottom: -47px;
  width: 118px;
  height: 74px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips-casino .chip.red-chip-1 {
    bottom: -56px;
    height: 44px;
  }
}
.two-block.chips-casino .chip.red-chip-2 {
  right: -50px;
  top: 43.8%;
  width: 78px;
  height: 63px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips-casino .chip.red-chip-2 {
    height: 38px;
    right: -11px;
  }
}
.two-block.chips-casino .chip.black-chip-1 {
  left: -30px;
  top: 14.6%;
  width: 85px;
  height: 76px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips-casino .chip.black-chip-1 {
    height: 46px;
    left: -10px;
  }
}
.two-block.chips-casino .chip.black-chip-2 {
  top: 32.7%;
  left: 23%;
  width: 47px;
  height: 68px;
}
@media only screen and (max-width: 1023px) {
  .two-block.chips-casino .chip.black-chip-2 {
    top: -62px;
    height: 41px;
  }
}
.two-block .single-chip-wrapper {
  display: none;
}
.two-block.single-chip-mobile {
  margin-top: 96px;
  margin-bottom: 96px;
}
@media only screen and (max-width: 1023px) {
  .two-block.single-chip-mobile {
    margin-top: 164px;
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block.single-chip-mobile .wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block.single-chip-mobile .single-chip-wrapper {
    display: flex;
    position: absolute;
    top: -110px;
    left: 42%;
  }
}
.two-block.single-chip-mobile .single-chip-wrapper .red-chip-1 {
  width: 118px;
  height: 74px;
}
@media only screen and (max-width: 1023px) {
  .two-block.single-chip-mobile .single-chip-wrapper .red-chip-1 {
    left: 21%;
    height: 56px;
  }
}
@media only screen and (min-width: 1024px) {
  .two-block.two-chips {
    margin-top: 96px;
    margin-bottom: 96px;
  }
}
@media only screen and (min-width: 1024px) {
  .two-block.two-chips .right-side {
    padding: 60px 0;
  }
}
.two-block.two-chips .two-chips-wrapper {
  position: absolute;
  bottom: calc(0% - 48px);
}
@media only screen and (max-width: 1023px) {
  .two-block.two-chips .two-chips-wrapper {
    display: none;
  }
}
.two-block.two-chips .black-chip-1 {
  position: relative;
  left: -91px;
  width: 85px;
  height: 76px;
}
.two-block.two-chips .black-chip-2 {
  position: relative;
  top: 45px;
  left: -47px;
  width: 47px;
  height: 68px;
}
.two-block.two-chips.left .two-chips-wrapper {
  right: 0;
  display: flex;
  transform: scaleX(-1);
}
@media only screen and (min-width: 1024px) {
  .two-block.right .wrapper {
    flex-direction: row-reverse;
  }
}
.casino-page .two-block.right .parallax-wrap {
  box-shadow: -12px 12px 0px 0px rgb(0, 169, 184);
}
.casino-page .two-block.left .parallax-wrap {
  box-shadow: 12px 12px 0px 0px rgb(0, 169, 184);
}
@media only screen and (min-width: 1024px) {
  .two-block.top-alignment .wrapper .right-side {
    align-content: flex-start;
    padding: 41px 0;
  }
}
.two-block.top-alignment .wrapper .right-side .content-wrapper {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .two-block.top-alignment.left .wrapper .right-side {
    align-content: flex-start;
    padding: 101px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .two-block.game-icons-24 .wrapper .right-side .content {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block.game-icons-24 .wrapper .right-side .buttons-container {
    margin-top: 104px;
  }
}
@media only screen and (min-width: 1024px) {
  .two-block.accordions-24 .wrapper .right-side .content {
    margin-bottom: 24px;
  }
}
.two-block .wrapper {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 104px;
  position: relative;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .two-block .wrapper {
    flex-direction: column-reverse;
    gap: 64px;
  }
}
.two-block .wrapper .left-side {
  width: 100%;
  height: auto;
  position: relative;
  max-width: 496px;
}
@media only screen and (max-width: 1023px) {
  .two-block .wrapper .left-side {
    max-width: inherit;
  }
}
.two-block .wrapper .right-side {
  align-content: center;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .two-block .wrapper .right-side {
    max-width: 600px;
  }
}
.two-block .wrapper .right-side .h5 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .two-block .wrapper .right-side .h5 {
    margin-bottom: 24px;
  }
}
.two-block .wrapper .right-side .h2 {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .two-block .wrapper .right-side .h2 {
    margin-bottom: 18px;
  }
}
.two-block .wrapper .right-side .content {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .two-block .wrapper .right-side .content {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .two-block .wrapper .right-side .content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
    max-height: 15.8em;
  }
}
@media only screen and (max-width: 767px) {
  .two-block .wrapper .right-side .content.expanded {
    max-height: 1500px;
    transition: max-height 0.6s ease-in-out;
    -webkit-line-clamp: unset;
  }
}
@media only screen and (max-width: 767px) {
  .two-block .wrapper .right-side .content.text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.two-block .wrapper .right-side .read-less {
  display: none;
}
.two-block .wrapper .right-side .read-more,
.two-block .wrapper .right-side .read-less {
  text-transform: uppercase;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .two-block .wrapper .right-side .read-more,
  .two-block .wrapper .right-side .read-less {
    margin: 24px auto;
  }
}
.two-block .wrapper .right-side .buttons-container {
  justify-content: left;
  display: flex;
  gap: 16px;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .two-block .wrapper .right-side .buttons-container {
    justify-content: center;
  }
}
.two-block .icons-wrapper.mobile {
  position: absolute;
  width: 100%;
  z-index: 1;
  margin-top: 5px;
  flex-wrap: wrap;
}
.two-block .icons-wrapper.mobile .single-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 1024px) {
  .two-block .icons-wrapper.mobile {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .two-block .icons-wrapper.desktop {
    display: none;
  }
}
.two-block .accordions-section .accordions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .two-block .accordions-section .accordions {
    margin-bottom: 24px;
  }
}
.two-block .accordions-section .accordions-section-item .minus {
  display: none;
}
.two-block .accordions-section .accordions-section-item .plus {
  display: flex;
}
.two-block .accordions-section .accordions-section-item.active .plus {
  display: none;
}
.two-block .accordions-section .accordions-section-item.active .minus {
  display: flex;
}
.two-block .accordions-section .accordions-section-item .accordions-section-question {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}
@media only screen and (max-width: 1023px) {
  .two-block .accordions-section .accordions-section-item .accordions-section-question {
    justify-content: center;
  }
}
.two-block .accordions-section .accordions-section-item .accordions-section-answer {
  display: none;
  overflow: hidden;
}
.two-block .accordions-section .accordions-section-item .content {
  padding: 12px 12px 0 12px;
}
.two-block .accordions-section .accordions-section-item .content strong {
  font-weight: 400;
}
.two-block .parallax-wrap {
  position: relative;
  --aspect-ratio: 1 / 1.28226;
  overflow: hidden;
  min-width: 300px;
  width: 100%;
  margin: 0 auto;
  will-change: transform;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  height: 640px;
  padding-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .two-block .parallax-wrap {
    min-width: initial;
    height: 400px;
  }
}
.two-block .parallax-wrap .parallax-img {
  --overflow: 80px;
  height: calc(100% + 2 * var(--overflow));
  top: calc(-1 * var(--overflow));
  width: 100%;
  position: absolute;
  background-image: var(--image);
  background-size: cover;
  background-position: 50% 0%;
  will-change: transform;
  -o-object-fit: cover;
     object-fit: cover;
}
.two-block .parallax-wrap .parallax-img-t3 {
  --overflow: 200px;
}

.full-width-image {
  position: relative;
  margin: 96px auto;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  width: 100%;
  align-content: flex-end;
  min-height: 600px;
}
@media only screen and (max-width: 767px) {
  .full-width-image {
    margin: auto;
    min-height: 500px;
  }
}
.full-width-image.chips {
  margin: 81px auto;
}
@media only screen and (max-width: 767px) {
  .full-width-image.chips {
    margin: auto;
  }
}
.full-width-image.full-width-review {
  min-height: 500px;
  align-content: center;
}
.full-width-image.full-width-review .content-container {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: relative;
  gap: 24px;
  padding: 116px 39.6px;
}
.full-width-image.full-width-review .content-container .content p {
  margin: 0 auto;
  max-width: 700px;
  font-style: italic;
  line-height: 48px;
}
@media only screen and (max-width: 767px) {
  .full-width-image.full-width-review .content-container .content p {
    line-height: 24px;
  }
}
.full-width-image.full-width-review .content-container .h5 {
  margin: 0 auto;
  max-width: 700px;
}
.full-width-image.full-width-review .content-container .logo-wrapper {
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  max-width: 217px;
  margin: 0 auto;
  border-radius: 12px;
  display: flex;
}
.full-width-image.full-width-review .content-container .logo-wrapper a {
  display: flex;
}
.full-width-image.remove-parallax {
  background-attachment: initial;
}
@supports (-webkit-touch-callout: none) {
  @media only screen and (max-width: 767px) {
    .full-width-image {
      background-attachment: initial !important;
    }
  }
}
.full-width-image .chips-wrapper {
  display: flex;
  z-index: 3;
}
.full-width-image .chips-wrapper .black-chip-3 {
  position: absolute;
  left: 15.5%;
  top: -81px;
  z-index: 3;
  width: 164px;
  height: 163px;
}
.full-width-image .chips-wrapper .red-chip-1 {
  position: absolute;
  right: 24.5%;
  z-index: 3;
  top: -46px;
  width: 118px;
  height: 74px;
}
@media only screen and (max-width: 767px) {
  .full-width-image .chips-wrapper {
    display: none;
  }
}
.full-width-image .content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 39.6px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .full-width-image .content-container {
    bottom: initial;
    padding: 47px 39.6px;
    height: 100%;
  }
}
.full-width-image .content-container .h5,
.full-width-image .content-container .h2,
.full-width-image .content-container .content,
.full-width-image .content-container .content p {
  color: #fff;
}
.full-width-image .content-container .h5,
.full-width-image .content-container .h2,
.full-width-image .content-container .content p {
  max-width: 585px;
  margin: auto;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .full-width-image .content-container .h2 {
    margin-bottom: 18px;
  }
}
.full-width-image .content-container .content p {
  font-weight: 400;
}
.full-width-image .content-container .buttons-container {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.one-col-with-image {
  position: relative;
  margin: 96px auto;
  padding: 0 108px;
}
@media only screen and (max-width: 767px) {
  .one-col-with-image {
    margin: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .one-col-with-image {
    padding: 0;
    margin: 84px 0 0 0;
  }
}
.one-col-with-image .one-column {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  padding: 0 18px;
}
.one-col-with-image .one-column .wrapper {
  max-width: 808px;
}
.one-col-with-image .one-column .h5 {
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .one-col-with-image .one-column .h5 {
    margin-bottom: 24px;
  }
}
.one-col-with-image .one-column .h2 {
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .one-col-with-image .one-column .h2 {
    margin-bottom: 24px;
  }
}
.one-col-with-image .one-column .buttons-container {
  text-align: center;
}
.one-col-with-image .parallax-wrap {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  min-height: 600px;
  width: 100%;
  max-width: 1225px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .one-col-with-image .parallax-wrap {
    min-height: 500px;
  }
}
.one-col-with-image .parallax-wrap.remove-parallax {
  background-attachment: initial;
}
@supports (-webkit-touch-callout: none) {
  @media only screen and (max-width: 767px) {
    .one-col-with-image .parallax-wrap {
      background-attachment: initial !important;
    }
  }
}
.one-col-with-image .content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
  left: 50%;
  height: 100%;
}
.one-col-with-image .content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 39.6px;
}
@media only screen and (max-width: 767px) {
  .one-col-with-image .content-container {
    padding: 47px 39.6px;
  }
}
.one-col-with-image .content-container .h5,
.one-col-with-image .content-container .h2,
.one-col-with-image .content-container .content p {
  color: #fff;
  max-width: 585px;
  margin: auto;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .one-col-with-image .content-container .h2 {
    margin-bottom: 18px;
  }
}
.one-col-with-image .content-container .content p {
  font-weight: 400;
}
.one-col-with-image .content-container .buttons-container {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.rooms-slider {
  position: relative;
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider {
    margin: 56px auto;
  }
}
.rooms-slider .center-column {
  max-width: 1263px;
  width: calc(100% - 176px);
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .center-column {
    padding: 0 0px;
    width: calc(100% - 36px);
  }
}
.rooms-slider.chips {
  margin: 160px 0;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider.chips {
    margin: 160px 0 192px 0;
  }
}
.rooms-slider .chips-wrapper {
  position: absolute;
  z-index: -1;
}
.rooms-slider .chips-wrapper .red-chip-1 {
  position: relative;
  top: 41px;
  left: -217px;
  width: 80px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .chips-wrapper .red-chip-1 {
    display: none;
  }
}
.rooms-slider .chips-wrapper .black-chip-1 {
  position: relative;
  right: 69px;
  top: -118px;
  width: 85px;
  height: 76px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .chips-wrapper .black-chip-1 {
    right: -14px;
    top: -132px;
  }
}
.rooms-slider .chips-wrapper .black-chip-2 {
  position: relative;
  right: 23px;
  top: -64px;
  width: 47px;
  height: 68px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .chips-wrapper .black-chip-2 {
    display: none;
  }
}
.rooms-slider .chips-wrapper.mobile {
  width: 100%;
}
.rooms-slider .chips-wrapper.mobile .red-chip-1 {
  display: flex;
  height: 56px;
  left: calc(50% + 18px);
  transform: translateX(-50%);
  top: 91px;
}
.rooms-slider .top-content {
  text-align: center;
  margin: 0 auto 72px auto;
  max-width: 808px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .top-content {
    margin-bottom: 36px;
  }
}
.rooms-slider .top-content .h5 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .top-content .h5 {
    margin-bottom: 24px;
  }
}
.rooms-slider .top-content .h2 {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .top-content .h2 {
    margin-bottom: 18px;
  }
}
.rooms-slider .slideshow {
  position: relative;
}
.rooms-slider .slide {
  display: flex;
  opacity: 1;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide {
    flex-direction: column;
    height: initial;
    max-height: 600px;
  }
}
.rooms-slider .slide .slide-thumbnail {
  width: 100%;
  position: relative;
  max-width: 704px;
  transition: height 800ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide .slide-thumbnail {
    height: 200px;
    max-width: initial;
    transition: height 800ms ease-in-out;
  }
}
.rooms-slider .slide .slide-thumbnail .room-image {
  height: 100%;
  transition: height 800ms ease-in-out;
}
.rooms-slider .slide .slide-thumbnail .rooms-item-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
}
.rooms-slider .slide .slide-thumbnail .rooms-item-gallery img {
  position: absolute;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide .slide-thumbnail .rooms-item-gallery img {
    display: none;
  }
}
.rooms-slider .slide .side-content {
  width: 805px;
  position: relative;
  padding: 92px 65px 92px 66px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: width 800ms ease-in-out, padding 800ms ease-in-out;
  flex-shrink: 0;
  max-width: 519px;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide .side-content {
    padding: 24px 18px;
    flex-direction: column;
    width: 100%;
    flex-shrink: initial;
    max-width: initial;
  }
}
.rooms-slider .slide .side-content nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.rooms-slider .slide .side-content h3,
.rooms-slider .slide .side-content p,
.rooms-slider .slide .side-content nav {
  opacity: 1;
  transition: opacity 600ms ease-in-out;
}
.rooms-slider .slide .side-content p {
  text-align: left;
}
.rooms-slider .slide .side-content .rooms-icons {
  display: flex;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .rooms-slider .slide.swiper-slide-prev {
    justify-content: right;
  }
}
@media only screen and (min-width: 1024px) {
  .rooms-slider .slide.swiper-slide-next {
    justify-content: left;
  }
}
.rooms-slider .slide:not(.swiper-slide-active) {
  opacity: 0.6;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide:not(.swiper-slide-active) {
    max-height: 600px;
  }
}
.rooms-slider .slide:not(.swiper-slide-active) .rooms-item-gallery {
  pointer-events: none;
}
.rooms-slider .slide:not(.swiper-slide-active) .side-content {
  width: 0;
  padding: 0;
  transition: width 800ms ease-in-out, padding 800ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide:not(.swiper-slide-active) .side-content {
    height: 0;
  }
}
.rooms-slider .slide:not(.swiper-slide-active) .side-content h3,
.rooms-slider .slide:not(.swiper-slide-active) .side-content p,
.rooms-slider .slide:not(.swiper-slide-active) .side-content nav,
.rooms-slider .slide:not(.swiper-slide-active) .side-content .rooms-icons {
  opacity: 0;
  transition: opacity 600ms ease-in-out;
}
.rooms-slider .slide:not(.swiper-slide-active) .slide-thumbnail {
  height: auto;
  transition: height 800ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide:not(.swiper-slide-active) .slide-thumbnail {
    height: 100%;
    transition: height 800ms ease-in-out;
  }
}
.rooms-slider .slide:not(.swiper-slide-active) .slide-thumbnail .room-image {
  height: 80%;
  top: 10%;
  transition: height 800ms ease-in-out, top 800ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide:not(.swiper-slide-active) .slide-thumbnail .room-image {
    height: 90%;
    top: 5%;
    transition: height 800ms ease-in-out, top 800ms ease-in-out;
  }
}
.rooms-slider .slide.swiper-slide-active {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  transition: box-shadow 2500ms ease-in-out;
}
.rooms-slider .slide.swiper-slide-active .rooms-item-gallery img {
  opacity: 1;
  transition: opacity 800ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide.swiper-slide-active {
    max-height: initial;
  }
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide.swiper-slide-active .slide-thumbnail {
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .slide.swiper-slide-active .side-content {
    height: 100%;
    transition: height 800ms ease-in-out;
  }
}
.rooms-slider .slide.swiper-slide-active .side-content h3,
.rooms-slider .slide.swiper-slide-active .side-content p,
.rooms-slider .slide.swiper-slide-active .side-content nav {
  transition: opacity 2500ms ease-in-out;
}
.rooms-slider .link-wrapper.mobile {
  text-align: center;
  margin-bottom: 64px;
}
@media only screen and (min-width: 1024px) {
  .rooms-slider .link-wrapper.mobile {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .link.desktop {
    display: none;
  }
}
.rooms-slider .link-bullets-wrapper {
  display: flex;
  justify-content: space-between;
}
.rooms-slider .link-bullets-wrapper .bullets {
  top: 45px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .rooms-slider .link-bullets-wrapper .bullets {
    margin: auto;
    top: 24px;
  }
}
.rooms-slider .link-bullets-wrapper .link {
  top: 39px;
  position: relative;
}

.three-block-slider {
  position: relative;
  overflow-x: clip;
  margin: 96px auto;
}
@media only screen and (max-width: 767px) {
  .three-block-slider {
    margin: 53px auto 56px auto;
  }
}
.three-block-slider.margin-160 {
  margin: 160px auto;
}
@media only screen and (max-width: 767px) {
  .three-block-slider.margin-160 {
    margin: 53px auto 56px auto;
  }
}
.three-block-slider.no-content .top-content {
  margin: 0 auto 84px auto;
}
.three-block-slider.no-content .top-content .h2 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .three-block-slider.no-content .top-content .h2 {
    margin-bottom: 24px;
  }
}
.three-block-slider.three-block-slider-background {
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 96px 0;
}
@media only screen and (max-width: 767px) {
  .three-block-slider.three-block-slider-background {
    padding: 53px 0 56px 0;
  }
}
.three-block-slider.three-block-slider-background .center-column .top-content {
  margin-bottom: 56px;
}
.three-block-slider.three-block-slider-background .center-column .top-content .h5 {
  color: #fff;
}
.three-block-slider.three-block-slider-background .center-column .top-content .h2 {
  margin-bottom: 0;
  color: #fff;
}
.three-block-slider .center-column {
  max-width: 1600px;
  width: 100%;
}
@media (min-width: 767px) and (max-width: 1250px) {
  .three-block-slider .center-column {
    width: calc(100% - 36px);
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .three-block-slider .center-column {
    max-width: initial;
    width: initial;
    padding: 0;
  }
}
.three-block-slider .top-content {
  text-align: center;
  margin: 0 auto 64px auto;
  max-width: 808px;
  padding: 0 18px;
}
.three-block-slider .top-content .h5 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .three-block-slider .top-content .h5 {
    margin-bottom: 24px;
  }
}
.three-block-slider .top-content .h2 {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .three-block-slider .top-content .h2 {
    margin-bottom: 18px;
  }
}
.three-block-slider .top-content .content {
  margin-bottom: 24px;
}
.three-block-slider .top-content .buttons-container {
  display: flex;
  justify-content: center;
}
.three-block-slider .slideshow {
  position: relative;
  width: calc(100% - 176px);
  margin: auto;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .three-block-slider .slideshow {
    width: calc(100% - 36px);
  }
}
.three-block-slider .slideshow .slide {
  width: auto;
  max-width: 392px;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .three-block-slider .slideshow .slide {
    max-width: initial;
  }
}
@media only screen and (max-width: 767px) {
  .three-block-slider .slideshow .slide {
    max-width: initial;
    width: 100%;
  }
}
.three-block-slider .slideshow .slide .slide-thumbnail .slide-image {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  width: 100%;
  transition: height 800ms ease-in-out, max-height 800ms ease-in-out, opacity 800ms ease-in-out;
}
.three-block-slider .slideshow .slide .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  flex-grow: 1;
  opacity: 1;
  min-height: 331px;
  overflow: visible;
  padding: 36px;
  max-height: 800px;
  transition: max-height 800ms ease-in-out, padding 800ms ease-in-out, opacity 800ms ease-in-out;
  transform: scaleY(1);
}
.three-block-slider .slideshow .slide .content-wrapper h4 {
  margin-bottom: 10px;
}
.three-block-slider .slideshow .slide .content-wrapper .buttons-container {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .three-block-slider .slideshow .slide .content-wrapper .buttons-container {
    margin-top: 24px;
  }
}
.three-block-slider .slideshow .slide .content-wrapper .p-text {
  text-align: left;
}
.three-block-slider .slideshow .slide:not(.swiper-slide-visible) .share-icon {
  display: none;
}
.three-block-slider .slideshow .slide.swiper-slide-visible {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .three-block-slider .slideshow .slide.swiper-slide-visible {
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
    transition: box-shadow 2500ms ease-in-out;
  }
}
.three-block-slider .slideshow .slide.swiper-slide-visible .content-wrapper {
  opacity: 1;
  min-height: 331px;
  overflow: visible;
  padding: 36px;
  max-height: 800px;
  transition: max-height 800ms ease-in-out, padding 800ms ease-in-out, opacity 800ms ease-in-out;
  transform: scaleY(1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  flex-grow: 1;
}
.three-block-slider .slideshow .slide.swiper-slide-visible .content-wrapper h4,
.three-block-slider .slideshow .slide.swiper-slide-visible .content-wrapper .buttons-container,
.three-block-slider .slideshow .slide.swiper-slide-visible .content-wrapper .p-text {
  opacity: 1;
  max-height: 800px;
  transition: top 800ms ease-in-out, opacity 800ms ease-in-out;
}
.three-block-slider .slideshow .slide.swiper-slide-visible .slide-thumbnail {
  max-height: 800px;
  position: relative;
  top: 0px;
  transition: max-height 800ms ease-in-out, top 800ms ease-in-out, opacity 800ms ease-in-out;
}
.three-block-slider .slideshow .slide.swiper-slide-visible .slide-thumbnail .slide-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 300px;
  transition: max-height 800ms ease-in-out, top 800ms ease-in-out, opacity 800ms ease-in-out;
}
.three-block-slider .slideshow .slide.swiper-slide-visible .slide-thumbnail .share-icon {
  opacity: 1;
  pointer-events: all;
  transition: opacity 800ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .three-block-slider .slideshow .slide.swiper-slide-visible .slide-thumbnail .image-link {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .three-block-slider .slideshow .slide.swiper-slide {
    height: 0;
    max-height: 0;
  }
  .three-block-slider .slideshow .slide.swiper-slide .slide-thumbnail {
    display: flex;
    justify-content: end;
  }
}
@media only screen and (max-width: 767px) {
  .three-block-slider .slideshow .slide.swiper-slide.swiper-slide-prev .slide-thumbnail .slide-image, .three-block-slider .slideshow .slide.swiper-slide.swiper-slide-next .slide-thumbnail .slide-image {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .three-block-slider .slideshow .slide.swiper-slide.swiper-slide-prev, .three-block-slider .slideshow .slide.swiper-slide.swiper-slide-next, .three-block-slider .slideshow .slide.swiper-slide.swiper-slide-active {
    height: 100%;
    max-height: 800px;
  }
}
@media only screen and (max-width: 767px) {
  .three-block-slider .slideshow .slide.swiper-slide-active {
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
    transition: box-shadow 2500ms ease-in-out;
  }
  .three-block-slider .slideshow .slide.swiper-slide-active .slide-thumbnail {
    height: 200px;
  }
  .three-block-slider .slideshow .slide.swiper-slide-active .slide-thumbnail .slide-image {
    height: 200px;
  }
}
.three-block-slider .slider-blocks {
  position: relative;
}
.three-block-slider .button-controls {
  top: 272px;
}
.three-block-slider .button-controls .slideshow-button.next {
  right: 0px;
}
.three-block-slider .button-controls .slideshow-button.previous {
  left: 0px;
}
.three-block-slider .link-bullets-wrapper {
  display: none;
}
@media only screen and (max-width: 767px) {
  .three-block-slider .link-bullets-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }
}

.side-slider {
  position: relative;
  margin: 96px auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-right: 180px;
  gap: 103px;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .side-slider {
    gap: 30px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 1023px) {
  .side-slider {
    flex-direction: column;
    padding-right: 0;
    gap: 56px;
    margin: 56px auto;
  }
}
.side-slider.margin-112 {
  margin: 112px auto;
}
@media only screen and (max-width: 1023px) {
  .side-slider.margin-112 {
    margin: 56px auto;
  }
}
.side-slider.margin-120 {
  margin: 120px auto;
}
@media only screen and (max-width: 1023px) {
  .side-slider.margin-120 {
    margin: 56px auto;
  }
}
.side-slider.margin-130 {
  margin: 130px auto;
}
@media only screen and (max-width: 1023px) {
  .side-slider.margin-130 {
    margin: 116px auto;
  }
}
.side-slider.margin-172 {
  margin: 172px auto;
}
@media only screen and (max-width: 1023px) {
  .side-slider.margin-172 {
    margin: 56px auto;
  }
}
.side-slider.no-content .side-content .h2 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .side-slider.no-content .side-content .h2 {
    margin-bottom: 24px;
  }
}
.casino-page .side-slider .slideshow .slide .content-wrapper .p-text {
  font-weight: 700;
}
.casino-page .side-slider.events-side-slider .slideshow .slide .content-wrapper .p-text {
  margin-left: -9px;
}
.casino-page .side-slider.specials-side-slider {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .casino-page .side-slider.specials-side-slider {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.casino-page .side-slider.specials-side-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/suits-background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.65;
  z-index: 0;
}
@media only screen and (min-width: 1024px) {
  .casino-page .side-slider .icons-wrapper {
    margin-top: 85px;
  }
}
.casino-page .side-slider.slider-right:not(.specials-side-slider) .slide.swiper-slide-active {
  transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out, box-shadow 800ms ease-in-out;
  box-shadow: -12px 12px 0px 0px rgb(0, 169, 184);
}
.casino-page .side-slider.slider-left:not(.specials-side-slider) .slide.swiper-slide-active {
  transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out, box-shadow 800ms ease-in-out;
  box-shadow: 12px 12px 0px 0px rgb(0, 169, 184);
}
@media only screen and (min-width: 1024px) {
  .casino-page .side-slider.slider-right:not(.specials-side-slider) .center-column, .casino-page .side-slider.slider-left:not(.specials-side-slider) .center-column {
    padding-bottom: 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .side-slider.slider-right {
    padding-right: 0;
    padding-left: 180px;
    flex-direction: row;
  }
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .side-slider.slider-right {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .side-slider.slider-right .side-content {
    margin: 0 0 0 auto;
  }
}
@media only screen and (min-width: 1024px) {
  .side-slider.slider-right .center-column {
    transform: translateX(-20px);
    margin: 0 auto 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .side-slider.slider-right .slideshow {
    padding-left: 0;
    padding-right: 214px;
  }
}
@media (min-width: 1024px) and (max-width: 1300px) {
  .side-slider.slider-right .slideshow {
    padding-left: 0;
    padding-right: 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .side-slider.slider-right .slideshow .slide.swiper-slide.swiper-slide-next {
    opacity: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .side-slider.slider-right .slideshow .slide.swiper-slide.swiper-slide-prev {
    opacity: 0;
  }
}
.side-slider.slider-right .button-controls {
  right: 0;
}
@media only screen and (min-width: 1024px) {
  .side-slider.slider-right .button-controls {
    flex-direction: column-reverse;
  }
}
.side-slider.slider-right .button-controls .slideshow-button {
  justify-content: end;
}
.side-slider.slider-right .button-controls .slideshow-button.previous {
  left: -65px;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  .side-slider.slider-right .button-controls .slideshow-button.previous {
    left: 0px;
  }
}
.side-slider.slider-right .button-controls .slideshow-button.next {
  right: 65px;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  .side-slider.slider-right .button-controls .slideshow-button.next {
    right: 0px;
  }
}
.side-slider .center-column {
  max-width: 854px;
  width: calc(100% - 0px);
  overflow: hidden;
  margin: 0 0 0 auto;
}
@media only screen and (min-width: 1024px) {
  .side-slider .center-column {
    transform: translateX(20px);
  }
}
@media only screen and (max-width: 1023px) {
  .side-slider .center-column {
    max-width: initial;
    width: calc(100% - 0px);
    padding: 0;
    margin: auto;
  }
}
.side-slider .side-content {
  text-align: left;
  margin: 0 auto 0 0;
  max-width: 392px;
  position: relative;
  z-index: 1;
  align-content: center;
}
@media only screen and (max-width: 1023px) {
  .side-slider .side-content {
    text-align: center;
    margin: auto;
    max-width: initial;
    padding: 0 18px;
  }
}
.side-slider .side-content .h5 {
  margin-bottom: 36px;
}
.side-slider .side-content .h2 {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .side-slider .side-content .h2 {
    margin-bottom: 22px;
  }
}
.side-slider .side-content .content {
  margin-bottom: 24px;
}
.side-slider .side-content .icons-wrapper {
  flex-wrap: wrap;
  margin-bottom: 34px;
  max-width: 344px;
}
@media only screen and (max-width: 1023px) {
  .side-slider .side-content .icons-wrapper {
    max-width: 320px;
    margin: 24px auto 36px auto;
  }
}
.side-slider .side-content .buttons-container {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .side-slider .side-content .buttons-container {
    justify-content: center;
  }
}
.side-slider .slideshow {
  position: relative;
  padding-left: 214px;
  margin: auto;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  .side-slider .slideshow {
    padding-left: 120px;
  }
}
@media only screen and (max-width: 1023px) {
  .side-slider .slideshow {
    width: calc(100% - 36px);
    padding-left: 0;
  }
}
.side-slider .slideshow .slide {
  max-width: 600px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .side-slider .slideshow .slide {
    max-width: initial;
  }
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide {
    max-width: initial;
    width: 100%;
  }
}
.side-slider .slideshow .slide .slide-thumbnail {
  position: relative;
  top: 45px;
  transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out;
}
.side-slider .slideshow .slide .slide-thumbnail.has-share::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide .slide-thumbnail.has-share::after {
    height: 100%;
  }
}
.side-slider .slideshow .slide .slide-thumbnail .slide-image {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  width: 100%;
  max-height: 369px;
  transition: height 800ms ease-in-out, max-height 800ms ease-in-out, opacity 800ms ease-in-out;
}
.side-slider .slideshow .slide .slide-thumbnail .bubble-text {
  position: absolute;
  left: 24px;
  top: 24px;
  border-radius: 160px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  text-transform: uppercase;
  z-index: 1;
  max-width: calc(100% - 104px);
}
.side-slider .slideshow .slide .slide-thumbnail .bubble-text.dark-blur {
  background: rgba(0, 0, 0, 0.4);
}
.side-slider .slideshow .slide .content-wrapper {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
  min-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform 350ms ease-in-out, opacity 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide .content-wrapper {
    min-height: initial;
    transform: scaleY(0);
    max-height: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .side-slider .slideshow .slide .content-wrapper.blue-text.padding-adjust {
    flex-direction: column;
    padding: 24px 18px 34px 18px;
  }
  .side-slider .slideshow .slide .content-wrapper.blue-text.padding-adjust .top-side {
    margin: auto;
  }
  .side-slider .slideshow .slide .content-wrapper.blue-text.padding-adjust .top-side .h4, .side-slider .slideshow .slide .content-wrapper.blue-text.padding-adjust .top-side .p-text {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide .content-wrapper .top-side {
    display: flex;
    align-self: flex-start;
    flex-direction: column;
  }
}
.side-slider .slideshow .slide .content-wrapper .h4 {
  max-width: 288px;
}
.side-slider .slideshow .slide .content-wrapper .buttons-container {
  display: flex;
  gap: 24px;
  align-items: center;
}
.side-slider .slideshow .slide .content-wrapper .h3 {
  color: #006BB6;
  font-weight: 700;
  line-height: 48px;
}
.side-slider .slideshow .slide .content-wrapper .p-text {
  text-align: left;
  text-transform: uppercase;
}
.side-slider .slideshow .slide .content-wrapper .slide-content {
  margin-top: 4px;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.72px;
}
.side-slider .slideshow .slide .content-wrapper .h4,
.side-slider .slideshow .slide .content-wrapper .buttons-container,
.side-slider .slideshow .slide .content-wrapper .p-text,
.side-slider .slideshow .slide .content-wrapper .blue-text {
  opacity: 0;
  max-height: 0;
  transition: top 800ms ease-in-out, opacity 800ms ease-in-out;
}
.side-slider .slideshow .slide:not(.swiper-slide-visible) .share-icon,
.side-slider .slideshow .slide:not(.swiper-slide-visible) .bubble-text {
  display: none;
}
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active {
  width: 100%;
}
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .content-wrapper {
  opacity: 1;
  min-height: 114px;
  align-items: center;
  overflow: visible;
  padding: 0 24px;
  max-height: 800px;
  transition: max-height 800ms ease-in-out, padding 800ms ease-in-out, opacity 800ms ease-in-out;
  transform: scaleY(1);
}
@media only screen and (max-width: 1023px) {
  .side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .content-wrapper {
    padding: 24px 18px 18px 18px;
  }
}
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .content-wrapper .h4,
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .content-wrapper .buttons-container,
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .content-wrapper .p-text,
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .content-wrapper .blue-text {
  opacity: 1;
  max-height: 800px;
  transition: top 800ms ease-in-out, opacity 800ms ease-in-out;
}
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .slide-thumbnail {
  max-height: 800px;
  position: relative;
  top: 0px;
  transition: max-height 800ms ease-in-out, top 800ms ease-in-out, opacity 800ms ease-in-out;
}
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .slide-thumbnail.has-share::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31.22%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .slide-thumbnail .slide-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 369px;
  transition: max-height 800ms ease-in-out, top 800ms ease-in-out, opacity 800ms ease-in-out;
}
.side-slider .slideshow .slide.swiper-slide-visible.swiper-slide-active .slide-thumbnail .share-icon {
  opacity: 1;
  pointer-events: all;
  transition: opacity 800ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide.swiper-slide {
    height: 0;
    max-height: 0;
  }
  .side-slider .slideshow .slide.swiper-slide .slide-thumbnail {
    display: flex;
    justify-content: end;
  }
}
.side-slider .slideshow .slide.swiper-slide.swiper-slide-prev, .side-slider .slideshow .slide.swiper-slide.swiper-slide-next {
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide.swiper-slide.swiper-slide-prev .slide-thumbnail .slide-image, .side-slider .slideshow .slide.swiper-slide.swiper-slide-next .slide-thumbnail .slide-image {
    height: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .side-slider .slideshow .slide.swiper-slide.swiper-slide-next {
    opacity: 0;
  }
}
.side-slider .slideshow .slide.swiper-slide.swiper-slide-prev, .side-slider .slideshow .slide.swiper-slide.swiper-slide-next {
  transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide.swiper-slide.swiper-slide-prev, .side-slider .slideshow .slide.swiper-slide.swiper-slide-next {
    height: 100%;
    max-height: 800px;
  }
}
.side-slider .slideshow .slide.swiper-slide-active {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out, box-shadow 2500ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .side-slider .slideshow .slide.swiper-slide-active {
    height: 100%;
    max-height: 800px;
  }
  .side-slider .slideshow .slide.swiper-slide-active .slide-thumbnail {
    height: 200px;
  }
  .side-slider .slideshow .slide.swiper-slide-active .slide-thumbnail .slide-image {
    height: 200px;
  }
  .side-slider .slideshow .slide.swiper-slide-active .h4,
  .side-slider .slideshow .slide.swiper-slide-active .buttons-container,
  .side-slider .slideshow .slide.swiper-slide-active .p-text,
  .side-slider .slideshow .slide.swiper-slide-active .blue-text {
    opacity: 1;
    max-height: 800px;
    transition: top 800ms ease-in-out, opacity 800ms ease-in-out;
  }
}
.side-slider .button-controls {
  top: 132px;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
  width: auto;
}
.side-slider .button-controls .slideshow-button.next {
  right: -63px;
  gap: 103px;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  .side-slider .button-controls .slideshow-button.next {
    right: -10px;
  }
}
.side-slider .button-controls .slideshow-button.previous {
  left: 63px;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  .side-slider .button-controls .slideshow-button.previous {
    left: 10px;
  }
}
.side-slider .button-controls .slideshow-button img {
  height: 96px;
}
.side-slider .link-bullets-wrapper {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .side-slider .link-bullets-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }
}

.rewards-image {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 73px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .rewards-image {
    margin: auto;
    padding: 0;
  }
}
.rewards-image.margin-96 {
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .rewards-image.margin-96 {
    margin: auto;
  }
}
.rewards-image.margin-120 {
  margin: 120px auto;
}
@media only screen and (max-width: 1023px) {
  .rewards-image.margin-120 {
    margin: auto;
  }
}
.rewards-image.margin-172 {
  margin: 172px auto;
}
@media only screen and (max-width: 1023px) {
  .rewards-image.margin-172 {
    margin: auto;
  }
}
.casino-page .rewards-image .h5,
.casino-page .rewards-image .h2,
.casino-page .rewards-image .content,
.casino-page .rewards-image .content p {
  color: #fff;
}
.casino-page .rewards-image .background-overlay-5 {
  background: linear-gradient(90deg, rgba(252, 177, 49, 0) -100%, #064F94 70%, #064F94 100%);
}
@media only screen and (max-width: 1023px) {
  .casino-page .rewards-image .background-overlay-5 {
    background: linear-gradient(180deg, rgba(252, 177, 49, 0) -100%, #064F94 50%, #064F94 100%);
  }
}
@media only screen and (min-width: 1024px) {
  .casino-page .rewards-image .image-container:after {
    background: linear-gradient(to right, rgba(6, 79, 148, 0) 0%, rgba(6, 79, 148, 0.2) 30%, rgba(6, 79, 148, 0.6) 70%, rgb(6, 79, 148) 100%);
  }
}
.casino-page .rewards-image .link {
  color: #fff;
}
.rewards-image .image-container {
  position: relative;
  width: 100%;
  min-height: 626px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow-x: clip;
  background-color: currentcolor;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container {
    overflow: hidden;
    min-height: initial;
  }
}
@media only screen and (min-width: 1024px) {
  .rewards-image .image-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 30%;
    width: 40%;
    /* adjust width of the fade */
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, rgba(252, 177, 49, 0) 0%, rgba(252, 177, 49, 0.2) 30%, rgba(252, 177, 49, 0.6) 70%, rgb(252, 177, 49) 100%);
    z-index: 1;
  }
}
.rewards-image .image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  filter: grayscale(100%);
}
@media only screen and (min-width: 1024px) {
  .rewards-image .image-container .image {
    left: -40%;
  }
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .image {
    top: -162px;
  }
}
.rewards-image .image-container .content-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 139px;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .content-container {
    gap: 0;
    flex-direction: column;
    margin: auto;
  }
}
.rewards-image .image-container .cards-side .rewards-cards {
  display: flex;
  position: relative;
  bottom: 54px;
  max-height: 626px;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .cards-side .rewards-cards {
    bottom: 0;
    margin: 232px auto 24px auto;
    max-height: 420px;
  }
}
.rewards-image .image-container .cards-side .rewards-cards.rewards-cards-casino {
  display: none;
}
.casino-page .rewards-image .image-container .cards-side .rewards-cards {
  display: none;
}
.casino-page .rewards-image .image-container .cards-side .rewards-cards.rewards-cards-casino {
  display: flex;
}
.rewards-image .image-container .side-content {
  max-width: 496px;
  text-align: left;
  padding-right: 34px;
  align-content: center;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .side-content {
    padding: 0 18px;
    max-width: initial;
    margin-bottom: 84px;
  }
}
.rewards-image .image-container .side-content .h5 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .side-content .h5 {
    margin-bottom: 24px;
  }
}
.rewards-image .image-container .side-content .h2 {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .side-content .h2 {
    margin-bottom: 18px;
  }
}
.rewards-image .image-container .side-content .content {
  margin-bottom: 36px;
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .side-content .content {
    margin-bottom: 24px;
  }
}
.rewards-image .image-container .side-content .content p {
  font-weight: 400;
}
.rewards-image .image-container .side-content .buttons-container {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .image-container .side-content .buttons-container {
    justify-content: center;
  }
}
.rewards-image .chips-wrapper {
  display: flex;
}
.rewards-image .chips-wrapper.top .red-chip-2 {
  position: absolute;
  right: 24.5%;
  z-index: 3;
  top: -46px;
  width: 78px;
  height: 63px;
}
.rewards-image .chips-wrapper.top .black-chip-1 {
  position: absolute;
  right: 517px;
  top: -38px;
  z-index: 3;
  width: 85px;
  height: 76px;
}
.rewards-image .chips-wrapper.middle .red-chip-2 {
  position: relative;
  right: -231px;
  width: 78px;
  height: 63px;
}
.rewards-image .chips-wrapper.bottom .black-chip-1 {
  position: relative;
  right: -58px;
  top: 37px;
  width: 85px;
  height: 76px;
}
.rewards-image .chips-wrapper.extra .black-chip-1 {
  position: absolute;
  left: 33px;
  bottom: 26px;
  z-index: -1;
  width: 85px;
  height: 76px;
}
.rewards-image .chips-wrapper.extra .black-chip-2 {
  position: absolute;
  left: 174px;
  bottom: -19px;
  z-index: 2;
  width: 47px;
  height: 68px;
}
@media only screen and (max-width: 1023px) {
  .rewards-image .chips-wrapper {
    display: none;
  }
}

.social-feed {
  text-align: center;
  padding: 0 18px;
  margin: 123px auto 24px auto;
}
@media only screen and (max-width: 1023px) {
  .social-feed {
    margin: 0;
    padding: 170px 7px 0 7px;
    background-color: #F6F5F3;
  }
}
.social-feed .text-wrapper {
  margin-bottom: 36px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .social-feed .text-wrapper {
    margin-bottom: 24px;
  }
}
.social-feed .text-wrapper .buttons-container {
  margin-top: 16px;
}
@media only screen and (min-width: 1024px) {
  .social-feed.two-cards-close .falling-cards-wrapper {
    top: -136px;
  }
}
@media only screen and (min-width: 1024px) {
  .social-feed.two-cards-close .falling-cards-wrapper .ace-clubs {
    top: -55px;
  }
}
.social-feed .falling-cards-wrapper {
  position: absolute;
  display: flex;
  width: 100%;
  max-width: 1440px;
  top: -31px;
  left: calc(61% + 41px);
  z-index: -1;
}
@media only screen and (max-width: 1023px) {
  .social-feed .falling-cards-wrapper {
    left: calc(40% - 80px);
    top: -85px;
    z-index: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .social-feed .falling-cards-wrapper .ace-diamonds {
    height: 62px;
  }
}
.social-feed .falling-cards-wrapper .ace-clubs {
  position: relative;
  right: -35px;
  top: -171px;
}
@media only screen and (max-width: 1023px) {
  .social-feed .falling-cards-wrapper .ace-clubs {
    height: 126px;
    right: -35px;
    top: -100px;
    width: auto;
  }
}
.social-feed .social-links {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .social-feed .social-links {
    margin-top: 24px;
  }
}
.social-feed .social-links .socials {
  font-size: 0;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .social-feed .social-links .socials {
    float: none;
  }
}
.social-feed .social-links .socials li {
  display: contents;
}
.social-feed .social-links .socials li:before {
  content: none;
}
.social-feed .social-links .socials a {
  position: relative;
  display: block;
  height: 24px;
  width: 24px;
  opacity: 1;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 0 no-repeat;
  transition: 350ms ease-in-out;
}
.social-feed .social-links .socials a:hover {
  opacity: 0.5;
  transition: 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .social-feed .social-links .socials a {
    display: inline-block;
  }
}
.social-feed .social-links .socials a.facebook {
  background-image: url("../images/icons/facebook-blue.svg");
}
.social-feed .social-links .socials a.instagram {
  background-image: url("../images/icons/instagram-blue.svg");
}
.social-feed .social-links .socials a.tiktok {
  background-image: url("../images/icons/tiktok-blue.svg");
}
.social-feed .social-links .socials a.twitter {
  background-image: url("../images/icons/twitter-blue.svg");
}
.social-feed .images-wrapper {
  max-width: 1440px;
  margin: auto;
}
.social-feed .eui-widget-title.es-widget-title.eapps-instagram-feed-title {
  display: none !important;
}
.social-feed #eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-overlay {
  background: linear-gradient(0deg, rgba(0, 107, 182, 0.9) 0%, rgba(0, 107, 182, 0.9) 100%);
}
.social-feed .eapps-instagram-feed-posts-item-template-tile .eapps-instagram-feed-posts-item-likes-count,
.social-feed .eapps-instagram-feed-posts-item-template-tile .eapps-instagram-feed-posts-item-comments-count {
  min-width: initial;
}
.social-feed #eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-overlay .eapps-instagram-feed-posts-item-content,
.social-feed #eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-overlay .eapps-instagram-feed-posts-item-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.one-column-acm {
  display: flex;
  justify-content: center;
  margin: 96px auto;
  padding: 0 18px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 1440px;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm {
    margin: 84px auto 306px auto;
  }
}
@media only screen and (max-width: 1023px) {
  .one-column-acm.no-decorations {
    margin: 84px auto;
  }
}
.one-column-acm.no-content .h2 {
  margin-bottom: 0;
}
.one-column-acm.no-content .buttons-container {
  margin-top: 36px;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm.no-content .buttons-container {
    margin-top: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .one-column-acm.margin-120 {
    margin: 120px auto;
  }
}
.one-column-acm.clamp-five .content {
  position: relative;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
  max-height: 10em;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .one-column-acm.clamp-five .content {
    max-height: 11.3em;
  }
}
.one-column-acm.clamp-five .content.expanded {
  max-height: 1500px;
  transition: max-height 0.6s ease-in-out;
  -webkit-line-clamp: unset;
}
.one-column-acm.clamp-five .content.text-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.one-column-acm.clamp-five .read-more,
.one-column-acm.clamp-five .read-less {
  margin: 24px auto 36px auto;
}
@media only screen and (max-width: 767px) {
  .one-column-acm.clamp-five .read-more,
  .one-column-acm.clamp-five .read-less {
    margin: 24px auto;
  }
}
.one-column-acm.no-clamp .content.text-clamp {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
  max-height: initial;
}
.one-column-acm.no-clamp .read-more,
.one-column-acm.no-clamp .read-less {
  display: none;
}
.one-column-acm.width-1400 .wrapper {
  max-width: 1400px;
}
.one-column-acm .wrapper {
  max-width: 808px;
  position: relative;
}
.one-column-acm .h5 {
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .h5 {
    margin-bottom: 24px;
  }
}
.one-column-acm .h2 {
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .h2 {
    margin-bottom: 18px;
  }
}
.one-column-acm .content {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .content {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .one-column-acm .content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
    max-height: 15.8em;
  }
}
@media only screen and (max-width: 767px) {
  .one-column-acm .content.expanded {
    max-height: 1500px;
    transition: max-height 0.6s ease-in-out;
    -webkit-line-clamp: unset;
  }
}
@media only screen and (max-width: 767px) {
  .one-column-acm .content.text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.one-column-acm .content.no-margin-bottom {
  margin-bottom: 0;
}
.one-column-acm .content.no-margin-bottom p:last-child {
  margin-bottom: 0;
}
.one-column-acm .read-less {
  display: none;
}
.one-column-acm .read-more,
.one-column-acm .read-less {
  text-transform: uppercase;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .one-column-acm .read-more,
  .one-column-acm .read-less {
    margin: 24px auto;
  }
}
.one-column-acm .icons-wrapper {
  justify-content: center;
  flex-wrap: wrap;
}
.one-column-acm .icons-wrapper .icon {
  color: #000;
}
.one-column-acm .buttons-container {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.one-column-acm .single-chip-wrapper {
  display: flex;
  position: absolute;
  width: 100%;
  max-width: 1440px;
  z-index: -1;
}
.one-column-acm .single-chip-wrapper.red {
  bottom: 0;
  justify-content: end;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .single-chip-wrapper.red {
    display: none;
  }
}
.one-column-acm .single-chip-wrapper.red .red-chip-2 {
  position: relative;
  right: 141px;
  top: 71px;
  z-index: -1;
  width: 78px;
  height: 63px;
}
.one-column-acm .single-chip-wrapper .black-chip-2 {
  position: relative;
  left: 69px;
  top: -32px;
  z-index: -1;
  width: 47px;
  height: 68px;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .single-chip-wrapper .black-chip-2 {
    display: none;
  }
}
.one-column-acm .falling-cards-wrapper {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  top: calc(100% - 125px);
  right: -236px;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .one-column-acm .falling-cards-wrapper.side {
    top: calc(100% - 82px);
    right: -112px;
    z-index: -1;
    display: flex;
  }
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .falling-cards-wrapper {
    display: flex;
    right: initial;
    top: calc(100% + 248px);
    left: calc(50% - 32px);
    transform: translateX(-50%);
    z-index: -1;
    width: -moz-available;
  }
}
.one-column-acm .falling-cards-wrapper .card {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .falling-cards-wrapper .card {
    width: 100%;
    width: -moz-available;
  }
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .falling-cards-wrapper .ace-hearts {
    height: 92px;
  }
}
.one-column-acm .falling-cards-wrapper .ace-spades {
  top: -160px;
}
@media only screen and (max-width: 1023px) {
  .one-column-acm .falling-cards-wrapper .ace-spades {
    height: 178px;
    top: -172px;
    right: 70px;
  }
}

.full-width-video .video-wrapper {
  position: relative;
}
.full-width-video .video-wrapper .video {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .full-width-video .video-wrapper .video {
    height: 360px;
  }
}
.full-width-video .video-wrapper .video-buttons {
  right: 34px;
}
@media only screen and (max-width: 767px) {
  .full-width-video .video-wrapper .video-buttons {
    right: 20px;
    bottom: 20px;
  }
}

.video-with-one-col {
  margin: 96px auto;
}
@media only screen and (max-width: 767px) {
  .video-with-one-col {
    margin: 56px auto;
  }
}
.video-with-one-col .wrapper {
  max-width: 844px;
  position: relative;
  margin: auto;
  padding: 0 18px;
}
.video-with-one-col .h5 {
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .video-with-one-col .h5 {
    margin-bottom: 24px;
  }
}
.video-with-one-col .h2 {
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .video-with-one-col .h2 {
    margin-bottom: 24px;
  }
}
.video-with-one-col .content {
  margin-bottom: 56px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .video-with-one-col .content {
    margin-bottom: 24px;
  }
}
.video-with-one-col .video-wrapper {
  position: relative;
  max-width: 960px;
  margin: auto;
}
.video-with-one-col .video-wrapper .video {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .video-with-one-col .video-wrapper .video {
    height: 360px;
  }
}
.video-with-one-col .video-wrapper .video-buttons {
  left: calc(50% - 28px);
  top: calc(50% - 28px);
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .video-with-one-col .video-wrapper .video-buttons {
    right: 20px;
    bottom: 20px;
    left: initial;
    top: initial;
  }
}

.video-acm .flex-scale {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.video-acm .prop-scale {
  position: relative;
  height: 0 !important;
  flex-shrink: 0;
  padding-bottom: 70%;
  min-width: 180%;
}
@media screen and (max-width: 1320px) {
  .video-acm .prop-scale {
    padding-bottom: 100%;
    min-width: 230%;
  }
}
@media only screen and (max-width: 1023px) {
  .video-acm .prop-scale {
    padding-bottom: 120%;
    min-width: 200%;
  }
}
@media screen and (max-width: 880px) {
  .video-acm .prop-scale {
    padding-bottom: 150%;
    min-width: 230%;
  }
}
@media only screen and (max-width: 767px) {
  .video-acm .prop-scale {
    padding-bottom: 230%;
    min-width: 390%;
  }
}
@media screen and (max-width: 445px) {
  .video-acm .prop-scale {
    padding-bottom: 280%;
    min-width: 480%;
  }
}
.video-acm .v-player {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 350ms ease-in;
}
.video-acm .v-player iframe {
  width: 100%;
  height: 100%;
}
.video-acm .video-buttons {
  transition: opacity 350ms ease-in-out;
  opacity: 1;
}
.video-acm .video-buttons.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-acm.hero-video {
  z-index: 1;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .video-acm.hero-video {
    padding-top: 56px;
    height: auto;
  }
}
.video-acm.hero-video .video-wrapper {
  position: relative;
  height: 100%;
}
.video-acm.hero-video .flex-scale {
  max-height: 100vh;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .video-acm.hero-video .flex-scale {
    max-height: initial;
  }
}
@media only screen and (min-width: 1024px) {
  .video-acm.hero-video .prop-scale {
    min-height: 100vh;
  }
}
@media only screen and (max-width: 1023px) {
  .video-acm.hero-video .prop-scale {
    padding-bottom: 100%;
    min-width: 200%;
  }
}
@media only screen and (max-width: 767px) {
  .video-acm.hero-video .prop-scale {
    padding-bottom: 56%;
    min-width: 100%;
  }
}

.accordions-acm {
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .accordions-acm {
    margin: 48px auto 64px auto;
  }
}
.accordions-acm .one-column {
  display: flex;
  justify-content: center;
  padding: 0 18px;
}
.accordions-acm .one-column .wrapper {
  max-width: 808px;
}
.accordions-acm .one-column .h5 {
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .accordions-acm .one-column .h5 {
    margin-bottom: 24px;
  }
}
.accordions-acm .one-column .h2 {
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .accordions-acm .one-column .h2 {
    margin-bottom: 18px;
  }
}
.accordions-acm .one-column .content {
  text-align: center;
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .accordions-acm .one-column .content {
    margin-bottom: 24px;
  }
}
.accordions-acm .one-column .bullets-wrapper {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .accordions-acm .one-column .bullets-wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .accordions-acm .one-column .bullets-wrapper {
    margin-bottom: 48px;
  }
}
.accordions-acm .one-column .bullets-side {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .accordions-acm .one-column .bullets-side {
    width: 100%;
  }
}
.accordions-acm .one-column .single-bullet {
  font-weight: 400;
  position: relative;
  padding-left: 10px;
  text-align: left;
}
.accordions-acm .one-column .single-bullet:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
}
.accordions-acm .accordions-section {
  max-width: 904px;
  margin: auto;
}
.accordions-acm .accordions-section .accordions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}
@media only screen and (max-width: 1023px) {
  .accordions-acm .accordions-section .accordions {
    padding: 0 18px;
  }
}
.accordions-acm .accordions-section .accordions-section-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 24px;
}
.accordions-acm .accordions-section .accordions-section-item .svg-container {
  display: flex;
  align-self: flex-start;
}
.accordions-acm .accordions-section .accordions-section-item .svg-container .minus {
  display: none;
}
.accordions-acm .accordions-section .accordions-section-item .svg-container .plus {
  display: flex;
}
.accordions-acm .accordions-section .accordions-section-item.active .plus {
  display: none;
}
.accordions-acm .accordions-section .accordions-section-item.active .minus {
  display: flex;
}
.accordions-acm .accordions-section .accordions-section-item .accordions-section-question {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 68px;
  color: #000;
}
@media only screen and (max-width: 1023px) {
  .accordions-acm .accordions-section .accordions-section-item .accordions-section-question {
    justify-content: center;
    gap: 24px;
  }
}
.accordions-acm .accordions-section .accordions-section-item .accordions-section-answer {
  display: none;
  overflow: hidden;
}
.accordions-acm .accordions-section .accordions-section-item .content {
  padding: 12px 104px 0 0;
}
@media only screen and (max-width: 1023px) {
  .accordions-acm .accordions-section .accordions-section-item .content {
    padding: 12px 60px 0 0;
  }
}
.accordions-acm .accordions-section .accordions-section-item .content,
.accordions-acm .accordions-section .accordions-section-item .content p {
  text-align: left;
}

.gallery-acm {
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .gallery-acm {
    margin: 48px auto 64px auto;
  }
}
.gallery-acm.margin-25 {
  margin-bottom: 25px;
}
.gallery-acm .one-column {
  display: flex;
  justify-content: center;
  padding: 0 18px;
}
.gallery-acm .one-column .wrapper {
  max-width: 808px;
}
.gallery-acm .one-column .h5 {
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .gallery-acm .one-column .h5 {
    margin-bottom: 24px;
  }
}
.gallery-acm .one-column .h2 {
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .gallery-acm .one-column .h2 {
    margin-bottom: 18px;
  }
}
.gallery-acm .one-column .content {
  text-align: center;
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .gallery-acm .one-column .content {
    margin-bottom: 24px;
  }
}
.gallery-acm .gallery-wrapper {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1440px;
  margin: auto;
  position: relative;
  padding: 0 18px;
}
@media only screen and (max-width: 767px) {
  .gallery-acm .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3px;
    -moz-column-gap: 2px;
         column-gap: 2px;
  }
}
.gallery-acm .thumbnail {
  position: relative;
  width: 100%;
  max-width: 342px;
}
.gallery-acm .thumbnail img {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .gallery-acm .thumbnail img {
    width: 100%;
    height: auto;
  }
}
.gallery-acm .background-overlay-7 {
  opacity: 0;
}
.gallery-acm .background-overlay-7:hover {
  opacity: 1;
  transition: opacity 350ms ease-in-out;
}
.gallery-acm .background-overlay-7:hover .gallery-icon {
  opacity: 1;
}
.gallery-acm .background-overlay-7 .gallery-icon {
  position: absolute;
  opacity: 0;
  transition: opacity 350ms ease-in-out;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  bottom: 24px;
  right: 24px;
}

.forms-acm {
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .forms-acm {
    margin: 56px auto;
  }
}
.forms-acm .one-column {
  display: flex;
  justify-content: center;
  padding: 0 18px;
}
.forms-acm .one-column .wrapper {
  max-width: 808px;
}
.forms-acm .one-column .h5 {
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .forms-acm .one-column .h5 {
    margin-bottom: 24px;
  }
}
.forms-acm .one-column .h2 {
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .forms-acm .one-column .h2 {
    margin-bottom: 18px;
  }
}
.forms-acm .one-column .content {
  text-align: center;
}
.forms-acm .form-container {
  max-width: 856px;
  margin: auto;
  padding: 0 18px;
}
.forms-acm .form-container .form-headers {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}
.forms-acm .form-container .form-headers .h4,
.forms-acm .form-container .form-headers .h4 p {
  font-weight: 400;
}
.forms-acm .form-container h3 {
  display: none;
}

.experience-more {
  margin: 96px auto;
}
.experience-more.background-white {
  padding: 96px 0;
  margin: auto;
  background-color: #fff;
}
@media only screen and (max-width: 1023px) {
  .experience-more.background-white {
    padding: 56px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .experience-more {
    margin: 56px auto;
  }
}
.experience-more .h2 {
  text-align: center;
  margin-bottom: 48px;
}
.experience-more .images-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 18px;
}
@media only screen and (max-width: 767px) {
  .experience-more .images-wrapper .single-image-wrapper {
    width: 100%;
  }
}
.experience-more .images-wrapper .single-image-wrapper .image-wrapper {
  position: relative;
}
.experience-more .images-wrapper .single-image-wrapper .image {
  display: flex;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .experience-more .images-wrapper .single-image-wrapper .image {
    max-width: 288px;
  }
}
@media only screen and (max-width: 767px) {
  .experience-more .images-wrapper .single-image-wrapper .image {
    height: 200px;
  }
}
.experience-more .images-wrapper .single-image-wrapper .h4 {
  position: absolute;
  bottom: 0;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  text-align: center;
  width: 100%;
  color: #fff;
}
.experience-more .images-wrapper .single-image-wrapper .buttons-container {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.experience-more.reservation-central-acm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #262626;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.experience-more.reservation-central-acm.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.experience-more.reservation-central-acm .reservation-close-button {
  align-self: flex-end;
  height: 0;
  position: relative;
  right: 56px;
  top: -40px;
  display: flex;
  opacity: 1;
  transition: opacity 350ms ease-in-out;
}
.experience-more.reservation-central-acm .reservation-close-button:hover {
  opacity: 0.5;
  transition: opacity 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .experience-more.reservation-central-acm .reservation-close-button {
    right: 36px;
  }
}
.experience-more.reservation-central-acm .wrapper {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  padding: 96px 0;
}
.experience-more.reservation-central-acm .top {
  max-width: 808px;
  margin: auto;
  text-align: center;
  margin-bottom: 96px;
}
@media only screen and (max-width: 767px) {
  .experience-more.reservation-central-acm .top {
    margin-bottom: 56px;
  }
}
.experience-more.reservation-central-acm .top .logo {
  margin-bottom: 64px;
}
.experience-more.reservation-central-acm .top .h5 {
  margin-bottom: 36px;
}
.experience-more.reservation-central-acm .top .h2 {
  margin-bottom: 24px;
}
.experience-more.reservation-central-acm .top .h5,
.experience-more.reservation-central-acm .top .h2,
.experience-more.reservation-central-acm .top .content {
  color: #fff;
}
.experience-more.reservation-central-acm .top .h2 strong {
  color: #FCB131;
}
.casino-page .experience-more.reservation-central-acm .top .h2 strong {
  color: #C0136B;
}
.experience-more.reservation-central-acm .image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.experience-more.reservation-central-acm .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid #FCB131;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.experience-more.reservation-central-acm .image-wrapper img {
  border-radius: 12px;
}
.experience-more.reservation-central-acm .image-wrapper:hover img {
  transform: scale(1.1);
}
.experience-more.reservation-central-acm .image-wrapper:hover::after {
  opacity: 1;
}
.experience-more.reservation-central-acm .image-wrapper .h4 {
  z-index: 1;
  border-radius: 0 0px 12px 12px;
}

.room-features {
  padding: 0 110px;
}
@media only screen and (max-width: 1023px) {
  .room-features {
    padding: 0 18px;
  }
}
.room-features .wrapper {
  padding: 72px 36px;
  margin: 96px auto;
  text-align: center;
  max-width: 1222px;
  background-color: #fff;
}
@media only screen and (max-width: 1023px) {
  .room-features .wrapper {
    margin: 56px auto;
    padding: 56px 36px;
  }
}
.room-features .h3 {
  margin-bottom: 36px;
}
.room-features .icons-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: auto;
}
.room-features .icons-wrapper .single-icon-wrapper {
  background: #F6F5F3;
  height: auto;
  min-height: 44px;
}

.single-special {
  padding: 0 76px 0 108px;
  margin: 96px auto;
  max-width: 1440px;
}
@media only screen and (max-width: 1023px) {
  .single-special {
    padding: 0 18px;
    margin: 56px auto;
  }
}
.single-special .sides-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .single-special .sides-wrapper {
    gap: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .single-special .sides-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .single-special .sides-wrapper .p-text {
    text-align: left;
  }
}
.single-special .sides-wrapper .left-side {
  max-width: 733px;
}
@media only screen and (max-width: 1023px) {
  .single-special .sides-wrapper .left-side {
    max-width: initial;
  }
}
.single-special .sides-wrapper .left-side .h2 {
  margin-bottom: 24px;
}
.single-special .sides-wrapper .left-side .inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.single-special .sides-wrapper .left-side .icons-share-wrapper {
  position: relative;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1023px) {
  .single-special .sides-wrapper .left-side .icons-share-wrapper {
    justify-content: center;
  }
}
.single-special .sides-wrapper .left-side .icons-wrapper {
  margin: 0;
  flex-wrap: wrap;
}
.single-special .sides-wrapper .left-side .share-icon {
  opacity: 1;
  pointer-events: all;
  position: relative;
  top: 0;
  right: initial;
}
.single-special .sides-wrapper .left-side .cards-wrapper {
  max-width: 733px;
  flex-wrap: wrap;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .single-special .sides-wrapper .left-side .cards-wrapper {
    max-width: initial;
  }
}
.single-special .sides-wrapper .left-side .cards-wrapper .single-card-wrapper {
  max-width: 288px;
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .single-special .sides-wrapper .left-side .cards-wrapper .single-card-wrapper {
    width: 100%;
    max-width: initial;
  }
}
@media only screen and (max-width: 1023px) {
  .single-special .sides-wrapper .left-side .cards-wrapper .single-card-wrapper {
    width: calc(50% - 12px);
    max-width: initial;
  }
}
@media only screen and (max-width: 767px) {
  .single-special .sides-wrapper .left-side .cards-wrapper .single-card-wrapper {
    width: 100%;
    max-width: initial;
  }
}
.single-special .sides-wrapper .left-side .cards-wrapper .single-card-wrapper .image {
  display: flex;
}
@media only screen and (min-width: 1024px) {
  .single-special .sides-wrapper .left-side .cards-wrapper .single-card-wrapper .image img {
    max-width: 288px;
  }
}
@media (max-width: 1200px) {
  .single-special .sides-wrapper .left-side .cards-wrapper .single-card-wrapper .image img {
    width: 100%;
    max-width: initial;
  }
}
.single-special .sides-wrapper .left-side .cards-wrapper .text-wrapper {
  padding: 36px 24px;
  min-height: 182px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 767px) {
  .single-special .sides-wrapper .left-side .cards-wrapper .text-wrapper {
    min-height: initial;
  }
}
.single-special .sides-wrapper .right-side {
  position: relative;
}
.single-special .sides-wrapper .right-side .p-large {
  color: #000;
}
.single-special .sides-wrapper .right-side .top,
.single-special .sides-wrapper .right-side .middle {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-special .sides-wrapper .right-side .bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.single-special .sides-wrapper .right-side .wrapper {
  background-color: #F7F7F7;
  padding: 32px;
  min-width: 405px;
  position: sticky;
  top: 180px;
  border-radius: 4px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1023px) {
  .single-special .sides-wrapper .right-side .wrapper {
    position: relative;
    top: initial;
    min-width: initial;
  }
}
.single-special .sides-wrapper .right-side .wrapper .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.single-special .sides-wrapper .right-side .wrapper .info-wrapper.play-wrapper {
  gap: 16px;
}
.single-special .sides-wrapper .right-side .logos-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.single-special .sides-wrapper .right-side .logos-wrapper .logo {
  height: 120px;
  width: 120px;
  background-color: #fff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
.single-special .sides-wrapper .right-side .logos-wrapper .logo .resort-logo {
  position: relative;
  left: 14px;
  top: 29px;
}
.single-special .sides-wrapper .right-side .logos-wrapper .logo .casino-logo {
  position: relative;
  left: 18px;
  top: 39px;
}
.single-special .sides-wrapper .right-side .separator {
  border: none;
  border-top: 1px solid #E6E6E6;
  width: 100%;
  margin: 32px 0;
}
.single-special .sides-wrapper .right-side .separator.no-tier {
  display: none;
}

.single-event {
  padding: 0 76px 0 108px;
  margin: 96px auto;
  max-width: 1440px;
}
@media only screen and (max-width: 1023px) {
  .single-event {
    padding: 0 18px;
    margin: 56px auto;
  }
}
.single-event .sides-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .single-event .sides-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .single-event .sides-wrapper .p-text,
  .single-event .sides-wrapper p,
  .single-event .sides-wrapper .h2 {
    text-align: left;
  }
}
.single-event .sides-wrapper .left-side {
  max-width: 733px;
}
@media only screen and (max-width: 1023px) {
  .single-event .sides-wrapper .left-side {
    max-width: initial;
  }
}
.single-event .sides-wrapper .left-side .wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.single-event .sides-wrapper .left-side .section-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single-event .sides-wrapper .left-side .section-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-event .sides-wrapper .left-side .section-bottom,
.single-event .sides-wrapper .left-side .contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.single-event .sides-wrapper .left-side .contact-wrapper .h4 {
  position: relative;
  font-weight: 400;
  padding-left: 22px;
}
.single-event .sides-wrapper .left-side .contact-wrapper .h4:before {
  content: "•";
  position: absolute;
  left: 0;
  padding-left: 11px;
  color: #000;
}
.single-event .sides-wrapper .left-side .contact-wrapper .content {
  padding-left: 22px;
}
.single-event .sides-wrapper .right-side {
  position: relative;
}
.single-event .sides-wrapper .right-side .p-large {
  color: #000;
}
.single-event .sides-wrapper .right-side .top,
.single-event .sides-wrapper .right-side .middle {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-event .sides-wrapper .right-side .bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.single-event .sides-wrapper .right-side .wrapper {
  background-color: #F7F7F7;
  padding: 32px;
  min-width: 405px;
  position: sticky;
  top: 180px;
  border-radius: 4px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1023px) {
  .single-event .sides-wrapper .right-side .wrapper {
    position: relative;
    top: initial;
    min-width: initial;
  }
}
.single-event .sides-wrapper .right-side .wrapper .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.single-event .sides-wrapper .right-side .wrapper .info-wrapper .venue-name {
  text-decoration: underline;
}
.single-event .sides-wrapper .right-side .separator {
  border: none;
  border-top: 1px solid #E6E6E6;
  width: calc(100% + 64px);
  margin: 32px 0;
  position: relative;
  left: -32px;
}
.single-event .sides-wrapper .right-side .separator.no-button {
  display: none;
}

.cards-grid-acm {
  background-color: #fff;
  margin: auto;
  padding: 96px 0;
}
@media only screen and (max-width: 1023px) {
  .cards-grid-acm {
    padding: 56px 0;
  }
}
.cards-grid-acm .wrapper {
  max-width: 844px;
  padding: 0 18px;
  margin: auto;
  text-align: center;
  margin-bottom: 56px;
}
.cards-grid-acm .wrapper .h5 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1023px) {
  .cards-grid-acm .wrapper .h5 {
    margin-bottom: 24px;
  }
}
.cards-grid-acm .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1260px;
  margin: auto;
  padding: 0 18px;
}
@media only screen and (max-width: 1023px) {
  .cards-grid-acm .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .cards-grid-acm .cards-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
.cards-grid-acm .cards-wrapper .thumbnail {
  display: flex;
  position: relative;
}
.cards-grid-acm .cards-wrapper .image {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  width: 100%;
  height: 300px;
}
.cards-grid-acm .cards-wrapper .share-wrapper {
  position: absolute;
  width: 100%;
}
.cards-grid-acm .cards-wrapper .share-icon {
  opacity: 1;
  pointer-events: all;
}
.cards-grid-acm .cards-wrapper .card {
  max-width: 392px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .cards-grid-acm .cards-wrapper .card {
    max-width: initial;
    width: 100%;
  }
}
.cards-grid-acm .cards-wrapper .card .content-wrapper {
  padding: 36px;
  min-height: 305px;
  background-color: #F6F5F3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .cards-grid-acm .cards-wrapper .card .content-wrapper {
    min-height: initial;
  }
}
.cards-grid-acm .cards-wrapper .card .content-wrapper .h4 {
  margin-bottom: 10px;
}
.cards-grid-acm .cards-wrapper .card .content-wrapper .content {
  text-align: left;
  margin-bottom: 12px;
}

.games-grid-acm {
  padding: 96px 0;
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm {
    padding: 56px 0;
  }
}
.games-grid-acm .single-chip-wrapper {
  display: flex;
  position: absolute;
  width: 100%;
  max-width: 1440px;
  z-index: -1;
  top: 0;
}
.games-grid-acm .single-chip-wrapper .red-chip-1 {
  position: relative;
  right: -77px;
  top: -72px;
  z-index: -1;
  width: 118px;
  height: 74px;
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm .single-chip-wrapper .red-chip-1 {
    height: 56px;
  }
}
.games-grid-acm .one-column {
  display: flex;
  justify-content: center;
  margin: 0 auto 56px auto;
  padding: 0 18px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 1440px;
}
.games-grid-acm .one-column .wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm .one-column .wrapper {
    gap: 24px;
  }
}
.games-grid-acm .one-column .wrapper .buttons-container {
  display: flex;
  justify-content: center;
}
.games-grid-acm .image-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1260px;
  margin: auto;
  padding: 0 18px;
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm .image-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.games-grid-acm .image-list-item {
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm .image-list-item {
    max-width: initial;
    width: 100%;
  }
}
.games-grid-acm .image-list-item .thumbnail {
  position: relative;
}
.games-grid-acm .image-list-item .thumbnail .image {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  width: 100%;
  height: 369px;
}
.games-grid-acm .image-list-item .thumbnail .share-icon {
  opacity: 1;
  pointer-events: all;
}
.games-grid-acm .image-list-item .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  overflow: hidden;
  flex-grow: 1;
  padding: 26px 24px;
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm .image-list-item .content-wrapper {
    flex-direction: column;
    padding: 18px;
  }
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm .image-list-item .content-wrapper .top-side {
    display: flex;
    align-self: flex-start;
    flex-direction: column;
  }
}
.games-grid-acm .image-list-item .content-wrapper h4 {
  margin-bottom: 10px;
  max-width: 288px;
  text-align: left;
}
.games-grid-acm .image-list-item .content-wrapper .buttons-container {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .games-grid-acm .image-list-item .content-wrapper .buttons-container {
    margin-top: 24px;
  }
}
.games-grid-acm .image-list-item .content-wrapper .p-text {
  text-align: left;
  text-transform: uppercase;
}
.games-grid-acm .image-list-item .content-wrapper .content {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.72px;
}

.menu-tabs-block-acm {
  margin: 96px auto;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm {
    margin: 56px auto;
  }
}
.menu-tabs-block-acm .center-column {
  padding: 0 18px;
}
.menu-tabs-block-acm .tabs {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .menu-tabs-block-acm .select-wrapper {
    display: none;
  }
}
.menu-tabs-block-acm .select-wrapper select {
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .button {
    display: none;
  }
}
.menu-tabs-block-acm .tabs-titles {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 96px auto;
  max-width: 1216px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-titles {
    margin: 0 auto 56px auto;
  }
}
.menu-tabs-block-acm .tabs-content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: unset;
  overflow: hidden;
}
.menu-tabs-block-acm .tabs-content .tabs-content-item {
  position: relative;
  max-height: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: auto;
  gap: 92px;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-content .tabs-content-item {
    gap: 56px;
  }
}
.menu-tabs-block-acm .tabs-content .tabs-content-item.active {
  opacity: 1;
  visibility: visible;
  max-height: 3000px;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.menu-tabs-block-acm .tabs-content .top-side,
.menu-tabs-block-acm .tabs-content .bottom-side {
  display: flex;
  flex-direction: column;
}
.menu-tabs-block-acm .tabs-content .top-side {
  max-width: 608px;
  margin: auto;
  width: 100%;
}
.menu-tabs-block-acm .tabs-content .bottom-side {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  row-gap: 38px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  display: flex;
  width: 100%;
  max-width: 961px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-content .bottom-side {
    flex-direction: column;
  }
}
.menu-tabs-block-acm .tabs-content .p-text {
  margin: 20px auto 0 auto;
  text-align: center;
}
.menu-tabs-block-acm .tabs-content .menu-type-wrapper {
  margin: 24px auto 0 auto;
  display: flex;
  gap: 48px;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-content .menu-type-wrapper {
    flex-wrap: wrap;
    row-gap: 12px;
    -moz-column-gap: 24px;
         column-gap: 24px;
    justify-content: center;
  }
}
.menu-tabs-block-acm .tabs-content .menu-type-wrapper .h5 {
  position: relative;
}
.menu-tabs-block-acm .tabs-content .menu-type-wrapper .h5:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -21px;
  top: -1px;
  stroke: #212121;
  opacity: 0.1;
  width: 1px;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-content .menu-type-wrapper .h5:not(:last-child)::after {
    right: -8px;
  }
}
.menu-tabs-block-acm .menu-block {
  width: calc(50% - 12px);
  max-width: 401px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .menu-block {
    width: 100%;
    max-width: initial;
  }
}
.menu-tabs-block-acm .menu-block .dish {
  max-width: 401px;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .menu-block .dish {
    max-width: initial;
  }
}
.menu-tabs-block-acm .menu-block .dish .dish-left {
  display: flex;
  flex-direction: column;
}
.menu-tabs-block-acm .menu-block .dish .dish-name {
  color: #000;
  margin-bottom: 4px;
}
.menu-tabs-block-acm .menu-block .dish .dish-ingredients {
  color: rgba(0, 0, 0, 0.6);
  text-transform: none;
  text-align: left;
}
.menu-tabs-block-acm .menu-block .dish .dish-number {
  position: relative;
  top: -3px;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .menu-block .dish .dish-number {
    top: -6px;
  }
}

.calendar-acm {
  background-color: #fff;
  position: relative;
}
.calendar-acm .calendar-wrapper {
  padding: 72px 60px;
  margin: auto;
  max-width: 1440px;
}
@media only screen and (max-width: 1023px) {
  .calendar-acm .calendar-wrapper {
    padding: 56px 18px;
  }
}
.calendar-acm .top-half {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .top-half {
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
  }
}
.calendar-acm .top-half .left-side {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .top-half .left-side {
    justify-content: end;
    display: flex;
    flex-direction: row-reverse;
    order: 2;
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .calendar-acm .top-half .left-side .grid-list-wrapper {
    display: none;
  }
}
.calendar-acm .top-half .left-side .grid-list-wrapper .grid-button,
.calendar-acm .top-half .left-side .grid-list-wrapper .list-button {
  opacity: 0.5;
  min-width: 60px;
}
.calendar-acm .top-half .left-side .grid-list-wrapper .grid-button .grid-text,
.calendar-acm .top-half .left-side .grid-list-wrapper .grid-button .list-text,
.calendar-acm .top-half .left-side .grid-list-wrapper .list-button .grid-text,
.calendar-acm .top-half .left-side .grid-list-wrapper .list-button .list-text {
  opacity: 0;
}
.calendar-acm .top-half .left-side .grid-list-wrapper .grid-button.active,
.calendar-acm .top-half .left-side .grid-list-wrapper .list-button.active {
  opacity: 1;
}
.calendar-acm .top-half .left-side .grid-list-wrapper .grid-button.active .grid-text,
.calendar-acm .top-half .left-side .grid-list-wrapper .grid-button.active .list-text,
.calendar-acm .top-half .left-side .grid-list-wrapper .list-button.active .grid-text,
.calendar-acm .top-half .left-side .grid-list-wrapper .list-button.active .list-text {
  opacity: 1;
}
.calendar-acm .top-half .left-side .separator {
  height: 100%;
  border: none;
  margin: 0;
}
.calendar-acm .top-half .left-side .separator:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #E6E6E6;
  margin: 0 4px;
}
.calendar-acm .top-half .left-side .share-wrapper {
  min-width: 60px;
  margin-top: 4px;
  position: relative;
  display: flex;
  justify-content: center;
}
.calendar-acm .top-half .left-side .share-wrapper .share-icon {
  right: initial;
  top: initial;
  opacity: 1;
  pointer-events: all;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .top-half .left-side .share-wrapper .share-icon {
    position: relative;
  }
}
.calendar-acm .top-half .left-side .share-wrapper .share-socials.visible {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
.calendar-acm .top-half .middle-side {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .top-half .middle-side {
    flex-direction: row;
    order: 1;
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .calendar-acm .top-half .right-side {
    width: 50%;
    order: 2;
  }
}
.calendar-acm .separator-wrapper.long .separator {
  border: none;
  border-top: 1px solid #E6E6E6;
  width: 100%;
  margin: 16px 0;
}
.calendar-acm .bottom-half {
  margin-bottom: 72px;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .bottom-half {
    margin-bottom: 56px;
  }
}
.calendar-acm .bottom-half .button-slider {
  position: relative;
  height: 0;
  z-index: -1;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .bottom-half .button-slider {
    display: none;
  }
}
.calendar-acm .bottom-half .button-slider.day .slideshow,
.calendar-acm .bottom-half .button-slider.day .slideshow-wrapper {
  max-width: 500px;
}
.calendar-acm .bottom-half .button-slider.week .slideshow,
.calendar-acm .bottom-half .button-slider.week .slideshow-wrapper {
  max-width: 610px;
}
.calendar-acm .bottom-half .button-slider.month .slideshow,
.calendar-acm .bottom-half .button-slider.month .slideshow-wrapper {
  max-width: 590px;
}
.calendar-acm .bottom-half .button-slider.visible {
  height: initial;
  z-index: 0;
  visibility: visible;
}
.calendar-acm .bottom-half .dropdown-wrapper {
  display: none;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .bottom-half .dropdown-wrapper.visible {
    display: flex;
    justify-content: center;
  }
}
.calendar-acm .bottom-half .slideshow {
  position: relative;
  position: relative;
  justify-content: center;
  display: flex;
  margin: auto;
  overflow: hidden;
  z-index: 2;
}
.calendar-acm .bottom-half .slideshow-wrapper {
  width: 100%;
  gap: 12px;
  display: flex;
  justify-content: center;
}
.calendar-acm .bottom-half .slideshow-wrapper.swiper-wrapper {
  gap: 0;
  justify-content: initial;
}
.calendar-acm .bottom-half .button-controls {
  z-index: 0;
  top: calc(50% - 9px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.calendar-acm .bottom-half .button-controls.visible {
  display: flex;
}
.calendar-acm .bottom-half .button-controls .slideshow-button {
  gap: 12px;
}
@media (min-width: 768px) and (max-width: 800px) {
  .calendar-acm .bottom-half .button-controls .slideshow-button {
    gap: 2px;
  }
}
.calendar-acm .bottom-half .button-controls .slideshow-button.previous {
  left: 0;
}
.calendar-acm .bottom-half .button-controls .slideshow-button.next {
  right: 0;
  flex-direction: row-reverse;
}
.calendar-acm .bottom-half .button-controls .slideshow-button.next img {
  transform: scaleX(-1);
}
.calendar-acm .bottom-half .button-slider.day .button-controls {
  max-width: 670px;
}
.calendar-acm .bottom-half .button-slider.week .button-controls {
  max-width: 780px;
}
.calendar-acm .bottom-half .button-slider.month .button-controls {
  max-width: 754px;
}
.calendar-acm .events-wrapper {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media only screen and (max-width: 767px) {
  .calendar-acm .events-wrapper {
    gap: 56px;
  }
}
.calendar-acm .events-wrapper .event-date-group {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.calendar-acm .events-wrapper .event-date-group.hide {
  display: none;
}
.calendar-acm .events-wrapper .event-date-group.month-hide {
  display: none;
}
.calendar-acm .events-wrapper .event-date-group .event-items {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.calendar-acm .events-wrapper .event-date-group .event-items article.hide {
  display: none;
}
@media (max-width: 1439px) {
  .calendar-acm .events-wrapper.grid-view .event-items {
    flex-wrap: wrap;
  }
}
.calendar-acm .events-wrapper.grid-view article {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 413px;
  min-height: 239px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1023px) {
  .calendar-acm .events-wrapper.grid-view article {
    width: calc(50% - 20px);
    max-width: initial;
  }
}
@media only screen and (min-width: 768px) {
  .calendar-acm .events-wrapper.grid-view .event-thumbnail {
    position: relative;
    display: flex;
    max-width: 156px;
    width: 100%;
  }
  .calendar-acm .events-wrapper.grid-view .event-thumbnail.no-thumb {
    background-color: #000;
  }
  .calendar-acm .events-wrapper.grid-view .event-thumbnail .start-time {
    position: absolute;
    left: 12px;
    bottom: 9px;
    border-radius: 160px;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    text-transform: uppercase;
    z-index: 1;
    color: #fff;
  }
  .calendar-acm .events-wrapper.grid-view .right-side {
    background-color: #fff;
    width: 100%;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper {
    padding: 20px;
    width: 100%;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .category {
    padding: 6px 24px;
    background-color: #F6F5F3;
    border-radius: 24px;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .main-content-wrapper {
    margin-bottom: 16px;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .main-content-wrapper .event-title {
    margin-bottom: 4px;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .main-content-wrapper .event-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .main-content-wrapper .event-content {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .main-content-wrapper .event-price {
    margin-top: 4px;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .buttons-container {
    display: flex;
    align-items: center;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .buttons-container .link:last-child:not(:only-child) {
    margin-left: 14px;
  }
  .calendar-acm .events-wrapper.grid-view .right-side .content-wrapper .buttons-container .button {
    margin-left: 14px;
  }
}
.calendar-acm .events-wrapper.list-view .event-items {
  flex-direction: column;
}
@media (max-width: 1439px) {
  .calendar-acm .events-wrapper.list-view .event-items {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .calendar-acm .events-wrapper.list-view article {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 340px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  }
  .calendar-acm .events-wrapper.list-view .event-thumbnail {
    position: relative;
    display: flex;
    max-width: 413px;
    width: 100%;
  }
  .calendar-acm .events-wrapper.list-view .event-thumbnail.no-thumb {
    background-color: #000;
  }
  .calendar-acm .events-wrapper.list-view .event-thumbnail .start-time {
    font-size: 12px;
    position: absolute;
    left: 24px;
    bottom: 24px;
    border-radius: 160px;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    text-transform: uppercase;
    z-index: 1;
    color: #fff;
  }
  .calendar-acm .events-wrapper.list-view .right-side {
    background-color: #fff;
    width: 100%;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper {
    padding: 40px 40px 48px 40px;
    width: 100%;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .category {
    padding: 6px 24px;
    background-color: #F6F5F3;
    border-radius: 24px;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .main-content-wrapper {
    margin-bottom: 24px;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .main-content-wrapper .event-title {
    margin-bottom: 12px;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .main-content-wrapper .event-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .main-content-wrapper .event-price {
    margin-top: 8px;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .buttons-container {
    display: flex;
    align-items: center;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .buttons-container .link:last-child:not(:only-child) {
    margin-left: 14px;
  }
  .calendar-acm .events-wrapper.list-view .right-side .content-wrapper .buttons-container .button {
    margin-left: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar-acm .events-wrapper .event-items article.event {
    flex-direction: column;
    width: 100%;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  }
  .calendar-acm .events-wrapper .event-items .event-thumbnail {
    height: 200px;
    max-width: initial;
    position: relative;
  }
  .calendar-acm .events-wrapper .event-items .event-thumbnail.no-thumb {
    background-color: #000;
  }
  .calendar-acm .events-wrapper .event-items .event-thumbnail .start-time {
    position: absolute;
    left: 12px;
    bottom: 9px;
    border-radius: 160px;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    text-transform: uppercase;
    z-index: 1;
    color: #fff;
  }
  .calendar-acm .events-wrapper .event-items .right-side .content-wrapper {
    padding: 20px;
  }
  .calendar-acm .events-wrapper .event-items .right-side .content-wrapper .p-text {
    text-align: left;
  }
  .calendar-acm .events-wrapper .event-items .right-side .content-wrapper .category {
    padding: 6px 24px;
    background-color: #F6F5F3;
    border-radius: 24px;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .calendar-acm .events-wrapper .event-items .right-side .content-wrapper .main-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }
  .calendar-acm .events-wrapper .event-items .right-side .content-wrapper .buttons-container {
    display: flex;
    align-items: center;
  }
  .calendar-acm .events-wrapper .event-items .right-side .content-wrapper .buttons-container .button {
    margin-left: 14px;
  }
}
.calendar-acm .events-wrapper .no-events {
  display: none;
}
.calendar-acm .events-wrapper .no-events.visible {
  display: flex;
  margin: auto;
}
.calendar-acm .events-wrapper .load-more-wrapper {
  display: flex;
  justify-content: center;
}
.calendar-acm .events-wrapper .load-more-wrapper .button {
  display: none;
  margin: 5px;
}
.calendar-acm .events-wrapper .load-more-wrapper .button.visible {
  display: flex;
}
.calendar-acm .events-wrapper .load-more-wrapper .button.disabled {
  opacity: 0.5;
  pointer-events: none;
  display: inline-block;
}
.calendar-acm .p-large,
.calendar-acm .p-small {
  color: #000;
}
.calendar-acm .p-small-2 {
  color: rgba(0, 0, 0, 0.6);
}
.calendar-acm .calendar-disable {
  opacity: 0.5;
  pointer-events: none;
}

#calendar-filter {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 493px;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  #calendar-filter {
    width: 100%;
    left: 0;
    top: 0;
    transform: initial;
  }
}
#calendar-filter input[type=text] {
  width: 100%;
}
#calendar-filter input[type=text]::-moz-placeholder {
  color: #000;
}
#calendar-filter input[type=text]::placeholder {
  color: #000;
}
@media only screen and (max-width: 1023px) {
  #calendar-filter .h5 {
    text-align: left;
  }
}
#calendar-filter .p-text {
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  #calendar-filter .p-text {
    text-align: left;
  }
}
#calendar-filter .color-gray {
  color: rgba(0, 0, 0, 0.6);
}
#calendar-filter .filter-top {
  display: flex;
  justify-content: center;
  padding: 29px 40px;
  position: relative;
  align-items: center;
  border-bottom: 1px solid #E6E6E6;
}
#calendar-filter .filter-top .filter-close-button {
  height: 20px;
  position: absolute;
  right: 30px;
}
#calendar-filter .filter-middle {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 36px;
}
#calendar-filter .filter-middle .keyword-section,
#calendar-filter .filter-middle .date-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#calendar-filter .filter-middle .search-input-wrapper,
#calendar-filter .filter-middle .dates-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #E6E6E6;
  position: relative;
}
#calendar-filter .filter-middle .input-overlay,
#calendar-filter .filter-middle .input-svg-wrapper {
  position: absolute;
  right: 0;
  width: 100%;
  text-align: end;
}
#calendar-filter .filter-middle .input-overlay {
  top: -15px;
}
#calendar-filter .filter-middle .svg-calendar {
  height: 32px;
}
#calendar-filter .filter-middle #calendar-datepicker {
  position: absolute;
  display: none;
}
#calendar-filter .filter-middle #calendar-datepicker.visible {
  display: flex;
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  #calendar-filter .filter-middle #calendar-datepicker.visible {
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-filter .filter-middle #calendar-datepicker.visible .ui-datepicker {
    width: 100%;
  }
}
#calendar-filter .filter-bottom {
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E6E6E6;
}
#calendar-filter .filter-bottom .p-small-2 {
  letter-spacing: 0.72px;
  color: #000;
}

.calendar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.calendar-backdrop,
#calendar-filter {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.calendar-backdrop.visible,
#calendar-filter.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.full-width-slider {
  position: relative;
  margin: 96px auto;
}
@media only screen and (max-width: 1023px) {
  .full-width-slider {
    margin: 56px auto;
  }
}
.full-width-slider.margin-120 {
  margin: 120px auto;
}
@media only screen and (max-width: 1023px) {
  .full-width-slider.margin-120 {
    margin: 56px auto;
  }
}
.full-width-slider.remove-parallax .slide .parallax-full {
  background-attachment: initial;
}
@supports (-webkit-touch-callout: none) {
  @media only screen and (max-width: 767px) {
    .full-width-slider .slide .parallax-full {
      background-attachment: initial !important;
    }
  }
}
.full-width-slider .parallax-wrap {
  width: 100%;
  height: 600px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  will-change: transform;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .full-width-slider .parallax-wrap {
    height: 500px;
  }
}
.full-width-slider .parallax-wrap .parallax-img {
  --overflow: 80px;
  height: calc(100% + 2 * var(--overflow));
  top: calc(-1 * var(--overflow));
  width: 100%;
  position: absolute;
  background-image: var(--image);
  background-size: cover;
  background-position: 50% 0%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
}
.full-width-slider .slideshow-wrapper {
  height: auto;
  width: 100%;
}
.full-width-slider .slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .full-width-slider .slide {
    padding: 0;
  }
}
.full-width-slider .slide .parallax-full {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 600px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .full-width-slider .slide .parallax-full {
    height: 500px;
  }
}
.full-width-slider .slide .parallax-wrap {
  width: 100%;
  height: 600px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  will-change: transform;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .full-width-slider .slide .parallax-wrap {
    height: 500px;
  }
}
.full-width-slider .slide .parallax-wrap .parallax-img {
  --overflow: 200px;
  height: calc(100% + 2 * var(--overflow));
  top: calc(-1 * var(--overflow));
  width: 100%;
  position: absolute;
  background-image: var(--image);
  background-size: cover;
  background-position: 50% 0%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
}
.full-width-slider .slide .h5,
.full-width-slider .slide .h2,
.full-width-slider .slide .content p {
  color: #fff;
}
.full-width-slider .slide .content-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 39.6px;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .full-width-slider .slide .content-container {
    bottom: 47px;
  }
}
.full-width-slider .slide .content-container .h5,
.full-width-slider .slide .content-container .h2,
.full-width-slider .slide .content-container .content p {
  max-width: 803px;
  margin: auto;
}
.full-width-slider .slide .content-container .content p {
  font-weight: 400;
}
.full-width-slider .slide .content-container .buttons-container {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.full-width-slider .button-controls .slideshow-button.previous {
  left: 14px;
}
.full-width-slider .button-controls .slideshow-button.next {
  right: 14px;
}
.full-width-slider .bullets-wrapper {
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media only screen and (min-width: 1024px) {
  .full-width-slider .bullets-wrapper {
    display: none;
  }
}

@media print {
  html {
    -webkit-print-color-adjust: exact;
  }
  body, html {
    width: 100%;
  }
  * {
    background: none !important;
    border: none !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .fade-on-scroll {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  body > *:not(#content) {
    display: none;
  }
  #content-submenu {
    display: none;
  }
  #acm-content-tiles,
  .widget-area,
  .additional-content,
  .checkers-item .images,
  .page-content .socials,
  #calendar-header,
  #calendar-year,
  #calendar-month {
    display: none;
  }
  .checkers-item .content {
    width: 100% !important;
    margin: 0 !important;
  }
  @page {
    size: 960px 1358px;
  }
}
