@font-face {
  font-family: "CostaPtf";
  src: url("../fonts/CostaPtfDemi.eot");
  src: url("../fonts/CostaPtfDemi.eot") format("embedded-opentype"), url("../fonts/CostaPtfDemi.woff2") format("woff2"), url("../fonts/CostaPtfDemi.woff") format("woff"),
    url("../fonts/CostaPtfDemi.ttf") format("truetype"), url("../fonts/CostaPtfDemi.svg#CostaPtfDemi") format("svg");
  font-weight: 600;
}

@font-face {
  font-family: "CostaPtf";
  src: url("../fonts/CostaPtfRegular.eot");
  src: url("../fonts/CostaPtfRegular.eot") format("embedded-opentype"), url("../fonts/CostaPtfRegular.woff2") format("woff2"), url("../fonts/CostaPtfRegular.woff") format("woff"),
    url("../fonts/CostaPtfRegular.ttf") format("truetype"), url("../fonts/CostaPtfRegular.svg#CostaPtfRegular") format("svg");
  font-weight: 400;
}

@font-face {
  font-family: "AvenirBlack";
  src: url("../fonts/avenir/avenirltstd-black-webfont.woff2") format("woff2"), url("../fonts/avenir/avenirltstd-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Grand Cru";
  src: url("../fonts/grandcru-lightmitalic-webfont.woff2") format("woff2"), url("../fonts/grandcru-lightmitalic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  --box-shadow: 0 2px 4px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 8%);
  --nav-height: 90px;
  --book-bg-hover: #094935;
  --book-bg-focus: #094935;
  --book-text: #000;
  --orange: #ee9c1d;
  --yellow: #ffcc33;
  --book-bg: #0b5f45;
  --green-text: #0b5f45;
  --green-text-hover: #094935;
  --green-bg: #566354;
  --book-bg-text: #fff;
  --primary-bg: #0b5f45 !important;
  --primary-bg-hover: #094935;
  --primary-text: #ffffff !important;
  --primary-bg-light: #e6dbc7;
  --secondary-bg: #505151;
  --secondary-bg-hover: #3d3e3e;
  --secondary-text: #fff;
  --button-main-bg: #2987c2;
  --button-main-text: #f8f8f8;
  --button-main-bg-hover: #652951;
  --silver: #cccccc;
  --silver-light-bg: var(--primary-bg-light);
  --grey: #d0ced4;
  --black: #000;
  --btn-primary-bg: #9a856f;
  --btn-primary-text: #f8f8f8;
  --btn-primary-bg-hover: #84725c;
  --btn-primary-bg-focus: rgba(85, 91, 110, 0.2);
  --btn-secondary-bg: #505151;
  --btn-secondary-text: #fff;
  --btn-secondary-bg-hover: #3d3e3e;
  --btn-secondary-bg-focus: rgba(93, 150, 185, 0.5);
  --reddish: #6a041d;
  --yellowish: #8c7200;
  --dark-blue: #234558;
  --white: #f8f8f8;
  --blue: #172a5e;
  --blue-bg: #f2f2f4;
  --light-bg: #f2f2f4;
  --box-shadow-button: 0 0 0 0.25rem rgb(23 42 94 / 50%) !important;
  --nav-height: 90px;
  --gradient-bg: linear-gradient(135deg, #0072bc 0%, #003c7e 100%);
  --red-gradient-bg: linear-gradient(180deg, rgba(196, 70, 71, 1) 0%, rgba(231, 81, 83, 1) 100%);
  --green-gradient-bg: linear-gradient(45deg, #0b5f45 35%, #0f805c 100%);
  --green-gradient-bg-rev: linear-gradient(45deg, #0f805c 35%, #0b5f45 100%);
  --red-bg: rgba(196, 70, 71, 1);
  color: #000;
  overflow-y: auto;
}

.b-15 {
  border-radius: 15px;
}

.red-gradient-bg {
  background: var(--red-gradient-bg);
}

.green-gradient-bg {
  background: var(--green-gradient-bg);
}

.green-gradient-bg-rev {
  background: var(--green-gradient-bg-rev);
}

.underline span {
  font-family: "Grand Cru", sans-serif;
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: 1.4em;
  line-height: 1;
  font-weight: 500;
}

.list-style-default ul {
  list-style-type: disc;
  padding-left: 20px;
}

.loginhome {
  padding-top: 150px;
}

body.disable-scroll {
  overflow-y: hidden;
  position: relative;
}

body.disable-scroll::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  animation: fade-in 0.3s;
}

.intersect.fade-in {
  opacity: 0;
}

.intersect.fade-in.show {
  animation: fade-in 0.5s ease-out forwards;
}

.intersect.fade-in-up {
  opacity: 0;
}

.intersect.fade-in-up.show {
  animation: fade-in-up 0.5s ease-out forwards;
  animation-delay: 0.1s;
}

.intersect .rooms-carousel .sppb-column-addons > div {
  opacity: 0;
}

.intersect.show .rooms-carousel .sppb-column-addons > div {
  animation: fade-in-up 0.5s ease-out forwards;
  animation-delay: 0.1s;
}

.intersect.show .rooms-carousel .sppb-column-addons > div:nth-child(2) {
  animation-delay: 0.4s;
}

.intersect.show .rooms-carousel .sppb-column-addons > div:nth-child(3) {
  animation-delay: 0.7s;
}

.intersect.show .rooms-carousel .sppb-column-addons > div:nth-child(4) {
  animation-delay: 1s;
}

.intersect.show .rooms-carousel .sppb-column-addons > div:nth-child(5) {
  animation-delay: 1.3s;
}

.intersect.show .rooms-carousel .sppb-column-addons > div:nth-child(6) {
  animation-delay: 1.6s;
}

h1,
h2,
h3 {
  /* font-family: 'CostaPtf', sans-serif;
    font-weight: 400; */
  font-family: "AvenirBlack", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 52px;
  color: #000;
}

h2 {
  font-size: 40px;
  color: #000;
  line-height: 1.3;
}

a {
  transition: color 250ms, background-color 250ms;
}

.leaflet-popup-content {
  font-size: 1rem;
  padding-right: 5px;
}

.sppb-section.page-header {
  padding: 50px 0 !important;
  height: 40vh;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.sppb-section.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 35%);
}

.sppb-section.page-header .sppb-addon-title {
  margin: 0 !important;
}

a {
  text-decoration: none;
}

.text-black p,
.text-black .sppb-addon-content,
.text-black li {
  color: #000;
}

.link a {
  color: var(--primary-bg);
  font-weight: 400;
  text-decoration: underline;
}

.link a:hover {
  text-decoration: none;
}

.link-blue a {
  color: var(--blue);
  font-weight: 400;
  text-decoration: underline;
}

.link-secondary a:hover {
  text-decoration: none;
}

body strong {
  font-weight: 700 !important;
}

#sp-main-body {
  padding-top: var(--nav-height) !important;
}

body.home #sp-main-body {
  padding-top: 0 !important;
}

#menu-left {
  display: none;
}

ol {
  list-style-position: outside;
  padding-left: 20px;
}

ol li {
  padding-left: 15px;
  padding-bottom: 10px;
}

.light-bg {
  background: #f2f2f4;
}

/* .gradient-bg .sppb-row-overlay {
    background: linear-gradient(90deg, rgba(230, 219, 199, .7) 0%, rgba(230, 219, 199, 1) 100%) !important;
} */

.gradient-bg {
  background: var(--gradient-bg);
}

.secondary-bg {
  background: #000;
}

a[title="Faboba : Création de composantJoomla"] {
  display: none !important;
}

p,
ul,
li,
.sppb-addon-content {
  line-height: 1.7;
}

h1 {
  margin-bottom: 30px;
}

h3 {
  font-size: 2rem;
  color: var(--primary-bg);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}

.sppb-addon-title {
  color: var(--primary-bg);
}

.sppb-section.bf-inline-container {
  z-index: 999 !important;
}

.sppb-section.bf-inline-container.overlap {
  position: relative;
}

body .sppb-section.bf-inline-container.overlap > .sppb-row-container {
  position: relative;
  min-height: 125px;
  padding: 30px 0;
}

body .bf-inline__inner,
body .bf-inline__options-container,
body #bf-inline .bf-inline__promo-container,
body #bf-inline .bf-inline__date-container,
body #bf-inline .bf-inline__submit-container {
  border: none;
}

body .bf-inline__inner {
  grid-gap: 0 0;
}

body #bf-inline .bf-inline__promo-container span {
  z-index: 0;
}

body .bf-inline__inner::before {
  background: none;
}

body #bf-inline input {
  background: #fff !important;
}

body #bf-inline input[type="submit"] {
  background: var(--book-bg) !important;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  border-top-right-radius: 12px;
}

body #bf-inline input[type="submit"]:hover {
  background: var(--book-bg-hover) !important;
}

.sppb-section.bf-inline-container.overlap-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: -50%;
  left: 0;
  background: var(--primary-bg);
}

body #bf-inline .bf-inline__submit {
  font-weight: 500;
  color: var(--book-bg-text) !important;
  font-size: 1.2rem !important;
}

#bf-inline .bf-inline__date-input {
  border-top-left-radius: 12px;
}

#bf-inline .bf-inline__date-input,
#bf-inline .bf-inline__options-input,
#bf-inline .bf-inline__inner .bf-inline__promo-input {
  font-weight: 400 !important;
  transition: 0.1s ease-in-out;
  font-size: 1.1rem !important;
}

#bf-inline .bf-inline__promo-input {
  font-weight: 400 !important;
  box-shadow: none !important;
}

#bf-inline .bf-inline__date-input:hover,
#bf-inline .bf-inline__options-input:hover,
#bf-inline .bf-inline__inner .bf-inline__promo-input:hover {
  background: #eee !important;
  box-shadow: none !important;
}

#bf-inline .bf-inline__options-input {
  border-left: 1px solid #ddd !important;
  border-right: 1px solid #ddd !important;
}

#bf-inline .bf-inline__date-input::placeholder {
  font-weight: 400 !important;
}

#bf-inline .bf-inline__date-input,
#bf-inline .bf-inline__options-input {
  transition: 0.2s ease-in-out;
}

#bf-inline .bf-inline__date-input:hover,
#bf-inline .bf-inline__options-input:hover {
  background: var(--silver-light-bg);
}

/* #bf-inline .bf-inline__date-input{
    border-top-left-radius: 10px;
} */

/* body #bf-inline input[type="submit"] {
    border-top-right-radius: 10px;
} */

#bf-inline .bf-inline__date-container > i,
#bf-inline .bf-inline__options-container > i {
  z-index: 0 !important;
  pointer-events: none;
}

#bf-inline .litepicker {
  opacity: 0;
  /* transition: .2s ease-in-out; */
  padding-top: 10px !important;
}

#bf-inline .litepicker.show {
  opacity: 1;
}

.litepicker .container__days .day-item {
  font-weight: 400 !important;
}

.litepicker .container__days .day-item:hover {
  background: #e8e9ed !important;
}

.litepicker .container__days .day-item.is-in-range {
  background: var(--primary-bg-light) !important;
}

.litepicker .container__days .day-item.is-end-date,
.litepicker .container__days .day-item.is-start-date {
  background: var(--bf-primary-bg) !important;
}

.litepicker .container__tooltip {
  color: var(--black) !important;
  font-weight: 400 !important;
  font-size: 1.1rem !important;
}

