@charset "UTF-8";
:root {
  --white: #FFF;
  --whiteOff: #F5F5F5;
  --white80: #FFFFFFCC;
  --gray: #D2D2D2;
  --grayGreenish: #8E9D8F;
  --grayDark: #515652;
  --gray10: #adadad1a;
  --black: #000;
  --black50: #00000080;
  --black17: #0000002B;
  --purpleDark: #4A3D4C;
  --purpleDarkPale: #4A3D4C;
  --purple: #755A78;
  --green: #86BF6C;
  --greenDark: #1D3B1F;
  --greenLight: #E1ECDE;
  --blueLight: #E8F2F7;
  --blue: #93B7CD;
  --brown: #A9926A;
  --brownDark90: hsla(38, 27%, 32%, 0.9);
  --brownLight: #dcd4c7;
  --bookzoCalAvailable: #CAFFC9;
  --bookzoCalUnavailable: #FB9E9E;
  --red: #EE6A35;
  --gold: #F5F1E6;
  --goldDark: #EEE1BC;
  --yellowLight: #FFF6DE;
  --yellowLightHover: #FFEEBE;
  --gradPurpleDarkToPurple: linear-gradient(90deg, var(--purpleDark), var(--purple));
  --gradBlueLightToWhite: linear-gradient(90deg, var(--blueLight), var(--white));
  --gradGoldDarkToGold: linear-gradient(var(--goldDark) 0%, var(--gold) 650px);
  --gradGoldDarkToWhiteOff: linear-gradient(var(--goldDark) 0%, var(--whiteOff) 650px);
}

/*
Mixins for font sizes and line heights using clamp()
Er zijn twee varianten van de clampCalc functie
- clampCalc - Deze geeft terug wat je erin stop, px/rem/em
- clampCalcRem - Deze zet input waarden px/rem/em automatisch om naar rem
*/
:root {
  --borderRadius: 20px;
  --borderRadiusLarge: 50px;
  --borderRadiusXLarge: 70px;
}

h2 {
  color: var(--purpleDark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}

h3 {
  font-size: 21px;
}

.bookzo h1 {
  color: var(--greenDark);
  font-size: 33px;
  font-weight: 500;
  line-height: 1.3;
}
.bookzo h2 {
  color: var(--grayDark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}
.bookzo h4 {
  color: var(--purpleDarkPale);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.67;
}
.bookzo p {
  color: var(--greenDark);
}
.bookzo p.light {
  color: var(--white);
}
.bookzo p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

body {
  color: var(--purpleDark);
  font-size: clamp(0.938rem, 0.852rem + 0.455vw, 1.125rem);
  font-weight: 400;
  line-height: 1.56;
}

.uk-button {
  border-radius: 30px;
  padding: 7px 20px !important;
  text-transform: none;
  line-height: normal;
}
.uk-button.uk-button-text {
  padding: 0 !important;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.uk-button.uk-button-text::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/images/system/icons/arrowGreenR.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease;
}
.uk-button.uk-button-text:hover::after {
  transform: translateX(4px);
}

#moreInfoButtonResultCard {
  border-radius: 30px;
  padding: 7px 20px !important;
  text-transform: none;
  line-height: normal;
  border: 2px solid var(--purple);
  font-family: "Albert sans";
  font-weight: 500;
  color: var(--white) !important;
  border-color: var(--purple) !important;
  background-color: var(--purple);
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
#moreInfoButtonResultCard:hover {
  color: var(--purple) !important;
  background-color: var(--white);
  border-color: var(--white) !important;
}
#moreInfoButtonResultCard:hover {
  border-color: var(--purple) !important;
}

.radialArch {
  position: relative;
}
.radialArch::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(-1 * clamp(300px, 163.636px + 45.455vw, 1300px));
  transform: translateX(-50%);
  width: clamp(1000px, 672.727px + 109.091vw, 3400px);
  height: clamp(300px, 163.636px + 45.455vw, 1300px);
  background-image: url("/images/system/icons/Arches.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}
.radialArch::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(-1 * clamp(300px, 163.636px + 45.455vw, 1300px));
  transform: translateX(-50%) rotate(180deg);
  width: clamp(1000px, 672.727px + 109.091vw, 3400px);
  height: clamp(300px, 163.636px + 45.455vw, 1300px);
  background-image: url("/images/system/icons/Arches.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}

div:has(+ .radialArch),
.radialArch + div {
  background-color: transparent;
}

.vierNulVier {
  height: 100vh;
  background: var(--gradPurpleDarkToPurple);
  position: relative;
}
.vierNulVier::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0px;
  left: 50%;
  transform: translate(-48%, 20%);
  width: 100vw;
  height: auto;
  z-index: 0;
  background-image: url(/images/logos/soWhatTopper.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1920/349;
}
.vierNulVier > .uk-container {
  height: 100%;
}
.vierNulVier > .uk-container > .uk-grid {
  height: 100%;
  align-items: center;
}
.vierNulVier > .uk-container > .uk-grid h1 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem);
  color: var(--white);
}
.vierNulVier > .uk-container > .uk-grid .uk-button {
  color: var(--white) !important;
  border: solid 2px var(--white);
  background-color: transparent;
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
.vierNulVier > .uk-container > .uk-grid .uk-button:hover {
  color: var(--white) !important;
  background-color: var(--purple);
  border-color: var(--purple);
}

@media (min-width: 640px) {
  .socialBlok.share ul {
    margin-top: 170px;
  }
}
@media (max-width: 639px) {
  .socialBlok.share ul {
    display: flex;
    gap: 20px;
    flex-direction: row;
    width: fit-content;
    margin: 30px auto 20px;
  }
}
.socialBlok.share ul::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -93%);
  width: 62px;
  height: 66px;
  background-image: url("/images/system/icons/deel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 639px) {
  .socialBlok.share ul::before {
    left: 0;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 640px) {
  .socialBlok.soWhat {
    margin-left: 30px;
  }
}
@media (max-width: 639px) {
  .socialBlok.soWhat {
    margin-left: 20px;
  }
}
.socialBlok ul {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--borderRadiusLarge);
  position: relative;
  gap: 30px;
}
.socialBlok ul li {
  padding: 0;
  margin: 0;
}

.gradGoldVert {
  background: var(--gradGoldDarkToGold);
}

.uk-link-text {
  text-decoration: underline;
}

.tekstblok ul {
  list-style: none;
  padding-left: 0;
}
.tekstblok ul li {
  position: relative;
  padding-left: 24px;
}
.tekstblok ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.5em;
  transform: translateY(-15%);
  width: 12px;
  height: 12px;
  background-image: url("/images/system/icons/bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.tekstblok ul li:not(:last-child) {
  margin-bottom: 5px;
}

h3 {
  margin-bottom: 5px;
}

h1 + hr,
h2 + hr,
h3 + hr,
h4 + hr,
h5 + hr,
h6 + hr {
  margin-top: 5px;
  margin-bottom: 40px;
}
h1:has(+ hr),
h2:has(+ hr),
h3:has(+ hr),
h4:has(+ hr),
h5:has(+ hr),
h6:has(+ hr) {
  margin-bottom: 5px;
}

.convertforms input.cf-input {
  height: 50px;
  border-radius: 5px;
  background-color: var(--gold);
  border: none;
}
.convertforms button.cf-btn {
  color: var(--purple) !important;
  border: solid 2px var(--purple);
  background-color: transparent;
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
.convertforms button.cf-btn:hover {
  color: var(--white) !important;
  background-color: var(--purple);
  border-color: var(--purple);
}

.uk-slider .uk-position-center-left-out {
  left: -24px;
}
.uk-slider .uk-position-center-right-out {
  left: unset;
  right: -24px;
}
.uk-slider .uk-slidenav-previous,
.uk-slider .uk-slidenav-next {
  width: 48px;
  height: 48px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.uk-slider {
  /* verberg het standaard SVG-icoon */
}
.uk-slider .uk-slidenav-previous svg,
.uk-slider .uk-slidenav-next svg {
  display: none;
}
.uk-slider .uk-slidenav-previous {
  background-image: url("/images/system/icons/arrowGreenL.svg");
}
.uk-slider .uk-slidenav-next {
  background-image: url("/images/system/icons/arrowGreenR.svg");
}
.uk-slider .uk-overlay-default {
  transition: 0.5s ease-in-out;
  border-radius: var(--borderRadiusLarge);
}
@media (min-width: 640px) {
  .uk-slider .uk-dotnav {
    display: none;
  }
}

.contactList .tel,
.contactList .mail {
  font-size: 18px;
  font-weight: 600;
}
.contactList .tel .uk-link,
.contactList .mail .uk-link {
  color: var(--purple);
}
.contactList .tel .uk-link:hover,
.contactList .mail .uk-link:hover {
  color: var(--green) !important;
}

.nieuwsbrief .convertforms .cf-content-wrap,
.nieuwsbrief .convertforms .cf-form-wrap {
  padding: 0;
}
.nieuwsbrief .convertforms .cf-input {
  background-color: transparent;
  border: 1px solid white;
  padding: 8px 10px;
}
.nieuwsbrief .convertforms .cf-input::placeholder, .nieuwsbrief .convertforms .cf-input:has(option:disabled:checked) {
  color: white;
  opacity: 0.7;
}
.nieuwsbrief .convertforms .cf-btn {
  background-color: black !important;
  color: white !important;
}
.nieuwsbrief .convertforms .cf-btn:hover {
  background-color: white !important;
  color: black !important;
}
.nieuwsbrief .convertforms .cf-two-thirds {
  display: flex;
  align-items: center;
}
.nieuwsbrief .convertforms .cf-checkbox-group {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
}
.nieuwsbrief .convertforms .cf-checkbox-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.nieuwsbrief .convertforms .cf-checkbox-group input[type=checkbox]:checked + .cf-label::before {
  background-image: linear-gradient(#b9e9b3, #a8e4a0);
}
.nieuwsbrief .convertforms .cf-checkbox-group input[type=checkbox]:checked + .cf-label::after {
  display: block;
}
.nieuwsbrief .convertforms .cf-checkbox-group .convertforms .cf-checkbox-group {
  padding: 0px;
}
.nieuwsbrief .convertforms .cf-checkbox-group .cf-label {
  padding-left: 1.8em;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5607843137);
  padding-left: 30px;
}
.nieuwsbrief .convertforms .cf-checkbox-group .cf-label a {
  color: rgba(255, 255, 255, 0.5607843137);
  text-decoration: underline;
}
.nieuwsbrief .convertforms .cf-checkbox-group .cf-label a:hover {
  color: white;
}
.nieuwsbrief .convertforms .cf-checkbox-group .cf-label::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background: white;
  border-radius: 0px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.05);
  opacity: 1;
}
.nieuwsbrief .convertforms .cf-checkbox-group .cf-label::after {
  content: "";
  position: absolute;
  display: none;
  left: 11px;
  top: 14px;
  width: 0.35em;
  height: 0.7em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}

body.s .wj-copyright-row > div {
  flex-direction: column;
  align-content: center;
}

footer .wj-cookies .uk-icon {
  color: var(--purple);
  fill: var(--gold);
}
footer .wj-cookies .el-content {
  color: var(--purple);
}
footer .wj-cookies .el-content:hover {
  cursor: pointer;
  color: var(--green);
}

.wj-copyright .wj-copyright-row > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
  column-gap: 20px;
}
.wj-copyright .wj-copyright-row > div .wj-owner {
  font-size: 1rem;
  color: var(--white);
}
@media (max-width: 363px) {
  .wj-copyright .wj-copyright-row > div .wj-owner {
    text-align: center;
  }
}
.wj-copyright .wj-copyright-row > div .wj-typewriter {
  width: 100%;
  box-sizing: border-box;
}
.wj-copyright .wj-copyright-row > div .wj-typewriter span,
.wj-copyright .wj-copyright-row > div .wj-typewriter a {
  font-size: 1rem;
}
.wj-copyright .wj-copyright-row > div .wj-typewriter span {
  color: var(--white);
}
.wj-copyright .wj-copyright-row > div .wj-typewriter a {
  color: var(--white);
}
.wj-copyright .wj-copyright-row > div .wj-typewriter a:hover {
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
}
.wj-copyright .wj-copyright-row > div .wj-typewriter .website-section {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  padding: 0px;
}
.wj-copyright .wj-copyright-row > div .wj-typewriter .website-section .wj-heart {
  align-items: flex-end !important;
}
@media (max-width: 363px) {
  .wj-copyright .wj-copyright-row > div .wj-typewriter .website-section {
    flex-direction: column;
    align-items: center !important;
  }
  .wj-copyright .wj-copyright-row > div .wj-typewriter .website-section .wj-heart {
    flex-wrap: nowrap !important;
  }
}
.wj-copyright .wj-copyright-row > div .wj-typewriter .website-section .heart-icon {
  position: relative;
  margin: 0 0 0 2px;
  fill: var(--gold);
}
.wj-copyright .wj-copyright-row > div .wj-typewriter .website-section .typewriter-container {
  display: inline-block;
  min-width: 10ch;
  text-align: left;
}
.wj-copyright .wj-copyright-row > div .wj-typewriter .website-section .typewriter-text {
  display: inline-block;
  white-space: nowrap;
}
.wj-copyright .wj-copyright-row > div .wj-typewriter .website-section .cursor {
  animation: blink 0.7s infinite;
  display: inline-block;
  color: var(--gold);
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/*COOKIE CONSENT*/
.cc-revoke {
  background-color: transparent !important;
  background-size: cover;
  width: 32px;
  height: 32px;
}

.cc-btn,
div.cc-checkboxes-container a.cc-btn.cc-allow {
  border: none;
  padding: 15px 30px 15px 30px;
  border-radius: 100px !important;
  margin-top: 10px;
}
.cc-btn:hover,
div.cc-checkboxes-container a.cc-btn.cc-allow:hover {
  text-decoration: none !important;
}

div.cc-checkbox-container {
  width: 100%;
}

span.cc-cookie-settings-toggler {
  display: none;
}

div.cc-checkbox-container input:checked + span {
  background-color: #19a319 !important;
}

div.cc-checkbox-container input + span {
  background-color: #f7148b !important;
}

div.cc-settings-label {
  font-size: 15px !important;
  font-weight: normal !important;
  margin: 15px 0 !important;
  color: #000 !important;
  opacity: 1 !important;
}

div.cc-checkboxes-container div.cc-checkbox-container a {
  pointer-events: none !important;
}

.cc-message-text {
  line-height: 150%;
}

.cc-link {
  opacity: 1 !important;
  color: #2e1352 !important;
  text-decoration: none !important;
  line-height: 30px;
  margin-bottom: 0 !important;
}

a.cc-link.cc-cookie::before,
a.cc-link.cc-privacy::before {
  content: "";
  float: left;
  margin-right: 10px;
  line-height: 30px;
  height: 30px;
  width: 30px;
  background-image: url(/images/system/icons/arrow.svg);
  background-size: cover;
}

.cc-link:hover {
  color: #000 !important;
}

.cc-highlight {
  margin-top: 50px;
}

.cc-header {
  font-size: 120%;
  color: #000;
  margin: 0;
}
.cc-header p {
  margin: 0;
}

div.cc-gdpr-component-view a.cc-btn.cc-allow {
  background-color: white;
}

div.cc-gdpr-component-view a.cc-btn.cc-allowall {
  background-color: #c7fdbb;
}

.tm-toolbar {
  background-color: var(--gold);
}
.tm-toolbar .uk-subnav > * {
  padding-left: 30px;
}
.tm-toolbar .uk-subnav > * a {
  color: var(--purple) !important;
  font-size: 16px !important;
}
.tm-toolbar .uk-subnav > * a:hover {
  color: var(--green) !important;
}
.tm-toolbar .uk-subnav > * a[aria-haspopup]::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background: url("/images/system/icons/dropdown_arrow.svg") no-repeat center;
  background-size: contain;
}
.tm-toolbar .uk-subnav > * a[aria-expanded=true] {
  color: var(--green) !important;
}
.tm-toolbar .uk-subnav > * a[aria-expanded=true]::before {
  transform: rotate(180deg);
}
.tm-toolbar .mod-languages {
  font-weight: 500;
}
.tm-toolbar .mod-languages:has(> form > .lang-inline.displayed) .langChoose::before {
  transform: rotate(180deg);
}
.tm-toolbar .mod-languages .langChoose {
  position: relative;
  background-color: transparent !important;
  color: var(--purple);
}
.tm-toolbar .mod-languages .langChoose:hover {
  color: var(--green) !important;
}
.tm-toolbar .mod-languages .langChoose::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background: url("/images/system/icons/dropdown_arrow.svg") no-repeat center;
  background-size: contain;
}
.tm-toolbar .mod-languages .langChoose .caret {
  display: none;
}
.tm-toolbar .mod-languages .lang-inline {
  z-index: 981 !important;
  background-color: var(--gold) !important;
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
  padding: 20px;
}
.tm-toolbar .mod-languages .lang-inline li {
  display: block;
}
.tm-toolbar .mod-languages .lang-inline li:not(:first-child) {
  margin-top: 5px;
}
.tm-toolbar .mod-languages .lang-inline li a {
  color: var(--purple) !important;
}
.tm-toolbar .mod-languages .lang-inline li a:hover {
  color: var(--green) !important;
}

