.events-container {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 959px) {
  .events-container {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.events-container .calendar {
  position: relative;
}
.events-container .calendar:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff8c;
  opacity: 0;
  pointer-events: none;
}
.events-container .calendar.active-day-events-drop:after {
  opacity: 1;
}
.events-container .calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.events-container .calendar .days .event-calendar-event-title {
  font-size: 0.85rem;
}
.events-container .calendar .days .day-label {
  border-top: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
}
.events-container .calendar .days .day-label:nth-child(1) {
  border-left: 1px solid #d3d3d3;
}
.events-container .calendar .days .day {
  aspect-ratio: 1 / 1;
  background-color: white;
  color: #343434;
  border-bottom: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  box-sizing: border-box;
  position: relative;
  /*&:nth-child(-n + 7){
        border-top: 1px solid lightgrey;
      }*/
}
.events-container .calendar .days .day.not-in-month {
  opacity: 0.5;
}
.events-container .calendar .days .day.not-in-month .uk-badge {
  background-color: lightgrey;
}
.events-container .calendar .days .day .day-mobile-events-info-toggle {
  background: none;
  border: 0;
}
.events-container .calendar .days .day .day-mobile-events-info-toggle:hover,
.events-container .calendar .days .day .day-mobile-events-info-toggle:active {
  background-color: #f3f3f3;
}
.events-container .calendar .days .day.today {
  background-color: lightyellow;
}
.events-container .calendar .days .day .day-mobile-events-info {
  position: absolute;
  bottom: 0;
  right: 4px;
  pointer-events: none;
}
.events-container .calendar .days .day .day-number-label {
  position: absolute;
  top: 0px;
  right: 6px;
  font-size: 0.8rem;
  pointer-events: none;
}
@media (min-width: 960px) {
  .events-container .calendar .days .day .day-number-label {
    top: 0px;
    right: 6px;
    font-size: 0.8rem;
  }
}
.events-container .calendar .days .day:nth-child(7n + 1) {
  border-left: 1px solid lightgrey;
}
.events-container .events-tiles .event-card .date {
  /*position: absolute;
    top: 1em;
    left: 0;
    display: block;
    background: #555;
    color: #fff;

    line-height: 1;
    padding: 5px 10px;
    font-weight: 600;*/
}
.navbar-actions .uk-button {
  min-height: 40px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid lightgrey;
  display: flex;
}
@media (max-width: 959px) {
  .navbar-actions .uk-button {
    padding: 0 5px;
  }
}
.navbar-actions .uk-button:hover,
.navbar-actions .uk-button.uk-active {
  background: #f4b223;
  color: #fff;
  border-color: #f4b223;
}
.navbar-actions .uk-button.next-month {
  margin-left: -1px;
}
.events-menu {
  /*@media(max-width:959px){
    margin-top:-10px;
  }*/
}
.events-menu .events-view-toggles-desktop {
  position: relative;
}
.events-menu .events-view-toggles-desktop:after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: lightgrey;
}
@media (max-width: 959px) {
  .navbar-actions {
    font-size: 0.85rem;
  }
}
.events-views-toggles label {
  cursor: pointer;
  position: relative;
}
.events-views-toggles input[type=radio] {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
}
.events-views-toggles input[type=radio] + span {
  height: 40px;
  display: flex;
  padding: 0 20px;
  border-radius: 5px 5px 0 0;
  border: 1px solid lightgrey;
  border-bottom: 0;
  align-items: center;
}
@media (max-width: 959px) {
  .events-views-toggles input[type=radio] + span {
    padding: 0 10px;
  }
  .events-views-toggles input[type=radio] + span .uk-icon {
    min-width: 20px;
  }
  .events-views-toggles input[type=radio] + span .view-title {
    display: none;
  }
}
.events-views-toggles input[type=radio]:checked + span {
  border: 1px solid #f4b223;
  border-bottom: 0;
  background-color: #f4b223;
  color: white;
}
@media (max-width: 959px) {
  .events-views-toggles input[type=radio]:checked + span .view-title {
    display: block;
  }
}
.events-views-toggles input[type=radio]:disabled + span {
  border: 1px solid lightgrey;
  background-color: #efefef;
  color: grey;
}
.remove-tag-action {
  font-size: 0.65rem;
  background-color: #2c2326;
  border-radius: 3px;
  color: #fff;
}
.remove-tag-action span {
  padding: 3px 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.73);
}
.remove-tag-action button {
  background-color: #010101;
  color: white;
  border-radius: 0 3px 3px 0;
  border: 0;
  cursor: pointer;
}
.events-list {
  padding: 0;
  list-style: none;
}
.events-list > li:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}
.events-list .events-list-grid {
  display: flex;
}
.events-list .events-list-grid .events-list-day {
  border-right: 1px solid #eeeeee;
  min-width: 100px;
}
@media (min-width: 960px) {
  .events-list .events-list-grid .events-list-day {
    min-width: 130px;
  }
}
.calendar-mobile-info > * {
  pointer-events: none;
}
@keyframes menu-logo-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-notification {
  background: #000000;
  text-align: center;
  display: none;
  position: relative;
  padding: 10px;
  font-size: 14px;
}
@media (min-width: 960px) {
  .top-notification {
    margin: auto;
  }
}
.top-notification .notification-wrapper {
  max-width: 90%;
  margin: auto;
}
.uk-sticky-fixed .top-notification {
  display: none !important;
}
.top-notification a {
  color: white;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  cursor: pointer;
}
.top-notification p {
  margin: 0;
  color: white;
}
.top-notification .close-notification {
  cursor: pointer;
}
@media (min-width: 960px) {
  .uk-sticky-below .menu {
    padding-top: .5rem;
  }
}
.mobile-menu {
  background-color: #2c2326;
  /*@media (min-width: 768px) {
    padding: 40px 20px 0 40px;
  }*/
}
.uk-sticky-fixed .mobile-menu {
  padding: 0;
}
.uk-sticky-fixed .mobile-menu .menu-book-button {
  text-decoration: none;
  border: 1px solid white;
  line-height: 45px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 1px;
  margin-right: 3px;
}
.uk-sticky-fixed .mobile-menu .menu-book-button:hover,
.uk-sticky-fixed .mobile-menu .menu-book-button:focus {
  background: #d9980b;
}
.uk-light .uk-sticky-fixed .mobile-menu .menu-book-button {
  color: white;
}
.uk-sticky-fixed .mobile-menu .menu-book-button {
  border: 0;
  text-decoration: none;
}
.mobile-menu .menu-book-button {
  width: 100px;
}
@media (min-width: 768px) {
  .mobile-menu .menu-book-button {
    width: auto;
  }
}
.mobile-menu .call-mobile {
  display: none;
}
.uk-sticky-fixed .mobile-menu .call-mobile {
  display: flex;
}
@media (max-width: 375px) {
  .uk-sticky-fixed .mobile-menu .call-mobile {
    font-size: 12px;
  }
  .uk-sticky-fixed .mobile-menu .call-mobile i {
    display: none;
  }
}
@media (max-width: 375px) {
  .mobile-menu .call-mobile {
    font-size: 0.75rem;
  }
}
.mobile-menu .uk-logo {
  position: relative;
  width: 140px;
  /*@media (min-width: 768px) {
      width: 210px;
    }*/
  /*.uk-sticky-fixed & {
      display: none;
    }*/
}
.no-hero .mobile-menu .uk-logo {
  top: 0;
  width: auto;
  height: 80px;
}
.no-hero .mobile-menu .uk-logo img {
  height: 90%;
}
.mobile-menu .uk-navbar-nav > li > a,
.mobile-menu .uk-navbar-item,
.mobile-menu .uk-navbar-toggle {
  min-height: 80px;
}
.uk-sticky-fixed .mobile-menu .uk-navbar-nav > li > a,
.uk-sticky-fixed .mobile-menu .uk-navbar-item,
.uk-sticky-fixed .mobile-menu .uk-navbar-toggle {
  min-height: 60px;
}
.mobile-menu .uk-icon-link:hover {
  color: #f4b223;
}
#menu-slide .language-toggle {
  top: 15px;
}
#menu-slide .menu-container {
  position: relative;
  margin-top: 40px;
}
#menu-slide .language-menu {
  margin-left: 48px;
  top: 0;
  position: absolute;
  bottom: auto;
  right: auto;
  margin-top: 45px;
}
#menu-slide .padding-menu {
  padding: 20px 30px;
}
#menu-slide .uk-button {
  padding-left: 0;
  padding-right: 0;
}
#menu-slide .language-menu select {
  padding: 5px 8px;
  width: 100%;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.hook-inverse-button-default {
  text-decoration: none;
}
.book-now-wrapper {
  display: flex;
  position: relative;
}
.menu.no-hero .uk-sticky:not(.uk-sticky-fixed) nav {
  padding-top: 20px;
}
.menu-type-1 .manage-reservation,
.menu-type-2 .manage-reservation {
  position: absolute;
  bottom: -25px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: initial;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.menu-type-1 .manage-reservation:hover,
.menu-type-2 .manage-reservation:hover {
  text-decoration: underline;
}
.menu-type-1 .uk-sticky-fixed .manage-reservation,
.menu-type-2 .uk-sticky-fixed .manage-reservation {
  bottom: -20px;
}
.menu-type-1 .uk-sticky-fixed .main-menu .uk-navbar-right,
.menu-type-2 .uk-sticky-fixed .main-menu .uk-navbar-right {
  position: relative;
  top: -15px;
}
.menu-type-1 .main-menu,
.menu-type-2 .main-menu {
  margin-top: 20px;
}
.menu-type-1 .uk-sticky-fixed .main-menu,
.menu-type-2 .uk-sticky-fixed .main-menu {
  margin-top: 10px;
}
.uk-sticky-fixed .menu-type-1 .main-menu .uk-navbar-nav li a,
.uk-sticky-fixed .menu-type-2 .main-menu .uk-navbar-nav li a {
  min-height: 80px;
}
.menu-type-1 .uk-logo,
.menu-type-2 .uk-logo {
  max-width: 192px;
  animation: menu-logo-animation 1s ease-in-out normal;
}
.no-hero .menu-type-1 .uk-logo,
.no-hero .menu-type-2 .uk-logo {
  top: 0;
  max-width: 200px;
}
.uk-sticky-fixed .menu-type-1 .uk-logo,
.uk-sticky-fixed .menu-type-2 .uk-logo {
  top: -20px;
  max-width: 200px;
}
.menu-type-1 .menu-trigger svg rect:last-child,
.menu-type-2 .menu-trigger svg rect:last-child,
.menu-type-1 .menu-trigger svg rect:first-child,
.menu-type-2 .menu-trigger svg rect:first-child {
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0.85);
}
.offcanvas-container .menu-type-1 .menu-trigger svg rect:last-child,
.offcanvas-container .menu-type-2 .menu-trigger svg rect:last-child,
.menu-type-1 .menu-trigger:hover svg rect:last-child,
.menu-type-2 .menu-trigger:hover svg rect:last-child,
.offcanvas-container .menu-type-1 .menu-trigger svg rect:first-child,
.offcanvas-container .menu-type-2 .menu-trigger svg rect:first-child,
.menu-type-1 .menu-trigger:hover svg rect:first-child,
.menu-type-2 .menu-trigger:hover svg rect:first-child {
  transform: scaleX(1);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.offcanvas-container .menu-type-1 .menu-trigger svg rect:first-child,
.offcanvas-container .menu-type-2 .menu-trigger svg rect:first-child,
.menu-type-1 .menu-trigger:hover svg rect:first-child,
.menu-type-2 .menu-trigger:hover svg rect:first-child {
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-type-1 .menu-book-button,
.menu-type-2 .menu-book-button {
  text-decoration: none;
  border: 1px solid white;
  line-height: 45px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 1px;
  margin-right: 3px;
}
.menu-type-1 .menu-book-button:hover,
.menu-type-2 .menu-book-button:hover,
.menu-type-1 .menu-book-button:focus,
.menu-type-2 .menu-book-button:focus {
  background: #d9980b;
}
.uk-light .menu-type-1 .menu-book-button,
.uk-light .menu-type-2 .menu-book-button {
  color: white;
}
.uk-navbar-container > .uk-container .uk-navbar-right .uk-navbar-right {
  margin-right: 0;
}
.menu-type-3 .uk-nav > li > a {
  padding: 10px 10px;
}
.menu-type-3 .uk-dropdown {
  padding: 15px;
}
.menu-type-3 .uk-navbar-dropdown {
  padding: 0;
}
.menu-type-3 .uk-navbar-dropdown-grid.uk-grid {
  margin-left: 0;
}
.menu-type-3 .uk-navbar-dropdown-grid > * {
  padding-left: 0;
}
.menu-type-3 .uk-navbar-dropdown-grid > :not(.uk-first-column)::before {
  left: 0;
}
.menu-type-3 .uk-nav > li:hover a {
  background-color: #efefef;
}
.menu-type-3.navbar-dark {
  background-color: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}
.menu-type-3.navbar-dark .logo-centered {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% + 20px);
  transition: all 1s ease-in-out 300ms;
  z-index: -1;
}
.menu-type-3.navbar-dark .uk-sticky-fixed .logo-centered {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px);
  transition: all 300ms ease-in-out;
}
.menu-type-3 .uk-logo img {
  max-width: 130px;
}
.menu-type-3 .logo-wrapper {
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.menu-type-3 .top-menu {
  border-bottom: 1px solid #e8e8e8;
}
.menu-type-3 .top-menu > ul > li:first-child {
  border-left: 1px solid #e8e8e8;
}
.menu-type-3 .top-menu > ul > li:last-child {
  border-right: 0;
}
.menu-type-3.navbar-dark .top-menu {
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}
.menu-type-3.navbar-dark .top-menu li:first-child {
  border-left: 1px solid rgba(232, 232, 232, 0.5);
}
.menu-type-3.navbar-dark .top-menu li:last-child {
  border-right: 0;
}
.menu-type-3 .uk-navbar-item,
.menu-type-3 .uk-navbar-nav > li > a {
  min-height: 60px;
}
.menu-type-3 .top-menu .uk-navbar-nav > li > a:hover {
  background-color: #efefef;
}
.menu-type-3 .main-menu .uk-navbar-nav > li > a {
  white-space: nowrap;
  position: relative;
}
.menu-type-3 .main-menu .uk-navbar-nav > li > a span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.menu-type-3 .main-menu .uk-navbar-nav > li > a:after {
  content: '';
  height: 5px;
  background-color: #f4b223;
  width: auto;
  position: absolute;
  bottom: 0px;
  z-index: 20;
  right: 0px;
  left: 0px;
  transform: translateY(5px);
}
.menu-type-3 .uk-navbar-dropdown-nav > li.uk-active a {
  color: #f4b223;
  background: #efefef;
}
.menu-type-3 .main-menu .uk-navbar-nav > li.uk-active > a:after {
  transform: translateY(0px);
}
.menu-type-3 .uk-navbar-nav > li {
  overflow: hidden;
  border-right: 1px solid #e8e8e8;
}
.menu-type-3 .uk-navbar-nav > li:hover a:after {
  transform: translateY(0px);
}
.menu-type-3 .main-menu .uk-navbar-nav {
  position: relative;
}
.menu-type-3 .main-menu .uk-navbar-nav:after {
  content: '';
  position: absolute;
  bottom: 0px;
  height: 1px;
  background-color: #e8e8e8;
  right: 0;
  left: 0;
}
.menu-type-3.navbar-dark .uk-navbar-nav > li {
  overflow: hidden;
  border-right: 1px solid rgba(232, 232, 232, 0.7);
}
.menu-type-3 .uk-navbar-nav > li:last-child {
  border-right: 0;
}
.menu-type-3 .menu-book-button {
  background: #f4b223;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  padding-left: 30px;
  padding-right: 30px;
}
.menu-type-3 .menu-book-button:hover,
.menu-type-3 .menu-book-button:focus {
  background: #d9980b;
}
.uk-light .menu-type-3 .menu-book-button {
  color: white;
}
.menu-type-4 .uk-logo {
  max-width: 250px;
  top: 0px;
  position: relative;
  margin: 0 50px;
}
.menu-type-4 .uk-sticky-fixed {
  /*.uk-navbar-center-left,
    .uk-navbar-center-right{
      position:relative;
    }*/
}
.menu-type-4 .uk-sticky-fixed .uk-logo {
  top: 0px;
  max-height: 70px;
}
.menu-type-4 .uk-sticky-fixed .main-menu {
  margin-top: -20px;
}
.hero {
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 959px) {
  .hero {
    overflow: hidden;
  }
}
.hero.extra-margin-bottom {
  margin-bottom: 180px !important;
}
.hero .mobile-arrows a {
  background-color: transparent;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
}
.hero .uk-position-top.uk-position-large {
  margin: 5% 30%;
}
.hero h2 {
  font-family: 'SaaSeriesCD', sans-serif;
  font-size: 2.5rem;
  color: transparent;
  letter-spacing: 7%;
  line-height: 1.34;
  max-width: 55rem;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #f4b223;
}
@media (min-width: 768px) {
  .hero h2 {
    font-size: 3.625rem;
  }
}
.hero .slide-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero .go-to {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.hero .go-to:hover img {
  transform: scale(105%);
}
.hero .go-to img,
.hero .go-to svg {
  display: block;
  margin: 0 auto;
}
.hero .go-to img {
  margin-bottom: 1rem;
  transition: transform .3s ease;
}
.hero .bottom-text {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  color: #00263b;
}
.hero .bottom-text h2:first-child {
  margin-bottom: -15px;
}
.hero .bottom-text > div {
  min-width: 752px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 30px 50px;
  background-color: #f4b223;
  z-index: 4;
}
.hero .bottom-text > div > * {
  color: #00263b;
}
.hero .bottom-text > div > *:last-child {
  margin-bottom: 0;
}
.hero .bottom-text > div:before {
  content: '';
  top: 15px;
  bottom: 15px;
  right: 15px;
  left: 15px;
  position: absolute;
  border: 1px solid white;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .hero .uk-slideshow-items[uk-height-viewport] {
    min-height: 75vh !important;
  }
  .hero .bottom-text > div {
    width: 90%;
    min-width: 90%;
    padding: 30px 30px;
    max-width: 90%;
  }
}
.hero .hero-cta {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -20px;
  right: 100px;
  transform-origin: right;
}
.hero .hero-cta .cta-1 {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid white;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: normal;
  line-height: 1rem;
  text-align: center;
  margin-right: -10px;
  background: #f4b223;
  z-index: 1;
  transition: all 300ms ease-in-out;
}
.hero .hero-cta .cta-1 span {
  display: block;
}
.hero .hero-cta .cta-1:hover {
  background: #d9980b;
}
.hero .hero-cta .cta-2 {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid white;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: normal;
  line-height: 1rem;
  text-align: center;
  width: 100px;
  height: 100px;
  background: #383838;
}
.hero .hero-cta .cta-2 span {
  display: block;
}
.hero .hero-cta .cta-2:hover {
  background: #1e1e1e;
}
.page-border .hero .hero-cta {
  bottom: 10px;
  z-index: 981;
}
@media (max-width: 959px) {
  .hero .hero-cta {
    transform: scale(0.8);
    bottom: 10%;
    right: -5px;
  }
}
.menu-open .bottom-text,
.menu-open .header-border {
  z-index: 0;
}
.hero .uk-slideshow-items li.text-top:before {
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 16%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(16%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, #ffffff 16%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, #ffffff 16%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(top, #ffffff 16%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, #ffffff 16%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  position: absolute;
  z-index: 1;
}
.hero .text-content {
  z-index: 2;
  max-width: 90%;
}
.uk-modal-dialog .panel:before {
  display: none;
}
.uk-modal-dialog .panel section {
  background: white;
}
.uk-modal-dialog .panel .uk-slideshow-items {
  transform: none;
}
.panel-content {
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .panel-img {
    margin-top: 1.25rem;
    width: 100%;
  }
  .panel-decoration {
    display: none;
  }
}
@media (min-width: 768px) {
  .panel-decoration {
    position: absolute;
    z-index: 1;
  }
  .panel-images {
    columns: 2;
    column-gap: 10px;
    text-align: right;
  }
  .panel-images img {
    margin-bottom: 10px;
    vertical-align: top;
  }
  .panel-images .panel-img:nth-child(3) {
    width: 100%;
  }
  .panel-style-1 .panel-decoration {
    bottom: 0;
    right: 30px;
  }
  .panel-style-1 .panel-img:nth-child(1) {
    margin-right: 10px;
  }
  .panel-style-1 .panel-img:nth-child(3) {
    margin-top: 46px;
  }
  .panel-style-1,
  .panel-style-2 {
    /*.panel-images {
                padding-left: 40px;
            }*/
  }
  .panel-style-2 .panel-img:nth-child(1) {
    margin-right: 1.25rem;
  }
  .panel-style-2 .panel-img:nth-child(3) {
    margin-top: 1.25rem;
  }
  .panel-style-3 {
    padding-top: 30px;
    /*.panel-images {
                padding-right: 40px;
            }*/
  }
  .panel-style-3 .uk-grid {
    flex-direction: row-reverse;
  }
  .panel-style-3 .panel-decoration {
    right: 20px;
    top: 0;
    transform: rotate(40deg);
  }
  .panel-style-3 .panel-img:nth-child(1) {
    margin-right: 1.25rem;
  }
  .panel-style-3 .panel-img:nth-child(3) {
    margin-top: 119px;
  }
}
@media (min-width: 960px) {
  .panel-style-3 .panel-decoration {
    left: -50px;
    top: -70px;
    transform: none;
  }
}
@media (min-width: 960px) {
  [class*=panel-style] {
    margin-top: 120px !important;
  }
}
.slideshow {
  padding-top: 35px;
}
.slideshow:not(.slideshow-small) .uk-slideshow {
  position: relative;
}
.slideshow:not(.slideshow-small) .uk-slideshow:before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 2px solid #2C2326;
  content: "";
  width: calc(100% - 80px);
  height: calc(100% + 40px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  z-index: 0;
  pointer-events: none;
  margin-left: auto;
  margin-right: auto;
}
.slideshow [uk-slider-item] {
  width: 60px;
}
.slideshow [uk-slider-item] svg {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 960px) {
  .slideshow [uk-slider-item="next"] {
    right: -30px;
  }
  .slideshow [uk-slider-item="next"]:hover svg {
    transform: translate(8px);
  }
  .slideshow [uk-slider-item="previous"] {
    left: -30px;
  }
  .slideshow [uk-slider-item="previous"]:hover svg {
    transform: translate(-8px);
  }
}
@media screen and (min-width: 1200px) {
  .slideshow .slideshow-container + .text-content {
    margin-top: 60px !important;
  }
}
@media screen and (max-width: 959px) {
  .slideshow .text-content > div {
    padding: 0 15px;
    margin-bottom: 40px !important;
  }
  .slideshow:not(.slideshow-small) .uk-slideshow {
    padding: 0 10px;
  }
  .slideshow:not(.slideshow-small) .uk-slideshow:before {
    width: calc(100% - 50px);
  }
}
.slideshow-badge {
  position: absolute;
  right: 30px;
  top: -35px;
  z-index: 1;
}
.slideshow-small {
  padding-top: 20px;
}
.slideshow-small .slideshow-row.no-border {
  margin-top: -20px;
  marign-bottom: -20px;
}
.slideshow-small .slideshow-row:not(.single-column):not(.no-border) {
  position: relative;
}
.slideshow-small .slideshow-row:not(.single-column):not(.no-border):before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 2px solid #f4b223;
  content: "";
  width: calc(100% - 80px);
  height: calc(100% + 44px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  z-index: 0;
  pointer-events: none;
  margin-left: auto;
  margin-right: auto;
}
.slideshow-small .zoom-overlay {
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: rgba(244, 178, 35, 0.7);
}
.slideshow-small .zoom-overlay span {
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0, 0.91, 0.21, 0.98) 0.1s;
}
.slideshow-small .slideshow-small-item li:hover .zoom-overlay {
  opacity: 1;
}
.slideshow-small .slideshow-small-item li:hover .zoom-overlay span {
  transform: scale(1);
}
.slideshow-small .single-column > div > div > div:before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 2px solid #f4b223;
  content: "";
  width: calc(100% - 80px);
  height: calc(100% + 44px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  z-index: 0;
  pointer-events: none;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 959px) {
  .slideshow-small.uk-margin-large {
    margin-top: 80px !important;
  }
}
@media screen and (max-width: 959px) {
  .slideshow-small .mobile-slideshow-small .text-content > div {
    padding: 0 15px;
    margin-bottom: 40px !important;
  }
  .slideshow-small .mobile-slideshow-small .uk-slideshow {
    padding: 0 10px;
  }
}
.slideshow-small .mobile-slideshow-small .slideshow-container {
  position: relative;
}
.slideshow-small .mobile-slideshow-small .slideshow-container:before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 2px solid #f4b223;
  content: "";
  width: calc(100% - 50px);
  height: calc(100% + 40px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  z-index: 0;
  pointer-events: none;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1200px) {
  .slideshow-small * + .uk-grid-margin,
  .slideshow-small .uk-grid + .uk-grid,
  .slideshow-small .uk-grid > .uk-grid-margin {
    margin-top: 60px;
  }
  .slideshow-small .main-grid > .uk-grid-margin:not(.first-row) {
    margin-top: 80px;
  }
}
.panel-inverted .panel-slideshow {
  position: relative;
}
@media (min-width: 960px) {
  .panel-inverted .panel-slideshow {
    height: calc(100% + 50px);
    top: -25px;
  }
}
.panel-inverted .text-content > div {
  background-color: #f4b223;
  z-index: 1;
}
@media (max-width: 959px) {
  .panel-inverted .text-content > div {
    max-width: calc(100% - 40px);
    margin: auto;
    top: -20px;
    position: relative;
  }
}
@media (min-width: 960px) {
  .panel-inverted .text-content > div {
    width: calc(100% + 50px);
    z-index: 1;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 960px) {
  .panel-inverted.gallery-text .text-content > div {
    width: calc(100% + 50px);
    z-index: 1;
    position: relative;
    top: 50%;
    transform: translateX(-50px) translateY(-50%);
  }
}
.cards {
  position: relative;
  /*.cards-border{
         position:absolute;
         display:block;
         top:20px;
         border: 2px solid @secondary-color;
         height:50%;
         left: 20px;
         right: 20px;
     }*/
}
.cards .card-overlay {
  background: linear-gradient(206deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 40%, rgba(0, 0, 0, 0.78) 80%, rgba(0, 0, 0, 0.85) 100%);
}
.cards .cards-background-texture {
  position: absolute;
  width: 100%;
  bottom: 0;
  top: 50px;
  right: 0;
  left: 0;
  background-size: cover;
}
.cards .uk-slider-items li:nth-child(1) .uk-card,
.cards .uk-slider-items li:nth-child(4n) .uk-card {
  border-bottom: 3px solid #2c2326;
}
.cards .uk-slider-items li:nth-child(2) .uk-card,
.cards .uk-slider-items li:nth-child(5n) .uk-card {
  border-bottom: 3px solid #f4b223;
}
.cards .uk-slider-items li:nth-child(3) .uk-card,
.cards .uk-slider-items li:nth-child(6n) .uk-card {
  border-bottom: 3px solid #555e5f;
}
.cards .uk-slider-items > li p {
  line-height: 1.8;
}
.cards .uk-slider-items > li h3 {
  margin-bottom: 10px;
}
.cards .uk-slider-items > li h3 + p {
  margin-top: 10px;
}
.cards .uk-slider-items li:nth-child(1) .uk-card h3,
.cards .uk-slider-items li:nth-child(4n) .uk-card h3 {
  color: #2c2326;
}
.cards .uk-slider-items li:nth-child(2) .uk-card h3,
.cards .uk-slider-items li:nth-child(5n) .uk-card h3 {
  color: #f4b223;
}
.cards .uk-slider-items li:nth-child(3) .uk-card h3,
.cards .uk-slider-items li:nth-child(6n) .uk-card h3 {
  color: #555e5f;
}
.cards .uk-slider-items li .uk-card .uk-light h3 {
  color: #fff;
}
.cards .mobile-cards .uk-grid-small {
  margin-left: -10px;
}
.cards .mobile-cards .uk-grid-small > * {
  padding-left: 10px;
}
@media (max-width: 959px) {
  .cards .uk-slider-container-offset {
    margin: 0;
    padding: 0;
    box-shadow: 1px 1px 12px 3px rgba(0, 0, 0, 0.06);
  }
  .cards .uk-slider {
    margin: auto;
  }
}
.cards .cards-header > p:last-child {
  margin-bottom: 0px;
}
.cards .cards-header > *:last-child .uk-button {
  margin-top: 20px;
  margin-bottom: 40px;
}
.cards .cards-content {
  position: relative;
}
.cards:not(.cards-filtered) hr {
  width: 150px;
  margin: 0 auto;
  border-top: 2px solid #f4b223;
}
.vline {
  height: 225px;
  width: 2px;
  position: absolute;
  top: 0;
  left: 12px;
  background-color: #f4b223;
}
.testimonials {
  text-align: left;
  padding: 3.8% 0;
  border-bottom: 3px solid #2c2326;
  /* Hover + Focus */
  /* OnClick */
  /* Active */
}
.testimonials blockquote {
  min-height: 100px;
  margin: auto;
}
.testimonials blockquote h2 + p,
.testimonials blockquote h3 + p {
  margin-left: auto;
}
.testimonials .uk-slider-nav {
  margin-left: auto;
}
.testimonials .cite-wrapper {
  margin-left: auto;
}
.testimonials h4 {
  text-transform: uppercase;
  margin-top: 15px;
}
.testimonials svg path {
  fill: #f4b223;
}
.testimonials hr {
  width: 125px;
  margin: 0 auto;
}
.testimonials > div > ul > li > div > blockquote > footer::before {
  content: "";
  height: 1px;
  width: 50px;
  display: inline-block;
  background: #fff;
}
.testimonials .nav-quotes li.uk-active {
  border-bottom: 1px solid white;
}
.testimonials .uk-dotnav > * > * {
  background: rgba(244, 178, 35, 0.4);
}
.testimonials .uk-dotnav > * > :hover,
.testimonials .uk-dotnav > * > :focus {
  background-color: rgba(244, 178, 35, 0.8);
}
.testimonials .uk-dotnav > * > :active {
  background-color: rgba(244, 178, 35, 0.4);
}
.testimonials .uk-dotnav > .uk-active > * {
  background-color: rgba(244, 178, 35, 0.8);
}
.nav-quotes {
  list-style: none;
  margin: 0;
}
.nav-quotes li {
  margin: 15px;
}
.tabs-container {
  background: #fff;
}
.tabs-container.intro-tabs {
  border: 2px solid #f4b223;
  border-top: 0;
}
@media (max-width: 959px) {
  .tabs-container {
    padding-top: 20px;
  }
  .tabs-container .mobile-switcher-inner select {
    max-width: 80%;
    margin: auto;
  }
  .tabs-container .mobile-switcher.uk-sticky-fixed {
    width: calc(100% + 30px) !important;
    position: relative;
    left: -15px;
    border-bottom: 1px solid lightgrey;
  }
}
footer {
  background-color: transparent;
  background-image: initial;
  /*a{
        color:#737373;
    }
    h3 {
        color: #737373;
    }*/
}
footer .FormBuilder-signup .simple-signup-form .Inputfields {
  display: flex;
  flex-wrap: wrap;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields > [class*=Inputfield_email] {
  flex: 1;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields > [class*=Inputfield_email] label {
  display: none;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields > [class*=Inputfield_email] .uk-input {
  height: 48px;
}
@media (min-width: 960px) {
  footer .FormBuilder-signup .simple-signup-form .Inputfields > [class*=Inputfield_email] .uk-input {
    border-right: 0;
  }
}
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_privacy_policy,
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_receive_offers {
  font-size: 12px;
  margin-top: 8px;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_privacy_policy a,
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_receive_offers a {
  color: inherit !important;
  text-decoration: underline !important;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_privacy_policy .InputfieldHeader,
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_receive_offers .InputfieldHeader {
  display: none;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_privacy_policy input[type=checkbox],
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_receive_offers input[type=checkbox] {
  margin-right: 10px;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_receive_offers {
  order: 1;
}
footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield_privacy_policy {
  order: 1;
}
@media (max-width: 959px) {
  footer .FormBuilder-signup .simple-signup-form .Inputfields {
    flex-wrap: wrap;
  }
  footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield {
    width: 100%;
  }
  footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield button {
    width: 100%;
  }
  footer .FormBuilder-signup .simple-signup-form .Inputfields .Inputfield:not(:first-child) {
    margin-top: 15px;
  }
}
footer .FormBuilder-signup .extra-fields .Inputfields > .Inputfield {
  width: 100%;
  /*> label{
                display:none;
            }*/
}
@media (min-width: 960px) {
  footer {
    background-size: cover;
    background-repeat: no-repeat;
  }
}
footer .footer-logos-wrapper {
  padding: 10px 0;
}
@media (min-width: 960px) {
  footer .footer-logos-wrapper {
    padding: 40px;
  }
}
footer .footer-logos img {
  opacity: 0.8;
  width: 75px;
}
footer .footer-signup {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media (min-width: 960px) {
  footer .footer-form .form-container {
    max-width: 45%;
    margin: auto;
  }
}
@media screen and (min-width: 960px) {
  footer .footer-brands > img {
    width: 700px;
    max-width: 100%;
  }
  footer .menus-container {
    background-image: none !important;
  }
}
@media screen and (max-width: 959px) {
  footer .sub-footer {
    background-color: #f4b223;
  }
  footer .sub-footer a {
    color: white !important;
  }
  footer .sub-footer .uk-grid-margin {
    margin-top: 10px;
  }
  footer .menus-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-signup {
    width: calc(100% - 35px);
    margin: auto;
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-brands {
    padding: 0 20px;
  }
}
footer .uk-flex:before {
  display: block;
}
.slidein-popup {
  position: fixed;
  bottom: 0px;
  right: 0;
  z-index: 981;
  width: 530px;
  pointer-events: none;
}
.slidein-popup p {
  font-size: 0.85rem;
}
.slidein-popup .slidein-popup-container > .content {
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  transform: translateX(calc(100% + 40px));
  background-color: #2c2326;
}
.slidein-popup.open .slidein-popup-container > .content {
  transform: translateX(0%);
  pointer-events: all;
}
.slidein-popup .slidein-popup-container .btn-orange {
  padding: 0px 35px !important;
}
.slidein-popup .slidein-popup-img {
  flex-basis: 30%;
}
.slidein-popup .slidein-popup-text {
  width: 70%;
  padding: 28px 35px;
  flex: 1 0 70%;
}
.slidein-popup .slidein-popup-book {
  width: 35%;
  text-align: center;
}
.slidein-popup .slidein-popup-book img {
  width: 125px;
  margin-bottom: 15px;
}
.slidein-popup .slidein-popup-arrow {
  width: 40px;
  background-color: #f4b223;
  padding: 7% 1%;
  text-align: center;
  cursor: pointer;
  pointer-events: all;
  height: 40px;
  color: #fff;
  bottom: 50px;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.slidein-popup.open .slidein-popup-arrow {
  transform: translateX(100%);
}
.slidein-popup .slidein-popup-arrow i {
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.slidein-popup.open .slidein-popup-arrow > i {
  transform: translate(-50%, -50%) rotate(180deg);
}
/* Box popup 2 */
.popup-container-2 {
  background-color: #f4b223;
  width: 60%;
  height: 150px;
  overflow: hidden;
}
.popup-container-2 div {
  width: 50%;
}
.popup-container-2 div:nth-child(1) {
  text-align: center;
}
.popup-container-2 div:nth-child(1) h3 {
  color: #fff;
  font-family: 'SaaSeriesCD', sans-serif;
  margin: 0;
}
.btn-white {
  padding: 0px 25px !important;
  margin-top: 10px;
  color: #fff;
}
.modal-popup .small-modal {
  width: 500px;
}
@media only screen and (max-width: 640px) {
  .slidein-popup {
    width: 80%;
  }
  .slidein-popup .slidein-popup-text {
    width: 100%;
    padding: 17px 16px;
    text-align: center;
  }
  .slidein-popup .slidein-popup-book {
    width: 100%;
    text-align: center;
  }
  .slidein-popup .slidein-popup-arrow {
    width: 10%;
  }
  .slidein-popup .slidein-popup-container > .content {
    flex-wrap: wrap;
    padding: 15px 0;
  }
  .popup-container,
  .popup-container-2 {
    width: 100%;
  }
  .popup-text h2 {
    font-size: 16px;
  }
  .popup-container .btn-orange {
    padding: 0px 10px !important;
    font-size: 11px;
    line-height: 3;
  }
  .popup-arrow {
    padding: 9% 1%;
  }
  .popup-container-2 div:nth-child(1) h3 {
    font-size: 16px;
  }
}
.events-tabs .cards-content {
  position: relative;
}
.events-tabs .cards-border {
  position: absolute;
  display: block;
  top: 20px;
  border: 2px solid #2c2326;
  height: 50%;
  left: 20px;
  right: 20px;
}
.events-tabs .uk-slidenav-next,
.events-tabs .uk-slidenav-previous {
  background-color: #f4b223;
}
section.intro.extra-padding {
  padding: 30px 0 0;
}
@media (min-width: 1200px) {
  section.intro.extra-padding {
    padding: 50px 0 0;
  }
}
section.intro.intro-style-1 {
  /*background-color:#fff;*/
}
section.intro.intro-style-1 + .tabs {
  margin-top: -70px !important;
}
section.intro.intro-style-1 .main-image {
  width: 150px;
  max-width: 150px;
}
section.intro.intro-style-1 .divider {
  position: absolute;
  height: 50%;
  width: 2px;
  background: #f4b223;
  left: -40px;
  display: none;
}
@media screen and (max-width: 959px) {
  section.intro.intro-style-1 .main-image {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  section.intro.intro-style-1 .divider {
    display: block;
  }
}
section.intro.intro-style-1 .intro-inner {
  border: 2px solid #f4b223;
}
@media (min-width: 960px) {
  section.intro.intro-style-2 .main-text-wrapper {
    padding: 0 20px;
  }
}
section.intro.intro-style-2 .brand-treatment img {
  max-width: 100%;
}
@media (min-width: 960px) {
  section.intro.intro-style-2 .uk-slider {
    margin-left: 20px;
  }
}
section.intro.intro-style-2 .intro-background {
  width: 500px;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-size: cover;
}
section.intro.intro-style-3 .intro-aside ul li {
  padding: 10px 0;
  border-color: rgba(255, 255, 255, 0.25);
}
section.intro.intro-style-3 .intro-aside {
  padding-top: 0;
}
section.intro.intro-style-3 .intro-aside > ul {
  padding-left: 0;
}
section.intro.intro-style-3 .intro-heading,
section.intro.intro-style-3 .intro-aside-heading {
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.5em;
  letter-spacing: 0.10em;
}
section.intro.intro-style-3 .intro-aside-cta {
  width: 100%;
  background-color: #2c2326;
  color: white;
}
section.intro.intro-style-3 .intro-aside-cta i {
  transform: translateY(-50%) translateX(-20px);
  transition: transform 800s cubic-bezier(0, 0.55, 0.45, 1);
}
section.intro.intro-style-3 .intro-aside-cta:hover {
  background-color: #100c0d;
  border-color: #100c0d;
}
section.intro.intro-style-3 .intro-aside-cta:hover i {
  transform: translateY(-50%) translateX(-25px);
}
.hero + .intro.intro-style-3 .intro-wrapper {
  top: -45px;
  position: relative;
}
.mosaic .grid {
  display: flex;
  display: grid;
  height: 800px;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 15px 15px;
}
.mosaic .grid .mosaic-image-item a:focus-within picture:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  border: 5px solid #f4b223;
}
@media (max-width: 959px) {
  .mosaic.mosaic-style-1 .grid {
    height: 640px;
    grid-template-rows: repeat(6, 1fr);
  }
}
.mosaic.mosaic-style-1 .grid > div {
  background-color: #f4b223;
}
.mosaic.mosaic-style-1 .grid > div:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1/5;
}
.mosaic.mosaic-style-1 .grid > div:nth-child(2) {
  grid-column: 6 / 11;
  grid-row: 1 / 5;
}
.mosaic.mosaic-style-1 .grid > div:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 5 / 10;
}
.mosaic.mosaic-style-1 .grid > div:nth-child(4) {
  grid-column: 5 / 8;
  grid-row: 5 / 10;
}
.mosaic.mosaic-style-1 .grid > div:nth-child(5) {
  grid-column: 8 / 11;
  grid-row: 5 / 10;
}
.mosaic.mosaic-style-1 .grid > div:nth-child(6) {
  grid-column: 11 / 14;
  grid-row: 1 / 10;
}
@media (max-width: 959px) {
  .mosaic.mosaic-style-1 .grid > div:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }
  .mosaic.mosaic-style-1 .grid > div:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
  }
  .mosaic.mosaic-style-1 .grid > div:nth-child(3) {
    grid-column: 2 / 8;
    grid-row: 3 / 5;
  }
  .mosaic.mosaic-style-1 .grid > div:nth-child(4) {
    grid-column: 8 / 14;
    grid-row: 3 / 5;
  }
  .mosaic.mosaic-style-1 .grid > div:nth-child(5) {
    grid-column: 1 / 6;
    grid-row: 5 / 7;
  }
  .mosaic.mosaic-style-1 .grid > div:nth-child(6) {
    grid-column: 6 / 14;
    grid-row: 5 / 7;
  }
}
@media (max-width: 959px) {
  .mosaic.mosaic-style-2 .grid {
    height: 640px;
    grid-template-rows: repeat(6, 1fr);
  }
}
.mosaic.mosaic-style-2 .grid > div {
  /*background-color: @main-color;*/
}
.mosaic.mosaic-style-2 .grid > div:nth-child(1) {
  grid-column: 9 / 14;
  grid-row: 1 / 5;
}
.mosaic.mosaic-style-2 .grid > div:nth-child(2) {
  grid-column: 1 / 5;
  grid-row: 1 / 4;
}
.mosaic.mosaic-style-2 .grid > div:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 1 / 4;
}
.mosaic.mosaic-style-2 .grid > div:nth-child(4) {
  grid-column: 4 / 8;
  grid-row: 4 / 11;
}
.mosaic.mosaic-style-2 .grid > div:nth-child(5) {
  grid-column: 8 / 14;
  grid-row: 5 / 9;
}
.mosaic.mosaic-style-2 .grid > div:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 4 / 7;
}
@media (max-width: 959px) {
  .mosaic.mosaic-style-2 .grid > div:nth-child(2) {
    grid-column: 1 / 12;
    grid-row: 1 / 3;
  }
  .mosaic.mosaic-style-2 .grid > div:nth-child(3) {
    grid-column: 2 / 8;
    grid-row: 3 / 5;
  }
  .mosaic.mosaic-style-2 .grid > div:nth-child(4) {
    grid-column: 8 / 14;
    grid-row: 3 / 5;
  }
  .mosaic.mosaic-style-2 .grid > div:nth-child(5) {
    grid-column: 1 / 14;
    grid-row: 5 / 14;
  }
  .mosaic.mosaic-style-2 .grid > div:nth-child(6) {
    display: none;
    grid-column: 2 / 4;
    grid-row: 4 / 7;
  }
}
.mosaic.mosaic-style-3 .grid {
  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: repeat(18, 1fr);
  gap: 15px;
}
@media (max-width: 959px) {
  .mosaic.mosaic-style-3 .grid {
    height: 500px;
    grid-template-columns: repeat(13, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
}
.mosaic.mosaic-style-3 .grid > div:nth-child(1) {
  grid-column: 14/21;
  grid-row: 1 / 10;
}
.mosaic.mosaic-style-3 .grid > div:nth-child(2) {
  grid-column: 4/9;
  grid-row: 6/13;
  z-index: 2;
}
.mosaic.mosaic-style-3 .grid > div:nth-child(3) {
  grid-column: 8/14;
  grid-row: 1/13;
  z-index: 1;
}
.mosaic.mosaic-style-3 .grid > div:nth-child(4) {
  grid-column: 12/19;
  grid-row: 11 / 16;
  z-index: 0;
}
.mosaic.mosaic-style-3 .grid > div:nth-child(5) {
  grid-column: 8/13;
  grid-row: 12/19;
  z-index: 3;
}
@media (max-width: 959px) {
  .mosaic.mosaic-style-3 .grid > div:nth-child(1) {
    grid-column: 6 / 15;
    grid-row: 1;
  }
  .mosaic.mosaic-style-3 .grid > div:nth-child(2) {
    grid-column: 1 / 8;
    grid-row: 2 / 6;
  }
  .mosaic.mosaic-style-3 .grid > div:nth-child(3) {
    grid-column: 2 / 9;
    grid-row: 6 / 10;
  }
  .mosaic.mosaic-style-3 .grid > div:nth-child(4) {
    grid-column: 8 / 14;
    grid-row: 1 / 5;
  }
  .mosaic.mosaic-style-3 .grid > div:nth-child(5) {
    grid-column: 9/13;
    grid-row: 5 / 8;
    z-index: 3;
  }
}
.navigation > ul {
  text-align: center;
}
.navigation > ul li {
  padding: 10px 30px;
  display: inline-block;
  position: relative;
}
.navigation > ul li a {
  color: #444;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'SaaSeriesCD', sans-serif;
}
.navigation > ul li:not(:last-child):after {
  height: 10px;
  width: 1px;
  background-color: #444;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
}
@media screen and (max-width: 959px) {
  .navigation > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .navigation > ul li {
    width: 100%;
    margin: 0 !important;
  }
  .navigation > ul li:not(:last-child):after {
    display: none;
  }
  .navigation > ul li:nth-child(:even):not(:last-child):after {
    height: 10px;
    width: 1px;
    background-color: #444;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
  }
}
.cards-grid .main-image-container {
  min-height: 300px;
  transition: all 0.5s cubic-bezier(0.02, 0.9, 0.58, 1);
}
.cards-grid .title-container i {
  position: absolute;
  top: 50%;
  transform: translateX(-10px) translateY(-50%);
  right: -20px;
}
.cards-grid .card-category {
  top: 20px;
  background: #a97608;
  color: white;
  padding: 5px 10px;
}
@media (min-width: 960px) {
  .cards-grid .title-container i {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    transition: all 0.5s cubic-bezier(0.02, 0.9, 0.58, 1);
  }
}
@media (min-width: 960px) {
  .cards-grid .text-container {
    min-height: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.02, 0.9, 0.58, 1);
  }
  .cards-grid .text-container p {
    opacity: 0;
    transform: translateY(-10px);
  }
  .cards-grid .uk-card:hover i {
    opacity: 1;
    transform: translateX(0px) translateY(-50%);
  }
  .cards-grid .uk-card:hover .text-container {
    min-height: 115px;
  }
  .cards-grid .uk-card:hover .text-container p {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out 0.1s;
  }
  .cards-grid .uk-card:hover .main-image-container {
    min-height: 185px;
  }
}
@keyframes slider-progress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
section.slider {
  position: relative;
}
section.slider .uk-transition-fade,
section.slider [class*='uk-transition-scale'],
section.slider [class*='uk-transition-slide'] {
  transition: 400ms ease-out 300ms;
}
section.slider.slider-option-1 {
  overflow: hidden;
}
section.slider.slider-option-1 .slider-background-texture {
  position: absolute;
  bottom: 50px;
  top: -10px;
  right: 0;
  left: 10%;
  background-size: cover;
  z-index: -1;
}
section.slider.slider-option-1 .slider-background-texture:after {
  content: '';
  positon: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 50%;
  background: linear-gradient(80deg, rgba(255, 255, 255, 0) 0%, #ffffff 54%);
}
section.slider.slider-option-1 .text-content h4 {
  letter-spacing: 0.2em;
}
section.slider.slider-option-1 .uk-slider-items li .slide-content-wrapper {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  transform-origin: left;
}
section.slider.slider-option-1 .image-slider.uk-slider-container {
  padding: 0 30px;
}
@media (max-width: 959px) {
  section.slider.slider-option-1 .image-slider.uk-slider-container {
    padding: 0 10px;
  }
}
section.slider.slider-option-1 .slider-container {
  padding-right: 0;
  margin-right: 0;
  width: calc(100% - var(--margin-slider));
  max-width: none;
}
section.slider.slider-option-1 .slider-toggle {
  padding: 10px 20px;
}
section.slider.slider-option-1 .slider-toggle:hover,
section.slider.slider-option-1 .slider-toggle:focus {
  color: #f4b223;
}
section.slider.slider-option-1 .slider-toggle.active,
section.slider.slider-option-1 .slider-toggle:active,
section.slider.slider-option-1 .slider-toggle:focus-within {
  color: #f4b223;
}
section.slider.slider-option-1 .text-content {
  left: -30px;
}
@media (max-width: 959px) {
  section.slider.slider-option-1 .text-content {
    left: -10px;
    top: auto;
    bottom: 10%;
    padding: 15px;
    transform: translateY(0);
  }
  section.slider.slider-option-1 .text-content h2 {
    font-size: 0.2rem;
  }
  section.slider.slider-option-1 .text-content h2 {
    font-size: 1.5rem;
  }
}
section.slider.slider-option-1 .next-slide-click {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  cursor: pointer;
}
section.slider.slider-option-1 .uk-slider-items li.hiding .next-slide-click,
section.slider.slider-option-1 .uk-slider-items li.uk-active .next-slide-click {
  pointer-events: none;
}
section.slider.slider-option-1 .uk-slider-items li.uk-active .slide-content-wrapper {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
section.slider.slider-option-1 .uk-slider-items li.uk-active .slide-content-wrapper .uk-transition-fade {
  opacity: 1;
}
section.slider.slider-option-1 .uk-slider-items li .slide-content-wrapper,
section.slider.slider-option-1 .uk-slider-items li.hiding .slide-content-wrapper {
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(0.85);
  opacity: 0.5;
}
section.slider.slider-option-1 .uk-slider-items li .slide-content-wrapper .uk-transition-fade,
section.slider.slider-option-1 .uk-slider-items li.hiding .slide-content-wrapper .uk-transition-fade {
  opacity: 0;
}
section.slider.slider-option-2 {
  /*.uk-slider-items li.hiding {
      .slide-content-wrapper.has-content:after {
        opacity: 0;
        transition: opacity 1s ease-in-out, transform 1s ease-in-out;
      }
    }*/
}
section.slider.slider-option-2 .progress {
  width: 40%;
  height: 3px;
  background: rgba(244, 178, 35, 0.3);
  margin: 25px auto;
}
section.slider.slider-option-2 .progress .progress-fill {
  display: block;
  width: 100%;
  transform-origin: left;
  height: 100%;
  background-color: #f4b223;
}
section.slider.slider-option-2 .progress.animate .progress-fill {
  animation: slider-progress 6s ease-in-out normal;
}
section.slider.slider-option-2 .progress.paused-animation .progress-fill {
  animation: none;
  transform: scaleX(0);
}
section.slider.slider-option-2 .slider-toggle {
  padding: 12px 20px;
  background-color: rgba(44, 35, 38, 0.1);
  border: 1px solid rgba(44, 35, 38, 0.2);
  font-family: 'SaaSeriesEMD', sans-serif;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
section.slider.slider-option-2 .slider-toggle:hover,
section.slider.slider-option-2 .slider-toggle:focus {
  background-color: rgba(38, 30, 33, 0.3);
  border: 1px solid rgba(16, 12, 13, 0.5);
  transition: all 200ms ease-in-out;
}
section.slider.slider-option-2 .slider-toggle.active,
section.slider.slider-option-2 .slider-toggle:active,
section.slider.slider-option-2 .slider-toggle:focus-within {
  background-color: rgba(38, 30, 33, 0.2);
  border: 1px solid rgba(21, 17, 18, 0.5);
  transition: all 300ms ease-in-out;
}
section.slider.slider-option-2 .uk-slider-items li {
  display: flex;
  align-items: flex-end;
}
section.slider.slider-option-2 .uk-slider-items li p {
  line-height: 1.5rem;
}
section.slider.slider-option-2 .uk-slider-items li h2,
section.slider.slider-option-2 .uk-slider-items li h3,
section.slider.slider-option-2 .uk-slider-items li h4,
section.slider.slider-option-2 .uk-slider-items li p,
section.slider.slider-option-2 .uk-slider-items li .text-content {
  text-shadow: 1px 1px 1px black;
}
section.slider.slider-option-2 .uk-slider-items li .slide-content-wrapper {
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateY(30%);
  opacity: 0.5;
}
section.slider.slider-option-2 .uk-slider-items li .slide-content-wrapper.has-content:after {
  content: '';
  background: linear-gradient(10deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0) 85%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out 1s, transform 1s ease-in-out;
}
section.slider.slider-option-2 .uk-slider-items li.uk-active:not(.hiding) .slide-content-wrapper {
  opacity: 1;
  transform: translateY(0%);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  overflow: hidden;
}
section.slider.slider-option-2 .uk-slider-items li.uk-active:not(.hiding) .slide-content-wrapper.has-content:after {
  opacity: 1;
  animation-delay: 800ms;
}
section.slider.slider-option-2 .uk-slider-items li.hiding .slide-content-wrapper .uk-transition-fade {
  opacity: 0;
}
.gallery_preview {
  position: relative;
  /*@media(min-width:959px) {
    .text-content {
      transform: translateY(-30%);
    }
  }*/
}
@media (max-width: 959px) {
  .gallery_preview {
    /* margin:200px auto; */
    overflow: hidden;
  }
}
.gallery_preview .uk-height-large {
  height: 350px;
}
.gallery_preview .thumb {
  z-index: 1;
}
.gallery_preview .thumb:first-child {
  width: 400px;
  position: relative;
  margin-left: auto;
  right: 20%;
  top: 40px;
}
@media (max-width: 959px) {
  .gallery_preview .thumb:first-child {
    width: 280px;
    right: auto;
    left: 0;
    margin-left: 0;
  }
}
.gallery_preview .thumb:nth-child(2) {
  width: 300px;
  position: relative;
  margin-left: auto;
  right: -4%;
  top: -30px;
}
@media (max-width: 959px) {
  .gallery_preview .thumb:nth-child(2) {
    width: 180px;
    right: auto;
    margin-right: 0;
  }
}
.gallery_preview .thumbs-wrapper {
  position: relative;
}
.gallery_preview .circle {
  position: absolute;
  width: 430px;
  height: 430px;
  top: 60%;
  left: 55%;
  transform: translateX(-50%) translateY(-50%);
}
.gallery_preview .circle svg[class*=uk-animation-] {
  animation-duration: 5s;
}
.gallery_preview .circle svg circle {
  fill: transparent;
  stroke-width: 5px;
  stroke: #f4b223;
}
@media (max-width: 959px) {
  .gallery_preview .circle {
    width: 300px;
    height: 300px;
  }
}
.cards-filtered {
  /*.card {
    padding:0;
    @media (min-width: 960px) {
      &:after {
        display: none;
      }
    }
  }*/
}
.cards-filtered .filter li label {
  position: relative;
  cursor: pointer;
}
.cards-filtered .filter li input {
  position: absolute;
  visibility: hidden;
}
.cards-filtered .filter li input[disabled] + .label-text {
  background: #e5e5e5;
}
.cards-filtered .filter li .label-text {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 3px;
  border: 1px solid darkgrey;
  z-index: 0;
  padding: 5px 10px;
}
.cards-filtered .filter li input:checked + .label-text {
  background-color: #f4b223;
  color: white;
  border-color: #f4b223;
}
.cards-filtered fieldset[disabled] li .label-text {
  background-color: #f1f1f1;
}
.cards-filtered .card-tags i {
  margin-right: 3px;
}
.cards-filtered .card-tags ul {
  padding: 0;
  list-style-type: none;
}
.cards-filtered .card-tags li {
  text-transform: uppercase;
  font-size: 12px;
}
.cards-filtered .card-tags li:not(:last-child) {
  margin-right: 3px;
}
.restaurant-menus .uk-select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1.03' points='16 7 10 13 4 7' /%3E%3C/svg%3E");
  background-position: 98% 50%;
  background-size: 30px;
}
.restaurant-menus .mobile-switcher {
  transition: all 0.3s ease-in-out;
}
.restaurant-menus .uk-sticky-fixed > div > div {
  padding: 6px;
}
.restaurant-menus .uk-sticky-fixed.mobile-switcher {
  background: white;
  width: 100% !important;
  left: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(158, 158, 158, 0.27);
}
.restaurant-menus ul.menu-switcher li {
  padding: 0 10px;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 959px) {
  .restaurant-menus .menu-container {
    padding: 20px 0;
  }
}
.restaurant-menus .menu-section-container:before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 20px;
  right: 20px;
  left: 20px;
  border: 1px solid #f4b223;
  pointer-events: none;
}
@media (max-width: 959px) {
  .restaurant-menus .menu-section-container:before {
    border-bottom: 0px;
    bottom: auto;
  }
}
.restaurant-menus ul.menu-switcher li {
  position: relative;
}
.restaurant-menus .menu-section-title {
  letter-spacing: 0.3em;
  font-size: 1.2rem;
  color: #f4b223;
  position: relative;
}
@media (min-width: 960px) {
  .restaurant-menus .menu-section-title {
    top: -40px;
  }
}
@font-face {
  font-family: 'SaaSeriesCD';
  src: url('/site/templates/css/fonts/saaseriescd.woff2') format('woff2'), url('/site/templates/css/fonts/saaseriescd.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SaaSeriesDD';
  src: url('fonts/saaseriesdd.woff2') format('woff2'), url('fonts/saaseriesdd.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SaaSeriesEMD';
  src: url('fonts/saaseriesemd.woff2') format('woff2'), url('fonts/saaseriesemd.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Tay Sweetheart';
  src: url('fonts/TaySweetheartRegular.eot');
  src: url('fonts/TaySweetheartRegular.eot?#iefix') format('embedded-opentype'), url('fonts/TaySweetheartRegular.woff2') format('woff2'), url('fonts/TaySweetheartRegular.woff') format('woff'), url('fonts/TaySweetheartRegular.ttf') format('truetype'), url('fonts/TaySweetheartRegular.svg#TaySweetheartRegular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SaaSeriesCD";
  src: url('fonts/saaseriescd.woff') format('woff2'), url('fonts/saaseriescd.woff2') format('woff');
}
body {
  font-size: 1.15rem;
}
.font-body {
  font-family: 'SaaSeriesEMD', sans-serif;
}
.font-serif-heading {
  font-family: 'Tay Sweetheart';
}
.font-heading {
  font-family: 'SaaSeriesCD', sans-serif;
}
.font-nav {
  font-family: 'SaaSeriesDD', sans-serif;
}
.uk-text-medium {
  font-size: 1.125rem;
}
.uk-text-xmedium {
  font-size: 1.375rem;
}
.uk-text-xlarge {
  font-size: 1.75rem;
}
.body-color {
  color: #2c2326;
}
.body-color:hover,
.body-color:focus {
  color: #2c2326;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
em {
  color: #53575A;
}
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  content: "\e876";
  font-family: Linearicons-Free;
  font-size: 10px;
}
.uk-breadcrumb {
  margin: 0;
  padding: 5px 10px;
  background: white;
}
.uk-breadcrumb .current span {
  color: #f4b223;
}
.separator {
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  min-height: 80px;
  white-space: nowrap;
  color: #f4b223;
}
.close-icon {
  background: #E4F1F2;
  border-radius: 100%;
  line-height: 1.1em;
  width: 40px;
  height: 40px;
  text-align: center;
}
main > .hero:first-child .uk-slider .uk-slider-items:before,
main > .hero:nth-child(2) .uk-slideshow .uk-slideshow-items li:before,
main > .hero:first-child .uk-slideshow .uk-slideshow-items li:before {
  content: '';
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.8) 100%);
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.uk-container-custom {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .uk-container-custom {
    width: calc(100% - 80px);
  }
}
.uk-container-element {
  width: calc(100% - 80px);
  margin-right: auto;
  max-width: 1150px;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .uk-container-element {
    width: 100%;
  }
}
.uk-container-element-small {
  width: calc(100% - 80px);
  margin-right: auto;
  max-width: 1106px;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .uk-container-element-small {
    width: 100%;
  }
}
.uk-container-element-extra-small {
  margin-right: auto;
  max-width: 1026px;
  margin-left: auto;
}
[class*=uk-animation-] {
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.15, 0.82, 0.43, 1);
  animation-fill-mode: both;
}
section .text-content > *:last-child {
  margin-top: 0;
  margin-bottom: 0;
}
/* Lists */
section .text-content ul {
  padding-left: 0;
}
section .text-content ul li:not(:last-child) {
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 959px) {
  section .text-content ul li {
    border-bottom: 1px solid #e2e2e2;
  }
}
section .text-content ul li {
  padding: 20px 0% 20px;
  text-align: left;
  margin: 0;
  display: block;
  position: relative;
  line-height: 1.3em;
}
section.featured-tabs .text-content {
  padding: 12% 20% 18%;
}
section.featured-tabs .text-content h4:first-child {
  margin-bottom: 40px;
}
@media (max-width: 959px) {
  section.featured-tabs .text-content {
    padding: 30px;
  }
}
@media screen and (min-width: 960px) {
  .text-content .centered-list {
    font-size: 0;
    text-align: center;
  }
  .text-content .centered-list li {
    font-size: 15px;
    display: inline-block;
    padding: 0px 10px;
    border: 0 !important;
    position: relative;
  }
  .text-content .centered-list li:not(:last-child):after {
    content: '';
    position: absolute;
    background: #999;
    width: 1px;
    right: 0;
    height: 100%;
  }
  .text-content .centered-list-bold li {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    color: #444;
    letter-spacing: 6px;
  }
  .text-content .centered-list-bold li a {
    color: #444;
  }
  .text-content .centered-list-bold li:not(:last-child):after {
    background: #444;
    width: 2px;
  }
}
.text-content ul li span.icon:before {
  color: #f4b223;
  font-size: 1.4em;
  position: relative;
}
section .text-content ul li span.icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
  position: absolute;
  right: 100%;
  top: 20px;
  left: 0;
  color: #f4b223;
}
@media (max-width: 959px) {
  section .text-content ul li span.icon {
    margin-right: -50px;
  }
}
section.panel .text-content ul li span.icon {
  position: relative;
  top: auto;
  margin-right: 5px;
}
section.intro .text-content ul li span.icon {
  position: relative;
  top: auto;
  margin-right: 5px;
}
section.intro .text-content ul li span.icon:before {
  color: white;
}
section.intro .text-content ul li.has-icon {
  display: flex;
}
@media (min-width: 960px) {
  section .text-content ul li.has-icon {
    padding: 20px;
  }
}
@media (max-width: 959px) {
  section .text-content ul li.has-icon {
    padding-left: 35px;
  }
  section .text-content ul li.has-icon span {
    right: auto;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* Content basic */
.content_basic .text-content {
  width: 100%;
  padding: 20px 0;
}
@media (min-width: 960px) {
  .content_basic .text-content {
    padding: 20px 40px;
  }
}
@media (max-width: 959px) {
  .content_basic .text-content {
    padding-bottom: 0;
  }
}
@media (max-width: 959px) {
  .content_basic:not(.section-as-heading) .single .text-content {
    padding-bottom: 30px;
  }
}
.content_basic.section-as-heading {
  margin-bottom: 0;
}
.content_basic.section-as-heading + section {
  margin-top: 0px !important;
}
.content_basic .interior {
  position: relative;
}
.content_basic .interior .uk-grid > div {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 959px) {
  .content_basic {
    overflow-x: hidden;
  }
  .content_basic .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 0;
  }
  .content_basic .uk-grid-divider.uk-grid-stack > .uk-grid-margin > .text-content {
    padding-top: 0;
  }
  .content_basic .uk-grid-divider.uk-grid-stack > .uk-grid-margin:last-child > .text-content {
    padding-bottom: 20px;
  }
}
.content_basic .multiple .text-content {
  width: 90%;
}
@media screen and (min-width: 960px) {
  .content_basic.section-as-heading + section.content_basic {
    margin-top: 20px !important;
  }
  .content_basic .multiple .text-content {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .content_basic {
    margin: auto;
  }
}
header {
  position: relative;
  z-index: 982;
}
header.uk-margin-large-bottom {
  margin-bottom: 120px !important;
}
.header-border {
  display: none;
  width: 100%;
  position: absolute;
  height: calc(100% + 40px);
  border: 2px solid #f4b223;
  z-index: 3;
  pointer-events: none;
  max-width: 100%;
  margin: auto;
  right: 0;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .uk-grid-custom-size {
    margin-left: -22px;
  }
  .uk-grid-custom-size > * {
    padding-left: 22px;
  }
}
.event .event-data-inner {
  background-color: #f4b223;
  padding: 40px;
  color: white;
}
.event .event-data-inner p {
  margin: 0;
}
.event .event-data-inner h3 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0px;
}
.event .event-information .event-data-inner {
  padding: 0;
  background: transparent;
  color: #f4b223;
}
.event .event-information .event-data-inner > * {
  color: #f4b223 !important;
}
.event .event-information .event-data-inner {
  padding: 0;
  background: transparent;
  color: #f4b223;
}
.event .event-information .event-data-inner h3 {
  padding-bottom: 0;
  margin: 0;
  font-size: 15px;
  color: #f4b223 !important;
}
.events-list h2 {
  font-size: 1.5em;
  margin: 0;
}
.events-list img {
  width: 100%;
}
.events-list .event-description {
  font-size: 14px;
  padding: 20px 25px;
}
.events-list a:hover {
  color: #444;
  text-decoration: none;
}
.events-list .event-card .date {
  position: absolute;
  top: 1em;
  left: 0;
  display: block;
  background: #555;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
}
.events-list form {
  padding: 20px;
  background: white;
}
.events-list a.event-card > div:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: block;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}
.events-menu .selectize-control.multi .selectize-input.has-items {
  padding: 9px;
}
.events-menu .selectize-input {
  padding: 13px;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #e5e5e5;
}
.events-menu .selectize-input.dropdown-active {
  border-radius: 0;
}
.events-menu .selectize-input.focus {
  box-shadow: none;
}
.events-pager {
  width: 100%;
}
.events-pager a {
  display: block;
  border: 1px solid lightgray;
  margin: 5px;
  text-align: center;
  color: #444;
  padding: 3px 12px;
  background: white;
  border-radius: 3px;
}
.events-pager a:hover {
  text-decoration: none;
  background-color: #efefef;
}
.events-pager a i {
  line-height: 32px;
  padding: 3px 0px;
}
@media (min-width: 960px) {
  .right-column-container {
    margin-top: 40px;
  }
}
@media (min-width: 960px) {
  .right-column-container .content_basic .single > div {
    width: calc(100% - 80px);
  }
}
.side-column-container .mobile-nav {
  z-index: 981;
  border-bottom: 2px solid #487A86;
}
.side-column-container .mobile-nav > a {
  background-color: #fff;
}
.side-column-container .uk-list-divider > :nth-child(n+2) {
  border-top-color: #f4b223;
}
@media (max-width: 959px) {
  .side-column-container {
    margin-top: 50px;
  }
}
.cal-title.checkin {
  margin-right: 5px;
}
@media only screen and (max-width: 959px) {
  .uk-container-custom {
    width: 100%;
    max-width: none;
  }
  .event {
    margin-top: 0px;
  }
  .event .event-image {
    margin-bottom: -20%;
  }
  .event .event-data {
    width: 90%;
    z-index: 1;
  }
  .event .event-information {
    order: 1;
  }
  .events-menu .uk-grid-margin {
    margin-top: 10px;
  }
  .events-menu .views-toggles {
    text-align: center;
  }
  .events-menu .views-toggles a {
    width: 100%;
  }
  .events-menu .events-pager {
    width: 100%;
  }
  .events-menu .date-picker {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .signup-form > div {
    padding: 0 30px 60px;
    text-align: center !important;
  }
}
.zambeziModal .uk-modal-dialog {
  width: 100%;
  background: transparent;
  pointer-events: none;
}
.zambeziModal .uk-modal-dialog * {
  pointer-events: all;
}
.zambeziModal .uk-modal-dialog .panel {
  background: white;
}
.zambeziModal .uk-modal-dialog .panel:before {
  display: none;
}
.zambeziModal .uk-modal-dialog .panel .uk-slideshow-items {
  transform: none !important;
}
.zambeziModal .uk-modal-dialog .panel .uk-slidenav {
  transform: none !important;
}
.sitemap ul ul {
  padding: 0;
}
.sitemap h3 {
  margin-bottom: 0;
}
.sitemap ul {
  margin-bottom: 25px !important;
}
@media (max-width: 960px) {
  .sitemap li {
    padding: initial !important;
  }
}
.blog-items .uk-card-body a:hover .uk-card-title {
  text-decoration: underline !important;
}
.blog-section {
  padding-top: 30px;
  position: relative;
}
.blog-section #desktop-search {
  position: relative;
}
.blog-section #desktop-search:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease-in-out;
  z-index: 1;
}
.blog-section.htmx-request #desktop-search:before {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 960px) {
  .blog-section {
    padding-top: 40px;
  }
}
.blog-section .uk-search-input {
  background-color: #fff;
}
.mobile-search-navbar {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.mobile-search-navbar .search-options-toggle a {
  font-size: 0.75rem;
}
.mobile-search-navbar .search-options-icon {
  min-width: 20px;
}
#mobile-search:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease-in-out;
  z-index: 1;
}
#mobile-search.htmx-request:before {
  pointer-events: all;
  opacity: 1;
}
#mobile-search .search-found-items-message {
  padding: 5px;
}
.clear-categories-link {
  border: 1px solid #adadad;
  padding: 5px 4px;
  border-radius: 3px;
  font-size: 0.75rem;
  color: #696969FF;
}
.clear-categories-link:hover {
  color: #282828;
  border-color: #252525;
}
.remove-category-action {
  font-size: 0.65rem;
  background-color: #2c2326;
  border-radius: 3px 5px;
  color: #fff;
}
.remove-category-action span {
  padding: 3px 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.73);
}
.remove-category-action button {
  background-color: #010101;
  color: white;
  border-radius: 0 3px 3px 0;
  border: 0;
  cursor: pointer;
}
section.iframe {
  overflow: hidden;
}
.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
section.gallery .gallery-grid-mosaic-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
}
section.gallery .grid {
  display: flex;
  display: grid;
  height: 800px;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 15px 15px;
  width: 100%;
}
section.gallery .grid .mosaic-image-item a:focus-within picture:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  border: 5px solid #f4b223;
}
@media (max-width: 959px) {
  section.gallery.mosaic-style-1 .grid {
    height: 640px;
    grid-template-rows: repeat(6, 1fr);
  }
}
section.gallery.mosaic-style-1 .grid > div {
  background-color: #f4b223;
}
section.gallery.mosaic-style-1 .grid > div:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1/5;
}
section.gallery.mosaic-style-1 .grid > div:nth-child(2) {
  grid-column: 6 / 11;
  grid-row: 1 / 5;
}
section.gallery.mosaic-style-1 .grid > div:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 5 / 10;
}
section.gallery.mosaic-style-1 .grid > div:nth-child(4) {
  grid-column: 5 / 8;
  grid-row: 5 / 10;
}
section.gallery.mosaic-style-1 .grid > div:nth-child(5) {
  grid-column: 8 / 11;
  grid-row: 5 / 10;
}
section.gallery.mosaic-style-1 .grid > div:nth-child(6) {
  grid-column: 11 / 14;
  grid-row: 1 / 10;
}
@media (max-width: 959px) {
  section.gallery.mosaic-style-1 .grid > div:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }
  section.gallery.mosaic-style-1 .grid > div:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
  }
  section.gallery.mosaic-style-1 .grid > div:nth-child(3) {
    grid-column: 2 / 8;
    grid-row: 3 / 5;
  }
  section.gallery.mosaic-style-1 .grid > div:nth-child(4) {
    grid-column: 8 / 14;
    grid-row: 3 / 5;
  }
  section.gallery.mosaic-style-1 .grid > div:nth-child(5) {
    grid-column: 1 / 6;
    grid-row: 5 / 7;
  }
  section.gallery.mosaic-style-1 .grid > div:nth-child(6) {
    grid-column: 6 / 14;
    grid-row: 5 / 7;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.featured-tabs [uk-slideshow]:after {
  content: '';
  background: linear-gradient(218deg, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  pointer-events: none;
}
.featured-tabs.text-gallery {
  background: linear-gradient(136deg, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.4) 100%);
}
.featured-tabs .dotnav-wrapper {
  z-index: 1;
}
.featured-tabs > .uk-container {
  padding: 0;
}
.featured-tabs + .featured-tabs {
  margin-top: -40px !important;
}
@media (min-width: 1200px) {
  .featured-tabs + .featured-tabs {
    margin-top: -70px !important;
  }
}
@media (min-width: 959px) {
  .featured-tabs .dotnav-wrapper {
    left: 0;
    transform: none;
  }
  .featured-tabs.text-gallery .dotnav-wrapper {
    right: 0;
    left: auto;
    transform: none;
  }
}
/* Footer */
.footer-section {
  border-top: 2px solid #2c2326;
}
@media (max-width: 960px) {
  .footer-section .uk-nav li > a {
    justify-content: center;
  }
}
.footer-subscribe {
  max-width: 42rem;
  margin: 0 auto;
}
.footer-subscribe p {
  font-size: 1.2rem;
}
.footer-subscribe .moon-stars,
.footer-subscribe .firewood {
  width: 360px;
  mix-blend-mode: multiply;
}
.footer-subscribe input {
  border: 2px solid #2c2326;
}
.footer-subscribe .uk-input {
  border-width: 2px;
  font-size: 1.5rem;
  height: 4rem;
  text-align: center;
}
.footer-subscribe .uk-checkbox {
  width: 1.5rem;
  height: 1.5rem;
}
.footer-subscribe .uk-checkbox:focus,
.footer-subscribe .uk-checkbox:checked {
  background-color: #2c2326;
}
.footer-subscribe button {
  background: url(../img/send.svg);
  background-size: contain;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  font-family: 'SaaSeriesCD', sans-serif;
  padding: 0;
  width: 104px;
  height: 119px;
  text-transform: uppercase;
  transition: transform .3s ease;
  color: #2c2326;
}
.footer-subscribe button:hover {
  cursor: pointer;
  transform: scale(105%);
}
.footer-subscribe .FormBuilder {
  max-width: 500px;
  margin: auto;
}
@media (max-width: 960px) {
  .footer-links {
    padding: 2rem 0;
  }
}
@media (min-width: 960px) {
  .footer-links .uk-grid > div {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 80px;
  }
  .footer-links .uk-grid .footer-logo {
    padding-left: 0;
  }
}
@media (min-width: 960px) {
  .footer-logo {
    border: 1px solid #2c2326;
    border-width: 0 2px;
  }
}
.footer-social > div {
  margin-bottom: 1.5rem;
}
.footer-social > div:last-child {
  margin-bottom: 0;
}
.text-images .uk-grid {
  flex-direction: row-reverse;
}
.text-images .uk-grid.reverse .text-images .uk-grid {
  flex-direction: row;
}
@media (min-width: 1200px) {
  .events-grid .uk-grid + .uk-grid {
    margin-top: 0;
  }
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Datepicker cells
   ------------------------------------------------- */
.datepicker--cells {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.datepicker--cell {
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 32px;
  z-index: 1;
}
.datepicker--cell.-focus- {
  background: #f0f0f0;
}
.datepicker--cell.-current- {
  color: #f4b223;
}
.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}
.datepicker--cell.-current-.-in-range- {
  color: #f4b223;
}
.datepicker--cell.-in-range- {
  background: rgba(92, 196, 239, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}
.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}
.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}
.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}
.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}
.datepicker--cell.-range-from- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 4px 0 0 4px;
}
.datepicker--cell.-range-to- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 0 4px 4px 0;
}
.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}
.datepicker--cell.-selected- {
  color: #fff;
  border: none;
  background: #f4b223;
}
.datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #f4b223;
}
.datepicker--cell.-selected-.-focus- {
  background: #f4b223;
}
.datepicker--cell:empty {
  cursor: default;
}
.datepicker--days-names {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}
.datepicker--day-name {
  color: #FF9A19;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: .8em;
}
.datepicker--cell-day {
  width: 14.28571%;
}
.datepicker--cells-months {
  height: 170px;
}
.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}
.datepicker--years {
  height: 170px;
}
.datepicker--cells-years {
  height: 170px;
}
.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Datepicker
   ------------------------------------------------- */