#bf-inline .bf-inline__increment:hover::before,
#bf-inline .bf-inline__decrement:hover::before,
#bf-popup .bf-popup__increment:hover::before,
#bf-popup .bf-popup__decrement:hover::before {
  opacity: 0.15 !important;
}

#bf-inline .bf-inline__options-dropdown {
  opacity: 0;
  transition: 0.2s ease-in-out;
  padding-top: 10px;
}

#bf-inline .bf-inline__options-dropdown.open {
  opacity: 1;
}

@media (max-width: 768px) {
  .sppb-section.bf-inline-container.overlap {
    transform: translateY(-10%) !important;
  }

  #bf-inline .bf-inline__promo-container span {
    line-height: 1.4;
  }

  body .sppb-section.bf-inline-container.overlap > .sppb-row-container {
    padding: 30px 20px;
  }

  #bf-inline .bf-inline__inner .bf-inline__promo-container {
    margin-right: 0;
  }
}

/* HOME */

.sppb-section.home-header {
  display: grid;
  grid-template-rows: 1fr;
  height: calc(100vh - 202px);
  position: relative;
  background-position: 50% 50% !important;
  margin-top: var(--nav-height) !important;
  z-index: 9 !important;
}

/* .sppb-section.home-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
} */

.sppb-section.home-header .sppb-row,
.sppb-section.home-header .sppb-row .sppp-column-vertical-align {
  height: 100%;
}

.sppb-section.home-header .sppb-addon-title {
  font-size: 4rem;
  color: #fff;
  text-align: center;
}

.sppb-section.main-header .main-header-column {
  height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.sppb-section.main-header .main-header-column .sppb-column-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.sppb-section.main-header .sppb-addon-title {
  font-size: 3.5rem;
  color: #fff;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.sppb-section.home-usp ul {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.sppb-section.home-usp ul li {
  display: flex;
  align-items: center;
  font-size: 1rem !important;
  margin: 0 30px;
}

.sppb-section.home-usp ul li em {
  margin-right: 10px;
  font-size: 20px;
}

.sppb-section.home-rooms .sppb-media-content {
  position: relative;
}

.sppb-section.home-rooms .sppb-media-content::before {
  content: "";
  position: absolute;
  border-bottom: solid 4px var(--red-bg);
  top: 0;
  right: 50%;
  bottom: -15px;
  left: 0;
}

@media (max-width: 768px) {
  .sppb-section.home-header {
    height: 50vh;
    padding: 0 !important;
  }

  .sppb-section.main-header .sppb-addon-title {
    font-size: 2rem;
    line-height: 1;
  }

  .sppb-section.main-header .main-header-column {
    height: 100%;
  }

  .sppb-section.main-header > div > div > div {
    height: calc(50vh - 55px);
  }

  body .sppb-section.bf-inline-container.overlap {
    padding-top: 0 !important;
    transform: translateY(0) !important;
  }
}

.raspberry-bg::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -160px;
  background-image: url(/images/2024/04/03/beeldmerk-raspberry-group.svg);
  width: 760px;
  height: 550px;
  background-repeat: no-repeat;
  opacity: 0.4;
}

/* ROOM SLIDER */

.sppb-section.room img {
  transition: 0.3s ease-in-out;
}

.sppb-section.room img:hover {
  transform: scale(1.05);
}

.sppb-section.room .sppb-addon-content .sppb-addon-single-image-container > a {
  display: flex;
}

.sppb-section.room .sppb-addon-content .sppb-addon-single-image-container {
  position: relative;
  overflow: hidden;
  display: flex;
  /*    margin: 80px 0;*/
}

.sppb-section.room .sppb-addon-content .sppb-addon-single-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

.sppb-section.room .sppb-addon-content .sppb-addon-single-image-container:hover::before {
  opacity: 1;
}

.sppb-section.room .sppb-addon-content .sppb-addon-single-image-container img {
  transition: 0.3s ease-in-out;
}

.sppb-section.room .sppb-addon-content .sppb-addon-single-image-container:hover img {
  transform: scale(1.05);
}

.sppb-section.room .sppb-addon-single-image-container a {
  display: flex;
}

.sppb-section.room .sppb-addon-single-image-container a:hover {
  background: #fff;
}

.sppb-section.room .room-content .sppb-addon-title {
  margin-bottom: 30px !important;
}

.sppb-section.room-slider .sp-slider-outer-stage {
  max-height: 70vh !important;
}

.sppb-section.room-slider .nav-control {
  height: 50px !important;
  width: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px !important;
}

.sppb-section.room-slider .sp-slider .sp-dots ul li {
  height: 70px !important;
  width: 100px !important;
  border-radius: 2px !important;
}

.sppb-section.room-slider .sp-slider .sp-dots ul li::after {
  border-radius: 2px !important;
}

@media (max-width: 768px) {
  .sppb-section.room-slider .sp-slider .sp-dots {
    height: initial;
  }

  .sppb-section.room-slider .sp-slider .sp-dots ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .sppb-section.room-slider .sp-slider .sp-dots ul li {
    width: 100% !important;
    height: 55px !important;
    margin: 0;
  }

  .sppb-section.room-slider .nav-control.next-control {
    right: 15px;
  }

  .sppb-section.room-slider .nav-control.prev-control {
    left: 15px;
  }

  .sppb-section.room .sppb-addon-content .sppb-addon-single-image-container {
    margin: 0;
  }
}

.sppb-section.home-intro {
  color: var(--blue);
}

/* BOOKING DIRECT BENEFITS */

.sppb-section.home-header .home-hero {
  max-width: 1080px;
  margin: 0 auto;
}

.sppb-section.home-header .home-hero ul {
  background: #f2f2f4;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: solid 1px #ddd;
  margin-bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sppb-section.home-header .home-hero ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 15px;
}

.sppb-section.home-header .home-hero ul li i {
  margin-right: 5px;
}

/* .sppb-section.room-amenities-module {
    background: var(--primary-bg-light);
    position: relative;
}

.sppb-section.room-amenities-module::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100vw;
    bottom: 0;
    left: -100vw;
    background: var(--gradient-bg);
} */

.sppb-addon.room-amenities > .sppb-addon-content {
  padding-bottom: 0;
}

.sppb-addon.room-amenities > .sppb-addon-content ul {
  grid-column: 2;
  margin-bottom: 0;
  margin-top: 50px;
  list-style-type: none;
  padding-left: 0;
  /* display: flex;
    justify-content: space-between; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
}

.sppb-addon.room-amenities > .sppb-addon-content ul li {
  display: grid;
  grid-template-rows: 70px 1fr;
  text-align: center;
  max-width: 250px;
  margin: 0;
}

.sppb-addon.room-amenities > .sppb-addon-content ul li i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-bg);
}

.sppb-addon.room-amenities-list ul {
  padding-left: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 50px;
  margin-bottom: 0;
}

.sppb-addon.room-amenities-list ul li {
  display: grid;
  grid-template-columns: 70px 1fr;
  text-align: left;
  /* line-height: 1.5; */
  margin-bottom: 15px;
}

.sppb-addon.room-amenities-list ul li:last-child {
  margin-bottom: 0;
}

.sppb-addon.room-amenities-list ul li > * {
  margin: auto 0;
}

.sppb-addon.room-amenities-list ul li {
  color: #fff;
}

.sppb-addon.room-amenities-list ul li i {
  font-size: 2rem;
  color: #fff;
}

@media (max-width: 768px) {
  .sppb-addon.room-amenities > .sppb-addon-content {
    display: block;
  }

  .sppb-addon.room-amenities > .sppb-addon-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 20px;
  }

  .sppb-addon.room-amenities > .sppb-addon-content ul li i {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }

  .sppb-addon.room-amenities-list ul {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .sppb-addon.room-amenities-list ul li i {
    font-size: 1.4rem !important;
  }

  .sppb-addon.room-amenities-list ul li {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }

  .sppb-addon.room-amenities-list ul h2,
  .sppb-addon.room-amenities-list ul h3 {
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 400;
  }

  .sppb-section.home-intro .sppb-addon-title {
    font-size: 2.5rem;
  }

  .sppb-section.home-intro .home-amenities ul {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 20px;
    margin: 30px 0;
  }

  .sppb-section.home-intro .home-amenities ul li {
    grid-template-rows: 55px 1fr;
    margin-top: 0;
  }

  .sppb-section.home-intro .home-amenities ul li i {
    font-size: 2.5rem;
  }

  .sppb-addon.room-amenities > .sppb-addon-content ul li {
    grid-template-rows: 50px 1fr;
    margin: 0;
  }
}

/* NAV HEADER */

.body-innerwrapper {
  position: relative;
}

#sp-section-1 {
  background: var(--primary-bg);
  padding: 10px 15px;
}

#sp-section-1 .sp-module {
  margin: auto 0;
}

.mod-languages.advanced-dropdown {
  position: relative;
}

div.mod-languages ul li.lang-active {
  border-radius: 0;
  padding: 0;
}

/* .mod-languages.advanced-dropdown:hover {
    background: #fff;
} */

.mod-languages.advanced-dropdown form {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 2px;
}

.mod-languages.advanced-dropdown form:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mod-languages.advanced-dropdown ul.lang-inline {
  z-index: 99999;
  position: absolute;
  right: 0;
  background: #fff;
  display: none;
  min-width: 360px;
  padding: 20px;
}

.mod-languages.advanced-dropdown ul.lang-inline.show {
  display: grid;
  grid-gap: 5px 0;
  animation: slide-fade-in 0.3s;
  cursor: default;
}

.mod-languages.advanced-dropdown ul.lang-inline li {
  margin: 0;
}

.mod-languages.advanced-dropdown ul.lang-inline li a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 0 15px;
  padding: 10px !important;
  width: 100%;
  font-size: 1rem;
}

.mod-languages.advanced-dropdown ul.lang-inline li a > * {
  margin: auto 0;
}

.mod-languages.advanced-dropdown ul.lang-inline li a:hover {
  background: var(--light-bg);
  color: #000;
}

div.mod-languages ul li.lang-active {
  background-color: transparent !important;
}

.mod-languages.advanced-dropdown ul.lang-inline li.lang-active a,
.mod-languages.advanced-dropdown ul.lang-inline li.lang-active a:hover {
  background: var(--light-bg);
  color: var(--blue);
}

div.mod-languages ul li.lang-active a i {
  font-size: 0.9rem;
}

.sticky-header-placeholder {
  display: none;
}

#sp-header {
  position: absolute;
  top: 50px;
  animation: none;
  z-index: 9999;
  width: 100%;
  box-shadow: none;
  height: var(--nav-height);
}

#sp-header {
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}

.sppb-addon.topbar-info > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sppb-addon.topbar-info > div > div > * {
  margin: 0 15px;
}

.sppb-addon.topbar-info > div > div > a {
  font-size: 1rem;
}

.sppb-addon.topbar-info > div > div > a > em {
  margin-right: 5px;
}

.sppb-addon.topbar-info .stars {
  display: flex;
  align-items: center;
}

.sppb-addon.topbar-info .stars > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0 5px;
  margin-left: 10px;
}

.sppb-addon.topbar-info .stars em {
  color: var(--yellow);
  margin: auto 0;
  font-size: 0.9rem;
}

.sppb-addon.topbar-info .stars em:last-child {
  color: var(--light-bg);
}

#sp-header > div.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

#sp-header.header-sticky {
  position: fixed;
  top: 0px;
}

#sp-header .logo {
  height: 100%;
}