.uk-dropdown {
  width: fit-content !important;
  box-shadow: none;
  padding: 35px;
  background-color: var(--gold);
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
}
.uk-dropdown h2:not(:first-child) {
  margin-top: 20px;
}
.uk-dropdown h2 {
  font-size: 1.3125rem !important;
  color: var(--purpleDark);
  font-weight: 500;
}
.uk-dropdown .uk-link-text:hover {
  color: var(--green) !important;
}

header {
  margin-bottom: -99px;
}
@media (min-width: 960px) {
  header .uk-navbar-container {
    background: linear-gradient(to right, var(--white) 50%, transparent 50%) !important;
    padding-right: clamp(10px, 3.326px + 2.225vw, 30px);
  }
}
header .uk-navbar-container .uk-container {
  background-color: var(--white) !important;
  padding-top: clamp(10px, -2.857px + 4.286vw, 25px);
  padding-bottom: clamp(10px, -2.857px + 4.286vw, 25px);
  padding-right: clamp(20px, 2.857px + 5.714vw, 40px);
  padding-left: clamp(20px, 2.857px + 5.714vw, 40px);
}
@media (min-width: 1600px) {
  header .uk-navbar-container .uk-container {
    position: relative;
  }
  header .uk-navbar-container .uk-container::after {
    content: "";
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    width: clamp(50px, -175px + 14.063vw, 95px);
    height: 100%;
    background-color: var(--white);
    border-bottom-right-radius: var(--borderRadiusLarge);
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  header .uk-navbar-container .uk-container .uk-navbar {
    padding-right: 20px;
  }
}
@media (max-width: 1599px) {
  header .uk-navbar-container .uk-container {
    border-bottom-right-radius: clamp(20px, 6.364px + 4.545vw, 50px);
  }
}
header .uk-navbar-container .uk-container .uk-navbar .uk-logo {
  width: clamp(120px, 49.412px + 23.529vw, 200px);
}
header .uk-navbar-container .uk-container .uk-navbar .mobBook {
  padding: clamp(2px, 0.235px + 0.588vw, 4px) clamp(8px, -2.588px + 3.529vw, 20px) !important;
  line-height: normal;
  font-size: clamp(0.938rem, 0.772rem + 0.882vw, 1.125rem);
}
header .uk-navbar-container .uk-container .uk-navbar .uk-navbar-nav {
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
  gap: clamp(25px, 10px + 1.25vw, 30px);
}
header .uk-navbar-container .uk-container .uk-navbar .uk-navbar-nav li:last-of-type a::before {
  display: none;
}
header .uk-navbar-container .uk-container .uk-navbar .uk-navbar-nav li a {
  font-size: clamp(1.063rem, 0.875rem + 0.25vw, 1.125rem);
}
header .uk-navbar-container .uk-container .uk-navbar .uk-navbar-nav .buttonGreen {
  color: var(--white) !important;
  border: solid 2px var(--white);
  background-color: var(--green);
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
header .uk-navbar-container .uk-container .uk-navbar .uk-navbar-nav .buttonGreen:hover {
  color: var(--green) !important;
  background-color: var(--white);
  border-color: var(--white);
}
header .uk-navbar-container .uk-container .uk-navbar .uk-navbar-nav .buttonGreen {
  border-radius: 30px;
  padding: 7px 20px !important;
  text-transform: none;
  border-color: var(--green);
}
header .uk-navbar-container .uk-container .uk-navbar .uk-navbar-nav .buttonGreen:hover {
  border-color: var(--green);
}

.tm-main > div:nth-of-type(2) {
  padding-top: 100px;
}

.header.home {
  height: clamp(400px, 307.692px + 30.769vw, 800px);
}
.header.home .uk-background-norepeat {
  height: clamp(400px, 307.692px + 30.769vw, 800px);
}
.header.foto {
  height: clamp(400px, 376.923px + 7.692vw, 500px);
}
.header.foto .uk-background-norepeat {
  height: clamp(400px, 376.923px + 7.692vw, 500px);
}
.header.contact h1 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem) !important;
  color: var(--purpleDark) !important;
  text-shadow: none !important;
  font-weight: 500 !important;
}
.header.contact .map img {
  border-radius: clamp(35px, -107.5px + 14.844vw, 130px);
}
@media (max-width: 639px) {
  .header.contact .openingTable {
    margin: 0 -15px;
  }
  .header.contact .openingTable td {
    padding: 2px 5px;
  }
  .header.contact .openingTable td:not(:first-child) {
    white-space: wrap !important;
    width: 33%;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .header.contact .openingTable {
    margin-right: -100px;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .header.contact .openingTable {
    margin-right: -100px;
  }
}
.header.faq {
  background: var(--gradGoldDarkToWhiteOff);
  padding-bottom: clamp(100px, 60.769px + 13.077vw, 270px);
}
.header.faq h1 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem) !important;
  color: var(--purpleDark) !important;
  text-shadow: none !important;
  font-weight: 500 !important;
}
.header.faq .uk-accordion .el-item {
  border-top: none;
}
.header.faq .uk-accordion .el-item .el-title {
  color: var(--purpleDark);
  font-weight: 600;
}
.header.faq .uk-accordion .el-item .el-title:hover {
  color: var(--purple);
}
.header.faq .uk-accordion .el-item .el-title .uk-icon svg rect:first-of-type {
  height: 2px;
}
.header.faq .uk-accordion .el-item .el-title .uk-icon svg rect:last-of-type {
  width: 2px;
}
.header.blog {
  text-align: center;
}
.header.blog .uk-container .uk-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 639px) {
  .header.blog .uk-container .uk-breadcrumb {
    flex-wrap: wrap;
    margin: 0;
  }
  .header.blog .uk-container .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    margin: 0;
  }
}
.header.blog .uk-container .uk-breadcrumb::before {
  content: "";
  width: 14px;
  height: 18px;
  flex: 0 0 14px;
  background-color: var(--purple);
  -webkit-mask: url("/images/system/icons/pin.png") no-repeat center/contain;
  mask: url("/images/system/icons/pin.png") no-repeat center/contain;
}
.header.blog .uk-container .uk-breadcrumb > :not(:last-child) span {
  color: var(--purple);
  font-weight: 600;
}
.header.blog .uk-container .uk-breadcrumb > :not(:last-child) span:hover {
  text-decoration: underline;
}
.header.blog .uk-container .uk-breadcrumb > :last-child > span {
  color: var(--brown);
  font-weight: 500;
}
.header.blog .uk-container .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  content: "|";
  color: var(--purple);
  margin: 0;
}
.header.blog .uk-container .col1 {
  padding-bottom: 110px;
  position: relative;
}
.header.blog .uk-container .col1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 86px;
  height: 78px;
  background-image: url("/images/system/icons/arrowDown.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 639px) {
  .header.blog .uk-container .col1 .mainImage {
    margin: 0 -20px;
  }
}
.header.blog .uk-container .col1 .mainImage img {
  border-radius: clamp(20px, -6.471px + 8.824vw, 50px);
}
.header.blog .uk-container h1 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem) !important;
  color: var(--purpleDark) !important;
  text-shadow: none !important;
  font-weight: 500 !important;
}
.header .uk-background-norepeat > .uk-container, .header > .uk-container {
  height: 100%;
}
.header .uk-background-norepeat > .uk-container > .uk-grid, .header > .uk-container > .uk-grid {
  height: 100%;
}
.header .uk-background-norepeat > .uk-container > .uk-grid h1, .header > .uk-container > .uk-grid h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2.188rem, 1.394rem + 4.231vw, 5.625rem);
  text-wrap: balance;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.zoekBoekzo {
  background-color: transparent;
  position: relative;
  z-index: 5;
}
@media (min-width: 1200px) {
  .zoekBoekzo {
    margin-top: -102px;
  }
  .zoekBoekzo .bookzo-search > .form-inline {
    padding-right: clamp(30px, -240px + 22.5vw, 120px);
    padding-bottom: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .zoekBoekzo {
    margin-top: -97px;
  }
  .zoekBoekzo .bookzo-search > .form-inline {
    padding-right: clamp(30px, -240px + 22.5vw, 120px);
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .zoekBoekzo {
    margin-top: -134px;
  }
  .zoekBoekzo .bookzo-search > .form-inline {
    padding-right: clamp(30px, -240px + 22.5vw, 120px);
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 639px) {
  .zoekBoekzo {
    margin-top: -55px;
  }
  .zoekBoekzo .bookzo-search > .form-inline {
    padding-right: clamp(30px, -240px + 22.5vw, 120px);
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.zoekBoekzo {
  font-family: "Albert Sans", sans-serif !important;
}
.zoekBoekzo .uk-container {
  background: var(--gradPurpleDarkToPurple);
  border-top-right-radius: var(--borderRadiusLarge);
}
@media (min-width: 640px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline {
    justify-content: flex-end;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline {
    justify-content: space-between;
  }
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline {
  align-items: center;
  padding-top: 25px;
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline input {
  background-color: transparent;
  border: none;
  color: var(--white);
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  min-width: unset !important;
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline input.form-control-active {
  outline: none;
  box-shadow: none !important;
  border: none !important;
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline input.form-control-active:focus {
  outline: none;
  box-shadow: none !important;
  border: none !important;
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-persons {
  position: relative;
  margin-right: 0 !important;
}
@media (min-width: 960px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-persons::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: var(--brown);
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-persons {
    width: 100%;
  }
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-persons .input-group-prepend .input-group-text {
  background-color: transparent;
  border: none;
  color: var(--white);
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group {
  position: relative;
}
@media (min-width: 960px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: var(--brown);
  }
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .input-group-prepend {
    display: none;
  }
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .input-group-prepend .input-group-text {
  background-color: transparent;
  border: none;
  color: var(--white);
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .form-control-datepicker {
  padding: 15px 0;
}
@media (min-width: 640px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .form-control-datepicker {
    width: 180px;
  }
}
@media (min-width: 960px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .form-control-datepicker {
    text-align: center;
  }
}
@media (max-width: 639px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .bookzo-search-arrival {
    text-align: left;
  }
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .bookzo-search-departure {
  padding-left: clamp(0px, -196px + 20.417vw, 49px);
}
@media (max-width: 639px) {
  .zoekBoekzo .uk-container .bookzo-search > .form-inline .bookzo-search-arrival-departure .input-group .bookzo-search-departure {
    text-align: left;
    padding-left: 51px;
  }
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline button {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  height: 50px;
  border-radius: 30px;
  background-color: var(--brown);
  border: none;
  padding: 0 30px;
  min-width: clamp(130px, -190px + 33.333vw, 210px);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s ease;
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline button:hover {
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.15);
}
.zoekBoekzo .uk-container .bookzo-search > .form-inline button:hover::after {
  left: 125%;
  transition: left 0.5s ease;
}

.intro {
  background-color: var(--gold);
}
@media (min-width: 640px) {
  .intro:not(.textSec) > .uk-container {
    padding-right: 0;
  }
}
.intro:not(.textSec) > .uk-container > .uk-grid h2 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem) !important;
}
@media (min-width: 640px) {
  .intro:not(.textSec) > .uk-container > .uk-grid > div:first-of-type {
    margin-top: 60px;
  }
}
@media (min-width: 640px) {
  .intro:not(.textSec) > .uk-container > .uk-grid > div:last-of-type {
    padding-left: 100px;
  }
}
@media (min-width: 640px) {
  .intro > .uk-container {
    padding-right: 0;
  }
}
.intro > .uk-container > .uk-grid h2 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem) !important;
}
.intro > .uk-container > .uk-grid .uk-panel > .uk-margin > picture > img {
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}
.intro > .uk-container > div .uk-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 55px !important;
  gap: 10px;
}
@media (max-width: 959px) {
  .intro > .uk-container > div .uk-list {
    gap: 10px;
    justify-content: space-around;
  }
}
@media (max-width: 460px) {
  .intro > .uk-container > div .uk-list {
    flex-direction: column;
    gap: 30px;
  }
}
.intro > .uk-container > div .uk-list li {
  width: 120px;
  margin-top: 0;
}
.intro > .uk-container > div .uk-list li > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-left: 0 !important;
  width: 100%;
}
.intro > .uk-container > div .uk-list li > div > div {
  padding: 0;
}
.intro > .uk-container > div .uk-list li > div .el-content {
  text-align: center;
  text-wrap: balance;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .intro > .uk-container > div .uk-list li:nth-of-type(2), .intro > .uk-container > div .uk-list li:nth-of-type(4) {
    width: clamp(35px, -17.364px + 5.455vw, 59px);
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .intro > .uk-container > div .uk-list li:nth-of-type(2), .intro > .uk-container > div .uk-list li:nth-of-type(4) {
    width: clamp(35px, 24.091px + 3.636vw, 59px);
  }
}
@media (max-width: 639px) {
  .intro > .uk-container > div .uk-list li:nth-of-type(2), .intro > .uk-container > div .uk-list li:nth-of-type(4) {
    display: none;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .intro > .uk-container > div .uk-list li:nth-of-type(2), .intro > .uk-container > div .uk-list li:nth-of-type(4) {
    display: none;
  }
}

.gridPhotoOverlay .row > div {
  display: grid;
  gap: 0;
}
@media (min-width: 1200px) {
  .gridPhotoOverlay .row > div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) and (hover: none) {
  .gridPhotoOverlay .row > div > div:nth-child(2n) .uk-overlay-default {
    background-color: var(--brownDark90);
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .gridPhotoOverlay .row > div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) and (max-width: 1199px) and (hover: none) {
  .gridPhotoOverlay .row > div > div:nth-child(2) .uk-overlay-default, .gridPhotoOverlay .row > div > div:nth-child(3) .uk-overlay-default, .gridPhotoOverlay .row > div > div:nth-child(6) .uk-overlay-default {
    background-color: var(--brownDark90);
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .gridPhotoOverlay .row > div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 640px) and (max-width: 959px) and (hover: none) {
  .gridPhotoOverlay .row > div > div:nth-child(2) .uk-overlay-default, .gridPhotoOverlay .row > div > div:nth-child(3) .uk-overlay-default, .gridPhotoOverlay .row > div > div:nth-child(6) .uk-overlay-default {
    background-color: var(--brownDark90);
  }
}
@media (max-width: 639px) {
  .gridPhotoOverlay .row > div {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 639px) and (hover: none) {
  .gridPhotoOverlay .row > div > div:nth-child(2n) .uk-overlay-default {
    background-color: var(--brownDark90);
  }
}
@media (hover: hover) and (pointer: fine) {
  .gridPhotoOverlay .row > div > div .uk-overlay > div {
    display: none;
  }
  .gridPhotoOverlay .row > div > div:hover .uk-overlay > div {
    display: block;
  }
}
@media (hover: none) {
  .gridPhotoOverlay .row > div > div .uk-overlay-default {
    opacity: 1;
  }
}
.gridPhotoOverlay .row > div > div > div {
  width: 100%;
  min-height: 370px;
  position: relative;
  background-color: var(--black17);
}
.gridPhotoOverlay .row > div > div > div img {
  width: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.gridPhotoOverlay .row > div > div > div .uk-overlay {
  padding-left: clamp(25px, 16.923px + 2.692vw, 60px);
  padding-right: clamp(25px, 16.923px + 2.692vw, 60px);
}
.gridPhotoOverlay .row > div > div > div .uk-overlay h3 {
  font-size: clamp(1.563rem, 1.447rem + 0.615vw, 2.063rem);
  font-weight: 700;
}
.gridPhotoOverlay .row > div > div > div .uk-overlay .uk-button {
  color: var(--white) !important;
  border: solid 2px var(--white);
  background-color: transparent;
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
.gridPhotoOverlay .row > div > div > div .uk-overlay .uk-button:hover {
  color: var(--purple) !important;
  background-color: var(--white);
  border-color: var(--white);
}

.textSec.center {
  text-align: center;
}
.textSec.center > .uk-container {
  max-width: 930px;
  margin: 0 auto;
}
.textSec.arrowDown {
  position: relative;
}
.textSec.arrowDown::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 86px;
  height: 78px;
  background-image: url("/images/system/icons/arrowDown.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.textSec.uk-section-secondary {
  background: var(--gradBlueLightToWhite);
}
.textSec.uk-section-secondary .uk-button {
  font-weight: 400;
}
.textSec.uk-section-secondary .uk-button-default {
  color: var(--purple) !important;
  border-color: var(--white) !important;
  background-color: var(--white);
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
.textSec.uk-section-secondary .uk-button-default:hover {
  color: var(--white) !important;
  background-color: var(--purple);
  border-color: var(--purple) !important;
}
.textSec:not(.overFam) .uk-slideshow-items {
  aspect-ratio: 7/6 !important;
  border-radius: clamp(35px, -107.5px + 14.844vw, 130px);
}
.textSec.overFam {
  padding-top: 65px;
}
.textSec.overFam .uk-slideshow-items {
  aspect-ratio: 7/8 !important;
  border-radius: clamp(35px, -107.5px + 14.844vw, 130px);
}
.textSec .uk-slideshow-items {
  max-width: 450px;
  margin: 0 auto;
}
.textSec video {
  aspect-ratio: 7/6 !important;
  width: 100%;
}
.textSec video {
  border-radius: var(--borderRadius);
}
.textSec .tekstblok:not(:last-child) {
  margin-bottom: 30px;
}
.textSec .slogan {
  font-weight: 600;
}
.textSec > .uk-container > .uk-grid > div:not(:first-of-type) {
  padding-left: clamp(30px, -60px + 9.375vw, 90px);
}

.bigCard.tips {
  background-color: var(--gold);
}
.bigCard.blogs .uk-width-expand {
  background-color: var(--gold) !important;
}
.bigCard.blogs .uk-width-expand .el-title::before {
  background-image: url("/images/system/icons/blog.svg") !important;
}
.bigCard.uk-section-primary {
  background-color: var(--white);
}
.bigCard.uk-section-primary .uk-width-expand {
  background-color: var(--gold) !important;
}
.bigCard.quote .uk-width-expand {
  background: var(--blueLight) !important;
  color: var(--purpleDark) !important;
}
.bigCard.quote .uk-width-expand .el-title {
  position: relative;
  color: var(--purpleDark) !important;
}
.bigCard.quote .uk-width-expand .el-title::before {
  background-image: url("/images/system/icons/quote.svg") !important;
}
.bigCard.quote .uk-width-expand .el-content {
  font-style: italic;
}
.bigCard .uk-slider .uk-position-center-left,
.bigCard .uk-slider .uk-position-center-right {
  top: clamp(90px, -16.195px + 35.398vw, 210px);
}
.bigCard .el-item {
  position: relative;
}
.bigCard .el-item > .uk-grid {
  margin-left: 0;
}
.bigCard .el-item > .uk-grid > div:first-of-type {
  padding: 0;
}
@media (min-width: 960px) {
  .bigCard .el-item > .uk-grid > div:first-of-type {
    margin-bottom: 40px;
  }
}
@media (max-width: 959px) {
  .bigCard .el-item > .uk-grid > div:first-of-type {
    margin-bottom: calc(0px - clamp(40px, -80px + 18.75vw, 100px));
    z-index: 2;
    padding: 0 clamp(20px, 1.818px + 6.061vw, 60px);
    text-align: right;
  }
  .bigCard .el-item > .uk-grid > div:first-of-type img {
    max-width: 500px;
  }
}
.bigCard .el-item > .uk-grid .uk-width-expand {
  background: var(--white);
  border-radius: clamp(35px, -107.5px + 14.844vw, 130px);
}
@media (min-width: 960px) {
  .bigCard .el-item > .uk-grid .uk-width-expand {
    margin-top: 40px;
    margin-right: -345px;
    padding-top: clamp(60px, 7.5px + 5.469vw, 95px);
    padding-right: clamp(380px, 290px + 9.375vw, 440px);
    padding-bottom: clamp(60px, 7.5px + 5.469vw, 95px);
    padding-left: clamp(65px, -40px + 10.938vw, 135px);
  }
}
@media (max-width: 959px) {
  .bigCard .el-item > .uk-grid .uk-width-expand {
    padding: 60px 30px 30px;
  }
}
.bigCard .el-item > .uk-grid .uk-width-expand .el-title {
  position: relative;
}
.bigCard .el-item > .uk-grid .uk-width-expand .el-title::before {
  content: "";
  position: relative;
  left: 0;
  top: 0;
  width: 62px;
  height: 66px;
  background-image: url("/images/system/icons/iconTip.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  display: block;
  padding-bottom: 20px;
}
.bigCard .el-item > .uk-grid .el-image {
  border-radius: clamp(35px, -107.5px + 14.844vw, 130px);
  aspect-ratio: 7/6;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.newsletter > .uk-section {
  padding-top: 70px;
  padding-bottom: clamp(100px, 67.692px + 10.769vw, 240px);
}
@media (min-width: 640px) {
  .newsletter > .uk-section {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.newsletter > .uk-section .uk-container {
  background-color: var(--white);
  padding: clamp(45px, 38.182px + 2.273vw, 60px) clamp(25px, 9.091px + 5.303vw, 60px) clamp(35px, 19.091px + 5.303vw, 70px);
  border-radius: var(--borderRadius);
  position: relative;
}
.newsletter > .uk-section .uk-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40px);
  width: 94px;
  height: 88px;
  background-image: url("/images/system/icons/heart.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.newsletter > .uk-section .uk-container h2 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem) !important;
}
.newsletter > .uk-section .uk-container .convertforms .cf-control-group:not(:first-child) {
  margin-top: 5px;
}
.newsletter > .uk-section .uk-container .convertforms .cf-control-group:last-child {
  margin-top: 10px;
}
.newsletter > .uk-section .uk-container .convertforms input {
  font-family: "Albert sans";
}
.newsletter > .uk-section .uk-container button {
  color: var(--purpleDark) !important;
  border: solid 2px var(--purpleDark);
  background-color: var(--transparent);
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
.newsletter > .uk-section .uk-container button:hover {
  color: var(--white) !important;
  background-color: var(--purpleDark);
  border-color: var(--purpleDark);
}
.newsletter > .uk-section .uk-container button {
  border-radius: 50px;
  opacity: 1;
  padding: 7px 20px !important;
  font-family: "Albert sans";
  font-weight: 500;
}

.directOnline {
  text-align: center;
}
.directOnline.top {
  padding-bottom: 220px;
}
.directOnline.top h1 {
  font-size: clamp(1.5rem, 1.244rem + 1.364vw, 2.063rem) !important;
  font-weight: 500;
}
.directOnline.bot {
  margin-top: -150px;
}
@media (max-width: 639px) {
  .directOnline.bot {
    padding-bottom: 0;
  }
}
.directOnline.bot > .uk-container {
  max-width: 930px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .directOnline.bot > .uk-container {
    padding-left: clamp(20px, -60px + 8.333vw, 40px);
    padding-right: clamp(20px, -60px + 8.333vw, 40px);
  }
}
@media (max-width: 639px) {
  .directOnline.bot > .uk-container {
    padding-left: 0;
    padding-right: 0;
  }
  .directOnline.bot > .uk-container .rowBrown {
    border-radius: 0;
  }
}
.directOnline .rowBrown {
  background-color: var(--brown);
  padding: 35px clamp(25px, 1.667px + 3.646vw, 60px) 60px;
  border-radius: var(--borderRadius);
  position: relative;
}
.directOnline .rowBrown::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 354px;
  max-height: 100%;
  background-image: url("/images/system/icons/archBottom.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.directOnline .rowBrown > .uk-grid {
  position: relative;
  z-index: 2;
}
.directOnline .rowBrown > .uk-grid h2 {
  color: var(--white);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
}
.directOnline .rowBrown > .uk-grid hr {
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
}
.directOnline .rowBrown > .uk-grid .buttons > .uk-grid {
  justify-content: center;
  gap: clamp(20px, 13.333px + 1.042vw, 30px);
}
@media (min-width: 960px) {
  .directOnline .rowBrown > .uk-grid .buttons > .uk-grid .el-item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .directOnline .rowBrown > .uk-grid .buttons > .uk-grid .el-item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 639px) {
  .directOnline .rowBrown > .uk-grid .buttons > .uk-grid .el-item {
    width: 100%;
  }
}
.directOnline .rowBrown > .uk-grid .buttons > .uk-grid .el-item .uk-button {
  color: var(--purpleDark) !important;
  border-color: var(--white) !important;
  background-color: var(--white);
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
.directOnline .rowBrown > .uk-grid .buttons > .uk-grid .el-item .uk-button:hover {
  color: var(--white) !important;
  background-color: var(--purpleDark);
  border-color: var(--purpleDark) !important;
}
.directOnline .rowBrown > .uk-grid .buttons > .uk-grid .el-item .uk-button {
  width: 100%;
  position: relative;
  padding-right: 2.5rem !important;
  text-align: left;
  font-size: clamp(1rem, 0.917rem + 0.208vw, 1.125rem);
}
.directOnline .rowBrown > .uk-grid .buttons > .uk-grid .el-item .uk-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/images/system/icons/arrowBlueR.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.overlaySlider > .uk-container > .uk-grid > div > *:not(.uk-slider) {
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
}
.overlaySlider > .uk-container > .uk-grid > div h3 {
  font-size: 1.125rem;
  font-weight: 500;
}
.overlaySlider > .uk-container .uk-slider {
  border-radius: var(--borderRadiusLarge);
}
@media (hover: none) {
  .overlaySlider > .uk-container .uk-slider .uk-slider-items > div:nth-child(2n) .uk-overlay-default {
    background-color: rgba(130, 112, 81, 0.9);
  }
}
.overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item {
  border-radius: var(--borderRadiusLarge);
  background-color: var(--black17);
}
.overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item img {
  mix-blend-mode: multiply;
}
@media (hover: hover) and (pointer: fine) {
  .overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item .uk-overlay > div {
    display: none;
  }
  .overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item:hover .uk-overlay > div {
    display: block;
  }
}
@media (hover: none) {
  .overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item .uk-overlay-default {
    opacity: 1;
  }
}
.overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item .uk-overlay {
  padding-left: 30px;
  padding-right: 30px;
}
.overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item .uk-overlay .uk-button {
  color: var(--white) !important;
  border: solid 2px var(--white);
  background-color: transparent;
  font-size: 1rem !important;
  transition: all 0.3s ease-in-out;
}
.overlaySlider > .uk-container .uk-slider .uk-slider-items .el-item .uk-overlay .uk-button:hover {
  color: var(--purpleDark) !important;
  background-color: var(--white);
  border-color: var(--white);
}

.parkMap {
  background-color: var(--greenLight);
}
.parkMap .popOver > .uk-inline > picture > img {
  border-radius: var(--borderRadius);
}
.parkMap .popOver > .uk-inline .el-marker {
  position: absolute;
  background: rgb(from var(--purple) r g b/0) !important;
  padding: clamp(3px, 0.3px + 0.9vw, 12px);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.parkMap .popOver > .uk-inline .el-marker svg {
  display: none;
}
.parkMap .popOver > .uk-inline .el-marker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.25;
  transform: scale(1);
  transform-origin: center;
  animation: markerPulse 6s infinite ease-out;
  pointer-events: none;
  z-index: 0;
}
.parkMap .popOver > .uk-inline .el-marker::after {
  content: "i";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(0.313rem, 0.106rem + 1.1vw, 1rem);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .parkMap .popOver > .uk-inline .el-marker:hover {
    background: var(--purple) !important;
    box-shadow: 0 0 8px var(--purple);
  }
  .parkMap .popOver > .uk-inline .el-marker:hover::after {
    opacity: 1;
  }
  .parkMap .popOver > .uk-inline .el-marker:hover::before {
    animation-play-state: paused;
    opacity: 0.1;
  }
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 1)::before {
  animation-delay: 0s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 2)::before {
  animation-delay: 0.12s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 3)::before {
  animation-delay: 0.04s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 4)::before {
  animation-delay: 0.22s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 5)::before {
  animation-delay: 0.24s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 6)::before {
  animation-delay: 0.34s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 7)::before {
  animation-delay: 0.78s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 8)::before {
  animation-delay: 0.92s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 9)::before {
  animation-delay: 0.96s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 10)::before {
  animation-delay: 1.42s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 11)::before {
  animation-delay: 1.5s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 12)::before {
  animation-delay: 1.62s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-of-type(13n + 13)::before {
  animation-delay: 2.1s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(8)::before {
  animation-delay: 0s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(7)::before {
  animation-delay: 0.3s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(6)::before {
  animation-delay: 0.6s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(5)::before {
  animation-delay: 0.9s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(4)::before {
  animation-delay: 1.2s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(3)::before {
  animation-delay: 1.5s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(2)::before {
  animation-delay: 1.8s;
}
.parkMap .popOver > .uk-inline .el-marker:nth-last-of-type(1)::before {
  animation-delay: 2.1s;
}
@keyframes markerPulse {
  0% {
    transform: scale(1);
    opacity: 0.25;
  }
  20% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.parkMap .popOver > .uk-inline .uk-drop .uk-card {
  border-bottom-left-radius: var(--borderRadius);
  border: none;
  box-shadow: 0 0px 16px rgb(from var(--black) r g b/0.25);
}
.parkMap .popOver > .uk-inline .uk-drop .uk-card .uk-card-media-top img {
  max-height: 140px !important;
}
.parkMap .popOver > .uk-inline .uk-drop .uk-card .uk-card-body {
  padding: 20px;
}
.parkMap .popOver > .uk-inline .uk-drop .uk-card .uk-card-body .el-title {
  font-size: clamp(1.188rem, 1.159rem + 0.154vw, 1.313rem);
  font-weight: 500;
}
.parkMap .popOver > .uk-inline .uk-drop .uk-card .uk-card-body .el-content {
  margin-top: 10px;
  font-size: 0.875rem;
}
.parkMap .uk-accordion .el-item {
  background-color: var(--white);
  border-radius: var(--borderRadius);
  border: none;
  padding-top: 20px;
  padding-bottom: 20px;
}
.parkMap .uk-accordion .el-item .el-title {
  padding-left: 20px;
  padding-right: 20px;
}
.parkMap .uk-accordion .el-item .el-title .uk-icon svg rect:first-of-type {
  height: 2px;
}
.parkMap .uk-accordion .el-item .el-title .uk-icon svg rect:last-of-type {
  width: 2px;
}
.parkMap .uk-accordion .el-item .uk-accordion-content > *:not(picture) {
  padding-left: 20px;
  padding-right: 20px;
}
.parkMap .uk-accordion .el-item.uk-open {
  background-color: var(--white);
}

@media (min-width: 960px) {
  .tipsBlog:not(.team) > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item {
    padding: 20px;
    border-radius: 0 0 0 var(--borderRadiusXLarge);
  }
  .tipsBlog:not(.team) > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item:hover {
    background-color: var(--gold);
  }
}
.tipsBlog > .uk-container > .uk-grid > div > *:not(.blogGrid) {
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
}
.tipsBlog > .uk-container > .uk-grid > div .blogGrid:not(.team) .el-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid {
  row-gap: 20px;
}
.tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item > .uk-grid {
  height: 100%;
}
@media (min-width: 640px) {
  .tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item > .uk-grid > .uk-first-column {
    height: 100%;
  }
}
.tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item .el-title {
  font-size: 1.125rem;
  font-weight: 600;
}
.tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item .el-content {
  font-size: 1rem;
}
.tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item .el-image {
  height: 100%;
  min-height: 210px;
  border-radius: 0 var(--borderRadiusLarge) var(--borderRadiusLarge) var(--borderRadiusLarge);
}
@media (min-width: 640px) and (max-width: 959px) {
  .tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item .el-image {
    height: 260px;
  }
}
@media (max-width: 639px) {
  .tipsBlog > .uk-container > .uk-grid > div .blogGrid > .uk-grid .el-item .el-image {
    max-height: 350px;
  }
}

footer:not(.wj-copyright) {
  position: relative;
}
footer:not(.wj-copyright)::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 52%;
  transform: translate(-50%, -60%);
  width: 100vw;
  max-width: 1920px;
  aspect-ratio: 1920/348;
  background-image: url("/images/logos/soWhatTopper.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
footer:not(.wj-copyright) .footerSec {
  background-color: var(--gold);
  position: relative;
}
footer:not(.wj-copyright) .footerSec::after {
  content: "";
  position: absolute;
  bottom: -90px;
  right: -85px;
  width: clamp(226px, 156.7px + 23.1vw, 457px);
  height: clamp(216px, 153.3px + 20.9vw, 425px);
  background-image: url("/images/logos/soWhatWatermark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 639px) {
  footer:not(.wj-copyright) .footerSec::after {
    bottom: 50px;
  }
}
footer:not(.wj-copyright) .footerSec > .uk-container {
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:first-of-type {
    width: 330px;
  }
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:not(:first-of-type) {
    width: calc((100% - 330px) / 5);
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:nth-of-type(1), footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:nth-of-type(4) {
    width: 40%;
  }
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:not(:nth-of-type(1)):not(:nth-of-type(4)) {
    width: 30%;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:nth-of-type(1), footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:nth-of-type(3), footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:nth-of-type(5) {
    width: 60%;
  }
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div:not(:nth-of-type(1)):not(:nth-of-type(3)):not(:nth-of-type(5)) {
    width: 40%;
  }
}
@media (max-width: 639px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:first-of-type > div {
    width: 100%;
  }
}
@media (max-width: 959px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type {
    margin-top: 30px;
  }
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type > div:last-of-type {
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .socialBlok {
    padding-bottom: 40px;
  }
}
@media (max-width: 959px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .socialBlok {
    display: flex;
    justify-content: center;
  }
}
footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .socialBlok ul {
  background-color: transparent;
  padding: 0;
}
footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .socialBlok ul li {
  padding: 14px;
  background-color: var(--white);
  border-radius: var(--borderRadiusLarge);
}
footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .labelLogo {
  max-width: 300px;
  padding: 44px 75px;
  background-color: var(--white);
  border-top-left-radius: var(--borderRadiusLarge);
  border-top-right-radius: var(--borderRadiusLarge);
}
@media (max-width: 959px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .labelLogo {
    margin: 0 auto;
  }
}
footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .labelLogo img {
  width: 100%;
}
@media (min-width: 960px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .footerLinks:last-of-type {
    padding-bottom: 40px;
  }
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .footerLinks {
    text-align: right;
    font-size: 0.875rem;
  }
}
@media (max-width: 959px) {
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .footerLinks {
    text-align: center;
    background-color: var(--purpleDark);
    color: var(--white);
    padding: 15px 50px 0;
    margin: 0 -40px;
    font-size: 1rem;
  }
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .footerLinks a {
    color: var(--white);
  }
  footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .footerLinks a:hover {
    color: var(--gold);
    text-decoration: underline !important;
  }
}
footer:not(.wj-copyright) .footerSec > .uk-container > .uk-grid:last-of-type .footerLinks .el-content {
  white-space: nowrap;
}

.wj-copyright {
  background-color: var(--purpleDark);
  color: var(--white);
  position: relative;
}
.wj-copyright a {
  color: var(--white);
}
.wj-copyright a:hover {
  color: var(--gold);
  text-decoration: underline !important;
}
.wj-copyright .videoLink {
  font-size: 1rem;
}

.uk-dropbar {
  background-color: transparent;
  padding: 0;
}
@media (min-width: 960px) and (max-width: 1199px) {
  .uk-dropbar {
    max-width: calc(100% - 80px) !important;
  }
}
.uk-dropbar > div {
  color: var(--white);
  background-image: url(/images/logos/soWhatVerticalWatermark.svg), var(--gradPurpleDarkToPurple);
  background-repeat: no-repeat, no-repeat;
  background-position: right -5px center, 0 0;
  background-size: auto 100%, 100% 100%;
}
.uk-dropbar > div > div {
  margin-top: 15px;
}
.uk-dropbar > div > div > .uk-grid > div.uk-grid-margin {
  margin: 5px !important;
}
.uk-dropbar > div > div > .uk-grid > div:first-of-type li a {
  font-weight: 500;
  font-size: 18px;
}
.uk-dropbar > div > div > .uk-grid > div .uk-nav li {
  padding: 15px 25px;
}
.uk-dropbar > div > div > .uk-grid > div .uk-nav li:has(.buttonGreen) {
  display: none;
}
.uk-dropbar > div > div > .uk-grid > div .uk-nav li a {
  color: var(--white) !important;
  padding: 0;
}
.uk-dropbar > div > div > .uk-grid > div .uk-nav li.uk-active a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/images/system/icons/arrowGreenR.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease;
}
.uk-dropbar > div > div > .uk-grid > div:not(:last-child) {
  position: relative;
  margin-bottom: 15px;
}
.uk-dropbar > div > div > .uk-grid > div:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 40px;
  right: 40vw;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--white) 5%, var(--white) 30%, transparent 100%);
}
.uk-dropbar > div > div > .uk-grid > div:has(> .FalangMob) {
  margin-bottom: 25px !important;
  margin-top: 20px !important;
}
.uk-dropbar > div > div > .uk-grid > div:has(> .FalangMob) .inputbox {
  position: relative;
  background-color: transparent !important;
  color: var(--white);
  border: none;
  padding: 5px 0 5px 25px;
}
.uk-dropbar > div > div > .uk-grid > div:has(> .FalangMob) .inputbox:hover {
  color: var(--green) !important;
}

.es-widget .eapps-instagram-feed-posts-grid-load-more-container {
  display: none !important;
}

:root {
  --attention-color: #ff0000;
  --contrast-color: var(--blue);
  --contrast-color-soft: #0000ff;
  --primary-color: var(--gold);
  --secondary-color: #ff00ff;
  --third-color: #00ffff;
  --fourth-color: #ffa500;
  --input-field-color: var(--gray);
  --disabled-color: var(--gray);
  --background-color-A: var(--white);
  --background-color-B: var(--gold);
  --button-primary-color: var(--brown);
  --button-primary-hover-color: var(--blue);
  --button-primary-text-color: var(--white);
  --button-primary-hover-text-color: var(--white);
  --button-secondary-color: var(--purple);
  --button-secondary-hover-color: var(--blue);
  --button-secondary-text-color: var(--purple);
  --button-secondary-hover-text-color: var(--white);
  --calendar-available-color: var(--bookzoCalAvailable);
  --calendar-unavailable-color: var(--bookzoCalUnavailable);
  --calendar-unavailable-text: var(--grayGreenish);
  --text-color-dark: var(--purpleDark);
  --text-color-light: var(--white);
  --text-link-color: var(--purpleDark);
  --text-link-hover-color: var(--purpleDark);
  --border-radius-card: 20px;
  --border-radius-header-images: 20px;
  --border-radius-result-cards-images: 10px;
  --border-radius-button: 50px;
  --border-radius-pricetags: 10px;
  --border-radius-input: 20px;
  --padding-result-cards: 20px;
}

.you-are-saving .bookzo-currency span {
  color: var(--white) !important;
}

.bookzo .usp {
  margin: 15px 10px;
}
.bookzo .usp .bookzo-object-part br {
  display: none;
}
.bookzo .persons .icon-wrapper {
  align-items: flex-end;
  font-size: 16px;
}
.bookzo .persons .icon-wrapper .bookzo-icon-wrapper {
  background-color: var(--contrast-color);
  mask: url("/images/bookzo/bookzo-personen.svg") no-repeat center/contain;
  -webkit-mask: url("/images/bookzo/bookzo-personen.svg") no-repeat center/contain;
  width: 17px;
  height: 18px;
  display: block;
}
.bookzo .persons .icon-wrapper .bookzo-icon-wrapper svg {
  display: none;
}
.bookzo .pets .icon-wrapper {
  align-items: flex-end;
  font-size: 16px;
}
.bookzo .pets .icon-wrapper .bookzo-icon-wrapper {
  background-color: var(--contrast-color);
  mask: url("/images/bookzo/huisdieren.svg") no-repeat center/contain;
  -webkit-mask: url("/images/bookzo/huisdieren.svg") no-repeat center/contain;
  width: 20px;
  height: 20px;
  display: block;
}
.bookzo .pets .icon-wrapper .bookzo-icon-wrapper svg {
  display: none;
}

.bs-datepicker-container,
.bs-datepicker-head {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo-bootstrap .badge-secondary,
.bookzo-bootstrap .badge-primary {
  border-radius: 99px !important;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.invalid-feedback {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boekzozoeken {
  z-index: 4;
  background: transparent;
}
@media (max-width: 639px) {
  .boekzozoeken {
    margin-block: -20px;
    background-color: var(--clay);
  }
}
@media (min-width: 640px) {
  .boekzozoeken {
    margin-top: -51px;
  }
}
.boekzozoeken .uk-container {
  max-width: 650px;
}
.boekzozoeken .uk-container .uk-width-1-1 .uk-panel {
  background-color: white;
}
.boekzozoeken .uk-width-1-1\@m {
  padding-inline-start: 0px;
}
.boekzozoeken .uk-grid.tm-grid-expand.uk-child-width-1-1.uk-grid-margin .uk-grid.tm-grid-expand.uk-child-width-1-1.uk-grid-margin {
  margin-left: 0px;
  padding-inline: 0px;
}
.boekzozoeken .uk-grid.tm-grid-expand.uk-child-width-1-1.uk-grid-margin .uk-grid.tm-grid-expand.uk-child-width-1-1.uk-grid-margin .uk-width-1-1 {
  padding-inline-start: 0;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.5);
}
.boekzozoeken bookzo-search {
  position: relative;
  z-index: 10;
}
.boekzozoeken .bookzo-search .form-inline .form-group-inline .form-control {
  min-width: 0px;
}
.boekzozoeken .bookzo-search .form-inline .form-group-inline .form-control.form-control-active {
  border: 0px solid black !important;
  box-shadow: none !important;
}
.boekzozoeken .form-group-inline.mr-2.bookzo-search-persons {
  position: relative;
}
@media (min-width: 640px) {
  .boekzozoeken .form-group-inline.mr-2.bookzo-search-persons input {
    height: 100px;
  }
}
.boekzozoeken .form-group-inline.mr-2.bookzo-search-persons::after {
  content: "";
  position: absolute;
  top: 0%;
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 50px;
  z-index: 0;
}
.boekzozoeken .form-group-inline.mr-2.bookzo-search-arrival-departure {
  position: relative;
}
@media (min-width: 640px) {
  .boekzozoeken .form-group-inline.mr-2.bookzo-search-arrival-departure input {
    height: 100px;
  }
  .boekzozoeken .form-group-inline.mr-2.bookzo-search-arrival-departure::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: 2px;
    height: 75%;
    z-index: 2;
    background-color: var(--clay-light);
  }
  .boekzozoeken .form-group-inline.mr-2.bookzo-search-arrival-departure::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 75%;
    z-index: 2;
    background-color: var(--clay-light);
  }
}
.boekzozoeken label {
  display: none !important;
}
.boekzozoeken form {
  justify-content: space-between;
}
.boekzozoeken input {
  font-size: 16px !important;
  letter-spacing: 2.2px;
}
.boekzozoeken ::placeholder {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boekzozoeken ::placeholder {
  color: var(--text-color-dark);
}
.boekzozoeken .form-control {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boekzozoeken .bookzo-search-arrival-departure {
  order: 2;
  flex-basis: calc((100% - 90px) / 2);
  min-width: calc((100% - 90px) / 2);
}
.boekzozoeken .bookzo-search-arrival-departure .input-group {
  flex-wrap: nowrap !important;
}
.boekzozoeken .bookzo-search-arrival-departure .input-group:focus-visible {
  outline: none;
}
.boekzozoeken .bookzo-search-arrival-departure .input-group-text {
  border-radius: 0px;
  background-color: var(--fourth-color);
  border: 0px;
  box-shadow: none;
  display: none;
}
.boekzozoeken .bookzo-bootstrap .mr-2,
.boekzozoeken .bookzo-bootstrap .mx-2 {
  margin-right: 0 !important;
}
.boekzozoeken .bookzo-search-arrival {
  text-align: center;
  width: 100% !important;
}
.boekzozoeken .bookzo-search-departure {
  text-align: center;
  width: 100% !important;
}
.boekzozoeken .bookzo-search-persons {
  flex-basis: calc((100% - 220px) / 2);
}
.boekzozoeken .bookzo-search-persons .input-group {
  order: 1;
}
.boekzozoeken .bookzo-search-persons .input-group-text {
  border-radius: 99px;
  background-color: var(--fourth-color);
  border: 0px;
  box-shadow: none;
  height: 50px;
}
.boekzozoeken .bookzo-search .form-inline {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.boekzozoeken .bookzo-search-submit {
  order: 3;
  background-color: var(--fresh-grass);
  border: 0px;
  padding: 0px;
  min-width: 150px;
  height: 50px;
}
@media (min-width: 640px) {
  .boekzozoeken .bookzo-search-submit {
    height: 100px;
  }
  .boekzozoeken .bookzo-search-submit button {
    padding: 20px;
  }
}
.boekzozoeken .bookzo-search-submit {
  color: var(--text-color-dark);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boekzozoeken .bookzo-search-submit {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.833rem + 1.22vw, 1.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.boekzozoeken .bookzo-search-submit:hover {
  background-color: var(--button-color);
  color: var(--text-color-light);
  cursor: pointer;
}
.boekzozoeken .form-group-inline.mr-2.bookzo-search-persons {
  position: relative;
}
.boekzozoeken .form-group-inline.mr-2.bookzo-search-persons::before {
  content: "";
  background-image: url("/images/bookzo/bookzo-personen.svg");
  background-size: cover;
  display: block;
  width: 22px;
  height: 25px;
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-25%);
}
.boekzozoeken input {
  border: 0px;
  height: 50px;
  margin: 0px;
  text-align: center;
}
.boekzozoeken input:focus-visible {
  outline: none;
}
.boekzozoeken .input-group,
.boekzozoeken .input-group-prepend {
  height: 40px;
  border: 0px;
  max-height: 40px;
  margin: 0px;
  line-height: 40px;
}
@media (min-width: 640px) {
  .boekzozoeken .input-group,
  .boekzozoeken .input-group-prepend {
    height: 100px;
    max-height: 100px !important;
  }
}
.boekzozoeken .uk-accordion-title::before {
  display: none;
}
.boekzozoeken.accordion {
  margin-block: 20px;
}
.boekzozoeken.accordion .el-item {
  padding-block: 20px;
}
.boekzozoeken.accordion .el-item a {
  background-color: var(--dark);
  border-radius: var(--border-radius-button);
  padding: 20px 20px;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boekzozoeken.accordion .el-item a {
  font-weight: normal !important;
  color: var(--text-color-light);
  text-decoration: none;
  letter-spacing: 1.5px;
}
.boekzozoeken.accordion .uk-open a {
  background-color: rgba(60, 60, 59, 0.5529411765);
}
.boekzozoeken.accordion .uk-open bookzo-search .bookzo-search {
  background: var(--clay);
}
.boekzozoeken.accordion form {
  background: none;
  border: none;
}
.boekzozoeken.accordion svg path {
  fill: var(--attention-color);
}
.boekzozoeken.accordion .form-group-inline.mr-2.bookzo-search-persons {
  padding-left: 0px;
}
.boekzozoeken.accordion .form-group-inline.mr-2.bookzo-search-persons::after {
  display: none;
}
.boekzozoeken.accordion .bookzo-search-persons .input-group-text {
  border-radius: 0px;
}
.boekzozoeken.accordion .form-control-composition {
  background-color: var(--fourth-color);
  border-radius: 0 var(--border-radius-button) var(--border-radius-button) 0;
}
.boekzozoeken.accordion input {
  background-color: var(--fourth-color);
  padding: 0 !important;
}
.boekzozoeken.accordion input.bookzo-search-arrival {
  border-radius: var(--border-radius-button) 0 0 var(--border-radius-button) !important;
  text-align: center;
}
.boekzozoeken.accordion input.bookzo-search-departure {
  border-radius: 0 var(--border-radius-button) var(--border-radius-button) 0 !important;
  border-left: 1px solid var(--third-color);
  text-align: center;
}
.boekzozoeken.accordion .form-inline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.boekzozoeken.accordion .form-inline .form-group-inline {
  width: 100%;
}
.boekzozoeken.accordion .form-inline .btn {
  align-self: stretch;
  border-radius: var(--border-radius-button);
  font-size: 17px;
}

.lastminutes #resultCard .card-body {
  position: absolute;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.lastminutes #resultCard .card-body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.lastminutes #resultCard .card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 0;
}
.lastminutes #resultCard .card-body .card-prices {
  display: block !important;
  color: white;
  text-shadow: black 0px 0px 5px;
}
.lastminutes #resultCard .card-body .card-prices .price-arrival-departure {
  color: white;
  text-shadow: black 0px 0px 5px;
}
.lastminutes #resultCard .card-body .card-prices bookzo-currency {
  color: white;
  text-shadow: black 0px 0px 5px;
}
.lastminutes #resultCard .card-body .card-prices .badge {
  text-shadow: none;
}
.lastminutes #resultCard .card-body .card-prices .badge bookzo-currency {
  color: white;
  text-shadow: none;
}
.lastminutes #resultCard .card-body .card-prices svg path {
  fill: white;
}
.lastminutes #resultCard .card-body .card-body-inner-wrapper {
  width: 100%;
  z-index: 1;
}
.lastminutes #resultCard .card-body .card-body-inner-wrapper .card-title-text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: space-between;
  z-index: 1;
}
.lastminutes #resultCard .card-body .card-body-inner-wrapper .card-title-text-wrapper .card-text.mb-2 {
  position: absolute;
  left: 20px;
  bottom: 0;
}
.lastminutes #resultCard .card-body .card-title-name h3 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.lastminutes #resultCard .card-body .card-title-name h3 {
  color: var(--text-color-light);
}
.lastminutes #resultCard .card-body p {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.lastminutes #resultCard .card-body p {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.833rem + 1.22vw, 1.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.lastminutes #resultCard .card-body p {
  color: var(--text-color-light);
}
.lastminutes #resultCard .card-body .location,
.lastminutes #resultCard .card-body .location .icon-wrapper {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.lastminutes #resultCard .card-body .location,
.lastminutes #resultCard .card-body .location .icon-wrapper {
  color: var(--text-color-light);
  text-transform: none;
}
.lastminutes #resultCard .card-body .persons {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.lastminutes #resultCard .card-body .persons {
  color: var(--text-color-light);
  margin-right: 10px;
}
.lastminutes #resultCard .card-body .persons .bookzo-icon-wrapper {
  background-image: url("/images/system/avatar.svg");
  width: 26px;
  height: 25px;
  background-size: cover;
  display: block;
}
.lastminutes #resultCard .card-body .pets {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.lastminutes #resultCard .card-body .pets {
  color: var(--text-color-light);
}
.lastminutes #resultCard .card-body .pets .bookzo-icon-wrapper {
  background-color: var(--contrast-color);
  mask: url("/images/bookzo/huisdieren.svg") no-repeat center/contain;
  -webkit-mask: url("/images/bookzo/huisdieren.svg") no-repeat center/contain;
  width: 23px;
  height: 22px;
  display: block;
}
.lastminutes #resultCard .card-body .pets .bookzo-icon-wrapper svg {
  display: none;
}
.lastminutes #resultCard .card-description {
  display: none;
}
.lastminutes #resultCard .card-more-info {
  text-align: left !important;
}
.lastminutes #resultCard bookzo-object-usp {
  text-align: left !important;
  color: var(--text-color-light);
}
.lastminutes #resultCard .card-bottom {
  z-index: 2;
}
.lastminutes #resultCard .card-bottom button {
  box-shadow: none !important;
  color: var(--text-link-color) !important;
  text-decoration: none;
  border: 2px solid var(--text-link-color);
  border-radius: var(--border-radius-button);
  padding: 10px 25px;
  background-color: var(--white80);
  backdrop-filter: blur(2px);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.lastminutes #resultCard .card-bottom button {
  text-transform: none;
  letter-spacing: normal;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.lastminutes #resultCard .card-bottom button:hover {
  cursor: pointer;
  color: var(--button-primary-hover-text-color) !important;
  border: 2px solid var(--button-primary-hover-color);
  background-color: var(--button-primary-hover-color);
}
.lastminutes #resultCard .card-bottom button {
  padding-inline: clamp(0.625rem, -0.208rem + 4.44vw, 3.125rem);
  z-index: 2;
}
.lastminutes #resultCard #bookButtonResultCard {
  display: none;
}

.alert.alert-dates-limited.alert-info.mt-2.ml-2.mr-2.ng-star-inserted {
  display: none;
}

.alleenicons.kenmerken_icons.mobile {
  display: none;
}
.alleenicons.kenmerken_icons.mobile .persons {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.alleenicons.kenmerken_icons.mobile .persons {
  color: var(--text-color-dark);
}
.alleenicons.kenmerken_icons.mobile .pets {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.alleenicons.kenmerken_icons.mobile .pets {
  color: var(--text-color-dark);
  position: relative;
}
.alleenicons.kenmerken_icons.mobile .pets .icon-wrapper {
  display: flex;
  align-items: center;
}
.alleenicons.kenmerken_icons.mobile .pets .icon-wrapper svg {
  display: none;
}
.alleenicons.kenmerken_icons.mobile .pets .icon-wrapper::before {
  content: url("/images/designimages/huisdieren_green.svg");
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
}

.rating.mobile {
  display: none;
}

.form-control-active {
  border: 0px solid transparent !important;
}
.form-control-active:focus, .form-control-active:focus-visible {
  border: 0px solid transparent !important;
}
.form-control-active.ng-touched, .form-control-active.ng-dirty {
  border: 0px solid transparent !important;
}

.terms-and-conditions {
  margin-inline-start: 30px;
}
.terms-and-conditions .btn-link {
  margin-top: 0px !important;
}

.payment-details-text {
  margin-inline-start: 30px;
}

.price-discount {
  font-size: 16px;
  color: grey !important;
}
.price-discount span {
  color: grey !important;
}

.breadcrumbs_section {
  background: var(--gradPurpleDarkToPurple);
}

.cdk-overlay-container .gallery-modal-content img {
  border-radius: var(--border-radius-card);
}

.imageheader {
  position: relative;
  background: var(--gradPurpleDarkToPurple);
}
.imageheader .uk-background-norepeat {
  background-repeat: repeat;
}
@media (max-width: 639px) {
  .imageheader .uk-background-norepeat {
    padding-block: 20px;
    min-height: 20vh !important;
  }
}
.imageheader .uk-background-norepeat .uk-container-xlarge {
  max-width: 1400px;
}
.imageheader bookzo-object-images {
  position: relative;
  z-index: 2;
}
.imageheader bookzo-object-images .images-wrapper {
  flex-direction: row;
  height: 40vh;
  min-height: 450px;
}
@media (max-width: 639px) {
  .imageheader bookzo-object-images .images-wrapper {
    height: 20vh;
  }
}
.imageheader bookzo-object-images .images-wrapper .item {
  flex: 50%;
}
.imageheader bookzo-object-images .images-wrapper .item .main-image {
  height: 100%;
  padding: 7px;
  transform: none !important;
  transition: none;
  border-radius: var(--border-radius-card);
}
.imageheader bookzo-object-images .images-wrapper .smaller-images {
  flex: 50%;
  height: 100%;
  display: grid;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-column: 1/2;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}
.imageheader bookzo-object-images .images-wrapper .smaller-images .item {
  width: 100%;
  max-width: 100%;
}
.imageheader bookzo-object-images .images-wrapper .smaller-images .item img {
  transform: none !important;
  transition: none;
  padding: 7px;
  border-radius: var(--border-radius-card);
}
.imageheader bookzo-object-images .images-wrapper .btn {
  right: auto;
  left: 30px;
  bottom: 30px;
  border: none !important;
}
.imageheader .btn.btn-secondary.ng-star-inserted {
  box-shadow: none !important;
  color: var(--text-link-color) !important;
  text-decoration: none;
  border: 2px solid var(--text-link-color);
  border-radius: var(--border-radius-button);
  padding: 10px 25px;
  background-color: var(--white80);
  backdrop-filter: blur(2px);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.imageheader .btn.btn-secondary.ng-star-inserted {
  text-transform: none;
  letter-spacing: normal;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.imageheader .btn.btn-secondary.ng-star-inserted:hover {
  cursor: pointer;
  color: var(--button-primary-hover-text-color) !important;
  border: 2px solid var(--button-primary-hover-color);
  background-color: var(--button-primary-hover-color);
}
.imageheader .btn.btn-secondary.ng-star-inserted {
  box-shadow: transparent !important;
}
.imageheader::after {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100vw;
  height: 76px;
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.section-with-sticky-column .price-arrival-departure.text-muted {
  font-weight: 700;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
@media (max-width: 639px) {
  .section-with-sticky-column .price-arrival-departure.text-muted {
    margin-top: 10px;
  }
}
.section-with-sticky-column .total-price-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}
.section-with-sticky-column .total-price-wrapper .total-wrapper {
  font-weight: 600;
  font-size: 1.4375rem;
}
.section-with-sticky-column .bookzo p {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
@media (min-width: 1600px) {
  .section-with-sticky-column .bookzo {
    gap: 110px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .section-with-sticky-column .bookzo {
    gap: 110px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.section-with-sticky-column .bookzo h1 {
  font-family: "Alan Sans";
  font-size: clamp(1.25rem, 0.75rem + 2.67vw, 2.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.section-with-sticky-column .bookzo h2 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.section-with-sticky-column .bookzo p {
  margin: 0 !important;
}
.section-with-sticky-column .bookzo bookzo-object-description span {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .bookzo .bookzo-read-more,
.section-with-sticky-column .bookzo .description {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .bookzo .bookzo-read-more .btn-link,
.section-with-sticky-column .bookzo .description .btn-link {
  box-shadow: none !important;
  color: var(--text-link-color) !important;
  text-decoration: none;
  border: 2px solid var(--text-link-color);
  border-radius: var(--border-radius-button);
  padding: 10px 25px;
  background-color: var(--white80);
  backdrop-filter: blur(2px);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .bookzo .bookzo-read-more .btn-link,
.section-with-sticky-column .bookzo .description .btn-link {
  text-transform: none;
  letter-spacing: normal;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.section-with-sticky-column .bookzo .bookzo-read-more .btn-link:hover,
.section-with-sticky-column .bookzo .description .btn-link:hover {
  cursor: pointer;
  color: var(--button-primary-hover-text-color) !important;
  border: 2px solid var(--button-primary-hover-color);
  background-color: var(--button-primary-hover-color);
}
.section-with-sticky-column .bookzo hr {
  border-top: 1px solid var(--grayGreenish);
}
.section-with-sticky-column .bookzo .usps .uk-grid {
  justify-content: flex-start;
}
.section-with-sticky-column .bookzo .usps .uk-grid .uk-first-column {
  width: auto;
}
.section-with-sticky-column .bookzo .icon-wrapper {
  padding-inline-end: 20px;
}
.section-with-sticky-column .bookzo .persons-pets-location {
  display: flex;
  flex-direction: row;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .bookzo .persons-pets-location .location {
  display: none;
}
.section-with-sticky-column .bookzo .persons-pets-location [class*=featureId] {
  display: none;
}
.section-with-sticky-column .bookzo bookzo-object-features .feature-group-heading {
  font-family: "Alan Sans";
  font-size: 1rem;
  line-height: 1;
  color: var(--text-color-dark);
}
.section-with-sticky-column .bookzo bookzo-object-features .feature-groups {
  gap: 20px;
}
@media (max-width: 639px) {
  .section-with-sticky-column .bookzo bookzo-object-features .feature-groups {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .section-with-sticky-column .bookzo bookzo-object-features .feature-groups .feature-group {
    min-width: calc(33.3333333333% - 20px);
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .section-with-sticky-column .bookzo bookzo-object-features .feature-groups .feature-group {
    min-width: calc(50% - 20px);
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .section-with-sticky-column .bookzo bookzo-object-features .feature-groups .feature-group {
    min-width: calc(33.3333333333% - 20px);
  }
}
.section-with-sticky-column .bookzo bookzo-object-features ul {
  padding-inline-start: 0;
}
.section-with-sticky-column .bookzo bookzo-object-features ul li {
  list-style-type: none;
  position: relative;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .bookzo bookzo-object-features ul li {
  padding-inline-start: 20px;
  margin-block-end: 7px;
}
.section-with-sticky-column .bookzo bookzo-object-features ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  background-color: var(--contrast-color);
  mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  -webkit-mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  width: 12px;
  height: 12px;
  display: block;
}
.section-with-sticky-column .uk-card.uk-sticky {
  z-index: 3;
  border: 2px solid var(--primary-color);
  padding-inline-start: 30px;
  border-radius: var(--border-radius-card);
  padding: 20px;
}
@media (max-width: 639px) {
  .section-with-sticky-column .uk-card.uk-sticky {
    padding: 20px;
    padding-block-start: 40px;
    margin-inline-start: 10px;
  }
}
@media (max-width: 959px) {
  .section-with-sticky-column .uk-card.uk-sticky {
    margin-inline-start: 0px;
  }
}
.section-with-sticky-column .uk-card.uk-sticky .kenmerken_icons {
  margin-top: 10px;
}
.section-with-sticky-column .uk-card.uk-sticky .average-rating-container {
  display: flex;
  justify-content: flex-end;
}
.section-with-sticky-column .uk-card.uk-sticky .average-rating-container .average-rating-number {
  top: 15px;
  position: relative;
  font-family: "Albert Sans";
  font-weight: bold;
  font-size: 1.875rem;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  color: var(--text-color-light) !important;
  line-height: 1 !important;
  position: relative;
  z-index: 2;
}
.section-with-sticky-column .uk-card.uk-sticky .average-rating-container .average-rating-number::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: var(--purple);
  border-radius: 100%;
  z-index: -1;
  transform: translateY(-17px);
}
@media (max-width: 639px) {
  .section-with-sticky-column .uk-card.uk-sticky .average-rating-container .average-rating-number {
    top: 0px;
  }
}
.section-with-sticky-column .uk-card.uk-sticky h3 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.section-with-sticky-column .uk-card.uk-sticky h3 {
  margin-top: 5px !important;
}
.section-with-sticky-column .uk-card.uk-sticky span {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .uk-card.uk-sticky ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0px;
  padding-inline-start: 0;
  margin-block-end: 20px;
}
@media (max-width: 639px) {
  .section-with-sticky-column .uk-card.uk-sticky ul {
    margin-block-end: 0px;
  }
}
.section-with-sticky-column .uk-card.uk-sticky ul li {
  list-style-type: none;
  position: relative;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .uk-card.uk-sticky ul li {
  padding-inline-start: 20px;
  margin-block-end: 7px;
}
.section-with-sticky-column .uk-card.uk-sticky ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  background-color: var(--contrast-color);
  mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  -webkit-mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  width: 12px;
  height: 12px;
  display: block;
}
@media (max-width: 959px) {
  .section-with-sticky-column .uk-card.uk-sticky hr {
    display: none;
  }
}
@media (max-width: 959px) {
  .section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar {
    display: none;
  }
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group {
  width: 100%;
  gap: 10px;
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group .input-group {
  gap: 10px;
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group label {
  font-family: "Alan Sans";
  font-size: clamp(0.8125rem, 0.792rem + 0.11vw, 0.875rem);
  line-height: 1;
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group label {
  font-weight: bold;
  color: var(--text-color-dark);
  margin-block-end: 10px;
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group input {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group input {
  height: 50px;
  text-align: center;
  border: none;
  min-width: auto;
  background-color: var(--input-field-color);
  border-radius: var(--border-radius-input);
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group input.form-control-active, .section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-object-calendar .form-group input:hover {
  border: none !important;
  box-shadow: none !important;
  background-color: var(--gold);
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part .object-calendar-prices {
  margin-block-start: 10px !important;
  text-align: right;
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-prices .text-muted,
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-prices span,
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-prices .price-discount {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-prices .text-muted,
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-prices span,
.section-with-sticky-column .uk-card.uk-sticky .bookzo-object-part bookzo-prices .price-discount {
  color: var(--text-color-dark) !important;
}
.section-with-sticky-column .uk-card.uk-sticky button {
  background-color: var(--button-primary-color);
  font-family: "Albert Sans";
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  padding: 15px 50px;
  border: 0px;
  border-radius: var(--border-radius-button);
  color: var(--white) !important;
  transition: all 0.3s ease-in-out;
}
.section-with-sticky-column .uk-card.uk-sticky button span {
  color: var(--white) !important;
}
.section-with-sticky-column .uk-card.uk-sticky button.disabled {
  background-color: grey;
  color: var(--text-color-light) !important;
  cursor: not-allowed;
}
.section-with-sticky-column .uk-card.uk-sticky button.disabled:hover {
  background-color: grey;
  cursor: not-allowed;
}
.section-with-sticky-column .uk-card.uk-sticky button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.section-with-sticky-column .uk-card.uk-sticky button {
  width: 100%;
}

.beschikbaarheid_sublayout h2 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.beschikbaarheid {
  font-family: "Alan Sans";
  color: var(--text-color-dark);
  padding: 40px 0 0px 0;
}
@media (max-width: 639px) {
  .beschikbaarheid {
    padding: 0;
    margin-top: 30px !important;
  }
}
.beschikbaarheid .total-wrapper {
  margin-top: 0px;
  font-family: "Alan Sans";
  color: var(--dark);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .text-muted {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .text-muted {
  color: var(--text-color-dark) !important;
}
.beschikbaarheid .datepicker-wrapper .alert-info {
  display: none;
}
.beschikbaarheid .object-calendar-prices.ng-star-inserted {
  display: none;
}
.beschikbaarheid .alternative-prices-earlier-later .btn-link {
  background-color: var(--button-primary-color);
  border-radius: var(--border-radius-button);
  border: none;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .alternative-prices-earlier-later .btn-link {
  color: var(--button-primary-text-color) !important;
  padding: 5px 20px;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease-in-out;
}
.beschikbaarheid .alternative-prices-earlier-later .btn-link:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.beschikbaarheid .persons .persons-item .number-control input {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .persons .persons-item .number-control input {
  border: 0px;
  border-bottom: 1px solid lightgrey;
  background-color: var(--input-field-color);
  height: 50px;
  border-radius: var(--border-radius-input);
  border-bottom: none;
  color: var(--text-color-dark) !important;
  margin: 0 10px !important;
}
.beschikbaarheid .persons .persons-item .number-control .btn-circle {
  color: var(--button-primary-text-color) !important;
  background-color: var(--button-primary-color);
  border-style: solid var(--button-primary-color);
}
.beschikbaarheid .persons .persons-item .number-control .btn-circle:hover {
  cursor: pointer;
}
.beschikbaarheid .persons .persons-item .number-control button:disabled {
  background-color: var(--disabled-color);
  border-color: var(--disabled-color);
  color: var(--text-color-light) !important;
  border-style: solid;
}
.beschikbaarheid .persons .persons-item .number-control button:disabled:hover {
  cursor: not-allowed;
}
@media (max-width: 639px) {
  .beschikbaarheid .number-control {
    flex-direction: column;
  }
}
.beschikbaarheid .number-control .label b {
  color: var(--text-color-dark);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .price-arrival-departure.text-muted {
  font-weight: 700;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
@media (max-width: 639px) {
  .beschikbaarheid .price-arrival-departure.text-muted {
    margin-top: 10px;
  }
}
.beschikbaarheid h5 {
  margin-top: 0px;
}
.beschikbaarheid .card-alternative-prices .card-body {
  padding: 0px !important;
}
.beschikbaarheid .datepicker-buttons .btn-link {
  background-color: transparent;
  color: var(--text-link-color);
  text-decoration: underline;
  padding: 0px;
  border: 0px;
  font-family: "mainfont-semibold";
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .datepicker-buttons .btn-link {
  font-size: 1rem;
}
.beschikbaarheid .alternative-prices-container {
  font-family: "Albert Sans";
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .alternative-prices-up-down-btn-wrapper .btn-link {
  background-color: transparent;
  border: 2px solid var(--button-primary-color);
  border-radius: var(--border-radius-button);
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  text-decoration: none;
  padding: 0px;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .alternative-prices-up-down-btn-wrapper .btn-link {
  color: var(--text-color-dark) !important;
  text-transform: none;
  letter-spacing: normal;
}
.beschikbaarheid .alternative-prices-up-down-btn-wrapper .btn-link:hover {
  cursor: pointer;
}
.beschikbaarheid .book-button {
  background-color: var(--button-primary-color);
  font-family: "Albert Sans";
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  padding: 15px 50px;
  border: 0px;
  border-radius: var(--border-radius-button);
  color: var(--white) !important;
  transition: all 0.3s ease-in-out;
}
.beschikbaarheid .book-button span {
  color: var(--white) !important;
}
.beschikbaarheid .book-button.disabled {
  background-color: grey;
  color: var(--text-color-light) !important;
  cursor: not-allowed;
}
.beschikbaarheid .book-button.disabled:hover {
  background-color: grey;
  cursor: not-allowed;
}
.beschikbaarheid .book-button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.beschikbaarheid .book-button {
  text-transform: capitalize;
}
@media (max-width: 639px) {
  .beschikbaarheid .book-button {
    margin-top: 10px;
    width: 100%;
  }
}
.beschikbaarheid h2 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.beschikbaarheid .ngb-dp-month-name {
  margin: 0px !important;
  color: grey;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .card {
  border: 0px !important;
  background-color: transparent !important;
}
.beschikbaarheid .bookzo-object-part {
  border-radius: 0;
  padding: 30px;
}
@media (max-width: 639px) {
  .beschikbaarheid .bookzo-object-part {
    padding: 0px;
  }
}
.beschikbaarheid .card-body {
  padding: 0px !important;
}
.beschikbaarheid .calendar-persons {
  background-color: transparent;
  gap: 20px;
  justify-content: center;
}
.beschikbaarheid .calendar-persons .spacer {
  display: none;
}
.beschikbaarheid .datepicker-wrapper {
  border: 0px !important;
  background-color: transparent;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
@media (max-width: 639px) {
  .beschikbaarheid .datepicker-wrapper {
    transform: scale(1.1);
    transform-origin: top center;
  }
}
.beschikbaarheid .extra_informatie {
  margin-inline: 30px;
  box-shadow: none;
}
.beschikbaarheid .extra_informatie h3 {
  font-family: "mainfont-bold";
  font-size: 1.25rem;
  position: relative;
  padding-left: 35px;
}
.beschikbaarheid .extra_informatie h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/images/designimages/bookzo-info.svg");
  background-size: cover;
}
.beschikbaarheid .extra_informatie ul li {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.beschikbaarheid .extra_informatie ul li {
  color: var(--text-color-dark);
  list-style-type: none;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
.beschikbaarheid .extra_informatie ul li::before {
  content: "•";
  position: absolute;
  display: inline-block;
  width: 0;
  text-align: center;
  vertical-align: top;
  font-size: 3rem;
  top: 0;
  left: -15px;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
}

@media (max-width: 350px) {
  .persons-wrapper.ng-star-inserted {
    margin-top: -50px;
  }
}
@media (max-width: 639px) {
  .persons-wrapper.ng-star-inserted {
    top: 100px;
    position: relative;
    margin-block-end: 140px;
  }
}

.calendar-persons.ng-star-inserted > * {
  display: flex;
  justify-content: center;
}

.no-departure-selected {
  display: flex;
  justify-content: center;
}

.mt-4.ng-star-inserted,
.mt-2.ng-star-inserted {
  text-align: right;
}

.persons.small-persons.ng-star-inserted {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.alternative-prices-earlier {
  flex: 0 !important;
}
.alternative-prices-earlier svg {
  display: none;
}
.alternative-prices-later svg {
  display: none;
}

.alternative-prices-earlier-later {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 442px) {
  .alternative-prices-earlier-later {
    justify-content: flex-start;
  }
}

.price-cell {
  cursor: pointer;
  background-color: var(--third-color);
  border-radius: var(--border-radius-pricetags);
}
.price-cell h5 {
  font-family: "Alan Sans";
}
@media (max-width: 540px) {
  .price-cell h5 > * {
    display: flex;
    flex-direction: column;
  }
}

.table-active {
  background-color: var(--contrast-color-soft) !important;
}
.table-active h5 {
  color: var(--text-color-light) !important;
}

th,
td {
  border: none !important;
}

.bookzo_resultaat.noDescDetails .card-description ul,
.bookzo_resultaat.noDescDetails .card-description br {
  display: none;
}
.bookzo_resultaat .uk-background-norepeat {
  background-color: var(--background-color-A);
}
.bookzo_resultaat h1 {
  font-family: "Alan Sans";
  font-size: clamp(1.25rem, 0.75rem + 2.67vw, 2.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.bookzo_resultaat h1 {
  margin-bottom: 20px;
}
@media (max-width: 639px) {
  .bookzo_resultaat h1 {
    margin-top: 20px;
  }
}
.bookzo_resultaat .results-badges-sort-options {
  margin-bottom: 10px;
}
.bookzo_resultaat .results-badges-sort-options .results-badges {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.bookzo_resultaat .results-badges-sort-options .results-badges .filter-button-wrapper {
  order: 1;
  margin: 0 !important;
}
.bookzo_resultaat .results-badges-sort-options .results-badges .filter-button-wrapper #openFiltersButton {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .results-badges-sort-options .results-badges .filter-button-wrapper #openFiltersButton {
  background: var(--gradPurpleDarkToPurple);
  border: none;
  border-top-right-radius: 30px;
  color: var(--text-color-light);
  padding: 14px 35px;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s ease;
}
.bookzo_resultaat .results-badges-sort-options .results-badges .filter-button-wrapper #openFiltersButton::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
}
.bookzo_resultaat .results-badges-sort-options .results-badges .filter-button-wrapper #openFiltersButton:hover {
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.bookzo_resultaat .results-badges-sort-options .results-badges .filter-button-wrapper #openFiltersButton:hover::after {
  left: 125%;
  transition: left 0.5s ease;
}
.bookzo_resultaat .results-badges-sort-options .results-badges bookzo-badges {
  order: 2;
}
.bookzo_resultaat .results-badges-sort-options .results-badges h5 {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .results-badges-sort-options .results-badges h5 {
  margin-bottom: 0;
}
.bookzo_resultaat .results-badges-sort-options .results-badges .badges-wrapper {
  margin-bottom: 0 !important;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky {
  border-radius: var(--border-radius-card);
  background-color: var(--button-color);
  padding-top: 1.2rem;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky h2 {
  margin: 1.2rem;
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky h2 {
  font-size: 1.25rem;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky h5 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.833rem + 1.22vw, 1.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky span {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky span {
  color: var(--text-color-light);
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky hr {
  border: 0px;
  width: 85%;
  margin-inline: auto;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky .extra_informatie {
  border: none;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky .extra_informatie h3 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky .extra_informatie h3 {
  font-size: 1.25rem;
  position: relative;
  padding-left: 35px;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky .extra_informatie h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/images/designimages/bookzo-info.svg");
  background-size: cover;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky .extra_informatie ul li {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky .extra_informatie ul li {
  color: var(--text-color-dark);
  list-style-type: none;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
.bookzo_resultaat .filtercol .uk-panel.uk-position-z-index.uk-sticky .extra_informatie ul li::before {
  content: "•";
  position: absolute;
  display: inline-block;
  width: 0;
  text-align: center;
  vertical-align: top;
  font-size: 3rem;
  top: 0;
  left: -15px;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
}
.bookzo_resultaat .badges-wrapper.pt-2 {
  display: none;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.bookzo_resultaat .badges-wrapper.pt-2 .badges .badge,
.bookzo_resultaat .badges-wrapper.pt-2 .remove-filter-button #removeAllFiltersButton {
  color: var(--text-color-light);
  background-color: var(--button-primary-color);
  border-radius: var(--border-radius-button);
  border: none;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .badges-wrapper.pt-2 .badges .badge,
.bookzo_resultaat .badges-wrapper.pt-2 .remove-filter-button #removeAllFiltersButton {
  color: var(--button-primary-text-color) !important;
  padding: 5px 20px;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease-in-out;
}
.bookzo_resultaat .badges-wrapper.pt-2 .badges .badge:hover,
.bookzo_resultaat .badges-wrapper.pt-2 .remove-filter-button #removeAllFiltersButton:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.bookzo_resultaat .badges-wrapper.pt-2 .badges .badge,
.bookzo_resultaat .badges-wrapper.pt-2 .remove-filter-button #removeAllFiltersButton {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .badges-wrapper.pt-2 .badges .badge .badge-text,
.bookzo_resultaat .badges-wrapper.pt-2 .remove-filter-button #removeAllFiltersButton .badge-text {
  padding: 0px !important;
}
.bookzo_resultaat .badges-wrapper.pt-2 .badges .badge .badge-close,
.bookzo_resultaat .badges-wrapper.pt-2 .remove-filter-button #removeAllFiltersButton .badge-close {
  padding: 2px 0 0 4px !important;
}
.bookzo_resultaat .badges-wrapper.pt-2 .remove-filter-button #removeAllFiltersButton {
  height: 38px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper {
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items {
  -ms-flex: 0 0 calc(25% - 30px);
  flex: 0 0 calc(25% - 30px);
  max-width: calc(25% - 30px);
  padding: 0px;
}
@media (min-width: 960px) and (max-width: 1199px) {
  .bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items {
    -ms-flex: 0 0 calc(33.3333333333% - 30px);
    flex: 0 0 calc(33.3333333333% - 30px);
    max-width: calc(33.3333333333% - 30px);
    padding: 0px;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items {
    -ms-flex: 0 0 calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    padding: 0px;
  }
}
@media (max-width: 639px) {
  .bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px;
  }
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card {
  width: 100%;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .slider-pagination {
  display: none;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item {
  background-color: var(--background-color-B);
  border-radius: var(--border-radius-card);
  padding: var(--padding-result-cards);
  border: none;
  transform: none !important;
  max-width: 480px;
  height: 95%;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item:hover {
  background-color: var(--blueLight);
}
@media (max-width: 959px) {
  .bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item {
    max-width: 100%;
  }
}
@media (max-width: 639px) {
  .bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item {
    margin-inline: 10px;
  }
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-img-top {
  min-height: 230px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  margin: -20px -20px 0px -20px;
  width: calc(100% + 40px);
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-img-top .slider-wrapper {
  border-top-right-radius: var(--border-radius-card);
  border-top-left-radius: var(--border-radius-card);
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-img-top .slider-wrapper .slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-img-top .slider-wrapper .slider-button svg {
  opacity: 0;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-img-top .slider-wrapper .slider-button.right::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/images/system/icons/arrow-next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 10px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body {
  padding: 0px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .object-name {
  font-family: "Alan Sans";
  font-size: 1rem;
  line-height: 1;
  color: var(--text-color-dark);
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .object-name {
  margin-block-end: 10px;
  margin-block-start: 15px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .group-name {
  font-size: 0.875rem;
  margin-top: 4px;
  color: var(--purpleDark) !important;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .persons-pets {
  gap: 10px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .persons-pets .icon-wrapper {
  font-size: 0.875rem;
  font-weight: 500;
  gap: 5px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .persons-pets .persons {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .persons-pets .persons {
  color: var(--text-color-dark);
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-description {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-description {
  font-size: 0.875rem;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-description ul > br {
  display: none;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body bookzo-object-usp ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  padding-inline-start: 0;
  margin-block-end: 30px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body bookzo-object-usp ul li {
  text-wrap: nowrap;
  list-style-type: none;
  position: relative;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--light);
  padding-inline-start: 30px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body bookzo-object-usp ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-image: url("/images/disk.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices {
  margin-top: 20px !important;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices {
  text-align: right !important;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .price-arrival-departure {
  display: flex;
  justify-content: flex-end;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .price-arrival-departure-arrival,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .price-arrival-departure-departure {
  flex: inherit;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .price-per-night {
  white-space: nowrap;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .price-per-night span {
  white-space: nowrap;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices > *:not(.you-are-saving) .text-muted,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices > *:not(.you-are-saving) span,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices > *:not(.you-are-saving) .price-discount {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices > *:not(.you-are-saving) .text-muted,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices > *:not(.you-are-saving) span,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices > *:not(.you-are-saving) .price-discount {
  font-size: 0.875rem;
  color: var(--text-color-dark) !important;
  line-height: 1;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices h5 {
  margin-top: 10px;
  text-transform: none;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .total-price-wrapper {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .total-price-wrapper {
  margin-top: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-prices bookzo-prices .total-price-wrapper .total-underlined {
  text-decoration: none !important;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons.text-right,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info.text-right {
  text-align: left !important;
}
@media (max-width: 639px) {
  .bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons.text-right,
  .bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info.text-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button {
  background-color: var(--button-primary-color);
  font-family: "Albert Sans";
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  padding: 15px 50px;
  border: 0px;
  border-radius: var(--border-radius-button);
  color: var(--white) !important;
  transition: all 0.3s ease-in-out;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button span,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button span {
  color: var(--white) !important;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button.disabled,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button.disabled {
  background-color: grey;
  color: var(--text-color-light) !important;
  cursor: not-allowed;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button.disabled:hover,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button.disabled:hover {
  background-color: grey;
  cursor: not-allowed;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button:hover,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button {
  width: 100%;
  margin: 0px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button.book-button,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button.book-button {
  background-color: var(--button-secondary-color);
  font-family: "Albert Sans";
  font-size: 1.125rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  padding: 15px 50px;
  border: 0px;
  border-radius: var(--border-radius-button);
  color: var(--button-secondary-text-color) !important;
  transition: all 0.3s ease-in-out;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button.book-button.disabled,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button.book-button.disabled {
  background-color: grey;
  color: var(--text-color-light) !important;
  cursor: not-allowed;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button.book-button.disabled:hover,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button.book-button.disabled:hover {
  background-color: grey;
  cursor: not-allowed;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button.book-button:hover,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button.book-button:hover {
  background-color: var(--button-secondary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-buttons-and-selections-buttons button.book-button,
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper .result-items-wrapper .result-items bookzo-results-card .result-item .card-body .card-more-info button.book-button {
  margin: 0px !important;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper > .pagination ul .page-item a {
  color: var(--purpleDark);
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper > .pagination ul .page-item.active a {
  background-color: var(--purpleDark);
  border-color: var(--purpleDark);
  color: var(--white);
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper > .pagination ul .page-item:first-child a, .bookzo_resultaat .bookzo .bookzo-results .results-wrapper > .pagination ul .page-item:last-child a {
  font-weight: bold;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper > .pagination ul .page-item:first-child a {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.bookzo_resultaat .bookzo .bookzo-results .results-wrapper > .pagination ul .page-item:last-child a {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media (max-width: 639px) {
  .bookzo_resultaat .bookzo-bootstrap .col-12 {
    -ms-flex: inherit !important;
    flex: inherit !important;
    padding: 0px !important;
  }
}

.ngb-dp-day.disabled .custom-day:not(.first-date):not(.second-date) .custom-day-circle {
  color: var(--text-color-dark) !important;
  opacity: 0.4;
}

.custom-day.disabled .custom-day-circle {
  text-decoration: none !important;
}

.datepicker-wrapper.floating,
.objects-to-book-wrapper.floating {
  z-index: 99 !important;
  border: none;
  border-radius: var(--border-radius-card);
  padding: 0 15px;
}
.datepicker-wrapper.floating .text-muted,
.datepicker-wrapper.floating span,
.datepicker-wrapper.floating .price-discount,
.objects-to-book-wrapper.floating .text-muted,
.objects-to-book-wrapper.floating span,
.objects-to-book-wrapper.floating .price-discount {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.datepicker-wrapper.floating .text-muted,
.datepicker-wrapper.floating span,
.datepicker-wrapper.floating .price-discount,
.objects-to-book-wrapper.floating .text-muted,
.objects-to-book-wrapper.floating span,
.objects-to-book-wrapper.floating .price-discount {
  color: var(--text-color-dark) !important;
}
@media (max-width: 639px) {
  .datepicker-wrapper.floating .number-control,
  .objects-to-book-wrapper.floating .number-control {
    flex-direction: column;
  }
}
.datepicker-wrapper.floating button:not(.ngb-dp-arrow-btn),
.objects-to-book-wrapper.floating button:not(.ngb-dp-arrow-btn) {
  background-color: var(--button-primary-color);
  border-radius: var(--border-radius-button);
  border: none;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.datepicker-wrapper.floating button:not(.ngb-dp-arrow-btn),
.objects-to-book-wrapper.floating button:not(.ngb-dp-arrow-btn) {
  color: var(--button-primary-text-color) !important;
  padding: 5px 20px;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease-in-out;
}
.datepicker-wrapper.floating button:not(.ngb-dp-arrow-btn):hover,
.objects-to-book-wrapper.floating button:not(.ngb-dp-arrow-btn):hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.datepicker-wrapper.floating button:not(.ngb-dp-arrow-btn),
.objects-to-book-wrapper.floating button:not(.ngb-dp-arrow-btn) {
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.datepicker-wrapper.floating .holiday-selection,
.objects-to-book-wrapper.floating .holiday-selection {
  display: none;
}

.datepicker-wrapper {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
ngb-datepicker ngb-datepicker-navigation,
ngb-datepicker .ngb-dp-week.ngb-dp-weekdays.ng-star-inserted {
  padding: 10px;
}
ngb-datepicker ngb-datepicker-navigation .ngb-dp-month-name,
ngb-datepicker ngb-datepicker-navigation .ngb-dp-weekday,
ngb-datepicker .ngb-dp-week.ngb-dp-weekdays.ng-star-inserted .ngb-dp-month-name,
ngb-datepicker .ngb-dp-week.ngb-dp-weekdays.ng-star-inserted .ngb-dp-weekday {
  color: var(--text-color-dark) !important;
}
ngb-datepicker ngb-datepicker-navigation {
  border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
}
ngb-datepicker .custom-day-circle.selected {
  color: white !important;
}
ngb-datepicker .occupancy-layer.free {
  background-color: var(--calendar-available-color) !important;
}
ngb-datepicker .occupancy-layer.occupied {
  background-color: var(--calendar-unavailable-color) !important;
}
ngb-datepicker .occupancy-layer.occupied .custom-day-circle {
  color: red;
}
ngb-datepicker .occupancy-layer.free.arrival {
  background-image: linear-gradient(315deg, var(--calendar-unavailable-color) 0%, var(--calendar-unavailable-color) 50%, var(--calendar-available-color) 50%) !important;
}
ngb-datepicker .occupancy-layer.free.departure {
  background-image: linear-gradient(315deg, var(--calendar-available-color) 0%, var(--calendar-available-color) 50%, var(--calendar-unavailable-color) 50%) !important;
}
ngb-datepicker .occupancy-layer.free.departure .disabled {
  background-image: none;
  background-color: var(--calendar-unavailable-color);
}
.objects-to-book .persons .persons-item .number-control input {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.objects-to-book .persons .persons-item .number-control input {
  border: 0px;
  border-bottom: 1px solid lightgrey;
  background-color: var(--input-field-color);
  height: 50px;
  border-radius: var(--border-radius-input);
  border-bottom: none;
  color: var(--text-color-dark) !important;
  margin: 0 10px !important;
}
.objects-to-book .persons .persons-item .number-control .btn-circle {
  color: var(--button-primary-text-color) !important;
  background-color: var(--button-primary-color);
  border-style: solid var(--button-primary-color);
}
.objects-to-book .persons .persons-item .number-control .btn-circle:hover {
  cursor: pointer;
}
.objects-to-book .persons .persons-item .number-control button:disabled {
  background-color: var(--disabled-color);
  border-color: var(--disabled-color);
  color: var(--text-color-light) !important;
  border-style: solid;
}
.objects-to-book .persons .persons-item .number-control button:disabled:hover {
  cursor: not-allowed;
}
.objects-to-book .number-control .label b {
  color: var(--text-color-dark);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.alert {
  border-radius: var(--border-radius-card) !important;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.alert {
  margin-top: 20px !important;
}

.boeken .btn-link {
  background: none;
  border: none;
  font-family: "Albert Sans";
  font-size: 1.125rem;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}
.boeken .btn-link:hover {
  color: var(--green);
}
.boeken h1 {
  color: var(--text-color-dark);
  font-family: "Alan Sans";
  font-size: clamp(1.25rem, 0.75rem + 2.67vw, 2.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.boeken h1 {
  padding: 0;
  margin: 0px;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 30px;
}
.boeken .card-body {
  border-radius: var(--border-radius-card);
}
.boeken .card.book-stay-info, .boeken .card.book-accommodation-info, .boeken .card.book-optional-cost, .boeken .card.book-total-prices {
  border: none;
  border-radius: var(--border-radius-card);
}
.boeken .card.book-stay-info h5, .boeken .card.book-accommodation-info h5, .boeken .card.book-optional-cost h5, .boeken .card.book-total-prices h5 {
  margin-bottom: 20px !important;
}
.boeken .bookzo-book {
  max-width: 100% !important;
}
.boeken #paymentDetailsText > i {
  color: var(--text-color-dark);
  padding: 0px;
  border: 0px;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .form-group.form-group-address .form-row {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 960px) {
  .boeken .form-group.form-group-address .form-row > div:nth-of-type(1) {
    flex: 5;
  }
  .boeken .form-group.form-group-address .form-row > div:nth-of-type(2) {
    flex: 2;
  }
  .boeken .form-group.form-group-address .form-row > div:nth-of-type(3) {
    flex: 2;
  }
}
@media (max-width: 959px) {
  .boeken .form-group.form-group-address .form-row > div {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.boeken .form-group-book-button {
  text-align: right;
}
.boeken .form-group-book-button .book-button {
  background-color: var(--button-primary-color);
  font-family: "Albert Sans";
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  padding: 15px 50px;
  border: 0px;
  border-radius: var(--border-radius-button);
  color: var(--white) !important;
  transition: all 0.3s ease-in-out;
}
.boeken .form-group-book-button .book-button span {
  color: var(--white) !important;
}
.boeken .form-group-book-button .book-button.disabled {
  background-color: grey;
  color: var(--text-color-light) !important;
  cursor: not-allowed;
}
.boeken .form-group-book-button .book-button.disabled:hover {
  background-color: grey;
  cursor: not-allowed;
}
.boeken .form-group-book-button .book-button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
.boeken .guest-details-form .card-header {
  background-color: transparent;
}
.boeken .guest-details-form .btn-link {
  background-color: transparent;
  color: var(--text-link-color) !important;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .guest-details-form .btn-link {
  text-decoration: underline;
  text-transform: none;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
  padding: 0px;
  transition: none;
}
.boeken .guest-details-form .btn-link:hover {
  color: var(--text-link-hover-color) !important;
  cursor: pointer;
  border: none;
}
.boeken .guest-details-form .card {
  box-shadow: none;
}
.boeken .guest-details-form .form-group-guest-address,
.boeken .guest-details-form .form-group-guest-email-address,
.boeken .guest-details-form .form-group-country {
  display: none;
}
.boeken .panel-heading.card-header.panel-enabled {
  border: 1px solid var(--third-color);
}
.boeken .panel-heading.card-header.panel-enabled .btn.btn-link {
  margin: 0 !important;
}
.boeken .my-reservations-passwordless,
.boeken .reservation-form,
.boeken .guest-details-form {
  border-radius: var(--border-radius-card);
  padding: 1.25rem;
  background-color: #fff;
  margin: 30px auto 0 auto;
}
.boeken .my-reservations-passwordless input,
.boeken .my-reservations-passwordless select,
.boeken .reservation-form input,
.boeken .reservation-form select,
.boeken .guest-details-form input,
.boeken .guest-details-form select {
  width: 100%;
  border-radius: var(--border-radius-input);
  background-color: var(--input-field-color);
  border: none;
  padding: 10px;
  margin: 0 0 10px 0;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .my-reservations-passwordless input,
.boeken .my-reservations-passwordless select,
.boeken .reservation-form input,
.boeken .reservation-form select,
.boeken .guest-details-form input,
.boeken .guest-details-form select {
  color: var(--text-color-dark);
  box-sizing: border-box;
}
.boeken .my-reservations-passwordless .form-group-subscribe-to-newsletter input,
.boeken .reservation-form .form-group-subscribe-to-newsletter input,
.boeken .guest-details-form .form-group-subscribe-to-newsletter input {
  width: auto;
}
.boeken .my-reservations-passwordless .form-group-subscribe-to-newsletter .form-check-label,
.boeken .reservation-form .form-group-subscribe-to-newsletter .form-check-label,
.boeken .guest-details-form .form-group-subscribe-to-newsletter .form-check-label {
  padding-left: 20px;
  margin-top: -4px;
}
.boeken .my-reservations-passwordless textarea,
.boeken .reservation-form textarea,
.boeken .guest-details-form textarea {
  width: 100%;
  border-radius: var(--border-radius-input);
  border: none;
  background-color: var(--fourth-color);
  padding: 10px;
  margin: 0 0 10px 0;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .my-reservations-passwordless textarea,
.boeken .reservation-form textarea,
.boeken .guest-details-form textarea {
  color: var(--text-color-dark);
}
.boeken .my-reservations-passwordless::placeholder,
.boeken .reservation-form::placeholder,
.boeken .guest-details-form::placeholder {
  color: #969696;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .my-reservations-passwordless label,
.boeken .reservation-form label,
.boeken .guest-details-form label {
  color: var(--text-color-dark);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .my-reservations-passwordless label,
.boeken .reservation-form label,
.boeken .guest-details-form label {
  padding: 0;
  margin: 0px;
  text-transform: none;
  letter-spacing: normal;
}
.boeken .my-reservations-passwordless .form-group-comments,
.boeken .reservation-form .form-group-comments,
.boeken .guest-details-form .form-group-comments {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.boeken .my-reservations-passwordless .bookzo-bootstrap .col-md-3,
.boeken .reservation-form .bookzo-bootstrap .col-md-3,
.boeken .guest-details-form .bookzo-bootstrap .col-md-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 100%;
  max-width: 100%;
}
.boeken .my-reservations-passwordless .bookzo-bootstrap .form-group,
.boeken .reservation-form .bookzo-bootstrap .form-group,
.boeken .guest-details-form .bookzo-bootstrap .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
}
.boeken .my-reservations-passwordless .bookzo-bootstrap .form-row,
.boeken .reservation-form .bookzo-bootstrap .form-row,
.boeken .guest-details-form .bookzo-bootstrap .form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: nowrap;
  margin-right: -5px;
  margin-left: -5px;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.boeken .book-add-accommodation {
  display: none;
}
.boeken .bookzo-bootstrap .card .text-muted {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .text-muted {
  color: var(--text-color-dark);
}
.boeken .bookzo-bootstrap .card .optional-cost-text {
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .optional-cost-text {
  color: var(--text-color-dark);
  line-height: 19px;
}
.boeken .bookzo-bootstrap .card .total-price-wrapper {
  margin-top: 0px;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .total-price-wrapper {
  color: var(--text-color-dark);
}
.boeken .bookzo-bootstrap .card .optional-cost-price-text,
.boeken .bookzo-bootstrap .card .total-price {
  margin-top: 0px;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .optional-cost-price-text,
.boeken .bookzo-bootstrap .card .total-price {
  color: var(--text-color-dark);
}
.boeken .bookzo-bootstrap .card .optional-cost-price-text .total-nowrap .bookzo-currency-positive,
.boeken .bookzo-bootstrap .card .total-price .total-nowrap .bookzo-currency-positive {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card h5 {
  color: var(--text-color-dark);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card h5 {
  padding: 0;
  margin: 0px;
  text-transform: none;
  letter-spacing: normal;
}
.boeken .bookzo-bootstrap .card .btn-secondary {
  background-color: transparent;
  color: var(--text-link-color) !important;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .btn-secondary {
  text-decoration: underline;
  text-transform: none;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
  padding: 0px;
  transition: none;
}
.boeken .bookzo-bootstrap .card .btn-secondary:hover {
  color: var(--text-link-hover-color) !important;
  cursor: pointer;
  border: none;
}
.boeken .bookzo-bootstrap .card .number-of-items-input input,
.boeken .bookzo-bootstrap .card .persons .persons-item .number-control input {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .number-of-items-input input,
.boeken .bookzo-bootstrap .card .persons .persons-item .number-control input {
  border: 0px;
  border-bottom: 1px solid lightgrey;
  background-color: var(--input-field-color);
  height: 50px;
  border-radius: var(--border-radius-input);
  border-bottom: none;
  color: var(--text-color-dark) !important;
  margin: 0 10px !important;
}
.boeken .bookzo-bootstrap .card .number-of-items-input .btn-circle,
.boeken .bookzo-bootstrap .card .persons .persons-item .number-control .btn-circle {
  color: var(--button-primary-text-color) !important;
  background-color: var(--button-primary-color);
  border-style: solid var(--button-primary-color);
}
.boeken .bookzo-bootstrap .card .number-of-items-input .btn-circle:hover,
.boeken .bookzo-bootstrap .card .persons .persons-item .number-control .btn-circle:hover {
  cursor: pointer;
}
.boeken .bookzo-bootstrap .card .number-of-items-input button:disabled,
.boeken .bookzo-bootstrap .card .persons .persons-item .number-control button:disabled {
  background-color: var(--disabled-color);
  border-color: var(--disabled-color);
  color: var(--text-color-light) !important;
  border-style: solid;
}
.boeken .bookzo-bootstrap .card .number-of-items-input button:disabled:hover,
.boeken .bookzo-bootstrap .card .persons .persons-item .number-control button:disabled:hover {
  cursor: not-allowed;
}
.boeken .bookzo-bootstrap .card .number-of-items-input .label b,
.boeken .bookzo-bootstrap .card .number-control .label b {
  color: var(--text-color-dark);
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .total-description {
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .total-description {
  color: var(--text-color-dark);
}
.boeken .bookzo-bootstrap .card .stay-info-list {
  padding-left: 20px;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .stay-info-list {
  color: var(--text-color-dark);
}
.boeken .bookzo-bootstrap .card .stay-info-list li {
  list-style-type: none;
  position: relative;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .bookzo-bootstrap .card .stay-info-list li {
  padding-inline-start: 20px;
  margin-block-end: 7px;
}
.boeken .bookzo-bootstrap .card .stay-info-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  background-color: var(--contrast-color);
  mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  -webkit-mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  width: 12px;
  height: 12px;
  display: block;
}
.boeken .btn-secondary {
  background-color: var(--button-primary-color);
  border-radius: var(--border-radius-button);
  border: none;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.boeken .btn-secondary {
  color: var(--button-primary-text-color) !important;
  padding: 5px 20px;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease-in-out;
}
.boeken .btn-secondary:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}
@media (max-width: 639px) {
  .boeken .reservation-form {
    padding: 0;
    margin-inline-end: 15px;
  }
}
.boeken #phoneNumber {
  padding-inline-start: 45px;
}
.boeken .form-group-name .form-row {
  flex-direction: row;
  gap: 5px;
}
@media (max-width: 639px) {
  .boeken .form-group-name .form-row {
    flex-direction: column;
    gap: 0px;
  }
}
.boeken .form-group-name .form-row > div:first-child {
  flex: 2;
  padding: 0;
}
.boeken .form-group-name .form-row > div:nth-child(2) {
  flex: 5;
  padding: 0;
}
.boeken .form-group-name .form-row > div:nth-child(3) {
  flex: 3;
  padding: 0;
}
.boeken .form-group-name .form-row > div:last-child {
  flex: 6;
  padding: 0;
}
.boeken .form-group-email-address {
  display: flex;
  flex-direction: column;
}
.boeken .form-group-country {
  display: flex;
  flex-direction: column;
}
@media (max-width: 639px) {
  .boeken .number-control {
    flex-direction: column;
  }
}
.boeken .change-payment-type,
.boeken .payment-second-amount-text {
  margin-left: 30px;
}

.bevestigiging_section {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bevestigiging_section {
  color: var(--text-color-dark);
  padding-block-end: 12%;
}
.bevestigiging_section h1 {
  font-family: "Alan Sans";
  font-size: clamp(1.25rem, 0.75rem + 2.67vw, 2.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.bevestigiging_section h2 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.688rem + 2vw, 2.1875rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.bevestigiging_section h4 {
  font-family: "Alan Sans";
  font-size: clamp(1.0625rem, 0.833rem + 1.22vw, 1.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.bevestigiging_section h4 {
  text-transform: none;
}
.bevestigiging_section .stay-info-list {
  padding-left: 20px;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bevestigiging_section .stay-info-list {
  color: var(--text-color-dark);
}
.bevestigiging_section .stay-info-list li {
  list-style-type: none;
  position: relative;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bevestigiging_section .stay-info-list li {
  padding-inline-start: 20px;
  margin-block-end: 7px;
}
.bevestigiging_section .stay-info-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  background-color: var(--contrast-color);
  mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  -webkit-mask: url("/images/bookzo/disk.svg") no-repeat center/contain;
  width: 12px;
  height: 12px;
  display: block;
}
.bevestigiging_section .slider-wrapper {
  border-radius: var(--border-radius-card);
}
.bevestigiging_section .terugbutton .uk-button {
  background-color: var(--button-primary-color);
  border-radius: var(--border-radius-button);
  border: none;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.bevestigiging_section .terugbutton .uk-button {
  color: var(--button-primary-text-color) !important;
  padding: 5px 20px;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease-in-out;
}
.bevestigiging_section .terugbutton .uk-button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}

.review {
  padding-block-end: 12%;
}
.review h1 {
  color: var(--text-color-dark);
  font-family: "Alan Sans";
  font-size: clamp(1.25rem, 0.75rem + 2.67vw, 2.75rem);
  line-height: 1;
  color: var(--text-color-dark);
}
.review h1 {
  padding: 0;
  margin: 0px;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 30px;
}
.review .bookzo.bookzo-bootstrap {
  padding: 1.25rem;
}
.review .bookzo.bookzo-bootstrap .form-wrapper {
  width: 100%;
  max-width: 500px;
}
.review .bookzo.bookzo-bootstrap .form-wrapper .form-group {
  display: flex;
  flex-direction: column;
}
.review .bookzo.bookzo-bootstrap .form-wrapper .form-group label {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.review .bookzo.bookzo-bootstrap .form-wrapper .form-group label {
  padding: 0;
  margin: 0px;
  text-transform: none;
  letter-spacing: normal;
}
.review .bookzo.bookzo-bootstrap .form-wrapper .form-group input,
.review .bookzo.bookzo-bootstrap .form-wrapper .form-group textarea {
  width: 100%;
  border-radius: var(--border-radius-input);
  border: none;
  background-color: var(--fourth-color);
  padding: 10px;
  margin: 0 0 10px 0;
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.review .bookzo.bookzo-bootstrap .form-wrapper .form-group input,
.review .bookzo.bookzo-bootstrap .form-wrapper .form-group textarea {
  color: var(--text-color-dark);
}
.review .bookzo.bookzo-bootstrap h4 {
  color: var(--text-color-dark);
  font-family: "Albert Sans";
}
.review .bookzo.bookzo-bootstrap h4 {
  padding: 0;
  margin: 0px;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 30px;
}
.review button {
  background-color: var(--button-primary-color);
  font-family: "Albert Sans";
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  padding: 15px 50px;
  border: 0px;
  border-radius: var(--border-radius-button);
  color: var(--white) !important;
  transition: all 0.3s ease-in-out;
}
.review button span {
  color: var(--white) !important;
}
.review button.disabled {
  background-color: grey;
  color: var(--text-color-light) !important;
  cursor: not-allowed;
}
.review button.disabled:hover {
  background-color: grey;
  cursor: not-allowed;
}
.review button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color) !important;
  cursor: pointer;
}