.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}
@media print {
  .datepickers-container {
    display: none;
  }
}
.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-sizing: content-box;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  z-index: 100;
}
.datepicker.-from-top- {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.datepicker.-from-right- {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
.datepicker.-from-bottom- {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
.datepicker.-from-left- {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}
.datepicker.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
}
.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.datepicker-inline .datepicker--pointer {
  display: none;
}
.datepicker--content {
  box-sizing: content-box;
  padding: 4px;
}
.-only-timepicker- .datepicker--content {
  display: none;
}
.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1;
}
.-top-left- .datepicker--pointer,
.-top-center- .datepicker--pointer,
.-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.-right-top- .datepicker--pointer,
.-right-center- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
  right: calc(100% - 4px);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.-bottom-left- .datepicker--pointer,
.-bottom-center- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.-left-top- .datepicker--pointer,
.-left-center- .datepicker--pointer,
.-left-bottom- .datepicker--pointer {
  left: calc(100% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.-top-left- .datepicker--pointer,
.-bottom-left- .datepicker--pointer {
  left: 10px;
}
.-top-right- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
  right: 10px;
}
.-top-center- .datepicker--pointer,
.-bottom-center- .datepicker--pointer {
  left: calc(50% - 10px / 2);
}
.-left-top- .datepicker--pointer,
.-right-top- .datepicker--pointer {
  top: 10px;
}
.-left-bottom- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
  bottom: 10px;
}
.-left-center- .datepicker--pointer,
.-right-center- .datepicker--pointer {
  top: calc(50% - 10px / 2);
}
.datepicker--body {
  display: none;
}
.datepicker--body.active {
  display: block;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Navigation
   ------------------------------------------------- */
.datepicker--nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}
.-only-timepicker- .datepicker--nav {
  display: none;
}
.datepicker--nav-title,
.datepicker--nav-action {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker--nav-action:hover {
  background: #f0f0f0;
}
.datepicker--nav-action.-disabled- {
  visibility: hidden;
}
.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}
.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}
.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}
.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}
.datepicker--nav-title:hover {
  background: #f0f0f0;
}
.datepicker--nav-title.-disabled- {
  cursor: default;
  background: none;
}
.datepicker--buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 4px;
  border-top: 1px solid #efefef;
}
.datepicker--button {
  color: #f4b223;
  cursor: pointer;
  border-radius: 4px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
}
.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #f4b223;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #f4b223;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Timepicker
   ------------------------------------------------- */