#modal-menu {
  top: 140px;
  z-index: 1;
  background: #f2f2f4;
  transition: none !important;
}

#modal-menu.active {
  animation: fade-in 0.3s !important;
}

#modal-menu form.form-search {
  display: none;
}

#modal-menu .navbar {
  padding: 0;
}

#modal-menu .navbar .mod-menu.nav {
  flex-direction: column;
  margin-bottom: 15px;
}

#sp-header.header-sticky #modal-menu {
  top: var(--nav-height);
}

#modal-menu .sppb-column-addons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-top: 0;
}

#modal-menu .col-sm-7 {
  width: 100%;
}

#modal-menu h3,
#modal-menu p {
  font-size: 1rem;
}

#modal-menu h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

#modal-menu p {
  font-weight: 400;
  font-size: 18px;
  color: var(--primary-bg);
}

#modal-menu ul {
  list-style-type: none;
  padding-left: 0;
}

@media (max-width: 768px) {
  .itemid-263 #sp-header {
    background: #fff;
  }
}

.sp-megamenu-wrapper {
  padding-left: 15px;
}

#sp-header > .container > .container-inner > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
}

#sp-header #menu-center .advanced-dropdown a.langChoose {
  display: flex;
}

.advanced-dropdown span.langChooseTitle {
  font-weight: bold;
  display: inline-block;
}

.advanced-dropdown .lang-inline i {
  cursor: pointer;
}

.advanced-dropdown .langChooseTitleContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.advanced-dropdown {
  cursor: pointer;
}

.advanced-dropdown span.langName {
  color: #fff;
  text-transform: uppercase;
  margin-right: 5px;
  font-size: 1em;
}

#sp-header #sp-logo {
  padding: 0;
  padding-left: 15px;
  margin: auto;
  display: flex;
}

#sp-header #sp-logo img {
  object-fit: cover;
  height: 50px;
}

#sp-header #logo-right {
  justify-content: flex-end;
  padding-right: 0;
}

/* #sp-header #logo-right a[href="#book"] {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
} */

#sp-section-1 nav .mod-list.nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 5px;
}

#sp-section-1 nav li a {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 0;
  height: 41px;
  font-weight: 500;
  border-bottom: none;
  background: #4e4e4e;
  letter-spacing: 2px;
  color: #ddd;
}

#sp-section-1 nav li a:hover {
  color: #fff;
  transition: 0.1s ease-in-out;
}

#sp-section-1 nav li {
  height: 50px;
  display: flex;
  align-items: flex-end;
}

#sp-section-1 nav li.active a {
  color: var(--black);
  background: #fff;
}

#sp-section-1 nav li.active a:hover {
  background: #fff;
}

#sp-section-1 nav li a:hover {
  background: #ccc;
  color: var(--black);
}

#sp-section-1 .navbar,
#sp-footer1 .navbar {
  padding: 0;
}

footer .footer-logo {
  border-radius: 50%;
  overflow: hidden;
}

#sp-section-1 #sp-top1 > .sp-column {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

#sp-section-1 #sp-top1 > .sp-column > div {
  grid-row: 1;
  grid-column: 2;
}

#sp-section-1 #sp-top1 > .sp-column > div:first-child {
  grid-row: 1;
  grid-column: 3;
  margin-left: auto !important;
}

#menu-center .sp-module-content,
#menu-center .sp-module-content .menuvariant {
  height: 100%;
}

#menu-center > .sp-module {
  margin-left: 0;
}

#menu-center ul {
  padding-left: 30px;
  list-style-type: none;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

#menu-center ul li {
  margin: 0 15px;
}

#menu-center ul li.menu-parent {
  position: relative;
}

#menu-center ul.menu-child {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  padding: 25px 15px;
  padding-top: 55px;
  justify-content: center;
}

#menu-center ul.menu-child::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border-top: solid 1px silver;
}

/* #menu-center ul li.menu-parent ul.menu-child {
    transition: .3s ease-in-out;
} */

#menu-center ul li.menu-parent:hover ul.menu-child {
  display: flex;
  animation: fade-in 0.3s;
}

#menu-center ul li.menu-parent:hover ul.menu-child::after {
  content: "";
  position: fixed;
  top: 140px;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
  pointer-events: none;
}

#menu-center ul li.menu-parent > a {
  position: relative;
  margin-right: 20px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: 0.1s ease-in-out;
}

#menu-center ul li.menu-parent > a:hover {
  color: var(--primary-bg-hover);
}

#menu-center ul li.menu-parent li.active > a {
  color: var(--primary-bg);
}

#menu-center ul li.menu-parent > a::after {
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  display: flex;
  align-items: center;
  transform: rotate(-90deg);
  transition: 0.1s ease-in-out;
}

#menu-center ul li.menu-parent:hover > a::after {
  transform: rotate(0deg);
  color: var(--blue);
}

#menu-center ul li.menu-parent ul.menu-child li {
  border-bottom: none;
  margin: 0 15px;
}

#menu-center ul li.menu-parent ul.menu-child li a {
  /* padding: 10px 15px;
    padding-right: 60px; */
  display: flex;
  color: #000;
  /* background: var(--black); */
  position: relative;
  /* transition: .1s ease-in-out; */
}

#menu-center ul li.menu-parent ul.menu-child li a:hover {
  color: var(--primary-bg-hover) !important;
}

/* #menu-center ul li.menu-parent ul.menu-child li a.persons::before {
    content: "\f183";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    color: #fff;
    display: flex;
    align-items: center;
    transition: .1s ease-in-out;
    font-size: 1.1rem;
} */

/* #menu-center ul li.menu-parent ul.menu-child li a.two::before {
    content: "\f183\ \f183";
}

#menu-center ul li.menu-parent ul.menu-child li a.three::before {
    content: "\f183\ \f183\ \f183";
}

#menu-center ul li.menu-parent ul.menu-child li a.four::before {
    content: "\f183\ \f183\ \f183\ \f183";
}

#menu-center ul li.menu-parent ul.menu-child li a.five::before {
    content: "\f183\ \f183\ \f183\ \f183\ \f183";
} */

#menu-center ul li.menu-parent ul.menu-child li a:hover {
  /*    background: var(--silver-light-bg);    */
  color: var(--black);
  background: #fff;
}

#menu-center ul li.menu-parent ul.menu-child li a:hover::before {
  color: var(--black);
}

#sp-header .mod-languages.advanced-dropdown {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  padding-right: 40px;
  z-index: 2;
}

#sp-header .mod-languages.advanced-dropdown::before {
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: flex;
  align-items: center;
  transform: rotate(-90deg);
  transition: 0.1s ease-in-out;
}

#sp-header .mod-languages.advanced-dropdown:hover::before {
  transform: rotate(0deg);
}

#sp-header .mod-languages.advanced-dropdown > form {
  position: relative;
  display: flex;
}

#sp-header .mod-languages.advanced-dropdown > form img {
  cursor: default;
}

#sp-header .mod-languages.advanced-dropdown ul.lang-inline {
  position: absolute;
  right: -40px;
  flex-direction: column;
  padding-top: 30px;
  background: var(--black);
  z-index: 1;
  width: 320px;
  padding: 0px !important;
  margin: 0px !important;
  margin-top: 47px !important;
  overflow: unset !important;
  height: auto !important;
}

#sp-header .mod-languages.advanced-dropdown ul.lang-inline > li {
  width: 100%;
  margin: auto 0;
}

#sp-header .mod-languages.advanced-dropdown ul.lang-inline > li img {
  cursor: default;
  margin: auto 0;
}

#sp-header .mod-languages.advanced-dropdown ul.lang-inline > li > a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  width: 100%;
  padding: 10px 15px !important;
  margin: auto 0;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  transition: 0.1s ease-in-out;
  font-size: 1.2rem;
}

#sp-header .mod-languages.advanced-dropdown ul.lang-inline > li > a:hover {
  /*    background: var(--silver-light-bg);*/
  background: #fff;
  color: var(--dark);
}

#sp-header .mod-languages.advanced-dropdown ul.lang-inline > li > a > i {
  margin: auto 0;
  color: #fff;
  transition: 0.1s ease-in-out;
}

#sp-header .mod-languages.advanced-dropdown ul.lang-inline > li > a:hover > i {
  color: var(--dark);
}

#sp-header #modal-menu-toggler {
  margin-left: 0 !important;
  display: none;
}

.fa-angle-right:before {
  font-weight: 200;
}

.fa-angle-left:before {
  font-weight: 200;
}

@media (max-width: 768px) {
  #sp-header.header-with-modal-menu #modal-menu-toggler {
    display: block;
  }

  #modal-menu {
    top: 60px;
  }

  #sp-header.header-sticky #modal-menu {
    top: 60px;
  }

  #sp-header #sp-logo img {
    height: 40px;
  }

  #sp-header > .container > .container-inner > div {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  #sp-header .mod-languages.advanced-dropdown {
    height: 100%;
    padding-left: 0;
    padding-right: 20px;
  }

  #sp-header .mod-languages.advanced-dropdown::before {
    right: 0;
  }

  #menu-center {
    display: none;
  }
}

.sppb-section.contact-row strong {
  color: #000;
}

.sppb-section.contact-details > div > div > div {
  padding-left: 0;
  padding-right: 0;
}

.sppb-section.contact-details ul li {
  display: grid;
  grid-template-columns: 25px 1fr;
  grid-gap: 0 10px;
  margin-bottom: 15px;
}

.sppb-section.contact-details ul li.contact-socials {
  grid-template-columns: auto auto auto 1fr;
  grid-gap: 0 20px;
  margin-top: 30px;
  margin-bottom: 0;
}

.sppb-section.contact-details ul li a {
  font-size: 1em;
  line-height: 1.7;
  margin-top: 0;
}

.sppb-section.contact-details ul li a:hover {
  text-decoration: underline;
}

.sppb-section.contact-details ul li.contact-socials a:hover {
  text-decoration: none;
}

.sppb-section.contact-details ul li em {
  font-size: 1.1rem;
  margin: auto 0;
}

/* .contact-form .sppb-section.contact-details p {
    color: var(--blue);
} */

/* .sppb-section.contact-row .contact-details .sppb-column-addons em,
.sppb-section.contact-row .contact-details .sppb-column-addons a {
    color: #000;
}

.sppb-section.contact-row .contact-details .sppb-column-addons em {
    margin-right: 5px;
}

.sppb-section.contact-row .contact-details .sppb-column-addons .socials a {
    text-decoration: none;
}

.sppb-section.contact-row .contact-details .sppb-column-addons a:hover {
    text-decoration: none;
    color: var(--blue);
}

.sppb-section.contact-details a {
    text-decoration: none;
}

.sppb-section.contact-details .socials {
    margin-top: 30px;
}

.sppb-section.contact-details .socials a {
    text-decoration: none;
    color: #fff;
}

.sppb-section.contact-details .socials a:hover {
    text-decoration: none;
    color: #fff;
}

.sppb-section.contact-details .socials a em {
    font-size: 1.3rem;
    transition: .2s ease-in-out;
    margin-right: 0 !important;
}

.sppb-section.contact-details .socials a {
    margin-right: 20px;
}

.sppb-section.contact-details .socials a:hover em {
    color: var(--blue);
} */

/* .sppb-section.contact-details a {
    text-decoration: underline;
} */

/* .sppb-section.contact-details a:hover {
    text-decoration: underline;
    color: var(--blue);
} */

.sppb-section .opening-hours .sppb-addon-content p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
}

.home-reviews .rate-box i {
  color: #ffb527;
}

.home-reviews .subtitle {
  text-align: center;
}

.home-reviews .rate-box {
  text-align: center;
  font-size: 1.1rem;
}

.home-reviews .sppb-testimonial-carousel-item-content {
  margin-bottom: 0 !important;
  background: none !important;
  padding: 30px 200px 0 200px !important;
}

.home-reviews .sppb-testimonial-carousel-message {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.home-reviews .sppb-carousel-extended-nav-control .nav-control {
  background: var(--btn-primary-bg);
  color: var(--primary-text);
  border-color: var(--btn-primary-bg);
  border-radius: 2px;
}

.sppb-testimonial-carousel-testi_layout3 .sppb-testimonial-carousel-item-content::before {
  display: none;
}

.sppb-testimonial-carousel-item-content {
  grid-row: 2;
}

.sppb-testimonial-carousel-content-wrap {
  grid-row: 1;
}

.sppb-testimonial-carousel-designation {
  font-size: 1.6rem;
}

.sppb-carousel-extended-nav-control .nav-control.next-control {
  margin-right: 0 !important;
}

.sppb-carousel-extended-nav-control .nav-control.prev-control {
  margin-left: 0 !important;
}

.litepicker .container__months .month-item-weekdays-row > div,
.litepicker .container__days .day-item {
  font-size: 1em !important;
}

.litepicker .container__months .month-item-header div > .month-item-name,
.litepicker .container__months .month-item-header div > .month-item-year {
  font-size: 1.3em !important;
}

.litepicker .month-item-weekdays-row {
  border-bottom: solid 1px var(--bf-silver) !important;
  margin-bottom: 10px !important;
}

@media (max-width: 768px) {
  .home-reviews .sppb-testimonial-carousel-item-content {
    padding: 30px 50px 0 50px !important;
  }

  .sppb-carousel-extended-outer-stage {
    /* min-height: 200px !important;
    height: initial !important; */
    margin: 0 auto !important;
  }

  #bf-inline .bf-inline__date-input,
  #bf-inline .bf-inline__options-input,
  #bf-inline .bf-inline__inner .bf-inline__promo-input {
    font-size: 1rem !important;
  }

  .sppb-carousel-extended-nav-control .nav-control.next-control,
  .sppb-carousel-extended-nav-control .nav-control.prev-control {
    height: 50px !important;
    width: 50px !important;
    line-height: 50px !important;
    font-size: 24px !important;
  }

  .sppb-carousel-extended-nav-control .nav-control.next-control {
    margin-right: -15px !important;
  }

  .sppb-carousel-extended-nav-control .nav-control.prev-control {
    margin-left: -15px !important;
  }

  .home-reviews .sppb-testimonial-carousel-message {
    font-size: 1.2rem;
  }
}

#sp-header.header-sticky {
  animation: none;
}

#sp-header.header-with-modal-menu a {
  color: #000;
  display: flex;
  align-items: center;
  font-weight: 400;
}

#sp-header.header-with-modal-menu li a:hover,
#sp-header.header-with-modal-menu li.current.active > a {
  color: var(--primary-bg);
}

#sp-header.header-with-modal-menu a:hover,
#sp-header.header-with-modal-menu a:focus {
  color: var(--primary-bg-hover);
}

#sp-header.header-with-modal-menu li.sp-has-child.active > a,
#sp-header.header-with-modal-menu li.sp-has-child.active > a:hover {
  color: var(--primary-bg-hover);
}

#sp-header.header-with-modal-menu li.sp-has-child.active li.active > a,
#sp-header.header-with-modal-menu li.sp-has-child.active .li.active > a:hover {
  color: var(--primary-bg-hover);
}

#sp-header.header-with-modal-menu li.menu-parent li.current.active a {
  background: #fff;
  color: var(--primary-bg-hover);
}

#menu-center ul li.menu-parent ul.menu-child li.current.active a.persons::before {
  color: var(--primary-bg-hover);
}

a[href="#book"] {
  background: var(--book-bg);
  color: var(--book-bg-text) !important;
  border: none;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 1rem !important;
  text-transform: uppercase;
  font-weight: bold !important;
  border-radius: 30px;
}

a[href="#book"]:focus {
  box-shadow: var(--box-shadow-button);
}

a[href="#book"]:hover {
  background: var(--book-bg-hover) !important;
  color: var(--book-bg-text) !important;
}

a[href="#book"]:active {
  background: var(--book-bg);
}

/* body.modal-menu-active #sp-header #logo-right a[href="#book"] {
    display: none !important;
} */

body #modal-menu a.btn-book {
  display: inline-flex !important;
  margin-top: 20px !important;
}

.sp-copyright .mybookings-credits {
  text-align: center;
  font-size: 22px;
}

.sp-copyright .mybookings-credits img {
  margin: 0 auto;
}

#bf-inline .bf-inline__promo-container span {
  transform: translateY(calc(50% - 0)) !important;
}

#bf-inline .bf-inline__promo-container input::placeholder {
  color: silver !important;
}

.bf-inline__options-container > i,
#bf-inline .bf-inline__date-container > i {
  color: #000 !important;
}

@media (max-width: 1200px) {
  #sp-header.custom .container-inner > .row {
    grid-template-columns: auto auto 1fr;
    grid-gap: 0 30px;
  }

  #sp-header.custom #sp-menu {
    justify-content: flex-start;
  }

  #sp-header.header-with-modal-menu a {
    font-size: 1.1rem;
  }
}

@media (max-width: 991px) {
  #sp-header.custom .container-inner > .row {
    grid-template-columns: repeat(2, 1fr);
  }
  #sp-header.custom #sp-menu {
    justify-content: flex-end;
  }
  #sp-section-1 #sp-top1 > .sp-column {
    grid-template-columns: auto 1fr;
  }
  #sp-header.header-with-modal-menu #modal-menu-toggler {
    display: block;
  }
}

@media (max-width: 768px) {
  #sp-header {
    height: 60px;
    z-index: 9990;
  }

  .offcanvas-menu .menu .menu-toggler {
    border: solid 1px black;
    right: 0 !important;
    padding: 0 !important;
    border-radius: 30px;
    height: 30px;
    width: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg) !important;
  }

  #sp-header.header-with-modal-menu .modal-menu-contact a {
    letter-spacing: 0;
    text-transform: lowercase;
  }

  #sp-header #logo-right a[href="#book"] {
    display: none;
  }

  #sp-header #logo-right {
    padding: 0;
  }
}

/* BUSINESS */

.sppb-section.business-features .sppb-addon-title {
  display: flex;
  align-items: center;
}

.sppb-section.business-features ul {
  list-style-type: disc;
  padding-left: 20px;
}

.sppb-section.business-features em {
  font-size: 2rem;
}

/* PHOTOS GALLERY */

.sppb-addon.photos-gallery ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.sppb-addon.photos-gallery ul::before,
.sppb-addon.photos-gallery ul::after {
  display: none;
}

.sppb-addon.photos-gallery ul img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover;
}

@media (max-width: 768px) {
  .sppb-addon.photos-gallery ul {
    grid-template-columns: 1fr;
    grid-gap: 15px 0;
  }

  .sppb-addon.photos-gallery ul img {
    height: 240px !important;
    object-fit: cover;
  }
}

/* HOME OVERLAY IMAGES */

.sppb-section.overlay-images .sppb-addon-overlay-image > div {
  padding: 0;
}

.sppb-section.overlay-images .sppb-addon-overlay-image .overlay-image-title {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  position: relative;
}

.sppb-section.overlay-images .sppb-addon-overlay-image .sppb-addon-title {
  height: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.sppb-section.overlay-images .sppb-addon-overlay-image a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sppb-section.overlay-images .sppb-addon-overlay-image-content:hover .overlay-background-style {
  background: rgba(81, 66, 59, 0.8) !important;
}

@media (max-width: 768px) {
  .sppb-section.overlay-images .sppb-addon-overlay-image-content {
    height: 150px !important;
  }

  .sppb-section.overlay-images .overlay-background-image {
    width: 100% !important;
    transform: none;
  }
}

/*HOTEL GUIDE*/

.sppb-addon.hotel-guide ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  grid-template-rows: 300px 300px 300px 300px;
  grid-template-areas:
    "a b c"
    "a b d"
    "e f g"
    "h f g";
}

.sppb-addon.hotel-guide ul .a {
  grid-area: a;
}

.sppb-addon.hotel-guide ul .b {
  grid-area: b;
}

.sppb-addon.hotel-guide ul .c {
  grid-area: c;
}

.sppb-addon.hotel-guide ul .d {
  grid-area: d;
}

.sppb-addon.hotel-guide ul .e {
  grid-area: e;
}

.sppb-addon.hotel-guide ul .f {
  grid-area: f;
}

.sppb-addon.hotel-guide ul .g {
  grid-area: g;
}

.sppb-addon.hotel-guide ul .h {
  grid-area: h;
}

.sppb-addon.hotel-guide li a {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.sppb-addon.hotel-guide li a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.2s ease-in-out;
}

.sppb-addon.hotel-guide li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.2s ease-in-out;
  z-index: 1;
}

.sppb-addon.hotel-guide li a:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.sppb-addon.hotel-guide li a:hover h2 {
  color: var(--primary-bg);
}

.sppb-addon.hotel-guide li a:hover img {
  transform: scale(1.05);
}

.sppb-addon.hotel-guide li a h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 20px;
  width: 100%;
  transition: 0.2s ease-in-out;
  line-height: 1.2;
  z-index: 9;
}

.sppb-addon.hotel-guide li a h2 span {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 400;
}

.sppb-addon.hotel-guide li a h2 span i {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .sppb-addon.hotel-guide ul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 1fr);
    grid-template-areas: unset;
    grid-gap: 20px 0;
    padding-left: 0;
  }

  .sppb-addon.hotel-guide ul > li {
    grid-area: unset !important;
  }

  .sppb-addon.hotel-guide li a h2 {
    font-size: 1.9rem;
  }
}

/*FAQ PAGE */

body.faq-page {
  background: #f5f5f5;
}

/*FAQ TABS*/

.sppb-addon.faq-tabs .sppb-panel-modern {
  margin-bottom: 0;
}

.sppb-addon.faq-tabs .sppb-nav-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* transform: translateY(-80px); */
  margin-bottom: 50px;
}

.sppb-addon.faq-tabs .sppb-nav-tabs::before,
.sppb-addon.faq-tabs .sppb-nav-tabs::after {
  display: none;
}

.sppb-addon.faq-tabs .sppb-nav-tabs li {
  display: flex;
}

.sppb-addon.faq-tabs .sppb-nav-tabs li a {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 30px;
  grid-gap: 20px 0;
  text-align: center;
  font-size: 1rem;
  padding: 30px 15px;
  color: var(--black);
  transition: 0s;
  background: #fff;
  text-decoration: none;
  width: 100%;
}

.sppb-addon.faq-tabs .sppb-nav-tabs li a {
  text-transform: uppercase;
}

.sppb-addon.faq-tabs .sppb-nav-tabs li a:hover {
  background: var(--light-bg);
}

.sppb-addon.faq-tabs .sppb-nav-tabs li.active a {
  position: relative;
  background: var(--light-bg);
}

.sppb-addon.faq-tabs .sppb-nav-tabs li.active a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  left: -1px;
  border-top: solid 5px var(--primary-bg);
}