.datepicker--time {
  border-top: 1px solid #efefef;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
  position: relative;
}
.datepicker--time.-am-pm- .datepicker--time-sliders {
  -webkit-flex: 0 1 138px;
  -ms-flex: 0 1 138px;
  flex: 0 1 138px;
  max-width: 138px;
}
.-only-timepicker- .datepicker--time {
  border-top: none;
}
.datepicker--time-sliders {
  -webkit-flex: 0 1 153px;
  -ms-flex: 0 1 153px;
  flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}
.datepicker--time-label {
  display: none;
  font-size: 12px;
}
.datepicker--time-current {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}
.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}
.datepicker--time-current-hours,
.datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}
.datepicker--time-current-hours:after,
.datepicker--time-current-minutes:after {
  content: '';
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}
.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}
.datepicker--time-current-ampm {
  text-transform: uppercase;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}
.datepicker--time-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat;
}
.datepicker--time-row:first-child {
  margin-bottom: 4px;
}
.datepicker--time-row input[type='range'] {
  background: none;
  cursor: pointer;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
.datepicker--time-row input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.datepicker--time-row input[type='range']::-ms-tooltip {
  display: none;
}
.datepicker--time-row input[type='range']:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}
.datepicker--time-row input[type='range']:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}
.datepicker--time-row input[type='range']:hover::-ms-thumb {
  border-color: #b8b8b8;
}
.datepicker--time-row input[type='range']:focus {
  outline: none;
}
.datepicker--time-row input[type='range']:focus::-webkit-slider-thumb {
  background: #f4b223;
  border-color: #f4b223;
}
.datepicker--time-row input[type='range']:focus::-moz-range-thumb {
  background: #f4b223;
  border-color: #f4b223;
}
.datepicker--time-row input[type='range']:focus::-ms-thumb {
  background: #f4b223;
  border-color: #f4b223;
}
.datepicker--time-row input[type='range']::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background .2s;
}
.datepicker--time-row input[type='range']::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background .2s;
}
.datepicker--time-row input[type='range']::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background .2s;
}
.datepicker--time-row input[type='range']::-webkit-slider-thumb {
  margin-top: -6px;
}
.datepicker--time-row input[type='range']::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}
.datepicker--time-row input[type='range']::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}
.datepicker--time-row input[type='range']::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}
.datepicker--time-row input[type='range']::-ms-fill-lower {
  background: transparent;
}
.datepicker--time-row input[type='range']::-ms-fill-upper {
  background: transparent;
}
.datepicker--time-row span {
  padding: 0 12px;
}
.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}
.datepicker--time-icon:after,
.datepicker--time-icon:before {
  content: '';
  background: currentColor;
  position: absolute;
}
.datepicker--time-icon:after {
  height: .4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.datepicker--time-icon:before {
  width: .4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #f4b223;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #f4b223;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