.sppb-addon.faq-tabs .sppb-nav-tabs a img {
  grid-row: 1;
  grid-column: 1;
  display: block;
  height: 35px !important;
  width: auto !important;
  object-fit: cover;
  margin: 0 auto;
}

.sppb-addon.faq-tabs .sppb-addon-title {
  margin: 0 0 20px 0;
  font-size: 2.2rem;
  /* color: #003c7f; */
}

.sppb-addon.faq-tabs .sppb-panel-group {
  display: grid;
  grid-gap: 0;
}

.sppb-addon.faq-tabs .sppb-panel-group > .sppb-panel {
  border-radius: 0;
  border: none;
  border-bottom: 3px solid var(--primary-bg);
}

.sppb-addon.faq-tabs .sppb-panel-heading {
  transition: 0s;
  margin-bottom: 0;
  padding: 15px 50px 15px 0;
  background: #fff;
}

.sppb-addon.faq-tabs .sppb-panel-heading i {
  color: var(--blue);
  font-size: 1rem;
}

.sppb-addon.faq-tabs .sppb-panel-heading .sppb-panel-title {
  font-size: 1.1rem;
  color: #000;
  font-weight: 500;
  transition: 0.2 ease-in-out;
}

.sppb-addon.faq-tabs .sppb-panel-heading .sppb-panel-title {
  font-weight: bold;
}

.sppb-addon.faq-tabs .sppb-panel-body {
  padding: 15px;
  color: var(--black);
  border-top: none;
}

.sppb-addon.faq-tabs .sppb-row-container {
  padding: 0;
}

@media (max-width: 768px) {
  .sppb-addon.faq-tabs .sppb-nav-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .sppb-addon.faq-tabs .sppb-nav-tabs li a {
    grid-template-rows: 40px 1fr;
    height: 100%;
    padding: 30px 10px;
  }

  .sppb-addon.faq-tabs .sppb-nav-tabs a .sppb-tab-icon {
    margin-bottom: 10px;
  }

  .sppb-addon.faq-tabs .sppb-panel-body {
    font-size: 1.1rem;
  }
}

/* PAGE HEADERS */

.sppb-section.page-header-vertical .sppb-addon {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 0 50px;
  padding-bottom: 0;
}

.sppb-section.page-header {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .sppb-section.page-header .sppb-addon-title {
    font-size: 2rem;
  }

  .sppb-section.page-header {
    padding: 50px 0;
  }
}

.sppb-section.room {
  padding: 100px 0 !important;
  margin: 0 !important;
}

.sppb-section.room .room-content {
  padding: 0 10%;
}

.sppb-section.room .room-content .sppb-addon-title {
  display: inline-block;
}

.sppb-section.room .room-buttons .sppb-column-addons {
  display: flex;
}

.sppb-section.room .room-buttons .sppb-column-addons > div:first-child {
  margin-right: 10px;
}

.sppb-section.room p em {
  margin-left: 30px;
}

.sppb-section.room p em:first-child {
  margin-left: 0;
}

.sppb-section.room-facilities ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  list-style-type: none;
  padding-left: 0;
}

.sppb-section.room-facilities ul li {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 0 5px;
  color: #fff;
}

.sppb-section.room-facilities ul li i {
  margin: auto 0;
  color: #fff;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .sppb-addon.page-header {
    grid-template-columns: 1fr;
    grid-gap: 20px 0;
  }

  .sppb-section.room-intro .sppb-addon-title {
    margin-bottom: 30px !important;
    font-size: 32px;
  }

  .sppb-section.room .room-content {
    padding: 30px 15px;
  }

  .sppb-section.room .room-buttons .sppb-column-addons {
    margin-bottom: 50px;
  }
}

/* ICONS */
.sppb-addon-feature .sppb-icon-container {
  line-height: 52px;
}

/*
.sppb-addon-feature.green .sppb-icon-container {
    background-color: rgba(0,60,127,0.07);
    color: var(--blue) !important;
}

.sppb-addon-feature.pink .sppb-icon-container {
    color: #e8578d !important;
    background-color: rgba(232, 87, 141, 0.1);
}

.sppb-addon-feature.blue .sppb-icon-container {
    color: #1b52d8 !important;
    background-color: rgba(27, 82, 216, 0.1);
}

.sppb-addon-feature.orange .sppb-icon-container {
    color: #ef8e34 !important;
    background-color: rgba(238, 137, 42, 0.1);
}
*/
/* BUTTONS */

.sppb-btn-default.sppb-btn-outline {
  color: var(--primary-bg);
  border-color: var(--primary-bg);
  font-weight: bold;
  height: 50px;
  border-radius: 30px;
  font-size: 1rem !important;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.sppb-btn-default.sppb-btn-outline:hover {
  border-color: var(--primary-bg);
  color: #fff;
  background: var(--primary-bg);
}

.sppb-btn-default.sppb-btn-outline:focus {
  background: var(--primary-bg-hover) !important;
  border-color: var(--primary-bg-hover) !important;
  color: #fff !important;
}

/* HOME TESTIMONIALS */

.sppb-section.home-testimonials img {
  display: flex;
  width: auto;
  max-width: 70%;
  max-height: 80px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .sppb-section.home-testimonials img {
    max-width: 60%;
    max-height: 60px;
  }
}

/* CONTACT */

.sppb-column.contact-form h2 {
  margin-bottom: 30px;
  /* color: #003c7f; */
}

.sppb-column.contact-form input,
.sppb-column.contact-form textarea {
  border: solid 1px var(--silver) !important;
  padding: 15px !important;
  font-size: 1em !important;
  border-radius: 0 !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-bg) !important;
}

.contact-form .sppb-section.contact-details ul li a,
.contact-form .sppb-section.contact-details p {
  color: var(--primary-bg);
  font-size: 1em;
}

.contact-form .sppb-section.contact-details ul li em {
  color: var(--primary-bg);
  font-size: 1.1em;
}

.contact-form ul {
  padding-left: 0;
}

/* OFFCANVAS MENU */

.offcanvas-menu {
  z-index: 999999999;
  box-shadow: var(--box-shadow);
}

.offcanvas-menu > div:first-child {
  padding: 0 15px !important;
  height: 60px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
}

.offcanvas-menu a.close-offcanvas {
  position: relative;
  top: 0;
  right: 0;
}

.offcanvas-menu img.logo-image {
  display: none;
}

.offcanvas-menu .offcanvas-inner {
  padding: 20px;
  padding-top: 0px;
}

.offcanvas-menu .offcanvas-inner ul.menu li a {
  color: var(--black);
  opacity: 1;
}

.offcanvas-menu .offcanvas-inner .menu li.active a {
  color: var(--primary-bg);
  opacity: 1;
}

.offcanvas-menu .offcanvas-inner .menu li a:hover,
.offcanvas-menu .offcanvas-inner .menu li a:focus {
  color: var(--primary-bg) !important;
  opacity: 1;
}

.offcanvas-menu .offcanvas-inner .menu .menu-child {
  margin-bottom: 10px;
}

.offcanvas-menu .offcanvas-inner .menu .menu-child li a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}

.offcanvas-menu .offcanvas-inner .menu .menu-child li.active a {
  color: var(--primary-bg);
  opacity: 1;
}

.offcanvas-menu .offcanvas-inner .menu .menu-child li a:focus,
.offcanvas-menu .offcanvas-inner .menu .menu-child li a:active,
.offcanvas-menu .offcanvas-inner .menu .menu-child li a:hover {
  color: var(--primary-bg);
  opacity: 1;
}

.offcanvas-menu .offcanvas-inner > div:first-child {
  display: none !important;
}

.offcanvas-menu .offcanvas-inner > div {
  margin-right: 0 !important;
}

.offcanvas-menu .offcanvas-inner a[href="#book"] {
  padding: 0 !important;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.offcanvas-overlay {
  z-index: 999999;
}

.offcanvas-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.offcanvas-inner > div.sp-module:nth-child(2) {
  grid-row: 1;
  margin-bottom: 0 !important;
}

.offcanvas-inner > div.sp-module:nth-child(3) {
  grid-row: 3;
  margin-top: 20px;
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li a img {
  object-fit: cover;
  height: 100%;
  margin-right: 10px;
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li {
  width: 100%;
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown ul {
  margin-top: 10px;
}

.offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose {
  position: relative;
  display: flex;
}

.offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-weight: 700;
  font-family: inherit;
}

.offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose:focus,
.offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose:hover,
.offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose:active {
  color: #252525;
}

html[lang="it-it"] .offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose::after {
  content: "Selezionare la lingua";
}

html[lang="es-es"] .offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose::after {
  content: "Seleccione el idioma";
}

html[lang="de-de"] .offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose::after {
  content: "Sprache auswählen";
}

html[lang="fr-fr"] .offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose::after {
  content: "Sélectionner la langue";
}

html[lang="nl-nl"] .offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose::after {
  content: "Selecteer taal";
}

html[lang="en-gb"] .offcanvas-inner > div.sp-module .advanced-dropdown a.langChoose::after {
  content: "Select language";
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li {
  margin-bottom: 2px;
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li a {
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 0;
  line-height: 1.2;
  font-size: 1rem;
  border-radius: 3px;
  padding: 8px 10px !important;
  font-size: 1rem;
  font-weight: 600;
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li.lang-active a {
  background: var(--silver-light-bg);
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li a:hover {
  color: #252525 !important;
  background: var(--silver-light-bg);
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li a:active,
.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li a:focus {
  outline: solid 2px silver !important;
}

.offcanvas-inner > div.sp-module:nth-child(3) .advanced-dropdown li a i {
  margin-left: auto;
}

.offcanvas-inner > div.sp-module:nth-child(4) {
  grid-row: 2;
}

/* FOOTER */

#sp-footer {
  background: var(--primary-bg);
}

#sp-footer .footer-contact p {
  margin-bottom: 0;
}

#sp-footer .footer-contact p:first-child {
  margin-bottom: 15px;
}

#sp-footer .footer-contact a,
#sp-footer .footer-contact p,
#sp-footer .footer-contact em {
  transition: 0.1s ease-in-out;
}

#sp-footer .footer-contact a:hover,
#sp-footer .footer-contact p:hover em {
  color: #fff;
}

#sp-footer .sppb-section.footer .footer-col > .sppb-column-addons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
}

#sp-footer .sppb-section.footer a,
#sp-footer .sppb-section.footer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
}

#sp-footer .sppb-section.footer a:hover {
  text-decoration: underline;
}

/* #sp-footer .sppb-section.footer .contact-details .sppb-column-addons {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
} */

/* #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 4;
}

#sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 4;
}

#sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(2)>* {
    display: flex;
    justify-content: center;
}

#sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

#sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(3) img {
    width: 100%;
    height: 70px;
}


#sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    justify-content: flex-end;
}

#sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
    display: flex;
    justify-content: flex-end;
}

#sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(5) img {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    height: 150px;
} */

#sp-footer .sppb-section.footer-logo .sppb-column-addons {
  display: block;
}

#sp-footer .sppb-section.footer .footer-information ul li a {
  line-height: 2.3;
}

/* #sp-footer .sppb-section.footer-logo img {
    width: 100%;
    max-width: 160px;
} */

#sp-footer .sppb-section.footer .sppb-addon-title {
  margin-bottom: 30px;
}

#sp-footer .sppb-section.footer .payments img {
  height: 20px !important;
}

/* #sp-footer .sppb-section.footer p {
    font-size: 1em;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 30px;
} */

/* .contact-details div.address {
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-gap: 0 15px;
    margin-bottom: 30px;
} */

/* #sp-footer .sppb-section.footer a {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #fff;
} */

/* #sp-footer .sppb-section.footer em {
    font-size: 1.3rem;
} */

/* #sp-footer .sppb-section.footer em {
    margin-right: 8px;
    font-size: 1.2rem;
} */

#sp-footer .sppb-section.footer h2.sppb-addon-title {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
}

#sp-footer .sppb-section.footer .sppb-column-addons ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}

/* HOME APARTMENTS */

.sppb-section.rooms-carousel .sppb-column-addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

.sppb-section.rooms-carousel .sppb-column-addons > div {
  overflow: hidden;
  /* border-radius: 15px; */
}

.sppb-section.rooms-carousel .sppb-column-addons > div > div {
  transition: 0.4s ease-in-out;
  width: calc(100% + 50px);
  transform: translateX(-50px);
}

.sppb-section.rooms-carousel .sppb-column-addons > div > div:hover {
  transform: translateX(0);
}

.sppb-section.rooms-carousel .sppb-column-addons a {
  display: flex;
  align-items: flex-end;
  position: relative;
  transition: 0.4s ease-in-out;
  aspect-ratio: 1.6 / 1;
}

.sppb-section.rooms-carousel .sppb-column-addons a:hover .sppb-addon-title {
  color: #000 !important;
}

.sppb-section.rooms-carousel .sppb-column-addons a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -50px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 0;
  transition: 0.4s ease-in-out;
  opacity: 1;
}

.sppb-section.rooms-carousel .sppb-column-addons a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -50px;
  background: rgba(255, 255, 255, 0);
  z-index: 0;
  transition: 0.4s ease-in-out;
}

.sppb-section.rooms-carousel .sppb-column-addons a:hover::before {
  opacity: 0;
}

.sppb-section.rooms-carousel .sppb-column-addons a:hover::after {
  background: rgba(255, 255, 255, 0.85);
}

.sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title {
  width: 100%;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 2rem;
  opacity: 1;
  transform: translateX(20px);
  transition: 0.4s ease-in-out;
  text-align: left;
  margin-left: 50px;
  padding-right: 100px !important;
  line-height: 1.3;
}

.sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title i {
  font-size: 1rem;
}

.sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title em {
  position: absolute;
  right: 40px;
  bottom: 0;
  transition: transform 0.4s ease-in-out, color 0.1s ease-in-out;
  font-size: 1.8rem;
  color: #fff;
}

.sppb-section.rooms-carousel .sppb-column-addons a:hover .sppb-addon-title em {
  color: #000;
}

.sppb-section.rooms-carousel .sppb-column-addons a:hover .sppb-addon-title {
  transform: translateX(-25px);
}

.sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title span {
  text-transform: lowercase;
  font-weight: 400;
  font-size: 1.3rem;
  margin-top: 5px;
  position: relative;
}

.sppb-section.rooms-intro .rooms-amenities > div {
  grid-column: 1 / span 2;
}

.sppb-section.rooms-intro .rooms-amenities ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  list-style-type: none;
  margin: 0;
}

.sppb-section.rooms-intro .rooms-amenities ul li {
  color: #fff;
  display: grid;
  grid-template-rows: 55px 1fr;
  text-align: center;
  font-size: 1rem !important;
  text-transform: uppercase;
}

/* .sppb-section.rooms-intro.usp {
    background: var(--gradient-bg);
} */

.sppb-section.rooms-intro .rooms-amenities ul li i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.sppb-section.rooms-item .rooms-item-bg .sppb-column-addons {
  background: var(--light-bg);
  padding: 50px 0;
}

/* .sppb-section.rooms-item.left img {
    transform: translateY(-25px) translateX(10px);
} */

/* .sppb-section.rooms-item.right img {
    transform: translateY(-25px) translateX(-10px);
} */

.sppb-section.rooms-item ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-bottom: 0;
  padding-left: 0;
}

.sppb-section.rooms-item ul li {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 0 15px;
}

.sppb-section.rooms-item ul li i {
  margin: auto 0;
  margin-right: 10px;
  font-size: 1.5rem;
}

.sppb-section.rooms-item .addon-root-button {
  display: inline-block;
  margin-right: 10px;
}

.sppb-btn.home-photos {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 30px;
}

.sppb-addon.faq-tabs.home-faq-tabs .sppb-nav-tabs {
  display: none;
}

.sppb-addon.faq-tabs.home-faq-tabs .sppb-panel-heading .sppb-panel-title {
  color: var(--green-text);
}

.sppb-addon.faq-tabs.home-faq-tabs .sppb-panel:hover .sppb-panel-heading .sppb-panel-title {
  color: var(--green-text-hover);
}

.sppb-section.home-parallax {
  height: 1000px;
  display: flex;
  align-items: center;
}

.sppb-section.home-parallax .sppb-addon-title,
.sppb-section.home-parallax .sppb-addon-content {
  color: #fff;
}

.sppb-addon.home-package {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sppb-addon.home-package a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s ease-out;
}

.sppb-addon.home-package .sppb-addon-title {
  position: absolute;
  color: #000;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  margin: 0 15%;
  color: var(--blue);
  animation: fade-in-up 0.5s ease-out forwards;
}

.sppb-addon.home-package a::after {
  background: rgba(255, 255, 255, 0.5);
}

.sppb-addon.home-package a:hover img {
  transform: scale(1.05);
}

.sppb-addon.home-package a img {
  transition: 0.3s ease-in-out;
}

.sppb-section.home-offers {
  position: relative;
  background: var(--gradient-bg);
}

.sppb-column.home-offer {
  overflow: hidden;
}

.sppb-column.home-offer ul {
  list-style-type: none;
  padding-left: 0;
}

.sppb-column.home-offer .sppb-addon-title {
  font-size: 2rem;
}

.sppb-section.home-offers .home-offer {
  border-radius: 15px;
}

.sppb-section.home-offers .home-offer i {
  color: var(--primary-bg);
  margin-right: 10px;
}

.sppb-section.home-team i {
  color: #fff;
  margin-right: 10px;
}

.sppb-section.home-team ul {
  list-style: none;
  padding-left: 0;
}

/* 
.sppb-section.home-offers .sppb-addon-content {
    font-weight: 400;
    font-size: 1.3rem;
} */

/* .sppb-section.home-offers .sppb-column-addons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0 30px;
    margin: 0 7%;
} */

.sppb-column.offers-item {
  border-radius: 15px;
  overflow: hidden;
}

.sppb-column.offers-item ul {
  list-style-type: none;
  padding-left: 0;
}

.sppb-column.offers-item ul li {
  margin-bottom: 15px;
}

.sppb-column.offers-item ul li i {
  color: var(--primary-bg);
  margin-right: 10px;
  font-size: 1.5rem;
}

.sppb-section.offers-offer ul {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-gap: 10px 0;
  margin-bottom: 0;
}

.sppb-section.offers-offer li {
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-gap: 10px 10px;
}

.sppb-section.offers-offer li div {
  font-weight: normal;
}

.sppb-section.offers-offer li em {
  font-size: 1.5rem;
  margin-top: 4px;
  color: var(--primary-bg);
}

.sppb-carousel-extended-item-center.active .sppb-carousel-extended-content-wrap {
  opacity: 1 !important;
  visibility: visible !important;
}

.sppb-carousel-extended-content-wrap {
  padding: 30px !important;
  width: 85% !important;
  max-width: 440px !important;
  background: #f5f5eb;
}

.sppb-section.home-reviews .sppb-carousel-extended-subheading {
  border-bottom: solid 3px var(--primary-bg) !important;
  width: 110px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.sppb-section.home-explore .sppb-column-addons {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 0 20px;
}

.sppb-section.home-explore .sppb-column-addons img {
  object-fit: cover;
}

.sppb-section.home-explore .sppb-column-addons > div {
  grid-column: 1 / span 4;
}

.sppb-section.home-explore .sppb-column-addons > div:nth-child(2) {
  grid-row: 2;
  grid-column: 2;
}

.sppb-section.home-explore .sppb-column-addons > div:nth-child(3) {
  grid-row: 2;
  grid-column: 3;
}

.sppb-section.home-explore .sppb-column-addons > div:nth-child(4) {
  grid-row: 2;
  grid-column: 4;
}

/* BUTTONS */

a.sppb-btn.btn-book {
  background: var(--book-bg);
  color: var(--book-bg-text) !important;
  height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  font-size: 1rem !important;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
}

a.sppb-btn.btn-book:hover {
  background: var(--book-bg-hover);
}

a.sppb-btn.btn-book:focus {
  background: var(--book-bg);
  /* box-shadow: var(--box-shadow-button) !important; */
}

a.sppb-btn.btn-book:active {
  background: var(--book-bg) !important;
  /* box-shadow: var(--box-shadow-button) !important; */
}

a.sppb-btn.sppb-btn-primary,
.sppb-addon.contact-form .sppb-btn,
button.sppb-btn.sppb-btn-primary {
  background: var(--primary-bg);
  color: #fff;
  border: none;
  height: 50px;
  padding: 0 24px !important;
  display: inline-flex;
  align-items: center;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem !important;
}

a.sppb-btn.sppb-btn-primary:hover,
.sppb-addon.contact-form .sppb-btn:hover,
button.sppb-btn.sppb-btn-primary:hover {
  background: var(--primary-bg-hover);
}

a.sppb-btn.sppb-btn-custom {
  padding: 0 0 5px 0 !important;
  font-size: 1rem !important;
  text-transform: uppercase;
  font-weight: bold !important;
  background: none;
  border: none;
  border-bottom: solid 4px var(--red-bg);
  border-radius: 0;
}

a.sppb-btn.sppb-btn-primary.white {
  color: #fff;
  border: solid 1px #fff;
  background: transparent;
}

a.sppb-btn.sppb-btn-primary.white:hover {
  border: solid 1px var(--btn-primary-bg-hover);
}

a.sppb-btn.sppb-btn-secondary {
  background: var(--btn-secondary-bg);
  color: #fff;
  border: solid 1px var(--btn-secondary-bg);
  height: 55px;
  padding: 0 30px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 0;
}

a.sppb-btn.sppb-btn-secondary:hover {
  background: var(--btn-secondary-bg-hover);
}

a.sppb-btn.sppb-btn-secondary.sppb-btn-outline {
  background: transparent;
  border: 1px solid var(--blue-bg);
  color: var(--blue-bg);
}

/* ----- VIDEO ----- */

.sppb-addon-video-local-video-wrap {
  /*    max-height: 70vh;*/
  height: 65vh;
  padding-top: 0 !important;
  overflow: hidden;
}

.sppb-addon-video-local-source {
  object-fit: cover;
  min-height: 100vh;
  margin-top: -15vh;
}

.sppb-section.facilities-item ul {
  display: grid;
  grid-gap: 10px 0;
  padding-left: 0;
}

.sppb-section.facilities-item ul li {
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-gap: 0 10px;
  margin-bottom: 0;
}

.sppb-section.facilities-item ul li i {
  margin: auto 0;
  color: var(--primary-bg);
  font-size: 1.5rem;
}

/* ----- IMAGE SLIDER ----- */

ul.sigFreeClassic {
  padding: 0 !important;
  margin: 0 auto !important;
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-template-rows: repeat(4, calc(60vh / 4));
  grid-gap: 10px;
  margin: 0 10px !important;
  overflow: initial;
  height: 100% !important;
}

ul.sigFreeClassic li:first-child,
ul.sigFreeClassic li:first-child a,
ul.sigFreeClassic li:first-child a img {
  width: 100% !important;
}

ul.sigFreeClassic li a,
ul.sigFreeClassic li a img {
  height: 100% !important;
}

ul.sigFreeClassic li {
  margin: 0 !important;
}

ul.sigFreeClassic li:first-child {
  margin: 0 !important;
}

ul.sigFreeClassic li,
ul.sigFreeClassic li a,
ul.sigFreeClassic li a img {
  width: 100% !important;
}

ul.sigFreeClassic li:first-child {
  grid-column: 1;
  grid-row: 1 / span 4;
}

ul.sigFreeClassic li.sigFreeClear {
  display: none;
}

ul.sigFreeClassic li:first-child a {
  display: flex;
}

ul.sigFreeClassic li {
  display: none;
}

ul.sigFreeClassic li:nth-child(1),
ul.sigFreeClassic li:nth-child(2),
ul.sigFreeClassic li:nth-child(3),
ul.sigFreeClassic li:nth-child(4),
ul.sigFreeClassic li:nth-child(5) {
  display: block;
}

.custom-gallery ul.sigFreeClassic li:nth-child(5) a {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
}

/* ul.sigFreeClassic li.sigFreeClear:nth-child(5) a::before {
    background: none;
    content: '+all photos';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
} */

.photos ul.sigFreeClassic li {
  display: block;
}

ul.sigFreeClassic li a img {
  background-size: cover;
  background-position: 50% 50%;
}

.fancybox-navigation .fancybox-button {
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 130px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  padding-left: 0 !important;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding-right: 0 !important;
}

.fancybox-navigation .fancybox-button > div {
  padding: 11px;
}

.fancybox-navigation .fancybox-button[disabled] {
  display: none;
}

ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink,
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink:hover {
  background: transparent;
}

.custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink {
  background: #000;
}

ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink:hover::after {
  background: none;
  content: "\f002";
  font: normal normal normal 14px/1 FontAwesome;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink::after {
  content: "";
  background: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink::before {
  background: none;
  content: "+all photos";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

html[lang="nl-nl"] .custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink::before {
  content: "+alle foto's";
}

html[lang="de-de"] .custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink::before {
  content: "+alle fotos";
}

html[lang="fr-fr"] .custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink::before {
  content: "+toutes les photos";
}

html[lang="es-es"] .custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink::before {
  content: "+todas las fotos";
}

html[lang="it-it"] .custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink::before {
  content: "+tutte le foto";
}

.custom-gallery ul.sigFreeClassic li.sigFreeThumb:nth-child(5) a.sigFreeLink img.sigFreeImg {
  opacity: 0.6;
}

.fancybox-container,
.fancybox-container * {
  transition: 0s !important;
}

ul.sigFreeClassic li a {
  transition: 0.1s ease-in-out !important;
}

ul.sigFreeClassic li a::after {
  opacity: 0;
  transition: 0.1s ease-in-out !important;
}

ul.sigFreeClassic li a:hover img,
ul.sigFreeClassic li a:hover::after {
  transition: 0.1s ease-in-out !important;
  opacity: 1;
}

.sppb-section.photos ul.sigFreeClassic {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}

.sppb-section.photos ul.sigFreeClassic li:first-child {
  grid-row: initial;
}

.sppb-section.photos ul.sigFreeClassic li,
.sppb-section.photos ul.sigFreeClassic li a,
.sppb-section.photos ul.sigFreeClassic li a img {
  height: 220px !important;
}

.sppb-section.home-gallery ul.sigFreeClassic {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, calc(500px / 2));
  grid-gap: 30px;
  margin: 0 !important;
}

.sppb-section.home-gallery ul.sigFreeClassic li:first-child {
  grid-row: 1 / span 2;
}

.sppb-section.home-gallery ul.sigFreeClassic li {
  border-radius: 15px;
  overflow: hidden;
}

/* .sppb-section.home-gallery ul.sigFreeClassic li:nth-child(6),
.sppb-section.home-gallery ul.sigFreeClassic li:nth-child(7) {
    display: none;
} */

.sppb-carousel-extended-item img {
  height: auto;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

ul > li > p > .fa-light {
  margin-right: 10px;
  width: 30px;
  font-size: 1.5rem;
}

@media (max-width: 1500px) {
  /* #menu-left {
        display: flex;
        align-items: center;
    }

    #sp-header #sp-logo {
        grid-column: 1;
        grid-row: 1;
        padding-right: 30px;
    } */
}

@media (max-width: 1400px) {
  /* ul.sigFreeClassic {
        grid-template-rows: repeat(5, calc(55vh / 5));
    } */
  .sppb-addon-video .sppb-addon-video-local-video-wrap {
    height: 65vh;
  }

  .sppb-addon-video-local-source {
    min-height: 100%;
    margin-top: 0px;
  }

  #modal-menu.active {
    padding: 0;
    overflow-y: auto;
  }

  .sppb-addon-openstreetmap {
    height: 400px !important;
  }

  #modal-menu .modal-menu-inner > .container {
    padding: 50px 0;
    align-items: initial;
  }

  #modal-menu .sppb-column-addons {
    margin-bottom: 0;
  }

  #modal-menu .offcanvas-contact .sppb-column-addons {
    margin-bottom: 0;
    margin-top: 0;
  }

  #sp-main-body {
    padding-top: var(--nav-height) !important;
  }

  /* .sppb-section.home-header {
        height: 70vh;
    } */
  .sppb-section.room-intro {
    padding: 80px 0 100px 0 !important;
  }

  .sppb-section.home-intro {
    padding: 80px 0 !important;
  }
}

@media (max-width: 1240px) {
  #sp-header #modal-menu-toggler {
    display: inline-block;
  }
  #menu-center {
    display: none;
  }
  #menu-left {
    display: flex;
    align-items: center;
  }

  #sp-header #sp-logo {
    grid-column: 1;
    grid-row: 1;
    padding-right: 30px;
  }
}

#modal-menu .navbar .navbar-toggler {
  display: none;
}

/* body.home #modal-menu-toggler {
    display: none !important;
} */

#modal-menu .sppb-addon-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 400;
}

#modal-menu .offcanvas-contact .sppb-column-addons {
  display: block;
}

/* #modal-menu .offcanvas-contact .sppb-column-addons a {
    display: inline-flex !important;
    margin-top: 10px;
    color: #000;
    font-weight: 400;
} */

#modal-menu .offcanvas-contact .sppb-column-addons p {
  color: #000;
  font-size: 1.1rem;
}

/* #modal-menu .offcanvas-contact .sppb-column-addons a:last-child {
    margin-top: 0;
} */

#modal-menu .offcanvas-contact .sppb-column-addons a em {
  font-size: 1.1rem;
  margin-right: 5px;
}

#modal-menu .menuvariant a,
#modal-menu .navbar a {
  color: #000 !important;
  margin-bottom: 5px;
  display: inline-block;
  transition: 0.1s ease-in-out;
}

#modal-menu .menuvariant a:hover,
#modal-menu .navbar a:hover {
  color: var(--black) !important;
}

#modal-menu .menuvariant li.current a,
#modal-menu .navbar li.current a {
  color: var(--blue) !important;
}

#bf-popup {
  z-index: 99999 !important;
}

body.open #bf-popup {
  animation: fade-in 0.3s;
}

#bf-popup__inner {
  animation: slide-fade-in 0.3s !important;
  border-radius: 15px !important;
  overflow: hidden;
}

#bf-popup__header {
  max-width: 1163px !important;
  grid-template-columns: 1fr !important;
  background: #172a5e !important;
}

#bf-popup__header ul {
  display: flex !important;
}

#bf-popup__submit {
  font-weight: bold !important;
  border-radius: 30px !important;
}

#bf-popup__header h2 {
  font-size: 2em !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

#modal-menu .col-sm-5 {
  display: none;
}

@media (max-width: 768px) {
  #menu-left {
    grid-column: 1;
    grid-row: 1;
  }

  #sp-header #sp-logo {
    grid-column: 2;
    grid-row: 1;
  }

  #bf-popup__header ul {
    display: grid !important;
  }

  #bf-popup__header h2 {
    font-size: 1.2rem !important;
  }

  #sp-main-body {
    padding-top: 60px !important;
  }

  .sppb-addon-video .sppb-addon-video-local-video-wrap {
    height: 400px;
  }

  .sppb-addon-video-local-source {
    min-height: 135%;
    margin-top: -65px;
  }

  .sppb-section.bf-inline-container.overlap {
    transform: translateY(0) !important;
    padding-top: 30px !important;
  }

  .sppb-section.bf-inline-container.overlap-bg::before {
    bottom: 0;
  }

  .collapse:not(.show) {
    display: flex;
    justify-content: flex-start;
  }

  #sp-section-1 nav li {
    height: 40px;
  }

  #sp-section-1 nav li a {
    padding: 0 20px;
    height: 35px;
  }

  .sppb-section.rooms-carousel {
    padding: 0 !important;
  }

  .sppb-section.rooms-carousel .sppb-column-addons {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    padding: 0;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a {
    padding-top: 40%;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a:hover {
    padding-top: calc(45% / 2);
    padding-bottom: calc(45% / 2);
  }

  .sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title {
    font-size: 1.9rem;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title span {
    font-size: 1.3rem;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a:hover .sppb-addon-title {
    transform: translateX(-30px) scale(1);
  }

  .sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title em {
    right: 30px;
    bottom: 3px;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a:hover .sppb-addon-title em {
    transform: translateX(10px);
    color: var(--btn-primary-bg);
  }

  .sppb-section.contact-banner .sppb-addon-title {
    text-align: center;
  }

  .sppb-section.contact-banner a {
    display: flex;
    justify-content: center;
  }

  .sppb-btn.home-photos {
    margin: 0;
    top: initial;
    bottom: 15px;
    right: 15px;
  }

  #sp-header #modal-menu {
    overflow-y: auto;
  }

  #modal-menu .modal-menu-inner > .container > .row {
    margin: 0;
  }

  #modal-menu .sppb-column-addons {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    padding-bottom: 0;
  }

  #modal-menu h3 {
    margin-bottom: 6px;
  }

  #modal-menu .modal-menu-inner > .container {
    padding: 0 !important;
  }

  #sp-header #modal-menu .sp-module {
    margin-left: 0;
  }

  #modal-menu .modal-menu-inner > .container {
    display: block;
  }

  #modal-menu .sppb-section {
    padding: 0 0 10px 0 !important;
  }

  .sppb-addon.faq-tabs .sppb-panel-heading {
    padding: 10px 20px 10px 0;
  }

  .sppb-panel-heading .sppb-toggle-direction {
    right: 0;
    top: 25px;
  }

  .sppb-addon.faq-tabs .sppb-panel-heading i {
    font-size: 12px;
  }

  .sppb-addon.faq-tabs .sppb-panel-body {
    padding-right: 0;
  }

  #sp-footer .sppb-section.footer .sppb-column-addons {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  #sp-footer .sppb-section.footer .sppb-addon-title {
    margin-bottom: 20px;
  }

  #sp-footer .sppb-section.footer .navbar-toggler {
    display: none;
  }

  .sppb-section.footer {
    padding: 50px 0 !important;
  }

  .sppb-section.footer-logo {
    padding: 0 !important;
    display: flex;
    justify-content: flex-start;
  }

  #sp-footer .sppb-section.footer-logo .sppb-column-addons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .sppb-section.footer .sppb-section.footer-logo {
    margin-top: 30px !important;
  }

  .sppb-addon-content,
  p,
  li {
    font-size: 1.2rem;
  }

  .sppb-section.page-header-vertical .sppb-addon {
    grid-template-columns: 1fr;
  }

  .sppb-section.faq-intro {
    padding: 70px 0 !important;
  }

  .sppb-addon.home-faq-tabs {
    transform: translateY(0);
  }

  ul.sigFreeClassic {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

  ul.sigFreeClassic li:first-child {
    grid-column: 1 / span 4;
  }

  ul.sigFreeClassic li,
  ul.sigFreeClassic li a,
  ul.sigFreeClassic li img {
    height: 80px !important;
  }

  ul.sigFreeClassic li:first-child,
  ul.sigFreeClassic li:first-child a,
  ul.sigFreeClassic li:first-child img {
    height: 220px !important;
  }

  .sppb-section.photos ul.sigFreeClassic {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 !important;
  }

  .sppb-section.photos ul.sigFreeClassic li,
  .sppb-section.photos ul.sigFreeClassic li a,
  .sppb-section.photos ul.sigFreeClassic li a img {
    height: 100px !important;
  }

  .sppb-section.photos ul.sigFreeClassic li:first-child {
    grid-column: 1;
  }

  .sppb-section.room-intro {
    padding: 50px 0 50px 0 !important;
  }

  .sppb-section.room-intro .sppb-addon-text-block.header {
    grid-template-columns: 1fr;
  }

  .sppb-addon-openstreetmap {
    height: 360px !important;
  }

  #modal-menu.active {
    padding-top: 0px;
  }

  #modal-menu .sppb-addon-title {
    margin: 20px 0;
  }

  #modal-menu .col-sm-5 * {
    padding: 0;
    margin: 0;
  }

  #modal-menu .col-sm-5 {
    display: block;
    width: 100%;
    padding-bottom: 80px;
  }

  #modal-menu .modules-wrapper {
    min-width: 100%;
  }

  #modal-menu .mod-languages.advanced-dropdown {
    display: flex;
    padding-left: 0;
    padding-right: 0;
    justify-content: space-between;
    height: auto;
    margin-top: 20px;
    right: auto;
    left: 0;
    width: calc(100vw - 30px);
  }

  #modal-menu .col-sm-5 > div > div:first-child {
    display: none;
  }

  #modal-menu .modules-wrapper {
    border-left: none;
  }

  #modal-menu .modules-wrapper .sp-module {
    margin-bottom: 0;
  }

  #sp-header .mod-languages.advanced-dropdown ul.lang-inline {
    right: -20px;
    width: calc(100vw - 20px);
  }

  #modal-menu .mod-languages.advanced-dropdown::after {
    content: "Select language";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
  }

  html[lang="nl-nl"] #modal-menu .mod-languages.advanced-dropdown::after {
    content: "Selecteer taal";
  }

  html[lang="en-gb"] #modal-menu .mod-languages.advanced-dropdown::after {
    content: "Select language";
  }

  .sppb-section.home-intro {
    padding: 50px 0 30px 0 !important;
  }

  .sppb-addon.room-amenities > .sppb-addon-content ul li i {
    font-size: 2rem;
  }

  .sppb-section.home-header .sppb-addon-single-image img {
    max-width: 100%;
    padding: 0 20px;
  }

  body .bf-inline__inner > div {
    border: none;
    border-bottom: solid 1px var(--silver);
    border-top: solid 1px var(--silver);
  }

  #menu-center .sp-module-content .menuvariant {
    display: none;
  }

  .sppb-section.rooms-intro .rooms-amenities ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .sppb-section.offer .sppb-addon-content,
  .sppb-section.offer p,
  .sppb-section.offer li {
    font-size: 1.2rem;
  }

  .sppb-section.rooms-intro .rooms-amenities ul li i {
    font-size: 2.5rem;
  }
}

.fancybox-caption.fancybox-caption--separate {
  display: none;
}

.fancybox-toolbar > button,
.fancybox-toolbar > a {
  display: none !important;
}

.fancybox-toolbar > button:last-child {
  display: block !important;
  height: 64px;
  width: 64px;
}

img.leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive {
  height: 47px !important;
  margin-top: -47px !important;
  width: 32px !important;
  margin-left: -18px !important;
}

.sppb-section.explore-item ul {
  list-style-type: none;
  padding-left: 0;
}

.sppb-section.explore-item ul li {
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 15px;
}

.sppb-section.explore-item ul li em {
  margin-top: 6px;
}

.sppb-section.explore-item ul.sub-list li {
  grid-template-columns: 20px 1fr;
}

.sppb-section.explore-item ul.sub-list li em {
  margin-top: 10px;
  font-size: 0.7rem;
}

#sp-bottom-menu {
  position: fixed;
  bottom: 0;
  z-index: 999999;
  left: 0;
  width: 100%;
}

#sp-bottom-menu #sp-mobilemenu {
  padding: 0;
}

#sp-bottom-menu #sp-mobilemenu ul {
  display: flex;
  justify-content: space-evenly;
}

#sp-bottom-menu #sp-mobilemenu ul li:first-child a {
  background: none;
}

#sp-bottom-menu #sp-mobilemenu ul li a {
  font-size: 1rem;
  padding: 5px 0;
  width: 100%;
}

#sp-bottom-menu #sp-mobilemenu ul li a i {
  font-size: 1.1rem;
}

#sp-bottom-menu #sp-mobilemenu div.sppb-row > div {
  padding: 0;
}

@media (max-width: 768px) {
  .sppb-addon-content,
  p,
  li {
    font-size: 1rem;
  }

  #sp-header.header-with-modal-menu a {
    font-size: 1rem;
  }

  #sp-header {
    top: 0;
  }

  body.home #sp-main-body {
    padding-top: 60px !important;
  }

  #sp-section-1 {
    padding: 8px 15px;
    display: none;
  }

  #sp-section-1 #sp-top1 > .sp-column {
    grid-template-columns: 1fr;
  }

  #sp-section-1 #sp-top1 > .sp-column > div {
    grid-column: 1;
    grid-row: 1;
    margin-right: auto;
  }

  #sp-section-1 #sp-top1 > .sp-column > div:first-child {
    grid-column: 2;
    grid-row: 1;
    margin-right: 0;
  }

  #sp-section-1 #sp-top1 > .sp-column > div:last-child {
    display: none;
  }

  .sppb-addon.topbar-info > div > div {
    display: block;
  }

  .sppb-addon.topbar-info .stars {
    display: none;
  }

  .sppb-addon.topbar-info > div > div > * {
    margin-left: 0;
  }

  .sppb-section.home-header {
    margin-top: 0 !important;
    height: 80vh;
  }

  #bf-inline .bf-inline__date-input,
  #bf-inline .bf-inline__options-input {
    min-width: 100%;
    min-height: 55px !important;
  }

  #bf-inline .bf-inline__date-input {
    border-top-right-radius: 12px;
  }

  .sppb-section.home-header .home-hero ul {
    grid-template-columns: 1fr;
  }

  body #bf-inline input[type="submit"] {
    border-top-right-radius: 0;
  }

  .sppb-section.home-header .home-hero ul {
    padding: 10px 0;
  }

  .sppb-section.home-header .home-hero ul li {
    padding: 0 20px;
  }

  .sppb-section.home-usp ul {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
    padding: 20px;
  }

  .sppb-section.home-usp ul li {
    display: grid;
    grid-template-columns: 35px 1fr;
    grid-gap: 0 10px;
    font-size: 1rem;
  }

  .sppb-section.home-usp ul li em {
    font-size: 20px;
    margin: 0;
  }

  #modal-menu .sppb-column-addons {
    grid-gap: 0;
  }

  #modal-menu .offcanvas-contact .sppb-column-addons p {
    font-size: 1rem;
  }

  body #modal-menu a.btn-book {
    height: 50px;
    font-weight: 500;
    margin-top: 10px !important;
  }

  #modal-menu .col-sm-5 span.langName {
    display: none;
  }

  #sp-header .mod-languages.advanced-dropdown ul.lang-inline {
    right: unset;
    left: 0;
    background: #fff;
    width: 100% !important;
    min-width: 91vw !important;
  }

  body.disable-scroll::before {
    display: none;
  }

  .advanced-dropdown .langChooseTitleContainer {
    display: none;
  }

  .mod-languages.advanced-dropdown ul.lang-inline li.lang-active a {
    background: #fff;
  }

  #sp-header .mod-languages.advanced-dropdown ul.lang-inline li a,
  #sp-header .mod-languages.advanced-dropdown ul.lang-inline > li > a > i {
    color: #000;
  }

  #sp-header .mod-languages.advanced-dropdown ul.lang-inline > li > a {
    font-size: 1rem;
  }

  #modal-menu .modal-menu-inner > .container > .row {
    display: grid;
  }

  #modal-menu .modal-menu-inner > .container > .row > div:first-child {
    grid-row: 2;
    padding-bottom: 100px;
  }

  #modal-menu .modal-menu-inner > .container > .row > div:last-child {
    grid-row: 1;
    padding-bottom: 0;
  }

  #modal-menu .mod-languages.advanced-dropdown {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .sppb-addon.faq-tabs .sppb-panel-heading .sppb-panel-title {
    font-size: 1rem;
  }

  #sp-footer .sppb-section.footer .footer-col > .sppb-column-addons {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }

  /* #sp-footer .sppb-section.footer .sppb-column-addons>div {
        justify-content: flex-start !important;
    }

    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(1),
    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(2),
    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(3),
    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(4),
    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(5) {
        grid-column: 1;
    }

    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(1) {
        grid-row: 1;
    }

    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(2) {
        grid-row: 2;
    }

    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(3) {
        grid-row: 3;
    }

    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(4) {
        grid-row: 4;
    }

    #sp-footer .sppb-section.footer .sppb-column-addons>div:nth-child(5) {
        grid-row: 5;
    } */

  #sp-footer .container-inner {
    padding: 0 0 100px 0;
  }

  .sppb-section.home-gallery ul.sigFreeClassic {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 10px;
  }

  .sppb-section.home-gallery ul.sigFreeClassic li:first-child {
    grid-column: 1 / span 3;
  }

  ul.sigFreeClassic li:nth-child(5) {
    display: none;
  }

  .sppb-addon.faq-tabs .sppb-panel-heading {
    padding: 10px 30px 10px 10px;
  }

  .sppb-panel-heading .sppb-toggle-direction {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }

  #sp-footer .sppb-section.footer .sppb-column-addons > div:nth-child(2) > * {
    justify-content: flex-start;
  }

  .sppb-section.rooms-item ul {
    grid-template-columns: 1fr;
    grid-gap: 15px 0;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title em {
    font-size: 1.5rem;
    right: 25px;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title {
    margin-left: 40px;
    padding-right: 40px !important;
    font-size: 1.4rem;
  }

  .sppb-section.rooms-carousel .sppb-column-addons a .sppb-addon-title span {
    font-size: 1.1rem;
  }
  .sppb-carousel-extended-content-wrap {
    padding: 20px !important;
  }
}
