@charset "UTF-8";
:root {
  --header-bg-color: #ffffff;
  --footer-bg-color: #104879;
  --main-text-color: #16152c;
  --primary: #47b176;
  --clr-green: #47b176;
  --clr-green-rgb: 71, 177, 118;
  --clr-green-700: #258b52;
  --clr-green-700-rgb: 37, 139, 82;
  --clr-green-10: rgba(var(--clr-green-rgb), 0.1);
  --clr-red: #e84260;
  --clr-red-rgb: 232, 66, 96;
  --clr-red-700: #cc1a3a;
  --clr-red-700-rgb: 204, 26, 58;
  --clr-red-10: rgba(var(--clr-red-rgb), 0.1);
  --clr-blue: #53c2ec;
  --clr-blue-rgb: 83, 194, 236;
  --clr-blue-700: #2da0cc;
  --clr-blue-700-rgb: 45, 160, 204;
  --clr-blue-10: rgba(var(--clr-blue-rgb), 0.1);
  --clr-yellow: #fbc45a;
  --clr-yellow-rgb: 251, 196, 90;
  --clr-yellow-700: #e3a224;
  --clr-yellow-700-rgb: 227, 162, 36;
  --clr-yellow-10: rgba(var(--clr-yellow-rgb), 0.1);
  --clr-purple: #cb69a5;
  --clr-purple-rgb: 203, 105, 165;
  --clr-purple-700: #a03777;
  --clr-purple-700-rgb: 160, 55, 119;
  --clr-purple-10: rgba(var(--clr-purple-rgb), 0.1);
  --h1-size: 3.125rem;
  --h1-size-mob: 2.5rem;
  --h2-size: 2.187rem;
  --h3-size: 1.75rem;
  --h4-size: 1.25rem;
  --h5-size: 1.25rem;
  --h6-size: 1rem;
  --font-size-18: 1.125rem;
  --top-pane-font-size: 2.187rem;
  --body-font-size: 1.25rem;
  --main-font-family: stratos-lights, sans-serif;
  --main-font-family-regular: stratos, sans-serif;
  --second-font-family: atrament-web, sans-serif;
  /*--Sub site variables--*/
  --ss-header-bg-color: #ffffff;
  --ss-footer-bg-color: #104879;
  --ss-main-text-color: #16152c;
  --ss-primary: #104879;
  --ss-secondary: #aa941a;
  --ss-clr-secondary-100: rgba(170, 148, 26, 0.2);
  --ss-h1-size: 3.75rem;
  --ss-h1-size-mob: 2.5rem;
  --ss-2-size: 2.187rem;
  --ss-h3-size: 1.75rem;
  --ss-h4-size: 1.25rem;
  --ss-h5-size: 1.25rem;
  --ss-h6-size: 1rem;
  --ss-ont-size-18: 1.125rem;
  --ss-top-pane-font-size: 2.187rem;
  --ss-body-font-size: 1.25rem;
}

.theme--dew-blue {
  --primary: var(--clr-blue);
}
.theme--dew-blue .exception-warning {
  background-color: var(--clr-blue-10) !important;
}

.theme--dune-yellow {
  --primary: var(--clr-yellow);
}
.theme--dune-yellow .exception-warning {
  background-color: var(--clr-yellow-10) !important;
}

.theme--purple {
  --primary: var(--clr-purple);
}
.theme--purple .exception-warning {
  background-color: var(--clr-purple-10) !important;
}

.theme--factor-50-red {
  --primary: var(--clr-red);
}
.theme--factor-50-red .exception-warning {
  background-color: var(--clr-red-10) !important;
}

.theme--calmeyn-green {
  --primary: var(--clr-green);
}
.theme--calmeyn-green .exception-warning {
  background-color: var(--clr-green-10) !important;
}

body {
  color: var(--main-text-color);
  font-family: var(--main-font-family);
  font-size: var(--body-font-size);
  font-weight: 300;
  line-height: 1.4;
  /* -webkit-font-smoothing: inherit; */
  padding-top: 43px;
}

body.body_subsite:not(.user-logged-in) {
  padding-top: 0 !important;
}

body.body_subsite #toolbar-bar {
  top: 0 !important;
}

body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.3;
}

body h1 {
  font-size: var(--h1-size-mob);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1rem;
  margin-top: 3rem;
  padding-bottom: 20px;
  /*   &::before {
        @media (min-width: 300px) {
            content: '';
            display: block;
            height: 2px;
            width: 80px;
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            bottom: 0px;
            background-color: var(--secondary);
        }
    } */
}

@media (min-width: 600px) {
  body h1 {
    font-size: var(--h1-size);
    /*margin-bottom: 1rem;*/
    margin-top: 4rem;
  }
}
body h2 {
  font-size: var(--h2-size);
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

body h2:first-child {
  margin-top: 0;
}

body h3 {
  font-size: var(--h3-size);
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  /* text-transform: none; */
  text-transform: uppercase;
}

body h4 {
  font-size: var(--h4-size);
  color: var(--main-text-color);
  margin-top: 2rem;
}

body h5 {
  color: var(--main-text-color);
  margin-top: 2rem;
}

body .far,
body .fa,
body .fas {
  color: var(--primary);
}

body strong {
  font-family: var(--main-font-family-regular);
  font-weight: 600;
}

.region.region--content a {
  color: var(--main-text-color);
  text-decoration: underline;
}

.region.region--content a:hover {
  color: var(--primary);
  text-decoration: none;
}

.region.region--content a.btn {
  border: 0;
  border-radius: 0;
  font-size: 1.25rem;
  padding: 0 2rem;
  color: white;
}

.region.region--content .btn {
  /* border: 0; */
  border-radius: 0;
  /*   font-size: 1.25rem;
  padding: 0 2rem;
  color: white; */
  background-color: transparent;
}

.region.region--content a.btn.btn-secondary {
  display: inline-block;
  text-decoration: none;
  border: 2px solid;
  line-height: 1;
  padding: 2% 6%;
  transition: 0.35s;
  color: var(--main-text-color);
  font-family: var(--second-font-family);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.region.region--content a.btn.btn-secondary:hover {
  background-color: var(--ss-main-text-color);
  border-color: var(--ss-main-text-color) !important;
}

body .region.region--content .paddle-components-image-block-wrapper .paddle-component--body-section a[href]::after {
  content: none;
}

body .region.region--content h2 a[name] {
  font-size: var(--h2-size);
  color: var(--primary);
  text-decoration: none;
}

p.address {
  margin-bottom: 0;
}

.pagination .page-item {
  padding-left: 0 !important;
}

.pagination .page-item::before {
  content: none !important;
}

.pagination .page-item .page-link {
  text-decoration: none;
  border-radius: 0;
}

.pagination .page-item .page-link:hover {
  color: white !important;
  background-color: var(--ss-main-text-color);
  border-color: var(--ss-main-text-color);
}

.pagination .page-item.active .page-link {
  background-color: var(--ss-main-text-color);
  border-color: var(--ss-main-text-color);
  color: white;
}

.comp_hidden {
  display: none !important;
  visibility: hidden !important;
}

/*---------------------------------------------
        Sitewide Structure
  -----------------------------------------------*/
.page-wrapper .container-max-xxl {
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .page-wrapper .container-max-xxl {
    padding-left: 4.16667%;
    padding-right: 4.16667%;
  }
}
@media (min-width: 1440px) {
  .page-wrapper .container-max-xxl {
    padding-left: 8.33334%;
    padding-right: 8.33334%;
  }
}
@media screen and (min-width: 40em) {
  .threecol-with-title__first-and-second {
    margin: 0 -15px;
  }
}
@media screen and (min-width: 40em) {
  .threecol-with-title__first-and-second > .layout__region {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (min-width: 40em) {
  .layout--fourcol-section > .layout__region {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .layout--fourcol-section > .layout__region {
    flex: 0 1 25%;
    max-width: 25%;
  }
}
.layout--threecol-with-title {
  margin: 0 -15px;
}

.layout--threecol-with-title > div {
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 40em) {
  .threecol-with-title__first-and-second {
    margin: 0 -15px;
  }
}
@media screen and (min-width: 40em) {
  .threecol-with-title__first-and-second > .layout__region {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.page-wrapper-container {
  overflow: hidden;
}

/* Other aspect ratios to try:
   * 56.25% = 16:9
   * 75% = 4:3
   * 66.66% = 3:2
   * 62.5% = 8:5
   */
/*End Sitewide Structure --------------------------------------------------------*/
/*-----------------------------------------------------
        Sitewide Style
  ------------------------------------------------------*/
.comp_footer_gemeente_row,
.comp_footer_toerisme_row {
  display: none;
}

.comp_hidden {
  display: none !important;
  visibility: hidden !important;
}

.page-wrapper .header > .amorphic,
footer.sticky-footer .amorphic {
  display: none;
}

.page-wrapper .container-max-xxl .container-max-xxl {
  padding: 0;
}

.region-wrapper--content {
  padding-bottom: 8rem;
}

.field > .field-with-icon > i {
  color: var(--primary);
}

.toolbar-oriented .toolbar-bar {
  z-index: 700;
}

.region--content .paddle-component--top-section.text {
  font-size: var(--h2-size);
  margin: 0 0 0 0;
  color: var(--main-text-color);
  line-height: 1.1;
  font-weight: normal;
  font-family: var(--main-font-family-Bold);
}

@media (min-width: 768px) {
  .region--content .paddle-component--top-section.text {
    font-size: var(--top-pane-font-size);
  }
}
.region--content .paddle-component--top-section.text::after {
  /* content: '';
            height: 1px;
            width: 86px;
            background-color: var(--primary);
            display: block;
            margin: 15px 0 0 0;
            right: auto;
            top: auto;
            border: 0; */
}

.extlink span {
  font-size: 1rem;
}

.paddle-component--image-block .media-frame::before,
.paddle-component--image-block .media-frame::after,
.paddle-component--image-block > .paddle-component::before,
.paddle-component--image-block > .paddle-component::after,
.paddle-component .media-frame::before,
.paddle-component .media-frame::after,
.paddle-component > .paddle-component::before,
.paddle-component > .paddle-component::after {
  content: none;
}

.view-news a.card {
  box-shadow: none;
  background-color: white;
  position: relative;
}

.view-news a.card::before,
.view-news a.card::after {
  content: none;
}

.paddle-component--bottom-section,
.paddle-component--top-section {
  background-color: transparent;
}

.paddle-component--bottom-section,
.paddle-component--top-section {
  padding: 0;
}

.field-block,
.paddle-component {
  margin-bottom: 2rem;
}

.page-node-type-page .field-block.field-body .label.label--above {
  display: none;
}

/*Table ---*/
table tbody tr {
  border-bottom: 1px solid #ddd;
}

table td,
table th {
  padding: 0.75rem 1rem;
}

.table-striped tbody tr:nth-of-type(odd),
table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.1);
}

.responsive-table {
  min-height: 0.01%;
  overflow-x: auto;
}

@media (max-width: 767px) {
  .responsive-table {
    width: 100%;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media (max-width: 767px) {
  .responsive-table table {
    table-layout: auto;
    width: 800px;
  }
}
/*END Tabel*/
/* Sitewide bullet list --- */
.region--content ul {
  padding: 0;
  margin: 0 0 2rem 0;
  list-style-type: none;
}

.region--content ul li {
  position: relative;
  padding-left: 33px;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.region--content ul li::before {
  display: inline-block;
  position: absolute;
  left: 0;
  content: "";
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 8px;
}

.region--content ul li a {
  color: var(--main-text-color);
}

.region--content ul li a:hover {
  color: var(--primary);
}

.region--content ul li ul {
  margin-top: 0.5rem;
}

.region--content ol {
  padding-left: 26px;
}

.region--content ol li {
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.region--content ol li::marker {
  color: var(--primary);
}

.region--content .news-item.paddle-component--list-block > .paddle-component--body-section > ul > li {
  position: static;
  padding-left: 0;
  line-height: inherit;
  margin-bottom: 0;
}

.region--content .news-item.paddle-component--list-block > .paddle-component--body-section > ul > li::before {
  content: none;
}

.region--content .list-links-col-3 ul,
.region--content .list-links-col-2 ul,
.region--content .list-links-col-1 ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px;
}

.region--content .list-links-col-3 ul li,
.region--content .list-links-col-2 ul li,
.region--content .list-links-col-1 ul li {
  width: 100%;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.region--content .list-links-col-1 li {
  width: 100%;
}

@media (min-width: 579px) {
  .region--content .list-links-col-2 li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 579px) {
  .region--content .list-links-col-3 li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 889px) {
  .region--content .list-links-col-3 li {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
.page-node-type-page .field-block.field-body .label.label--above {
  display: none;
}

.padding-top--30 {
  padding-top: 30px !important;
}

.padding-top--60 {
  padding-top: 60px !important;
}

.padding-top--90 {
  padding-top: 90px !important;
}

.padding-top--120 {
  padding-top: 120px !important;
}

.padding-top--150 {
  padding-top: 150px !important;
}

.padding-top--200 {
  padding-top: 200px !important;
}

.padding-bottom--30 {
  padding-bottom: 30px !important;
}

.padding-bottom--60 {
  padding-bottom: 60px !important;
}

.padding-bottom--90 {
  padding-bottom: 90px !important;
}

.padding-bottom--120 {
  padding-bottom: 120px !important;
}

.padding-bottom--150 {
  padding-bottom: 150px !important;
}

.padding-bottom--200 {
  padding-bottom: 200px !important;
}

.margin-top--30 {
  margin-top: 30px !important;
}

.margin-top--60 {
  margin-top: 60px !important;
}

.margin-top--90 {
  margin-top: 90px !important;
}

.margin-top--120 {
  margin-top: 120px !important;
}

.margin-top--150 {
  margin-top: 150px !important;
}

.margin-top--200 {
  margin-top: 200px !important;
}

.margin-bottom--30 {
  margin-bottom: 30px !important;
}

.margin-bottom--60 {
  margin-bottom: 60px !important;
}

.margin-bottom--90 {
  margin-bottom: 90px !important;
}

.margin-bottom--120 {
  margin-bottom: 120px !important;
}

.margin-bottom--150 {
  margin-bottom: 150px !important;
}

.margin-bottom--200 {
  margin-bottom: 200px !important;
}

.comp_container_width_800 {
  max-width: 800px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ----------------------------------------------------
              Header 
  -----------------------------------------------------*/
.menu--main > .nav-item > a::before {
  content: none;
  position: static;
  bottom: auto;
  border-bottom: 0;
  transform: inherit;
  transform-origin: inherit;
  transition: transform 250ms ease-in-out;
}

.page-wrapper .header .container-max-xxl {
  padding-left: 0;
}

.header .header__wrapper .logo {
  width: 100%;
  min-width: initial;
  width: 100px;
  height: 100px;
}

@media (min-width: 768px) {
  .header .header__wrapper .logo {
    max-width: 150px;
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 992px) {
  .header .header__wrapper .logo {
    max-width: 252px;
    width: 252px;
    height: 252px;
  }
}
.header .header__wrapper .logo img {
  display: none;
}

.header .header__wrapper .logo svg {
  width: 100%;
  height: 100%;
}

.header .header__top {
  padding: 0;
  position: relative;
}

.header .header__top .paddle-search-form {
  margin-left: 10px;
}
@media (min-width: 579px) {
  .header .header__top .paddle-search-form {
    margin-left: 15px;
  }
}
@media (min-width: 991px) {
  .header .header__top .paddle-search-form {
    display: flex;
    flex-direction: row-reverse;
    margin-right: 0;
  }
  .header .header__top .paddle-search-form .search-wrapper {
    position: relative;
  }
}

/* HIDE ON HOME 
.body_homepage .header__top .paddle-search-form {
  display: none;
}*/
@media (max-width: 991px) {
  .header .header__top .paddle-search-form {
    margin: 0 0 0 15px;
    position: static;
  }
}
@media (max-width: 578px) {
  .header .header__top .paddle-search-form {
    margin: 0;
    display: none;
  }
}
.header .header__top .paddle-search-form .search-wrapper {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .header .header__top .paddle-search-form .search-wrapper {
    /* top: 0; */
    display: flex;
    /* width: 0; */
    overflow: hidden;
    /* right: 40px; */
    transition: all 0.35s;
    position: absolute;
    top: 65px;
    width: 350px;
    height: 0;
    right: 0;
  }
}
@media (max-width: 480px) {
  .header .header__top .paddle-search-form .search-wrapper {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .header .header__top .paddle-search-form .search-wrapper {
    top: 0;
    display: flex;
    width: 0;
    overflow: hidden;
    right: 40px;
    transition: all 0.35s;
  }
}
.header .header__top .paddle-search-form .search-wrapper .form-item {
  margin: 0;
}

.header .header__top .paddle-search-form.show form {
  overflow: hidden;
}

.header .header__top .paddle-search-form.show .search-wrapper {
  width: 345px;
  right: 10px;
}
@media (min-width: 992px) {
  .header .header__top .paddle-search-form.show .search-wrapper {
    right: 15px;
  }
}

@media (max-width: 991px) {
  .header .header__top .paddle-search-form.show .search-wrapper {
    right: 0;
    top: 65px;
    width: 350px;
    height: 43px;
  }
}
@media (max-width: 480px) {
  .header .header__top .paddle-search-form.show .search-wrapper {
    width: 300px;
  }
}
.header .header__top .paddle-search-form form input.form-text {
  height: 43px;
  border: 0;
  border-radius: 0;
  background-color: var(--clr-green-10);
}

@media (min-width: 992px) {
  .header .header__top .paddle-search-form form input.form-text {
    width: 100%;
  }
}
.header .header__top .paddle-search-form form input.form-submit {
  background: var(--main-text-color) url(/sites/default/files/2021-07/icon-seach-hover.svg) no-repeat center center;
  color: transparent;
  padding: 0;
  border: 2px solid var(--main-text-color);
  border-radius: 0;
  height: 43px;
  width: 43px;
  margin: 0;
}

.header .header__top .paddle-search-form form input.form-submit:hover {
  background: url(/sites/default/files/2021-07/icon-search.svg) no-repeat center center;
}

.header .header__top .paddle-search-form .search-toggle {
  padding: 0;
  height: 44px;
  width: 43px;
  background: url(/sites/default/files/2021-07/icon-search.svg) no-repeat center center;
  border: 2px solid var(--primary);
  transition: background-color 0.35s;
}

@media (max-width: 991px) {
  .header .header__top .paddle-search-form .search-toggle {
    display: block;
  }
}
.header .header__top .paddle-search-form .search-toggle:hover {
  background: var(--main-text-color) url(/sites/default/files/2021-07/icon-seach-hover.svg) no-repeat center center;
  border-color: var(--main-text-color);
}

.header .header__top .paddle-search-form .search-toggle::before {
  content: "";
}

.header .header__top .paddle-search-form.show .search-toggle {
  background: url(/sites/default/files/2021-07/close-btn.svg) no-repeat center;
  background-size: 21px;
}

.header > .header-content {
  background-color: transparent;
}

.header #block-language-dropdown {
  margin: 0;
  padding: 0;
  position: relative;
  right: 0;
}

@media (min-width: 992px) {
  .header #block-language-dropdown {
    position: absolute;
    right: 0;
    top: -30px;
    margin: 0 0 0 0;
  }
}
.header #block-language-dropdown .dropdown-language-item {
  /* color: var(--primary);*/
  position: absolute;
  top: -16px;
  left: 0;
  line-height: 1.4;
  background-color: #ffffff;
  padding: 0px 24px 9px 12px;
  border-radius: 0;
}

@media (min-width: 992px) {
  .header #block-language-dropdown .dropdown-language-item {
    /*padding-left: 18px;*/
    right: 0;
    left: auto;
  }
}
.header #block-language-dropdown .dropdown-language-item::before {
  /* display: block;
                content: '';
                border-left: 1px solid var(--primary);
                height: 15px;
                position: absolute;
                left: 5px;
                top: 5px;
                transform: rotate( 17deg); */
}

/*
@media (min-width: 992px) {
  .header #block-language-dropdown .dropdown-language-item {
    color: var(--primary);
  }
}*/
.header #block-language-dropdown .dropdown-language-item li a,
.header #block-language-dropdown .dropdown-language-item li span {
  /* color: var(--primary);*/
  font-size: 1rem;
  /* font-weight: bold;*/
  text-transform: uppercase;
}

/*
@media (min-width: 992px) {
  .header #block-language-dropdown .dropdown-language-item li a,
  .header #block-language-dropdown .dropdown-language-item li span {
    color: var(--primary);
  }
}*/
.header #block-language-dropdown .dropbutton-widget {
  position: relative;
  padding: 0;
  margin: 0;
}

.header #block-language-dropdown .dropbutton-toggle {
  width: 20px;
}

.header #block-language-dropdown .dropbutton-toggle button {
  color: white;
}

@media (min-width: 992px) {
  .header #block-language-dropdown .dropbutton-toggle button {
    color: var(--primary);
  }
}
.header #block-language-dropdown .dropbutton-arrow {
  display: inline-block;
  border: 0;
  height: 8px;
  width: 8px;
  border-left: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary) !important;
  transform: rotate(-135deg);
  right: auto;
  left: 3px;
  top: 14px;
}

/*
.theme--dew-blue {
  .header #block-language-dropdown .dropbutton-arrow {
    border-left: 1px solid var(--clr-blue);
    border-top: 1px solid var(--clr-blue) !important;
  }
}

.theme--dune-yellow {
  .header #block-language-dropdown .dropbutton-arrow {
    border-left: 1px solid var(--clr-yellow);
    border-top: 1px solid var(--clr-yellow) !important;
  }
}

.theme--purple {
  .header #block-language-dropdown .dropbutton-arrow {
    border-left: 1px solid var(--clr-purple);
    border-top: 1px solid var(--clr-purple) !important;
  }
}

.theme--factor-50-red {
  .header #block-language-dropdown .dropbutton-arrow {
    border-left: 1px solid var(--clr-red);
    border-top: 1px solid var(--clr-red) !important;
  }
}

.theme--calmeyn-green {
  .header #block-language-dropdown .dropbutton-arrow {
    border-left: 1px solid var(--clr-green);
    border-top: 1px solid var(--clr-green) !important;
  }
}
*/
.header #block-language-dropdown .dropbutton-arrow {
  border-left: 1px solid #000;
  border-top: 1px solid #000 !important;
}

.header #block-language-dropdown .open .dropbutton-arrow {
  border-left: 1px solid white;
  border-top: 1px solid white !important;
  transform: rotate(43deg);
}

.header #block-language-dropdown .open .dropdown-language-item {
  background-color: var(--primary);
}

.header #block-language-dropdown .open .dropdown-language-item li span,
.header #block-language-dropdown .open .dropdown-language-item li a {
  text-decoration: none;
}

.title-large h2 {
  font-size: 2.5rem;
}

.body--corporate-identity .layout-builder__custom.page_wide .layout__region {
  padding: 0;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 {
  margin-top: 10rem;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--first .paddle-component--image-block {
  margin-bottom: 0;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--first .paddle-component--image-block img {
  width: 100%;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second {
  padding: 3% 6%;
  display: flex;
  align-items: center;
  background-color: #fafafb;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: left bottom;
  height: 9px;
  width: 75px;
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
  background-size: contain;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--fourcol-section .layout__region .paddle-component--image-block {
  margin: 0;
}

.body--corporate-identity .layout-builder__custom.page_wide.layout--fourcol-section .layout__region .paddle-component--image-block img {
  width: 100%;
}

/*--- Cookie Banner -----------------------*/
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-message {
  font-size: 1rem;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper {
  max-width: 900px;
  position: relative;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons {
  float: none;
}

@media (min-width: 768px) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons {
    position: absolute;
    bottom: 0;
    right: 45px;
    width: auto;
    float: right;
  }
}
@media (max-width: 600px) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons,
  .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons {
    max-width: 100%;
  }
}
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons .btn,
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons .btn {
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  text-align: center;
  padding: 2px 45px 2px 20px;
  position: relative;
  transition: all 0.35s ease-in-out;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  box-shadow: none;
  text-shadow: none;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons .btn:hover,
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons .btn:hover {
  background-position: calc(100% - 10px) center;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons {
  float: none;
  margin: 0;
}

@media (min-width: 768px) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons {
    float: left;
    margin: 0 0 1em 0;
  }
}
.eu-cookie-withdraw-banner .eu-cookie-compliance-buttons .eu-cookie-withdraw-button {
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  text-align: center;
  padding: 2px 45px 2px 20px;
  position: relative;
  transition: all 0.35s ease-in-out;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  border-radius: 0;
  border: 2px solid white;
  background-color: transparent;
  box-shadow: none;
  text-shadow: none;
}

.eu-cookie-withdraw-banner .eu-cookie-compliance-buttons .eu-cookie-withdraw-button:hover {
  background-position: calc(100% - 10px) center;
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color);
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-message h2,
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-message p,
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-message a,
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper label,
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper button {
  color: var(--main-text-color) !important;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-message h2 {
  font-size: 1.5rem;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-message p {
  font-size: 1rem;
  font-weight: normal;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 0;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn:hover {
  background-color: var(--main-text-color) !important;
  color: white !important;
  border-color: var(--main-text-color);
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn.btn-link {
  border: 0;
  color: var(--main-text-color);
  text-decoration: underline;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn.btn-link:hover {
  background-color: transparent !important;
  color: var(--main-text-color) !important;
  text-decoration: none;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories {
  flex: 1 0 100%;
  width: 100%;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories .eu-cookie-compliance-category {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories .eu-cookie-compliance-category {
    display: flex;
    flex-direction: row;
  }
}
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories .eu-cookie-compliance-category .form-check {
  flex: 0 0 275px;
  max-width: 275px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories .eu-cookie-compliance-category .eu-cookie-compliance-category-description {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
  }
}
.eu-cookie-compliance-banner .form-check-input:disabled ~ .form-check-label,
.eu-cookie-compliance-banner .form-check-input[disabled] ~ .form-check-label {
  color: #cacaca;
}

.eu-cookie-compliance-banner .form-check {
  line-height: 1.4;
}

.eu-cookie-withdraw-tab {
  border: 1px solid #bdbdbd;
  padding: 6px 15px;
  line-height: 1;
  font-size: 1rem;
}

.eu-cookie-withdraw-banner {
  background-color: var(--primary);
  padding: 1.5rem 2rem;
}

.eu-cookie-withdraw-banner p {
  font-size: 1rem;
}

.eu-cookie-withdraw-banner .eu-cookie-compliance-buttons {
  display: inline-block;
}

.eu-cookie-withdraw-banner .eu-cookie-compliance-content .eu-cookie-compliance-message {
  color: white;
}

.eu-cookie-withdraw-banner .eu-cookie-compliance-content .eu-cookie-compliance-message p,
.eu-cookie-withdraw-banner .eu-cookie-compliance-content .eu-cookie-compliance-message h2 {
  color: var(--main-text-color) !important;
}

.eu-cookie-withdraw-banner .eu-cookie-compliance-content .eu-cookie-compliance-message h2 {
  font-size: 1.5rem;
}

#sliding-popup .eu-cookie-withdraw-tab {
  font-size: 0.9rem;
}

.eu-cookie-withdraw-banner,
#sliding-popup .eu-cookie-withdraw-tab {
  background-color: var(--primary) !important;
}

.eu-cookie-compliance-banner {
  background-color: var(--primary);
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons .btn:hover,
.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons .btn:hover {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
}

.eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn:hover {
  color: var(--primary);
}

.theme--dew-blue .eu-cookie-compliance-banner {
  background-color: var(--clr-blue);
}

.theme--dew-blue .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons .btn:hover,
.theme--dew-blue .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons .btn:hover {
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg);
}

.theme--dew-blue .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn:hover {
  color: var(--clr-blue);
}

.theme--dune-yellow .eu-cookie-compliance-banner {
  background-color: var(--clr-yellow);
}

.theme--dune-yellow .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons .btn:hover,
.theme--dune-yellow .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons .btn:hover {
  background-image: url(/sites/default/files/2021-06/yellow_arrow.svg);
}

.theme--dune-yellow .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn:hover {
  color: var(--clr-yellow);
}

.theme--factor-50-red .eu-cookie-compliance-banner {
  background-color: var(--clr-red);
}

.theme--factor-50-red .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons .btn:hover,
.theme--factor-50-red .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons .btn:hover {
  background-image: url(/sites/default/files/2021-06/arrow_red.svg);
}

.theme--factor-50-red .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn:hover {
  color: var(--clr-red);
}

.theme--purple .eu-cookie-compliance-banner {
  background-color: var(--clr-purple);
}

.theme--purple .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-categories-buttons .btn:hover,
.theme--purple .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .eu-cookie-compliance-buttons .btn:hover {
  background-image: url(/sites/default/files/2021-06/purple_arrow.svg);
}

.theme--purple .eu-cookie-compliance-banner .eu-cookie-compliance-wrapper .btn:hover {
  color: var(--clr-purple);
}

div#sliding-popup {
  padding-top: 20px;
  background-repeat: repeat-x;
  background-position: left top;
  text-align: left;
  background-color: transparent;
}

div#sliding-popup .eu-cookie-compliance-banner {
  padding-top: 3rem;
}

.wave_loopduin.theme--dune-yellow #sliding-popup {
  background-image: url(/sites/default/files/2022-02/loopduin_wave_cookie-yellow.png);
}

.theme--factor-50-red.wave_loopduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/loopduin_wave_cookie-red.png);
}

.theme--calmeyn-green.wave_loopduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/loopduin_wave_cookie-green.png);
}

.theme--purple.wave_loopduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/loopduin_wave_cookie-purple.png);
}

.theme--dew-blue.wave_loopduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/loopduin_wave_cookie-blue.png);
}

.theme--purple.wave_helmduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/helmduin_wave_cookie-purple.png);
}

.theme--calmeyn-green.wave_helmduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/helmduin_wave_cookie-green.png);
}

.theme--dune-yellow.wave_helmduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/helmduin_wave_cookie-yellow.png);
}

.theme--factor-50-red.wave_helmduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/helmduin_wave_cookie-red.png);
}

.theme--dew-blue.wave_helmduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/helmduin_wave_cookie-blue.png);
}

.theme--calmeyn-green.wave_duinvallei #sliding-popup {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-green.png);
}

.theme--purple.wave_duinvallei #sliding-popup {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-purple.png);
}

.theme--factor-50-red.wave_duinvallei #sliding-popup {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-red.png);
}

.theme--dune-yellow.wave_duinvallei #sliding-popup {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-yellow.png);
}

.theme--dew-blue.wave_duinvallei #sliding-popup {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-blue.png);
}

.theme--factor-50-red.wave_paraboolduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/paraboolduin_wave_cookie-red.png);
}

.theme--dune-yellow.wave_paraboolduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/paraboolduin_wave_cookie-yellow.png);
}

.theme--dew-blue.wave_paraboolduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/paraboolduin_wave_cookie-blue.png);
}

.theme--purple.wave_paraboolduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/paraboolduin_wave_cookie-purple.png);
}

.theme--calmeyn-green.wave_paraboolduin #sliding-popup {
  background-image: url(/sites/default/files/2022-02/paraboolduin_wave_cookie-green.png);
}

/*--- END Cookie Banner -----------------------*/
/* --- Webform --- */
.webform-progress-bar li.webform-progress-bar__page:first-child span,
.webform-progress-bar li.webform-progress-bar__page:last-child span {
  border-left-color: #ececec;
}

.webform-progress-bar li.webform-progress-bar__page {
  line-height: 30px !important;
}

.webform-progress-bar li.webform-progress-bar__page {
  background-color: white;
  margin-bottom: 0 !important;
}

.webform-progress-bar li.webform-progress-bar__page > b:after,
.webform-progress-bar li.webform-progress-bar__page > b:before {
  border-left-color: #ffffff;
}

.webform-progress-bar li.webform-progress-bar__page > b:after {
  border-left-color: #17162c;
  top: -2px;
  border-width: 17px;
}

.webform-progress-bar li.webform-progress-bar__page:last-child span {
  border-left-color: white;
  right: -13px;
  transform: translateX(17px);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.webform-progress-bar {
  padding-left: 0 !important;
  padding-right: 30px;
}

.webform-submission-form .webform-actions input {
  background-color: black;
  border: 2px solid black !important;
}

.webform-submission-form .webform-actions input:hover {
  background-color: transparent;
}

.webform-submission-form .form-item {
  margin-bottom: 1rem;
  line-height: 1;
}

.webform-submission-form .form-item p {
  line-height: 1.4;
}

.webform-progress {
  margin-bottom: 2rem;
}

.webform-submission-form .form-item .form-check input {
  /* margin-top: 8px; */
}

.webform-submission-form .form-control {
  border-radius: 0;
}

.webform-submission-form input.form-submit.btn.btn-danger {
  background-color: black;
}

.webform-submission-form input.form-submit.btn.btn-danger:hover {
  background-color: #4a4747;
  color: white;
}

.webform-submission-form .webform-image-file {
  flex-direction: column;
}

.webform-submission-form .webform-image-file .form-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.webform-submission-form .form-type-webform-image-file > label {
  font-weight: bold !important;
}

.webform-submission-form fieldset:not(.form-composite) {
  background: transparent;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

fieldset:not(.form-composite) legend {
  margin-bottom: 0;
  border-radius: 0;
}

fieldset:not(.form-composite) .fieldset-wrapper {
  border: 1px solid #afacac;
  border-top: 0;
}

fieldset:not(.form-composite) .fieldset-wrapper .fieldset-wrapper {
  border: 0;
}

form.webform-submission-form .form-actions input.form-submit {
  background-color: transparent;
  border-color: var(--main-text-color);
  color: var(--main-text-color);
  padding: 2px 20px 2px 20px;
  font-size: 1.5rem;
  font-weight: normal;
}

form.webform-submission-form .form-actions input.form-submit:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color);
}

form.webform-submission-form .form-managed-file {
  flex-direction: column;
}

form.webform-submission-form .form-managed-file .custom-file {
  margin-bottom: 1rem;
}

form.webform-submission-form .form-managed-file .form-check {
  margin-bottom: 1rem;
  line-height: 1;
}

form.webform-submission-form .form-managed-file input.form-submit.btn-danger {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: #b71717;
  border-color: #b71717;
  background-color: white;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  font-family: var(--second-font-family);
}

form.webform-submission-form .form-managed-file input.form-submit.btn-danger:hover {
  background-color: #b71717;
  color: white;
}

details > legend,
details > summary,
fieldset:not(.form-composite) > legend,
fieldset:not(.form-composite) > summary {
  background: #e3e3e3;
  color: #000000;
}

.form-managed-file > span {
  padding: 0;
  border: 0;
}

/* --- END Webform --- */
/*---------------------------------------------------
        -- Components --
  ----------------------------------------------------*/
.view-news .card-body {
  padding: 0 0 0 0;
}

.view-news a.card {
  text-decoration: none;
  position: relative;
  padding-bottom: 12px;
}

.view-news .card-body h3.card-title {
  line-height: 1;
  font-size: 2rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.view-news .card-body .badge.badge-light {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 14px;
}

.view-news .card-body .badge.badge-light i.fa-calendar-day {
  background: url(/sites/default/files/2021-07/icon-cta_afspraak-hover.svg);
  width: 15px;
  height: 17px;
  background-size: contain;
  margin-right: 11px !important;
}

.view-news .card-body .badge.badge-light i.fa-calendar-day::before {
  content: none;
}

.view-news .card-body .field--body {
  margin-bottom: 25px;
  margin-top: 33px;
}

.view-news a.card:hover .card-body h3.card-title {
  color: var(--primary);
}

.view-news a.card:hover .card-body .item {
  color: var(--main-text-color);
}

.view-news a.card:hover .field--featured-image img {
  transform: scale(1.05);
}

.view-news a.card .field--featured-image img {
  transition: 0.35s;
}

.view-news a.card .field--featured-image {
  overflow: hidden;
}

.view-news a.card::after {
  content: "Lees meer";
  font-weight: 400;
  font-family: var(--second-font-family);
  font-size: 22px;
  display: inline-block;
  width: 112px;
  text-transform: uppercase;
  color: var(--main-text-color);
  padding: 2px 40px 2px 0px;
  background: url(/sites/default/files/2021-06/green_arrow.svg) no-repeat calc(100% - 22px) center;
  margin-top: auto;
  transition: all 0.35s ease-in-out;
  right: auto;
  top: auto;
  bottom: 0;
  border: 0;
  height: auto;
  z-index: 1;
}

.view-news a.card:hover::after {
  background: url(/sites/default/files/2021-07/arrow_black.svg) no-repeat calc(100% - 12px) center !important;
}

.footer-copyright-wrapper {
  display: none;
}

@media (max-width: 767px) {
  .comp--switch-col.row {
    flex-direction: column-reverse;
  }
}
/* Openning Hours */
.field-responsible_service article.node--organisation,
.paddle-components-organisation-block-wrapper article.node--organisation {
  background-color: var(--clr-green-10);
  padding: 40px;
  position: relative;
}

@media (max-width: 578px) {
  .field-responsible_service article.node--organisation,
  .paddle-components-organisation-block-wrapper article.node--organisation {
    padding: 20px;
  }
}
.field-responsible_service article.node--organisation::after,
.paddle-components-organisation-block-wrapper article.node--organisation::after {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -21px;
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_green.jpg) repeat-x right center;
  transform: rotate(180deg);
}

.field-responsible_service article.node--organisation h2,
.paddle-components-organisation-block-wrapper article.node--organisation h2 {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.field-responsible_service article.node--organisation h2::before,
.paddle-components-organisation-block-wrapper article.node--organisation h2::before {
  content: "";
  display: block;
  width: 84px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 2px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
}

.field-responsible_service article.node--organisation h2 a,
.paddle-components-organisation-block-wrapper article.node--organisation h2 a {
  text-decoration: none;
}

.field-responsible_service article.node--organisation .field-with-icon__icon,
.paddle-components-organisation-block-wrapper article.node--organisation .field-with-icon__icon {
  display: none;
}

.field-responsible_service article.node--organisation .field,
.paddle-components-organisation-block-wrapper article.node--organisation .field {
  margin-bottom: 5px;
}

.opening-hours {
  box-shadow: none;
  background-color: transparent;
  margin-bottom: 0;
}

.opening-hours .opening-hours-top__title {
  margin-bottom: 0;
  font-weight: 300;
}

.opening-hours .opening-hours-top__title .fas.fa-clock {
  display: none;
}

.opening-hours .opening-hours-top__title strong {
  font-weight: 300;
}

.opening-hours .opening-hours-top {
  margin: 10px 0 15px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-green);
  align-items: flex-start;
}

.opening-hours .opening-hours-top .next-previous {
  margin-bottom: 0;
  margin-top: 10px;
}

.opening-hours .opening-hours-top .next-previous i.fas {
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
}

.opening-hours .opening-hours-top .next-previous i.fas::before {
  content: "";
}

.opening-hours .opening-hours-top .next-previous .fa-chevron-circle-left {
  background-image: url(/sites/default/files/2021-07/arrow-green-left.svg);
}

.opening-hours .opening-hours-top .next-previous .fa-chevron-circle-right {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
}

.opening-hours .day {
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px dashed var(--clr-green);
  padding: 10px 0;
  align-items: center;
}

.opening-hours .day:last-child {
  border-bottom: 1px dashed var(--clr-green);
}

.opening-hours .day .day-opening-hours {
  text-align: right;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 578px) {
  .opening-hours .day .day-opening-hours {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }
}
.opening-hours .day .day-opening-hours .opening-hour {
  padding-left: 0;
}

.opening-hours .day .day-label {
  flex: 0 0 50%;
  width: 50%;
  padding-top: 0;
  font-size: 18px;
}

@media (max-width: 578px) {
  .opening-hours .day .day-label {
    flex: 0 0 100%;
    width: 100%;
  }
}
.opening-hours .day.today {
  background-color: var(--clr-green-10);
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
  border-color: var(--clr-green);
}

.opening-hours .day.today .day-label {
  font-weight: 400;
}

.opening-hour {
  justify-content: flex-end;
  margin-bottom: 0;
  padding-left: 15px;
  flex-direction: column;
}

.opening-hour .time {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  font-weight: 300;
  color: var(--main-text-color);
  border: 0;
  margin: 0;
  font-size: 19px;
}

.opening-hour .time::after {
  content: none;
}

.opening-hour .time.closed {
  color: #cc2b00;
}

.opening-hour .label {
  text-transform: uppercase;
  font-size: 1rem;
  padding-top: 0;
}

.opening-hour .time.labelOpen,
.opening-hour .time.closes-soon,
.opening-hour .time.labelClose {
  font-weight: bold;
}

.opening-hour .time.labelOpen {
  color: #00913f;
}

.opening-hour .time.closes-soon {
  color: #cc9300 !important;
  border-color: #cc9300 !important;
}

.opening-hour .time.labelClose {
  color: #cc2b00;
}

.opening-hour .time.labelOpen span.fas.fa-clock,
.opening-hour .time.closes-soon span.fas.fa-clock,
.opening-hour .time.labelClose span.fas.fa-clock {
  color: var(--main-text-color);
  margin-right: 8px;
}

.node--opening-hours--opening-hours-status .opening-hour {
  padding-left: 0;
}

.node--opening-hours--opening-hours-status .opening-hour .time {
  position: relative;
}

.node--opening-hours--opening-hours-status .opening-hour .time::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: var(--main-text-color);
  margin-right: 8px;
}

/* END Openning Hours */
.comp--custom-content-block .paddle-component--text-block {
  background-color: var(--clr-green-10);
  padding: 40px;
  position: relative;
  margin-bottom: 4rem;
}

.comp--custom-content-block .paddle-component--text-block::after {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -21px;
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_green.jpg) repeat-x right center;
  transform: rotate(180deg);
}

.comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 30px;
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: var(--h2-size);
  color: var(--main-text-color);
}

.comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text a {
  text-decoration: none;
}

.comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  content: "";
  display: block;
  width: 84px;
  height: 10px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 2px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
}

.comp--custom-content-block .paddle-component--text-block .paddle-component--body-section p {
  line-height: 1.6;
}

.comp--block-black-bg-color {
  height: calc(100% - 2rem);
  background-color: var(--main-text-color);
}

.comp--block-black-bg-color .paddle-component--text-block {
  padding: 40px;
}

.comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text {
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 600;
}

.comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  content: "";
  position: static;
  border: 0;
  display: block;
  width: 84px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
  margin-top: 12px;
}

.comp--block-black-bg-color .paddle-component--text-block .paddle-component--body-section * {
  color: white !important;
}

.comp--block-black-bg-color .paddle-component--text-block .paddle-component--bottom-section {
  margin: 0;
  text-align: left;
}

.comp--block-black-bg-color .paddle-component--text-block .paddle-component--bottom-section a {
  display: inline-block;
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: white;
  display: inline-block;
  border: 2px solid white;
  text-align: center;
  padding: 6px 55px 6px 15px;
  position: relative;
  transition: all 0.35s ease-in-out;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat calc(100% - 26px) center;
  height: auto;
  line-height: 1;
}

.comp--block-black-bg-color .paddle-component--text-block .paddle-component--bottom-section a::after {
  display: none;
}

.comp--block-black-bg-color .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: var(--main-text-color);
  background: white url(/sites/default/files/2021-07/arrow_black.svg) no-repeat calc(100% - 15px) center;
  color: black !important;
}

/*---- Header background image --------*/
.comp_page_header_banner_council {
  display: none;
}

.body_header-image .page-wrapper .header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  position: relative;
  margin-bottom: 35px;
  z-index: 10;
}

@media (min-width: 768px) {
  .body_header-image .page-wrapper .header {
    height: 480px;
  }
}
.body_header-image .page-wrapper .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent linear-gradient(180deg, #16152c 0%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
  z-index: -5;
}

.body_header-image .page-wrapper .header > .header-content {
  border-bottom: 0;
}

.body_header-image .page-wrapper .header .paddle-search-form .search-toggle {
  background-image: url(/sites/default/files/2021-07/icon-seach-hover.svg);
}

body.body_main_site.body_header-image .header .paddle-search-form form input.form-text,
.body_header-image .page-wrapper .header .paddle-search-form form input.form-text {
  background-color: white;
}

.body_header-image .page-wrapper .header .paddle-search-form form input.form-submit {
  background-image: url(/sites/default/files/2021-07/icon-seach-hover.svg);
}

.body_header-image .page-wrapper .header .paddle-search-form.show .search-toggle {
  background: url(/sites/default/files/2021-07/close-btn-white.svg) no-repeat center;
}

.body_header-image .page-wrapper .paddle-components-image-block-wrapper.header-image {
  display: none;
}

.body_header-image #region-header_top ul.menu--main li a {
  color: white;
}

/*---- End Header background image ----*/
/* --- Button with title text --- */
.body_main_site .comp_btn_with_title_text__council,
body:not(.body_subsite) .comp_btn_with_title_text__council {
  height: 100%;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block {
  border: 2px solid var(--clr-green);
  padding: 35px 40px 25px 40px;
  transition: 0.35s ease-in-out;
  height: calc(100% - 30px);
  position: relative;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block::after,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat center center;
  position: absolute;
  right: 25px;
  left: auto;
  bottom: 20px;
  top: auto;
  opacity: 0;
  transition: 0.35s ease-in-out;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block a,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block a {
  text-decoration: none;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--body-section a.ext .extlink,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--body-section a.ext .extlink {
  display: none;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text {
  text-transform: uppercase;
  font-size: 1.875rem;
  font-weight: 600;
  font-family: var(--second-font-family);
  position: relative;
  line-height: 1;
  margin-bottom: 10px;
  position: static;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
  margin-top: 8px;
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  border: 0;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text a::before,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text a:hover,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text a:hover {
  color: white;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block:hover,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block:hover {
  background-color: var(--main-text-color);
  border-color: var(--main-text-color);
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block:hover::after,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block:hover::after {
  opacity: 1;
}

.body_main_site .comp_btn_with_title_text__council .paddle-component--text-block:hover a,
body:not(.body_subsite) .comp_btn_with_title_text__council .paddle-component--text-block:hover a {
  color: white;
}

.comp_wrapper_call_to_action .layout__region--content {
  display: flex;
  margin: 0 -15px;
  width: auto;
  flex-wrap: wrap;
}

@media (max-width: 578px) {
  .comp_wrapper_call_to_action .layout__region--content {
    justify-content: center;
  }
}
@media (min-width: 1250px) {
  .comp_wrapper_call_to_action .layout__region--content {
    justify-content: center;
    margin: 0 -6px;
  }
}
@media (min-width: 1660px) {
  .comp_wrapper_call_to_action .layout__region--content {
    padding: 0 15px;
    margin: 0 -15px;
  }
}
.comp_wrapper_call_to_action .comp_call_to_action_btn {
  padding: 0 15px;
}

@media (max-width: 578px) {
  .comp_wrapper_call_to_action .comp_call_to_action_btn {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1250px) {
  .comp_wrapper_call_to_action .comp_call_to_action_btn {
    padding: 0 6px;
  }
}
@media (min-width: 1660px) {
  .comp_wrapper_call_to_action .comp_call_to_action_btn {
    padding: 0 15px;
  }
}
.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block {
  margin: 0 0 0 0;
  position: relative;
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text {
  width: 246px;
  height: 168px;
  margin-bottom: 30px;
  padding: 0 15px 10px 15px;
  text-align: center;
  font-family: var(--second-font-family);
  font-weight: 600;
  font-size: 1.75rem;
  text-transform: uppercase;
  background-color: var(--clr-green);
  position: relative;
  transition: 0.35s;
}

@media (max-width: 578px) {
  .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text {
    width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    padding: 15px;
  }
}
@media (min-width: 1250px) {
  .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text {
    width: 215px;
  }
}
@media (min-width: 1660px) {
  .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text {
    width: 246px;
  }
}
.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text a {
  text-decoration: none;
  display: block;
  transition: 0.35s;
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter {
  min-height: 102px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 578px) {
  .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter {
    min-height: 65px;
    width: 95px;
    justify-content: flex-start;
  }
}
.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after {
  content: "";
  display: block;
  width: 50px;
  height: 10px;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
  opacity: 0;
  transition: 0.35s;
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter img {
  display: inline-block;
  margin-top: 0;
  transition: 0.35s;
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover {
  background-color: var(--main-text-color);
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover a {
  color: var(--clr-green);
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover .svg-formatter::before {
  z-index: 10;
  margin-top: -10px;
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover .svg-formatter::after {
  opacity: 1;
}

.comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover .svg-formatter img {
  margin-top: -10px;
}

.comp_wrapper_call_to_action .cta_icon_active.comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text {
  background-color: var(--main-text-color) !important;
}

.comp_wrapper_call_to_action .cta_icon_active.comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text a {
  color: white;
}

.comp_border_box_free_text_with_link {
  height: 100%;
}

.comp_border_box_free_text_with_link .paddle-component--text-block {
  position: relative;
  border: 2px solid var(--clr-green);
  padding: 34px 40px 34px 40px;
  height: calc(100% - 2rem);
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  font-size: 1.875rem;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 25px;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a {
  text-decoration: none;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after {
  content: "";
  position: static;
  border: 0;
  display: block;
  width: 84px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
  margin-top: 6px;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--body-section ul li {
  padding-left: 0;
  margin-bottom: 8px;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--body-section ul li::before {
  content: none;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 0;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a {
  display: inline-block;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 1.375rem;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-right: 37px;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 9px;
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 10px;
  transition: all 0.35s ease-in-out;
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: var(--main-text-color);
}

.comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2021-07/arrow_black.svg);
  right: 0px;
}

.comp_visit_de_panne .paddle-component--text-block {
  position: relative;
  display: flex;
  overflow: hidden;
}

@media (max-width: 767px) {
  .comp_visit_de_panne .paddle-component--text-block {
    flex-direction: column;
  }
}
.comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 0 0;
  position: static;
}

@media (min-width: 768px) {
  .comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image picture {
  display: flex;
  height: 100%;
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image a {
  display: block;
  height: 100%;
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section {
  flex: 0 0 100%;
  max-width: 100%;
  background-color: var(--clr-green);
  padding: 5%;
  position: relative;
}

@media (min-width: 768px) {
  .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
.comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  content: "";
  display: block;
  position: absolute;
  left: -19px;
  top: 0;
  background: url(/sites/default/files/2021-06/wave-vertical-green_0.png) repeat-y left center;
  width: 19px;
  height: 100%;
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 33px;
  color: var(--main-text-color);
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 10px;
  position: absolute;
  bottom: -12px;
  left: 2px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green_visit_panne.svg);
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section a {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  border: 2px solid white;
  text-align: center;
  padding: 2px 55px 2px 15px;
  position: relative;
  transition: all 0.35s ease-in-out;
  margin-top: 30px;
}

.comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 22px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}

.comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a {
  background-color: var(--main-text-color);
  color: white !important;
  border-color: var(--main-text-color);
}

.comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a::after {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  right: 15px;
}

.paddle-components-download-block-wrapper .paddle-component--top-section.text {
  font-size: var(--h3-size);
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.3;
}

.paddle-component--carousel-block ul.slides {
  margin-bottom: 0;
}

.paddle-component--carousel-block ul.slides li {
  padding-left: 0;
  margin-bottom: 0;
}

.paddle-component--carousel-block ul.slides li::before {
  content: none;
}

.paddle-component--carousel-block .figcaption {
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}

.paddle-component--carousel-block .carousel-navigation a,
.paddle-component--carousel-block .flex-pauseplay a {
  transition: 0.35s;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0);
}

.paddle-component--carousel-block .carousel-navigation a i,
.paddle-component--carousel-block .flex-pauseplay a i {
  transition: 0.35s;
}

.paddle-component--carousel-block .carousel-navigation a:hover,
.paddle-component--carousel-block .flex-pauseplay a:hover {
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.4);
}

.paddle-component--carousel-block .carousel-navigation a:hover i,
.paddle-component--carousel-block .flex-pauseplay a:hover i {
  color: white;
}

.body_main_site .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary,
.body_main_site .field-introduction p a.btn-primary,
.body_subsite .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary,
.body_subsite .field-introduction p a.btn-primary {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  border: 2px solid;
  text-align: center;
  padding: 10px 2em 10px 2em;
  position: relative;
  transition: all 0.35s ease-in-out;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.17;
}

.region--content .field-block .field.field--type--text-long p a.btn-primary,
.region.region--content label.btn-primary {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  border: 2px solid;
  text-align: center;
  padding: 10px 2em 10px 2em;
  position: relative;
  transition: all 0.35s ease-in-out;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.17;
}

.body_main_site .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
.body_main_site .field-introduction p a.btn-primary:hover,
.body_subsite .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
.body_subsite .field-introduction p a.btn-primary:hover {
  background-color: var(--main-text-color);
  color: var(--clr-green);
  border-color: var(--main-text-color) !important;
}

.region--content .field-block .field.field--type--text-long p a.btn-primary:hover,
.region.region--content label.btn-primary:hover {
  background-color: var(--main-text-color);
  color: var(--clr-green);
  border-color: var(--main-text-color) !important;
}

/* QUICKFIX BUTTON MELDING-APP */
.region.region--content label.btn-primary:hover {
  color: white !important;
}

.body_main_site .comp--block-woth-gray-bg {
  background-color: #ececec;
  padding: 4% 5%;
  margin-bottom: 2rem;
}

.body_main_site .comp--block-woth-gray-bg .paddle-component {
  margin-bottom: 0;
}

.body_main_site .comp--block-woth-gray-bg .paddle-component--top-section.text {
  margin-top: 0;
  margin-bottom: 1rem;
}

.body_main_site .comp--block-woth-gray-bg .media.align-left {
  margin-bottom: 0;
  margin-right: 20px;
}

.body_main_site .comp--block-woth-gray-bg .paddle-component--body-section p:last-child .comp--block-woth-gray-bg .paddle-component--body-section ul:last-child .comp--block-woth-gray-bg .paddle-component--body-section li:last-child {
  margin-bottom: 0;
}

.body_main_site .comp--block-woth-gray-bg .paddle-component--body-section h2:first-child .comp--block-woth-gray-bg .paddle-component--body-section h3:first-child {
  margin-top: 0;
}

.comp--btn-simple-large .paddle-component--top-section.text a {
  font-size: 1.875rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--clr-green);
  text-align: center;
  padding: 10px 7%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s;
  line-height: 1;
  min-height: 80px;
  gap: 10px;
}

.comp--btn-simple-large .paddle-component--top-section.text a:hover {
  background-color: black;
  color: white !important;
  border-color: black !important;
}

.paddle-search-form.comp--search-field {
  margin: 0 0 0 0;
}

.paddle-search-form.comp--search-field .paddle-search-form {
  margin: 0 0 0 0;
}

.paddle-search-form.comp--search-field .form-item {
  margin: 0 0 0 0;
  display: flex;
  width: 100%;
}

.paddle-search-form.comp--search-field .form-item input.form-text {
  border: 1px solid black;
  border-right: 0;
  border-radius: 0;
  height: 54px;
  width: 100%;
}

.paddle-search-form.comp--search-field .search-wrapper input.form-submit {
  background: var(--clr-blue) url(/sites/default/files/2021-07/icon-seach-hover.svg) no-repeat center center;
  font-size: 0;
  border: 0;
  height: 54px;
  transition: 0.0001s !important;
}

.paddle-search-form.comp--search-field .search-wrapper input.form-submit:hover {
  background-color: black !important;
}

/*---------------------------------------------------
        Main site - Common style
  ----------------------------------------------------*/
.body_main_site h1,
body:not(.body_subsite) h1 {
  margin-top: 2.5rem;
  margin-bottom: 70px;
  position: relative;
}

.body_main_site h1::after,
body:not(.body_subsite) h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 2px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
}

.body_main_site .header,
body:not(.body_subsite) .header {
  margin-bottom: 3rem;
}

.body_main_site .header .header__wrapper .hamburger,
body:not(.body_subsite) .header .header__wrapper .hamburger {
  display: none;
} /*
.body_main_site .header #block-language-dropdown,*/
.body_main_site .header #block-mainnavigation,
body:not(.body_subsite) .header #block-mainnavigation {
  display: none;
}

@media (max-width: 991px) {
  .body_main_site .header .header__top .collapse.navbar-collapse,
  body:not(.body_subsite) .header .header__top .collapse.navbar-collapse {
    display: flex;
  }
}
.body_main_site .header #region-header_top,
body:not(.body_subsite) .header #region-header_top {
  position: absolute;
  right: 0;
  top: 38px;
  z-index: 10;
  display: flex;
}

@media (max-width: 991px) {
  .body_main_site .header #region-header_top,
  body:not(.body_subsite) .header #region-header_top {
    top: 20px;
    align-items: center;
    right: -15px;
  }
}
.body_main_site .header #region-header_top ul.menu--main,
body:not(.body_subsite) .header #region-header_top ul.menu--main {
  margin: 0;
}

@media (max-width: 991px) {
  .body_main_site .header #region-header_top ul.menu--main,
  body:not(.body_subsite) .header #region-header_top ul.menu--main {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 0 0 0;
  }
}
.body_main_site .header #region-header_top ul.menu--main li a,
body:not(.body_subsite) .header #region-header_top ul.menu--main li a {
  padding: 0 0 0 0;
}

.body_main_site .header #region-header_top ul.menu--main li:nth-child(1),
body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(1) {
  margin-right: 15px;
}

@media (max-width: 578px) {
  #block-topnavigation {
    position: unset;
  }
  .body_main_site .header #region-header_top ul.menu--main,
  body:not(.body_subsite) .header #region-header_top ul.menu--main {
    position: unset;
  }
  .body_main_site .header #region-header_top ul.menu--main li:nth-child(1),
  body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(1) {
    position: absolute;
    top: 60px;
    right: 0;
    margin-right: 0 !important;
  }
}
.body_main_site .header #region-header_top ul.menu--main li:nth-child(1) a,
body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(1) a {
  border: 2px solid var(--clr-green);
  padding: 7px 16px;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 26px;
  transition: 0.35s;
  font-family: var(--second-font-family);
  white-space: nowrap;
}

@media (max-width: 578px) {
  .body_main_site .header #region-header_top ul.menu--main li:nth-child(1) a,
  body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(1) a {
    padding: 7px 10px;
    font-size: 1.5rem;
  }
}
.body_main_site .header #region-header_top ul.menu--main li:nth-child(1) a:hover,
body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(1) a:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color);
}

.body_main_site .header #region-header_top ul.menu--main li:nth-child(2) a,
body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(2) a {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-left: 57px;
  font-family: var(--second-font-family);
}

@media (max-width: 578px) {
  .body_main_site .header #region-header_top ul.menu--main li:nth-child(2) a,
  body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(2) a {
    padding-left: 0;
    margin-top: 2px;
    font-weight: 400;
  }
}
.body_main_site .header #region-header_top ul.menu--main li:nth-child(2) a::before,
body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(2) a::before {
  content: "";
  display: block;
  width: 40px;
  height: 38px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(/sites/default/files/2021-06/icon-menu_green.svg);
  position: absolute;
  left: 0;
  transition: 0.35s;
}

@media (max-width: 578px) {
  .body_main_site .header #region-header_top ul.menu--main li:nth-child(2),
  body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(2) {
    padding-left: 50px;
    position: relative;
  }
  .body_main_site .header #region-header_top ul.menu--main li:nth-child(2) a,
  body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(2) a {
    position: unset;
  }
  .body_main_site .header #region-header_top ul.menu--main li:nth-child(2) a::before,
  body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(2) a::before {
    /*  content: none;
    background-size: 28px;
                       top: -3px */
    left: 0;
  }
}
.body_main_site .header #region-header_top ul.menu--main li:nth-child(2) a:hover::before,
body:not(.body_subsite) .header #region-header_top ul.menu--main li:nth-child(2) a:hover::before {
  background-image: url(/sites/default/files/2021-07/icon-menu-hover.svg);
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb {
  margin-bottom: 1rem;
  margin-top: 0rem;
  padding: 0;
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item {
  font-size: 15px;
}

@media (max-width: 991px) {
  .body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item,
  body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item {
    font-size: 18px;
  }
}
.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child {
  padding-right: 6px;
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a {
  color: var(--clr-green);
  height: auto;
  width: auto;
  font-size: 1.15rem;
  vertical-align: top;
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a::before,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a::before {
  font-weight: 900;
  font-size: 0.75rem;
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a {
  line-height: 1;
  color: var(--clr-green);
  text-decoration: none;
  border: 0;
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a:hover,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a:hover {
  border: 0;
  text-decoration: underline;
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-right: 7px;
  color: var(--main-text-color);
}

.body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-size: 11px;
  padding-left: 4px;
  color: var(--main-text-color);
  opacity: 1;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .body_main_site .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
  body:not(.body_subsite) .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-size: 18px;
  }
}
/*---------------------------------------------------
        Landing page level 2
  ----------------------------------------------------*/
.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  min-height: 165px;
  border: 2px solid var(--clr-green);
  margin-bottom: 10px;
  transition: 0.35s ease-in-out;
}

@media (min-width: 1170px) {
  .body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  /* ONE COL */
  .body_landingpage_level2 .layout--onecol .paddle-components-navigation-block-wrapper .paddle-component--body-section ul {
    justify-content: flex-start;
  }
  .body_landingpage_level2 .layout--onecol .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li {
    flex: 0 0 calc(33% - 15px);
    max-width: calc(33% - 15px);
    margin-right: 15px;
  }
}
.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat center center;
  position: absolute;
  right: 25px;
  left: auto;
  bottom: 20px;
  top: auto;
  opacity: 0;
  transition: 0.35s ease-in-out;
}

.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.875rem;
  font-weight: 600;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  margin: 35px 40px 15px 40px;
  transition: 0.35s ease-in-out;
}

.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
  margin-top: 5px;
}

.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li:hover {
  background-color: var(--main-text-color);
  border-color: var(--main-text-color) !important;
}

.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li:hover::before {
  opacity: 1;
}

.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li:hover a {
  color: white;
}

/*--- END Landing page level 2 ---------------------*/
/*---------------------------------------------------
        Menupage
  ----------------------------------------------------*/
.body_menupage #block-ocelot-paddle-page-title #block-ocelot-paddle-breadcrumbs,
.body_menupage .region.region--breadcrumb #block-ocelot-paddle-breadcrumbs {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.body_menupage .comp_wrapper_call_to_action {
  margin-top: 64px;
  margin-bottom: 66px;
}

.body_menupage .comp_visit_de_panne {
  margin-top: 70px;
}

.social-media-sharing {
  margin-top: 6rem;
}

/*--- END Menupage --------------------------------*/
/*---------------------------------------------------
        News page
  ----------------------------------------------------*/
.page-node-type-news-item .badge.badge-light {
  background-color: transparent;
  border-radius: 0;
  border: 2px solid var(--clr-green);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--second-font-family);
  font-size: 1.25rem;
  padding: 7px 15px;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item {
  margin-bottom: 100px;
  margin-top: 62px;
}

.page-node-type-news-item .featured-image-body {
  margin-bottom: 2rem;
}

.page-node-type-news-item .featured-image-body .mb-2 {
  margin-bottom: 2rem !important;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section > ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin: 0 -15px 0 -15px;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section > ul > li {
  padding: 0 15px 0 15px;
  margin-bottom: 15px;
}

@media (min-width: 600px) {
  .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section > ul > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section > ul > li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long {
  margin-bottom: 40px;
  transition: 0.35s;
  height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 56.25%;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long::after {
  content: "Lees meer";
  font-weight: 400;
  font-family: var(--second-font-family);
  font-size: 22px;
  display: inline-block;
  width: 112px;
  text-transform: uppercase;
  color: var(--main-text-color);
  padding: 2px 40px 2px 0px;
  background: url(/sites/default/files/2021-06/green_arrow.svg) no-repeat calc(100% - 22px) center;
  margin-top: auto;
  transition: all 0.35s ease-in-out;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--featured-image {
  overflow: hidden;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.35s;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 {
  line-height: 1;
  font-size: 2rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  /* text-transform: none; */
  margin-top: 1.5rem;
  margin-bottom: 24px;
}

@media (max-width: 1023px) {
  .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 {
    font-size: 1.75rem;
  }
}
.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a {
  text-decoration: none;
  transition: 0.35s;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 10;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a:hover {
  text-decoration: none;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--body {
  padding: 0px 0px 0px 0px;
  margin-bottom: 25px;
  margin-top: 33px;
}

@media (max-width: 1023px) {
  .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--body {
    padding: 0px 0px 0px 0px;
  }
}
.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 14px;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light i.fa-calendar-day {
  background: url(/sites/default/files/2021-07/icon-cta_afspraak-hover.svg);
  width: 15px;
  height: 17px;
  background-size: contain;
  margin-right: 11px !important;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light i.fa-calendar-day::before {
  content: none;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long:hover::after {
  background: url(/sites/default/files/2021-07/arrow_black.svg) no-repeat calc(100% - 12px) center !important;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long:hover h2::after {
  width: 114px;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long:hover h2 a {
  text-decoration: none;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long:hover > div:not(.contextual) .field--featured-image img {
  transform: scale(1.05);
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section {
  margin-top: 2rem;
  text-align: center;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  border: 2px solid var(--clr-green);
  text-align: center;
  padding: 2px 45px 2px 20px;
  position: relative;
  transition: all 0.35s ease-in-out;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color) !important;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a:hover::after {
  right: 10px;
}

/*--- END News page --------------------------------*/
/* ----------------------------------------------------
              Search page 
  -----------------------------------------------------*/
body.body_main_site.page-node-type-search-page #region-content {
  padding-left: 0;
  padding-right: 0;
}

body.body_main_site.page-node-type-search-page .views-exposed-form label {
  font-family: var(--second-font-family);
  font-size: 1.625rem;
  color: var(--ss-main-text-color);
  font-weight: 600;
  text-transform: uppercase;
}

body.body_main_site.page-node-type-search-page .views-exposed-form .form-control,
body.body_main_site.page-node-type-search-page .views-exposed-form .form-select {
  height: 54px;
  border-radius: 0;
}

body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-group {
  width: 100%;
  margin-bottom: 1.5rem;
}

body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input {
  border: 2px solid var(--ss-main-text-color);
  padding: 15px 36px 15px 20px;
  line-height: 1;
  color: var(--ss-main-text-color);
  font-family: var(--second-font-family);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  width: 48%;
  background-repeat: no-repeat;
  background-position: calc(100% - 19px) center;
  transition: 0.35s;
  background-image: url(/sites/default/files/2021-07/arrow_black.svg);
}

@media (min-width: 768px) and (max-width: 1375px) {
  body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input {
    width: 100%;
  }
}
body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input:hover {
  background-image: url(/sites/default/files/2021-07/arrow_black.svg);
  background-color: var(--ss-main-text-color);
  color: white;
  background-position: calc(100% - 10px) center;
}

body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn {
  border-color: var(--ss-main-text-color);
  background-image: url(/sites/default/files/2021-07/arrow_black.svg);
}

@media (min-width: 768px) and (max-width: 1375px) {
  body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn {
    margin-bottom: 15px;
  }
}
body.body_main_site.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn:hover {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  color: white;
  background-color: var(--ss-main-text-color);
}

body.body_main_site.page-node-type-search-page .view-search .view-content .mb-5 {
  margin-bottom: 1rem !important;
}

body.body_main_site.page-node-type-search-page .view-search .view-content .no-gutters > [class*=col-] {
  flex: 0 0 100%;
  max-width: 100%;
}

body.body_main_site.page-node-type-search-page .view-search .card-body h3.card-title {
  margin-top: 0;
}

body.body_main_site.page-node-type-search-page .view-search .card-body p.read-more {
  display: none;
}

body.body_main_site.page-node-type-search-page .view-search .node--activity--search-teaser .field--date-time {
  display: none;
}

body.body_main_site.page-node-type-search-page .block-facet {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 3rem;
}

body.body_main_site.page-node-type-search-page .block-facet h2 {
  font-size: 2.187rem;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin__blue.svg);
  background-size: 80px 14px;
  padding-bottom: 18px;
  margin-bottom: 26px;
}

body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item {
  padding: 0;
}

body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item::before {
  content: none;
}

body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item a {
  padding-left: 40px;
  position: relative;
  text-decoration: none;
  display: block;
  line-height: 1.1;
}

body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  border: 1px solid var(--ss-main-text-color);
}

body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item a::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-color: var(--clr-blue);
  border-radius: 4px;
  position: absolute;
  left: 4px;
  top: 6px;
  opacity: 0;
  transition: 0.35s;
}

body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item a span.facet-item__status {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item a:hover::after,
body.body_main_site.page-node-type-search-page .block-facet ul li.facet-item a.is-active::after {
  opacity: 1;
}

body.body_main_site.page-node-type-search-page.body_landingpage_level2 .view-search .card-body h3.card-title a {
  text-decoration: underline;
  color: var(--clr-blue);
}

body.body_main_site.page-node-type-search-page.body_landingpage_level2 .view-search .card-body h3.card-title a:before {
  z-index: 10;
}

body.body_main_site.page-node-type-search-page.body_landingpage_level2 .view-search .card-body h3.card-title a:hover {
  text-decoration: none;
}

.card::after,
.card::before {
  content: none;
}

body.page-node-type-search-page .block-facet ul.js-facets-checkbox-links li.facet-item {
  padding-left: 40px;
}

body.page-node-type-search-page .block-facet ul.js-facets-checkbox-links li.facet-item::before {
  display: none;
}

body.page-node-type-search-page .block-facet ul.js-facets-checkbox-links li.facet-item label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -40px;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  border: 1px solid var(--ss-main-text-color);
  transform: unset;
}

body.page-node-type-search-page .block-facet ul.js-facets-checkbox-links li.facet-item label::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-color: var(--clr-blue);
  border-radius: 4px;
  position: absolute;
  left: 4px;
  top: 6px;
  opacity: 0;
  transition: 0.35s;
  transform: unset;
  left: -40px;
  top: 2px;
  margin: 4px;
}

body.page-node-type-search-page .block-facet ul.js-facets-checkbox-links li.facet-item .facets-checkbox:checked + label::after,
body.page-node-type-search-page .block-facet ul.js-facets-checkbox-links li.facet-item:hover label::after {
  opacity: 1;
}

/* --- END Subsite search page  ---------------------*/
/*---------------------------------------------------
        Product page
  ----------------------------------------------------*/
.body_main_site.page-node-type-product .layout__region--first > .field-link {
  margin-bottom: 4rem;
}

.body_main_site.page-node-type-product .layout__region--first > .field-link .item a {
  font-size: 1.875rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--clr-green);
  width: 100%;
  text-align: center;
  padding: 24px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s;
  line-height: 1;
}

@media (min-width: 991px) {
  .body_main_site.page-node-type-product .layout__region--first > .field-link .item a {
    width: 50%;
  }
}
.body_main_site.page-node-type-product .layout__region--first > .field-link .item a .extlink span {
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}

.body_main_site.page-node-type-product .layout__region--first > .field-link .item a:hover {
  border-color: var(--main-text-color) !important;
  color: white;
  background: var(--main-text-color) url(/sites/default/files/2021-06/arrow_white.svg) no-repeat calc(100% - 26px) 80%;
}

.body_main_site.page-node-type-product .field--law-and-rules {
  background-color: #ececec;
  padding: 2% 3%;
  margin-top: 50px;
}

/* --- END Product page  --------------------------*/
/*---------------------------------------------------
        Homepage
  ----------------------------------------------------*/
.body_homepage #block-ocelot-paddle-page-title #block-ocelot-paddle-breadcrumbs,
.body_homepage .region.region--breadcrumb #block-ocelot-paddle-breadcrumbs {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.body_homepage.body_header-image .page-wrapper .header {
  height: auto;
}

.body_main_site.body_homepage.body_header-image .page-wrapper .header {
  overflow: hidden;
}

@media (min-height: 750px) and (min-width: 768px) {
  .body_homepage.body_header-image .page-wrapper .header {
    height: calc(100vh - 230px);
    max-height: 68vh;
  }
}
.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  content: "";
  display: block;
  background: url(/sites/default/files/2021-06/hero-wave-right-green-small.png) no-repeat right bottom;
  height: 487px;
  width: 487px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: 40% !important;
}

@media (min-width: 1024px) {
  .body_homepage.body_header-image .page-wrapper .header .header-content::before {
    background-size: 100% !important;
  }
}
.body_main_site.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  bottom: -25px;
  right: -16px;
}

.body_homepage.body_header-image .page-wrapper .header .header-content::after {
  content: "schep plezier.";
  display: block;
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-weight: 600;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  text-align: right;
  font-size: 30px;
  width: 148px;
  line-height: 26px;
}

@media (min-width: 1024px) {
  .body_homepage.body_header-image .page-wrapper .header .header-content::after {
    font-size: 85px;
    width: 235px;
    line-height: 70px;
    right: 30px;
    bottom: 30px;
  }
}
.body_homepage .comp_top_search_link {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 15px 0 15px;
  position: relative;
  z-index: 10;
}

@media (min-height: 750px) and (min-width: 768px) {
  .body_homepage .comp_top_search_link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6vh;
    padding-top: 15px;
  }
}
.body_homepage .comp_top_search_link .paddle-component--navigation-block {
  margin: 10vh 0 0 0;
}

.body_homepage .comp_top_search_link .paddle-component--navigation-block .paddle-component--top-section.text {
  margin-top: 0;
  font-size: 2.5rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  margin-bottom: 24px;
}

.body_homepage .comp_top_search_link .paddle-component--navigation-block ul {
  display: flex;
  margin: 0 -10px 0 -10px;
  padding: 0 0 0 0;
  list-style-type: none;
  flex-wrap: wrap;
}

.body_homepage .comp_top_search_link .paddle-component--navigation-block ul li {
  padding: 0 10px;
  margin: 0 0 20px 0;
}

.body_homepage .comp_top_search_link .paddle-component--navigation-block ul li a {
  position: relative;
  border: 2px solid var(--clr-green);
  padding: 7px 40px 7px 15px;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-family: var(--second-font-family);
  text-decoration: none;
  color: white;
  background-color: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: inline-block;
  vertical-align: top;
  transition: all 0.35s ease-in-out;
}

.body_homepage .comp_top_search_link .paddle-component--navigation-block ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 17px;
  background-image: url(/sites/default/files/2021-07/arrow_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}

.body_homepage .comp_top_search_link .paddle-component--navigation-block ul li a:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color) !important;
}

.body_homepage .comp_top_search_link .paddle-component--navigation-block ul li a:hover::after {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  right: 8px;
}

.body_homepage .comp_search_council_hp .paddle-search-form {
  margin: 0 0 0 0;
}

.body_homepage .comp_search_council_hp .search-wrapper {
  width: 100%;
}

.body_homepage .comp_search_council_hp .search-wrapper .form-item-search {
  margin: 0 0 0 0;
  width: 100%;
}

.body_homepage .comp_search_council_hp .search-wrapper .form-item-search input {
  width: 100%;
  border: 0;
  border-radius: 0;
  height: 54px;
  background-color: white !important;
}

.body_homepage .comp_search_council_hp .search-wrapper input.form-submit {
  height: 54px;
  width: 54px;
  border: 0;
  border-radius: 0;
  text-indent: -99999rem;
  padding: 0;
  background: var(--clr-green) url(/sites/default/files/2021-07/icon-search.svg) no-repeat center center;
}

.body_homepage .comp_search_council_hp .search-wrapper input.form-submit:hover {
  background: var(--main-text-color) url(/sites/default/files/2021-07/icon-seach-hover.svg) no-repeat center center !important;
}

@media (min-width: 768px) {
  .body_homepage .comp_visit_de_panne .paddle-component--text-block .paddle-component--top-section.image,
  .body_homepage .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.body_homepage .comp_mailchimp_hp {
  height: calc(100% - 2rem);
  background-color: var(--main-text-color);
  padding: 40px;
}

.body_homepage .comp_mailchimp_hp > h2 {
  color: white;
  line-height: 1.1;
}

.body_homepage .comp_mailchimp_hp > h2::after {
  content: "";
  position: static;
  border: 0;
  display: block;
  width: 84px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
  margin-top: 12px;
}

.body_homepage .comp_mailchimp_hp .mailchimp-newsletter-mergefields .form-item-mergevars-email {
  position: relative;
  margin-bottom: 45px;
}

.body_homepage .comp_mailchimp_hp .mailchimp-newsletter-mergefields .form-item-mergevars-email input {
  background-color: rgba(255, 255, 255, 0.8);
  border: 0;
  border-radius: 0;
  height: 50px;
  font-size: 14px;
  color: var(--main-text-color);
  padding-top: 16px;
}

.body_homepage .comp_mailchimp_hp .mailchimp-newsletter-mergefields .form-item-mergevars-email label {
  position: absolute;
  font-size: 1rem;
  top: 13px;
  left: 20px;
  transition: all 0.35s ease-in-out;
}

.body_homepage .comp_mailchimp_hp .mailchimp-newsletter-mergefields .form-item-mergevars-email.field-focus label {
  font-size: 10px;
  top: 3px;
  left: 10px;
}

.body_homepage .comp_mailchimp_hp .mailchimp-signup-subscribe-form .form-actions input {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: white;
  display: inline-block;
  border: 2px solid white;
  text-align: center;
  padding: 6px 55px 6px 15px;
  position: relative;
  transition: all 0.35s ease-in-out;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat calc(100% - 26px) center;
  height: auto;
  line-height: 1;
}

.body_homepage .comp_mailchimp_hp .mailchimp-signup-subscribe-form .form-actions input:hover {
  color: var(--main-text-color);
  background: white url(/sites/default/files/2021-07/arrow_black.svg) no-repeat calc(100% - 15px) center;
}

.paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a {
  color: var(--clr-green);
}

.comp_uit_kalender {
  margin-top: 48px !important;
}

.comp_uit_kalender .paddle-component--list-block.activity {
  margin-bottom: 100px;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2.75rem;
  text-align: center;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section ul {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
  justify-content: center;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section ul li {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.comp_uit_kalender .field--type--daterange {
  display: none;
}

@media (max-width: 888px) {
  .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section ul li::before {
  content: none;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity {
  position: relative;
  overflow: hidden;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body {
  position: absolute;
  bottom: 0;
  padding: 20px 20px 20px 20px;
  z-index: 10;
  transition: all 0.15s ease-in-out;
  margin: 0;
}

@media (min-width: 1600px) {
  .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body {
    padding: 20px 20px 20px 40px;
  }
}
.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body .items {
  height: 0;
  opacity: 0;
  transition: all 0.35s;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body .items .item {
  color: white;
  height: 0;
  overflow: hidden;
}

@media (min-width: 1440px) {
  .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body .items .item {
    height: auto;
  }
}
.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body .items .item::after {
  content: "Lees meer";
  font-weight: 400;
  font-size: 22px;
  display: block;
  text-transform: uppercase;
  color: white;
  padding: 10px 40px 2px 0px;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat calc(100% - 15px) center;
  margin-top: 0;
  height: auto;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body .items p {
  margin: 0;
  color: white;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--body .items p:not(:first-child) {
  display: none;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 {
  margin: 0 0 20px 0;
  font-size: 2rem;
  /* text-transform: none; */
}

@media (max-width: 1199px) {
  .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 {
    bottom: 0;
    font-size: 1.75rem;
  }
}
@media (min-width: 1600px) {
  .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 {
    font-size: 2.5rem;
  }
}
.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 a {
  text-decoration: none;
  color: white;
  line-height: 1;
  display: block;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 a::before {
  content: "";
  display: block;
  position: absolute;
  top: -180%;
  bottom: -100%;
  left: 0;
  right: -100%;
  /* background-color: var(--main-text-color); */
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 a::after {
  content: "";
  display: block;
  width: 84px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_white.svg);
  margin-top: 12px;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--featured-image {
  margin: 0 0 0 0;
  position: relative;
  overflow: hidden;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--featured-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--featured-image::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--featured-image article.media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--featured-image picture {
  display: block;
  height: 100%;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--featured-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node {
  display: none;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--body .items {
  height: var(--news-body-height);
  opacity: 1;
}

@media (min-width: 1440px) {
  .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--body .items .item {
    height: auto;
  }
}
.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--featured-image::before {
  background-color: rgba(38, 134, 80, 0.8);
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--featured-image img {
  transform: scale(1.05);
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section {
  margin-top: 2rem;
  text-align: center;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  border: 2px solid var(--clr-green);
  text-align: center;
  padding: 2px 45px 2px 20px;
  position: relative;
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color) !important;
}

.comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a:hover::after {
  right: 10px;
}

/*--- END homepage ----------------------------------*/
/* ----------------------------------------------------
              Footer
  -----------------------------------------------------*/
footer.sticky-footer .sticky-footer-content {
  padding-top: 0;
}

footer.sticky-footer .region-wrapper--footer {
  background-color: var(--clr-green);
  padding-top: 5rem;
}

footer.sticky-footer .region-wrapper--footer .paddle-component a {
  color: white;
}

footer.sticky-footer .footer-content-left .paddle-component--text-block .paddle-component--top-section.text {
  margin: 0 0 0 0;
  font-family: var(--second-font-family);
  font-weight: 700;
  text-transform: uppercase;
}

footer.sticky-footer .footer-content-left .paddle-component--text-block .paddle-component--body-section {
  font-size: 18px;
  line-height: 1.4;
}

footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text {
  margin-top: 0;
}

@media (min-width: 768px) {
  footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text {
    text-align: center;
  }
}
footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  border: 2px solid white;
  max-width: 280px;
  width: 100%;
  text-align: center;
  padding: 2px 40px 2px 15px;
  position: relative;
  transition: all 0.35s ease-in-out;
}

footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 22px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}

footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color);
}

footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after {
  right: 15px;
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
}

@media (min-width: 768px) {
  footer.sticky-footer .footer-content-right .paddle-component--body-section {
    text-align: right;
  }
}
footer.sticky-footer .footer-content-right .paddle-component--body-section p {
  font-size: 14px;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul {
  padding: 0 0 0 0;
  margin: 0 -8px 25px -8px;
  list-style-type: none;
  display: flex;
}

@media (min-width: 768px) {
  footer.sticky-footer .footer-content-right .paddle-component--body-section ul {
    justify-content: flex-end;
  }
}
footer.sticky-footer .footer-content-right .paddle-component--body-section ul li {
  padding: 0 8px 0 8px;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:first-child {
  font-family: var(--second-font-family);
  font-weight: 700;
  text-transform: uppercase;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child) a {
  font-size: 1px;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: top;
  color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child) a .extlink {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(2) a {
  background-image: url(/sites/default/files/2021-06/icon-fb.svg);
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(2) a:hover {
  background-image: url(/sites/default/files/2021-06/icon-fb-hover.svg);
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(3) a {
  background-image: url(/sites/default/files/2021-06/icon-instagram.svg);
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(3) a:hover {
  background-image: url(/sites/default/files/2021-06/icon-instagram-hover.svg);
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(4) a {
  background-image: url(/sites/default/files/2024-05/depanne-linkedin-white.png);
  background-size: contain;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(4) a:hover {
  background-image: url(/sites/default/files/2022-02/depanne-linkedin.png);
  background-size: contain;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(5) a {
  background-image: url(/sites/default/files/2021-06/icon-share.svg);
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(5) a:hover {
  background-image: url(/sites/default/files/2021-06/icon-share-hover.svg);
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li.x a {
  background-image: url(/sites/default/files/2024-05/x-social-media-white-icon.svg) !important;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li.x a:hover {
  background-image: url(/sites/default/files/2024-05/x-social-media-black-icon.svg) !important;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li.rss a {
  background-image: url(/sites/default/files/2024-05/rss-icon-white.svg) !important;
  background-size: contain;
}

footer.sticky-footer .footer-content-right .paddle-component--body-section ul li.rss a:hover {
  background-image: url(/sites/default/files/2024-05/rss-icon.svg) !important;
}

.body_main_site .comp_footer_gemeente_row {
  display: flex;
}

.body_main_site footer.sticky-footer .region-wrapper--footer {
  background-repeat: repeat-x;
  background-position: left top;
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_footer-green.jpg);
}

body.body_subsite .comp_footer_toerisme_row {
  display: flex;
}

li.toegankelijkheid {
  display: none;
}

/*END Footer ----------------------------------------*/
/*----------------------------------------
     Read Speaker
-----------------------------------------*/
#readspeaker_button {
  margin-top: 2rem;
  margin-bottom: 0;
}

.rsbtn span {
  font-family: var(--main-font-family) !important;
  font-weight: 100 !important;
}

.rs_addtools .rsbtn_tooltoggle,
.rsbtn .rsbtn_tooltoggle,
.rs_addtools .rsbtn_play,
.rsbtn .rsbtn_play {
  border-width: 2px !important;
}

.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text::after {
  color: #000 !important;
}

.rsbtn .fa-external-link-alt::before {
  display: none !important;
}

.rsbtn ul li::before {
  display: none !important;
}

.header #block-language-dropdown .dropdown-language-item li a:hover {
  text-decoration: underline;
}

article.node--organisation .field--link a.btn.btn-primary.ext {
  font-size: 1.875rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--clr-green);
  text-align: center;
  padding: 10px 7%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s;
  min-height: 80px;
  gap: 10px;
}
article.node--organisation .field--link a.btn.btn-primary.ext .fa-external-link-alt::before {
  position: relative;
  top: -4px;
}
article.node--organisation .field--link a.btn.btn-primary.ext:hover {
  color: #fff;
  background-color: var(--clr-green);
}
article.node--organisation .field--link a.btn.btn-primary.ext:hover .fa-external-link-alt::before {
  color: #fff !important;
}

.layout__region--second.col-md-8 article.node--organisation .field--link a.btn.btn-primary.ext {
  margin-top: 1rem;
  margin-bottom: 1rem;
  min-height: 50px;
  font-size: var(--body-font-size);
  padding: 7px 5%;
}
.layout__region--second.col-md-8 article.node--organisation .field--link a.btn.btn-primary.ext .fa-external-link-alt::before {
  top: -1px;
}

.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox {
  background-color: var(--clr-green-10);
  padding: 10px 20px;
  position: relative;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::before {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  top: -17px;
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_green.jpg) repeat-x right center;
  background-size: 35px auto !important;
}
.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::after {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -17px;
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_green.jpg) repeat-x right center;
  background-size: 35px auto !important;
  transform: rotate(180deg);
}

/***
color themes 
***/
.theme--calmeyn-green .header #block-language-dropdown .dropdown-language-item li a:hover {
  color: #000 !important;
}
.theme--calmeyn-green .rsbtn .rsbtn_play .rsbtn_left .rsbtn_text,
.theme--calmeyn-green .rsbtn .rsbtn_play .rsbtn_right,
.theme--calmeyn-green .rsbtn span {
  color: var(--clr-green) !important;
}
.theme--calmeyn-green .rsbtn span {
  color: var(--clr-green) !important;
}
.theme--calmeyn-green .rs_addtools .rsbtn_tooltoggle,
.theme--calmeyn-green .rsbtn .rsbtn_tooltoggle,
.theme--calmeyn-green .rs_addtools .rsbtn_play,
.theme--calmeyn-green .rsbtn .rsbtn_play {
  border-color: var(--clr-green);
}
.theme--calmeyn-green .rsbtn .rsbtn_play .rsbtn_right {
  border-left: 2px solid var(--clr-green) !important;
}
.theme--calmeyn-green .field-block.field-date_time .field-with-icon__icon {
  background: url(/sites/default/files/2021-07/calendar_green.svg) no-repeat center center !important;
}

.theme--dew-blue .rsbtn .rsbtn_play .rsbtn_left .rsbtn_text,
.theme--dew-blue .rsbtn .rsbtn_play .rsbtn_right,
.theme--dew-blue .rsbtn span {
  color: var(--clr-blue) !important;
}
.theme--dew-blue .rsbtn span {
  color: var(--clr-blue) !important;
}
.theme--dew-blue .rs_addtools .rsbtn_tooltoggle,
.theme--dew-blue .rsbtn .rsbtn_tooltoggle,
.theme--dew-blue .rs_addtools .rsbtn_play,
.theme--dew-blue .rsbtn .rsbtn_play {
  border-color: var(--clr-blue);
}
.theme--dew-blue .rsbtn .rsbtn_play .rsbtn_right {
  border-left: 2px solid var(--clr-blue) !important;
}
.theme--dew-blue .field-block.field-date_time .field-with-icon__icon {
  background: url(/sites/default/files/2021-07/calendar_blue.svg) no-repeat center center !important;
}
.theme--dew-blue .header #block-language-dropdown .dropdown-language-item li a:hover {
  color: #000 !important;
}
.theme--dew-blue article.node--organisation .field--link a.btn.btn-primary.ext {
  border-color: var(--clr-blue);
}
.theme--dew-blue article.node--organisation .field--link a.btn.btn-primary.ext:hover {
  color: #fff;
  background-color: var(--clr-blue);
}
.theme--dew-blue.page-node-type-activity .region-wrapper--footer {
  background-color: var(--clr-blue);
}
.theme--dew-blue.page-node-type-activity h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_blue.svg);
}
.theme--dew-blue.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox {
  background-color: var(--clr-blue-10);
}
.theme--dew-blue.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_blue.jpg) repeat-x right center;
}
.theme--dew-blue.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_blue.jpg) repeat-x right center;
}

.theme--factor-50-red .rsbtn .rsbtn_play .rsbtn_left .rsbtn_text,
.theme--factor-50-red .rsbtn .rsbtn_play .rsbtn_right,
.theme--factor-50-red .rsbtn span {
  color: var(--clr-red) !important;
}
.theme--factor-50-red .rsbtn span {
  color: var(--clr-red) !important;
}
.theme--factor-50-red .rs_addtools .rsbtn_tooltoggle,
.theme--factor-50-red .rsbtn .rsbtn_tooltoggle,
.theme--factor-50-red .rs_addtools .rsbtn_play,
.theme--factor-50-red .rsbtn .rsbtn_play {
  border-color: var(--clr-red);
}
.theme--factor-50-red .rsbtn .rsbtn_play .rsbtn_right {
  border-left: 2px solid var(--clr-red) !important;
}
.theme--factor-50-red .field-block.field-date_time .field-with-icon__icon {
  background: url(/sites/default/files/2021-07/calendar_red.svg) no-repeat center center !important;
}
.theme--factor-50-red .header #block-language-dropdown .dropdown-language-item li a:hover {
  color: #000 !important;
}
.theme--factor-50-red article.node--organisation .field--link a.btn.btn-primary.ext {
  border-color: var(--clr-red);
}
.theme--factor-50-red article.node--organisation .field--link a.btn.btn-primary.ext:hover {
  color: #fff;
  background-color: var(--clr-red);
}
.theme--factor-50-red.page-node-type-activity .region-wrapper--footer {
  background-color: var(--clr-red);
}
.theme--factor-50-red.page-node-type-activity h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_red.svg);
}
.theme--factor-50-red.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox {
  background-color: var(--clr-red-10);
}
.theme--factor-50-red.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_red.jpg) repeat-x right center;
}
.theme--factor-50-red.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_red.jpg) repeat-x right center;
}

.theme--dune-yellow .rsbtn .rsbtn_play .rsbtn_left .rsbtn_text,
.theme--dune-yellow .rsbtn .rsbtn_play .rsbtn_right,
.theme--dune-yellow .rsbtn span {
  color: var(--clr-yellow) !important;
}
.theme--dune-yellow .rsbtn span {
  color: var(--clr-yellow) !important;
}
.theme--dune-yellow .rs_addtools .rsbtn_tooltoggle,
.theme--dune-yellow .rsbtn .rsbtn_tooltoggle,
.theme--dune-yellow .rs_addtools .rsbtn_play,
.theme--dune-yellow .rsbtn .rsbtn_play {
  border-color: var(--clr-yellow);
}
.theme--dune-yellow .rsbtn .rsbtn_play .rsbtn_right {
  border-left: 2px solid var(--clr-yellow) !important;
}
.theme--dune-yellow .field-block.field-date_time .field-with-icon__icon {
  background: url(/sites/default/files/2021-07/calendar_yellow.svg) no-repeat center center !important;
}
.theme--dune-yellow .header #block-language-dropdown .dropdown-language-item li a:hover {
  color: #000 !important;
}
.theme--dune-yellow article.node--organisation .field--link a.btn.btn-primary.ext {
  border-color: var(--clr-yellow);
}
.theme--dune-yellow article.node--organisation .field--link a.btn.btn-primary.ext:hover {
  color: #fff;
  background-color: var(--clr-yellow);
}
.theme--dune-yellow.page-node-type-activity .region-wrapper--footer {
  background-color: var(--clr-yellow);
}
.theme--dune-yellow.page-node-type-activity h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_yellow.svg);
}
.theme--dune-yellow.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox {
  background-color: var(--clr-yellow-10);
}
.theme--dune-yellow.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_yellow.jpg) repeat-x right center;
}
.theme--dune-yellow.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_yellow.jpg) repeat-x right center;
}

.theme--purple .rsbtn .rsbtn_play .rsbtn_left .rsbtn_text,
.theme--purple .rsbtn .rsbtn_play .rsbtn_right,
.theme--purple .rsbtn span {
  color: var(--clr-purple) !important;
}
.theme--purple .rsbtn span {
  color: var(--clr-purple) !important;
}
.theme--purple .rs_addtools .rsbtn_tooltoggle,
.theme--purple .rsbtn .rsbtn_tooltoggle,
.theme--purple .rs_addtools .rsbtn_play,
.theme--purple .rsbtn .rsbtn_play {
  border-color: var(--clr-purple);
}
.theme--purple .rsbtn .rsbtn_play .rsbtn_right {
  border-left: 2px solid var(--clr-purple) !important;
}
.theme--purple .field-block.field-date_time .field-with-icon__icon {
  background: url(/sites/default/files/2021-07/calendar_purple.svg) no-repeat center center !important;
}
.theme--purple .header #block-language-dropdown .dropdown-language-item li a:hover {
  color: #000 !important;
}
.theme--purple article.node--organisation .field--link a.btn.btn-primary.ext {
  border-color: var(--clr-purple);
}
.theme--purple article.node--organisation .field--link a.btn.btn-primary.ext:hover {
  color: #fff;
  background-color: var(--clr-purple);
}
.theme--purple.page-node-type-activity .region-wrapper--footer {
  background-color: var(--clr-purple);
}
.theme--purple.page-node-type-activity h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_purple.svg);
}
.theme--purple.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox {
  background-color: var(--clr-purple-10);
}
.theme--purple.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_purple.jpg) repeat-x right center;
}
.theme--purple.page-node-type-activity .region--content .layout__region--first .toegankelijkheidsbox::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_purple.jpg) repeat-x right center;
}

/* ----------------------------------------------------
              Main site colour theme 
  -----------------------------------------------------*/
.body_main_site.theme--calmeyn-green h3,
.body_main_site.theme--calmeyn-green .region.region--content a:hover {
  color: var(--clr-green);
}

.body_main_site.theme--calmeyn-green .region--content ul li::before,
.body_main_site.theme--calmeyn-green .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-right,
.body_main_site.theme--calmeyn-green footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_main_site.theme--calmeyn-green .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_main_site.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long::after,
.body_main_site.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a:hover::after,
.body_main_site.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a::after,
.body_main_site.theme--calmeyn-green .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a::after,
.body_main_site.theme--calmeyn-green .comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a::after {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
}

.body_homepage.theme--calmeyn-green .comp_top_search_link .paddle-component--navigation-block ul li a:hover::after {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
}

.body_main_site.theme--calmeyn-green .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-left {
  background-image: url(/sites/default/files/2021-07/arrow-green-left.svg);
}

.body_main_site.theme--calmeyn-green .header #region-header_top ul.menu--main li:nth-child(1) a,
body:not(.body_subsite).theme--calmeyn-green .header #region-header_top ul.menu--main li:nth-child(1) a {
  border-color: var(--clr-green);
}

.body_main_site.theme--calmeyn-green .header #region-header_top ul.menu--main li:nth-child(2) a::before,
body:not(.body_subsite).theme--calmeyn-green .header #region-header_top ul.menu--main li:nth-child(2) a::before {
  background-image: url(/sites/default/files/2021-06/icon-menu_green.svg);
}

.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light i.fa-calendar-day {
  background-image: url(/sites/default/files/2022-05/icon-cta-afspraak-green.svg);
}

.theme--calmeyn-green .view-news .card-body .badge.badge-light i.fa-calendar-day {
  background-image: url(/sites/default/files/2022-05/icon-cta-afspraak-green.svg);
}

.body_main_site.theme--calmeyn-green .header .paddle-search-form .search-toggle,
body:not(.body_subsite).theme--calmeyn-green .header .paddle-search-form .search-toggle {
  border-color: var(--clr-green);
}

.body_main_site.theme--calmeyn-green .header .paddle-search-form .search-toggle:hover,
body:not(.body_subsite).theme--calmeyn-green .header .paddle-search-form .search-toggle:hover {
  border-color: var(--main-text-color);
}

.body_main_site.theme--calmeyn-green .header .paddle-search-form form input.form-text,
body:not(.body_subsite).theme--calmeyn-green .header .paddle-search-form form input.form-text {
  /* background-color: var(--clr-green-10); WHY? */
}

.body_main_site.theme--calmeyn-green .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a,
.body_main_site.theme--calmeyn-green .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a,
.body_main_site.theme--calmeyn-green .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover a,
.body_main_site.theme--calmeyn-green .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_main_site.theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
.body_main_site.theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary:hover,
.body_main_site.theme--calmeyn-green .field-introduction p a.btn-secondary:hover,
.body_main_site.theme--calmeyn-green .field-introduction p a.btn-primary:hover,
.body_main_site.theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section h3 a,
body:not(.body_subsite).theme--calmeyn-green .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a,
body:not(.body_subsite).theme--calmeyn-green .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a,
body:not(.body_subsite).theme--calmeyn-green .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover a,
body:not(.body_subsite).theme--calmeyn-green .paddle-components-download-block-wrapper .paddle-component--top-section.text,
body:not(.body_subsite).theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
body:not(.body_subsite).theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary:hover,
body:not(.body_subsite).theme--calmeyn-green .field-introduction p a.btn-secondary:hover,
body:not(.body_subsite).theme--calmeyn-green .field-introduction p a.btn-primary:hover,
body:not(.body_subsite).theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section h3 a {
  color: var(--clr-green);
}

.theme--calmeyn-green .region--content .field-block .field.field--type--text-long p a.btn-primary:hover,
.theme--calmeyn-green .region--content .field-block .field.field--type--text-long p a.btn-secondary:hover,
.theme--calmeyn-green .paddle-components-photo-album-block-wrapper .paddle-component--photo-album-block .paddle-component--top-section.text,
.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--bottom-section,
.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a,
.theme--calmeyn-green .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text {
  color: var(--clr-green);
}

.body_main_site.theme--calmeyn-green .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation,
.body_main_site.theme--calmeyn-green .opening-hours .day.today,
.body_main_site.theme--calmeyn-green .field-responsible_service article.node--organisation,
.body_main_site.theme--calmeyn-green .paddle-components-organisation-block-wrapper article.node--organisation,
.theme--calmeyn-green .comp--custom-content-block .paddle-component--text-block {
  background-color: var(--clr-green-10);
}

body:not(.body_subsite).theme--calmeyn-green .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation,
body:not(.body_subsite).theme--calmeyn-green .opening-hours .day.today,
body:not(.body_subsite).theme--calmeyn-green .field-responsible_service article.node--organisation,
body:not(.body_subsite).theme--calmeyn-green .paddle-components-organisation-block-wrapper article.node--organisation,
body:not(.body_subsite).theme--calmeyn-green .theme--calmeyn-green .comp--custom-content-block .paddle-component--text-block {
  background-color: var(--clr-green-10);
}

.body_main_site.theme--calmeyn-green .opening-hours .opening-hours-top,
.body_main_site.theme--calmeyn-green .opening-hours .day,
.body_main_site.theme--calmeyn-green.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li,
.body_main_site.theme--calmeyn-green .comp_btn_with_title_text__council .paddle-component--text-block,
.body_main_site.theme--calmeyn-green .comp_border_box_free_text_with_link .paddle-component--text-block,
.body_main_site.theme--calmeyn-green.page-node-type-news-item .badge.badge-light,
.body_main_site.theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary,
.body_main_site.theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary,
.body_main_site.theme--calmeyn-green .field-introduction p a.btn-secondary,
.body_main_site.theme--calmeyn-green .field-introduction p a.btn-primary,
.theme--calmeyn-green .region--content .field-block .field.field--type--text-long p a.btn-primary,
.theme--calmeyn-green .region--content .field-block .field.field--type--text-long p a.btn-secondary,
.body_main_site.theme--calmeyn-green.page-node-type-product .layout__region--first > .field-link .item a,
.body_main_site.theme--calmeyn-green .comp--btn-simple-large .paddle-component--top-section.text a,
.body_homepage.theme--calmeyn-green .comp_top_search_link .paddle-component--navigation-block ul li a,
.body_main_site.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a,
.body_main_site.theme--calmeyn-green .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a {
  border-color: var(--clr-green);
}

.body_main_site.theme--calmeyn-green footer.sticky-footer .region-wrapper--footer,
.body_main_site.theme--calmeyn-green .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text,
.body_main_site.theme--calmeyn-green .carousel-navigation a,
.body_main_site.theme--calmeyn-green .flex-pauseplay a,
.body_main_site.theme--calmeyn-green .webform-submission-form details > legend,
.body_main_site.theme--calmeyn-green .webform-submission-form details > summary,
.body_main_site.theme--calmeyn-green .webform-submission-form fieldset:not(.form-composite) > legend,
.body_main_site.theme--calmeyn-green .webform-submission-form fieldset:not(.form-composite) > summary,
.theme--calmeyn-green .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section,
.theme--calmeyn-green .paddle-search-form.comp--search-field .search-wrapper input.form-submit,
.body_homepage.theme--calmeyn-green .comp_search_council_hp .search-wrapper input.form-submit {
  background-color: var(--clr-green);
}

.body_main_site.theme--calmeyn-green .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover {
  background-color: var(--main-text-color);
}

.body_main_site.theme--calmeyn-green .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: #000000;
}

.body_main_site.theme--calmeyn-green .paddle-component--carousel-block .figcaption,
.body_main_site.theme--calmeyn-green .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--featured-image::before {
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}

.calmeyn-green .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2021-06/wave-vertical-green_0.png) repeat-y left center;
}

.body_main_site.theme--dew-blue h3,
.body_main_site.theme--dew-blue .region.region--content a:hover {
  color: var(--clr-blue);
}

.body_main_site.theme--dew-blue .region--content ul li::before,
.body_main_site.theme--dew-blue .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-right,
.body_main_site.theme--dew-blue footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_main_site.theme--dew-blue .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_main_site.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long::after,
.body_homepage.theme--dew-blue .comp_top_search_link .paddle-component--navigation-block ul li a:hover::after,
.body_main_site.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a:hover::after,
.body_main_site.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a::after,
.body_main_site.theme--dew-blue .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a::after,
.body_main_site.theme--dew-blue .comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a::after,
.theme--dew-blue .view-news a.card::after {
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg);
}

.body_main_site.theme--dew-blue .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-left {
  background-image: url(/sites/default/files/2021-07/arrow-blue-left.svg);
}

.body_main_site.theme--dew-blue .header #region-header_top ul.menu--main li:nth-child(1) a,
body:not(.body_subsite).theme--dew-blue .header #region-header_top ul.menu--main li:nth-child(1) a {
  border-color: var(--clr-blue);
}

.body_main_site.theme--dew-blue .header #region-header_top ul.menu--main li:nth-child(2) a::before,
body:not(.body_subsite).theme--dew-blue .header #region-header_top ul.menu--main li:nth-child(2) a::before {
  background-image: url(/sites/default/files/2021-07/icon-menu_blue.svg);
}

.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light i.fa-calendar-day {
  background-image: url(/sites/default/files/2022-05/icon-cta-afspraak-blue.svg);
}

.theme--dew-blue .view-news .card-body .badge.badge-light i.fa-calendar-day {
  background-image: url(/sites/default/files/2022-05/icon-cta-afspraak-blue.svg);
}

.body_main_site.theme--dew-blue .header .paddle-search-form .search-toggle,
body:not(.body_subsite).theme--dew-blue .header .paddle-search-form .search-toggle {
  border-color: var(--clr-blue);
}

.body_main_site.theme--dew-blue .header .paddle-search-form .search-toggle:hover {
  border-color: var(--main-text-color);
}

.body_main_site.theme--dew-blue .header .paddle-search-form form input.form-text,
body:not(.body_subsite).theme--dew-blue .header .paddle-search-form form input.form-text {
  background-color: var(--clr-blue-10);
}

.body_main_site.theme--dew-blue .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a,
.body_main_site.theme--dew-blue .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a,
.body_main_site.theme--dew-blue .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover a,
.body_main_site.theme--dew-blue .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_main_site.theme--dew-blue .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
.body_main_site.theme--dew-blue .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary:hover,
.body_main_site.theme--dew-blue .field-introduction p a.btn-secondary:hover,
.body_main_site.theme--dew-blue .field-introduction p a.btn-primary:hover,
.theme--dew-blue .region--content .field-block .field.field--type--text-long p a.btn-primary:hover,
.theme--dew-blue .region--content .field-block .field.field--type--text-long p a.btn-secondary:hover,
.body_main_site.theme--dew-blue .paddle-components-text-block-wrapper .paddle-component--body-section h3 a,
.theme--dew-blue .paddle-components-photo-album-block-wrapper .paddle-component--photo-album-block .paddle-component--top-section.text,
.theme--dew-blue .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.theme--dew-blue .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.theme--dew-blue .comp_block_quote_toerisme .paddle-component--bottom-section,
.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a,
.theme--dew-blue .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text {
  color: var(--clr-blue);
}

.body_main_site.theme--dew-blue .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation,
.body_main_site.theme--dew-blue .opening-hours .day.today,
.body_main_site.theme--dew-blue .field-responsible_service article.node--organisation,
.body_main_site.theme--dew-blue .paddle-components-organisation-block-wrapper article.node--organisation,
.theme--dew-blue .comp--custom-content-block .paddle-component--text-block {
  background-color: var(--clr-blue-10);
}

.body_main_site.theme--dew-blue .opening-hours .opening-hours-top,
.body_main_site.theme--dew-blue .opening-hours .day,
.body_main_site.theme--dew-blue.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li,
.body_main_site.theme--dew-blue .comp_btn_with_title_text__council .paddle-component--text-block,
.body_main_site.theme--dew-blue .comp_border_box_free_text_with_link .paddle-component--text-block,
.body_main_site.theme--dew-blue.page-node-type-news-item .badge.badge-light,
.body_main_site.theme--dew-blue .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary,
.body_main_site.theme--dew-blue .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary,
.body_main_site.theme--dew-blue .field-introduction p a.btn-secondary,
.body_main_site.theme--dew-blue .field-introduction p a.btn-primary,
.theme--dew-blue .region--content .field-block .field.field--type--text-long p a.btn-primary,
.theme--dew-blue .region--content .field-block .field.field--type--text-long p a.btn-secondary,
.body_main_site.theme--dew-blue.page-node-type-product .layout__region--first > .field-link .item a,
.body_main_site.theme--dew-blue .comp--btn-simple-large .paddle-component--top-section.text a,
.body_homepage.theme--dew-blue .comp_top_search_link .paddle-component--navigation-block ul li a,
.body_main_site.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a,
.body_main_site.theme--dew-blue .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a {
  border-color: var(--clr-blue);
}

.body_main_site.theme--dew-blue footer.sticky-footer .region-wrapper--footer,
.body_main_site.theme--dew-blue .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text,
.body_main_site.theme--dew-blue .carousel-navigation a,
.body_main_site.theme--dew-blue .flex-pauseplay a,
.body_main_site.theme--dew-blue .webform-submission-form details > legend,
.body_main_site.theme--dew-blue .webform-submission-form details > summary,
.body_main_site.theme--dew-blue .webform-submission-form fieldset:not(.form-composite) > legend,
.body_main_site.theme--dew-blue .webform-submission-form fieldset:not(.form-composite) > summary,
.theme--dew-blue .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section,
.theme--dew-blue .paddle-search-form.comp--search-field .search-wrapper input.form-submit,
.body_homepage.theme--dew-blue .comp_search_council_hp .search-wrapper input.form-submit {
  background-color: var(--clr-blue);
}

.body_main_site.theme--dew-blue .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover {
  background-color: #000000;
}

.body_main_site.theme--dew-blue .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: #000000;
}

.body_main_site.theme--dew-blue .paddle-component--carousel-block .figcaption,
.body_main_site.theme--dew-blue .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--featured-image::before {
  background-color: rgba(var(--clr-blue-700-rgb), 0.8);
}

.theme--dew-blue .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-02/wave-vertical-blue.png) repeat-y left center;
}

.theme--dew-blue .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-02/wave_duinvallei_blue_visit_panne.svg);
}

.theme--dew-blue .comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a::after {
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg);
}

.body_main_site.theme--dune-yellow h3,
.body_main_site.theme--dune-yellow .region.region--content a:hover {
  color: var(--clr-yellow);
}

.body_main_site.theme--dune-yellow .region--content ul li::before,
.body_main_site.theme--dune-yellow .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-right,
.body_main_site.theme--dune-yellow footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_main_site.theme--dune-yellow .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_main_site.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long::after,
.body_homepage.theme--dune-yellow .comp_top_search_link .paddle-component--navigation-block ul li a:hover::after,
.body_main_site.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a:hover::after,
.body_main_site.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a::after,
.body_main_site.theme--dune-yellow .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a::after,
.body_main_site.theme--dune-yellow .comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a::after,
.theme--dune-yellow .view-news a.card::after {
  background-image: url(/sites/default/files/2021-06/yellow_arrow.svg);
}

.body_main_site.theme--dune-yellow .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-left {
  background-image: url(/sites/default/files/2021-07/arrow-yellow-left.svg);
}

.body_main_site.theme--dune-yellow .header #region-header_top ul.menu--main li:nth-child(1) a,
body:not(.body_subsite).theme--dune-yellow .header #region-header_top ul.menu--main li:nth-child(1) a {
  border-color: var(--clr-yellow);
}

.body_main_site.theme--dune-yellow .header #region-header_top ul.menu--main li:nth-child(2) a::before,
body:not(.body_subsite).theme--dune-yellow .header #region-header_top ul.menu--main li:nth-child(2) a::before {
  background-image: url(/sites/default/files/2021-07/icon-menu_yellow.svg);
}

.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light i.fa-calendar-day,
.theme--dune-yellow .view-news .card-body .badge.badge-light i.fa-calendar-day {
  background-image: url(/sites/default/files/2022-05/icon-cta-afspraak-yellow.svg);
}

.body_main_site.theme--dune-yellow .header .paddle-search-form .search-toggle,
body:not(.body_subsite).theme--dune-yellow .header .paddle-search-form .search-toggle {
  border-color: var(--clr-yellow);
}

.body_main_site.theme--dune-yellow .header .paddle-search-form .search-toggle:hover {
  border-color: var(--main-text-color);
}

.body_main_site.theme--dune-yellow .header .paddle-search-form form input.form-text,
body:not(.body_subsite).theme--dune-yellow .header .paddle-search-form form input.form-text {
  background-color: var(--clr-yellow-10);
}

.body_main_site.theme--dune-yellow .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a,
.body_main_site.theme--dune-yellow .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a,
.body_main_site.theme--dune-yellow .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover a,
.body_main_site.theme--dune-yellow .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_main_site.theme--dune-yellow .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
.body_main_site.theme--dune-yellow .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary:hover,
.body_main_site.theme--dune-yellow .field-introduction p a.btn-secondary:hover,
.body_main_site.theme--dune-yellow .field-introduction p a.btn-primary:hover,
.theme--dune-yellow .region--content .field-block .field.field--type--text-long p a.btn-primary:hover,
.theme--dune-yellow .region--content .field-block .field.field--type--text-long p a.btn-secondary:hover,
.body_main_site.theme--dune-yellow .paddle-components-text-block-wrapper .paddle-component--body-section h3 a,
.theme--dune-yellow .paddle-components-photo-album-block-wrapper .paddle-component--photo-album-block .paddle-component--top-section.text,
.theme--dune-yellow .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.theme--dune-yellow .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.theme--dune-yellow .comp_block_quote_toerisme .paddle-component--bottom-section,
.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a,
.theme--dune-yellow .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text {
  color: var(--clr-yellow);
}

.body_main_site.theme--dune-yellow .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation,
.body_main_site.theme--dune-yellow .opening-hours .day.today,
.body_main_site.theme--dune-yellow .field-responsible_service article.node--organisation,
.body_main_site.theme--dune-yellow .paddle-components-organisation-block-wrapper article.node--organisation,
.theme--dune-yellow .comp--custom-content-block .paddle-component--text-block {
  background-color: var(--clr-yellow-10);
}

.body_main_site.theme--dune-yellow .opening-hours .opening-hours-top,
.body_main_site.theme--dune-yellow .opening-hours .day,
.body_main_site.theme--dune-yellow.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li,
.body_main_site.theme--dune-yellow .comp_btn_with_title_text__council .paddle-component--text-block,
.body_main_site.theme--dune-yellow .comp_border_box_free_text_with_link .paddle-component--text-block,
.body_main_site.theme--dune-yellow.page-node-type-news-item .badge.badge-light,
.body_main_site.theme--dune-yellow .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary,
.body_main_site.theme--dune-yellow .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary,
.body_main_site.theme--dune-yellow .field-introduction p a.btn-secondary,
.body_main_site.theme--dune-yellow .field-introduction p a.btn-primary,
.theme--dune-yellow .region--content .field-block .field.field--type--text-long p a.btn-primary,
.theme--dune-yellow .region--content .field-block .field.field--type--text-long p a.btn-secondary,
.body_main_site.theme--dune-yellow.page-node-type-product .layout__region--first > .field-link .item a,
.body_main_site.theme--dune-yellow .comp--btn-simple-large .paddle-component--top-section.text a,
.body_homepage.theme--dune-yellow .comp_top_search_link .paddle-component--navigation-block ul li a,
.body_main_site.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a,
.body_main_site.theme--dune-yellow .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a {
  border-color: var(--clr-yellow);
}

.body_main_site.theme--dune-yellow footer.sticky-footer .region-wrapper--footer,
.body_main_site.theme--dune-yellow .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text,
.body_main_site.theme--dune-yellow .carousel-navigation a,
.body_main_site.theme--dune-yellow .flex-pauseplay a,
.body_main_site.theme--dune-yellow .webform-submission-form details > legend,
.body_main_site.theme--dune-yellow .webform-submission-form details > summary,
.body_main_site.theme--dune-yellow .webform-submission-form fieldset:not(.form-composite) > legend,
.body_main_site.theme--dune-yellow .webform-submission-form fieldset:not(.form-composite) > summary,
.theme--dune-yellow .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section,
.theme--dune-yellow .paddle-search-form.comp--search-field .search-wrapper input.form-submit,
.body_homepage.theme--dune-yellow .comp_search_council_hp .search-wrapper input.form-submit {
  background-color: var(--clr-yellow);
}

.body_main_site.theme--dune-yellow .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover {
  background-color: #000000;
}

.body_main_site.theme--dune-yellow .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: #000000;
}

.body_main_site.theme--dune-yellow .paddle-component--carousel-block .figcaption,
.body_main_site.theme--dune-yellow .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--featured-image::before {
  background-color: rgba(var(--clr-yellow-700-rgb), 0.8);
}

.theme--dune-yellow .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-02/wave-vertical-yellow.png) repeat-y left center;
}

.body_main_site.theme--factor-50-red h3,
.body_main_site.theme--factor-50-red .region.region--content a:hover {
  color: var(--clr-red);
}

.body_main_site.theme--factor-50-red .region--content ul li::before,
.body_main_site.theme--factor-50-red .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-right,
.body_main_site.theme--factor-50-red footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_main_site.theme--factor-50-red .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_main_site.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long::after,
.body_homepage.theme--factor-50-red .comp_top_search_link .paddle-component--navigation-block ul li a:hover::after,
.body_main_site.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a:hover::after,
.body_main_site.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a::after,
.body_main_site.theme--factor-50-red .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a::after,
.body_main_site.theme--factor-50-red .comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a::after {
  background-image: url(/sites/default/files/2021-06/arrow_red.svg);
}

.body_main_site.theme--factor-50-red .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-left {
  background-image: url(/sites/default/files/2021-07/arrow-red-left.svg);
}

.body_main_site.theme--factor-50-red .header #region-header_top ul.menu--main li:nth-child(1) a,
body:not(.body_subsite).theme--factor-50-red .header #region-header_top ul.menu--main li:nth-child(1) a {
  border-color: var(--clr-red);
}

.body_main_site.theme--factor-50-red .header #region-header_top ul.menu--main li:nth-child(2) a::before,
body:not(.body_subsite).theme--factor-50-red .header #region-header_top ul.menu--main li:nth-child(2) a::before {
  background-image: url(/sites/default/files/2021-06/icon-menu_red.svg);
}

.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light i.fa-calendar-day,
.theme--factor-50-red .view-news .card-body .badge.badge-light i.fa-calendar-day {
  background-image: url(/sites/default/files/2022-05/icon-cta-afspraak-red.svg);
}

.body_main_site.theme--factor-50-red .header .paddle-search-form .search-toggle,
body:not(.body_subsite).theme--factor-50-red .header .paddle-search-form .search-toggle {
  border-color: var(--clr-red);
}

.body_main_site.theme--factor-50-red .header .paddle-search-form .search-toggle:hover {
  border-color: var(--main-text-color);
}

.body_main_site.theme--factor-50-red .header .paddle-search-form form input.form-text,
body:not(.body_subsite).theme--factor-50-red .header .paddle-search-form form input.form-text {
  background-color: var(--clr-red-10);
}

.body_main_site.theme--factor-50-red .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a,
.body_main_site.theme--factor-50-red .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a,
.body_main_site.theme--factor-50-red .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover a,
.body_main_site.theme--factor-50-red .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_main_site.theme--factor-50-red .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
.body_main_site.theme--factor-50-red .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary:hover,
.body_main_site.theme--factor-50-red .field-introduction p a.btn-secondary:hover,
.body_main_site.theme--factor-50-red .field-introduction p a.btn-primary:hover,
.theme--factor-50-red .region--content .field-block .field.field--type--text-long p a.btn-primary:hover,
.theme--factor-50-red .region--content .field-block .field.field--type--text-long p a.btn-secondary:hover,
.body_main_site.theme--factor-50-red .paddle-components-text-block-wrapper .paddle-component--body-section h3 a,
.theme--factor-50-red .paddle-components-photo-album-block-wrapper .paddle-component--photo-album-block .paddle-component--top-section.text,
.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--bottom-section,
.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a,
.theme--factor-50-red .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text {
  color: var(--clr-red);
}

.body_main_site.theme--factor-50-red .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation,
.body_main_site.theme--factor-50-red .opening-hours .day.today,
.body_main_site.theme--factor-50-red .field-responsible_service article.node--organisation,
.body_main_site.theme--factor-50-red .paddle-components-organisation-block-wrapper article.node--organisation,
.theme--factor-50-red .comp--custom-content-block .paddle-component--text-block {
  background-color: var(--clr-red-10);
}

.body_main_site.theme--factor-50-red .opening-hours .opening-hours-top,
.body_main_site.theme--factor-50-red .opening-hours .day,
.body_main_site.theme--factor-50-red.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li,
.body_main_site.theme--factor-50-red .comp_btn_with_title_text__council .paddle-component--text-block,
.body_main_site.theme--factor-50-red .comp_border_box_free_text_with_link .paddle-component--text-block,
.body_main_site.theme--factor-50-red.page-node-type-news-item .badge.badge-light,
.body_main_site.theme--factor-50-red .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary,
.body_main_site.theme--factor-50-red .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary,
.body_main_site.theme--factor-50-red .field-introduction p a.btn-secondary,
.body_main_site.theme--factor-50-red .field-introduction p a.btn-primary,
.theme--factor-50-red .region--content .field-block .field.field--type--text-long p a.btn-primary,
.theme--factor-50-red .region--content .field-block .field.field--type--text-long p a.btn-secondary,
.body_main_site.theme--factor-50-red.page-node-type-product .layout__region--first > .field-link .item a,
.body_main_site.theme--factor-50-red.comp--btn-simple-large .paddle-component--top-section.text a,
.body_homepage.theme--factor-50-red .comp_top_search_link .paddle-component--navigation-block ul li a,
.body_main_site.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a,
.body_main_site.theme--factor-50-red .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a {
  border-color: var(--clr-red);
}

.body_main_site.theme--factor-50-red footer.sticky-footer .region-wrapper--footer,
.body_main_site.theme--factor-50-red .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text,
.body_main_site.theme--factor-50-red .carousel-navigation a,
.body_main_site.theme--factor-50-red .flex-pauseplay a,
.body_main_site.theme--factor-50-red .webform-submission-form details > legend,
.body_main_site.theme--factor-50-red .webform-submission-form details > summary,
.body_main_site.theme--factor-50-red .webform-submission-form fieldset:not(.form-composite) > legend,
.body_main_site.theme--factor-50-red .webform-submission-form fieldset:not(.form-composite) > summary,
.theme--factor-50-red .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section,
.theme--factor-50-red .paddle-search-form.comp--search-field .search-wrapper input.form-submit,
.body_homepage.theme--factor-50-red .comp_search_council_hp .search-wrapper input.form-submit {
  background-color: var(--clr-red);
}

.body_main_site.theme--factor-50-red .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover {
  background-color: #000000;
}

.body_main_site.theme--factor-50-red .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: #000000;
}

.body_main_site.theme--factor-50-red .paddle-component--carousel-block .figcaption,
.body_main_site.theme--factor-50-red .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--featured-image::before {
  background-color: rgba(var(--clr-red-700-rgb), 0.8);
}

.theme--factor-50-red .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-02/wave-vertical-red.png) repeat-y left center;
}

.body_main_site.theme--purple h3,
.body_main_site.theme--purple .region.region--content a:hover {
  color: var(--clr-purple);
}

.body_main_site.theme--purple .region--content ul li::before,
.body_main_site.theme--purple .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-right,
.body_main_site.theme--purple footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_main_site.theme--purple .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_main_site.theme--purple .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long::after,
.body_homepage.theme--purple .comp_top_search_link .paddle-component--navigation-block ul li a:hover::after,
.body_main_site.theme--purple .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a:hover::after,
.body_main_site.theme--purple .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a::after,
.body_main_site.theme--purple .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a::after,
.body_main_site.theme--purple .comp_visit_de_panne .paddle-component--text-block:hover .paddle-component--body-section a::after,
.theme--purple .view-news a.card::after {
  background-image: url(/sites/default/files/2021-06/purple_arrow.svg);
}

.body_main_site.theme--purple .opening-hours .opening-hours-top .next-previous .fa-chevron-circle-left {
  background-image: url(/sites/default/files/2021-07/arrow-purple-left.svg);
}

.body_main_site.theme--purple .header #region-header_top ul.menu--main li:nth-child(1) a,
body:not(.body_subsite).theme--purple .header #region-header_top ul.menu--main li:nth-child(1) a {
  border-color: var(--clr-purple);
}

.body_main_site.theme--purple .header #region-header_top ul.menu--main li:nth-child(2) a::before,
body:not(.body_subsite).theme--purple .header #region-header_top ul.menu--main li:nth-child(2) a::before {
  background-image: url(/sites/default/files/2021-07/icon-menu_purple.svg);
}

.theme--purple .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long .field--publication-date .badge.badge-light i.fa-calendar-day,
.theme--purple .view-news .card-body .badge.badge-light i.fa-calendar-day {
  background-image: url(/sites/default/files/2022-05/icon-cta-afspraak-purple.svg);
}

.body_main_site.theme--purple .header .paddle-search-form .search-toggle,
body:not(.body_subsite).theme--purple .header .paddle-search-form .search-toggle {
  border-color: var(--clr-purple);
}

.body_main_site.theme--purple .header .paddle-search-form .search-toggle:hover {
  border-color: var(--main-text-color);
}

.body_main_site.theme--purple .header .paddle-search-form form input.form-text,
body:not(.body_subsite).theme--purple .header .paddle-search-form form input.form-text {
  background-color: var(--clr-purple-10);
}

.body_main_site.theme--purple .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item:first-child a,
.body_main_site.theme--purple .page-wrapper .region--breadcrumb .breadcrumb .breadcrumb-item a,
.body_main_site.theme--purple .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover a,
.body_main_site.theme--purple .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_main_site.theme--purple .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover,
.body_main_site.theme--purple .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary:hover,
.body_main_site.theme--purple .field-introduction p a.btn-secondary:hover,
.body_main_site.theme--purple .field-introduction p a.btn-primary:hover,
.theme--purple .region--content .field-block .field.field--type--text-long p a.btn-primary:hover,
.theme--purple .region--content .field-block .field.field--type--text-long p a.btn-secondary:hover,
.body_main_site.theme--purple .paddle-components-text-block-wrapper .paddle-component--body-section h3 a,
.theme--purple .paddle-components-photo-album-block-wrapper .paddle-component--photo-album-block .paddle-component--top-section.text,
.theme--purple .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.theme--purple .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.theme--purple .comp_block_quote_toerisme .paddle-component--bottom-section,
.theme--purple .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--body-section article.node--news-item.view-mode--long h2 a,
.theme--purple .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text {
  color: var(--clr-purple);
}

.body_main_site.theme--purple .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation,
.body_main_site.theme--purple .opening-hours .day.today,
.body_main_site.theme--purple .field-responsible_service article.node--organisation,
.body_main_site.theme--purple .paddle-components-organisation-block-wrapper article.node--organisation,
.theme--purple .comp--custom-content-block .paddle-component--text-block {
  background-color: var(--clr-purple-10);
}

.body_main_site.theme--purple .opening-hours .opening-hours-top,
.body_main_site.theme--purple .opening-hours .day,
.body_main_site.theme--purple.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li,
.body_main_site.theme--purple .comp_btn_with_title_text__council .paddle-component--text-block,
.body_main_site.theme--purple .comp_border_box_free_text_with_link .paddle-component--text-block,
.body_main_site.theme--purple.page-node-type-news-item .badge.badge-light,
.body_main_site.theme--purple .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary,
.body_main_site.theme--purple .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-secondary,
.body_main_site.theme--purple .field-introduction p a.btn-secondary,
.body_main_site.theme--purple .field-introduction p a.btn-primary,
.theme--purple .region--content .field-block .field.field--type--text-long p a.btn-primary,
.theme--purple .region--content .field-block .field.field--type--text-long p a.btn-secondary,
.body_main_site.theme--purple.page-node-type-product .layout__region--first > .field-link .item a,
.body_main_site.theme--purple .comp--btn-simple-large .paddle-component--top-section.text a,
.body_homepage.theme--purple .comp_top_search_link .paddle-component--navigation-block ul li a,
.body_main_site.theme--purple .paddle-components-list-block-wrapper .paddle-component--list-block.news-item .paddle-component--bottom-section a,
.body_main_site.theme--purple .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--bottom-section a {
  border-color: var(--clr-purple);
}

.body_main_site.theme--purple footer.sticky-footer .region-wrapper--footer,
.body_main_site.theme--purple .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text,
.body_main_site.theme--purple .carousel-navigation a,
.body_main_site.theme--purple .flex-pauseplay a,
.body_main_site.theme--purple .webform-submission-form details > legend,
.body_main_site.theme--purple .webform-submission-form details > summary,
.body_main_site.theme--purple .webform-submission-form fieldset:not(.form-composite) > legend,
.body_main_site.theme--purple .webform-submission-form fieldset:not(.form-composite) > summary,
.theme--purple .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section,
.theme--purple .paddle-search-form.comp--search-field .search-wrapper input.form-submit,
.body_homepage.theme--purple .comp_search_council_hp .search-wrapper input.form-submit {
  background-color: var(--clr-purple);
}

.body_main_site.theme--purple .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text:hover {
  background-color: #000000;
}

.body_main_site.theme--purple .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: #000000;
}

.body_main_site.theme--purple .paddle-component--carousel-block .figcaption,
.body_main_site.theme--purple .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity:hover .field--featured-image::before {
  background-color: rgba(var(--clr-purple-700-rgb), 0.8);
}

.theme--purple .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-02/wave-vertical-purple.png) repeat-y left center;
}

/* --- Main site Waves theme --- */
.body_main_site.wave_helmduin .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 a::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-white.svg);
}

.body_main_site.theme--purple.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-dark-purple.svg);
}

.body_main_site.theme--purple.wave_helmduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-400-purple.svg);
}

.body_main_site.theme--purple.wave_helmduin h1::after,
.body_main_site.theme--purple.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--purple.wave_helmduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--purple.wave_helmduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--purple.wave_helmduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--purple.wave_helmduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--purple.wave_helmduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--purple.wave_helmduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_purple.svg);
}

.body_main_site.theme--purple.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--purple.wave_helmduin .field-responsible_service article.node--organisation::after,
.theme--purple.wave_helmduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_border_bottom_10_purple.jpg);
}

.body_main_site.theme--purple.wave_helmduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_footer_purple.jpg);
}

.theme--purple.wave_helmduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-helmduine-purple.png) no-repeat right bottom;
}

.theme--purple.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-helmduine-purple.png) repeat-y left center;
}

.body_main_site.theme--calmeyn-green.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-dark-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_helmduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-400-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_helmduin h1::after,
.body_main_site.theme--calmeyn-green.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_helmduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_helmduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--calmeyn-green.wave_helmduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--calmeyn-green.wave_helmduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--calmeyn-green.wave_helmduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--calmeyn-green.wave_helmduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_green.svg);
}

.body_main_site.theme--calmeyn-green.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--calmeyn-green.wave_helmduin .field-responsible_service article.node--organisation::after,
.theme--calmeyn-green.wave_helmduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_border_bottom_10_green.jpg);
}

.body_main_site.theme--calmeyn-green.wave_helmduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_footer_green.jpg);
}

.theme--calmeyn-green.wave_helmduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-helmduine-green.png) no-repeat right bottom;
}

.theme--calmeyn-green.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-helmduine-green.png) repeat-y left center;
}

.body_main_site.theme--dune-yellow.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-dark-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_helmduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-400-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_helmduin h1::after,
.body_main_site.theme--dune-yellow.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_helmduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_helmduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dune-yellow.wave_helmduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dune-yellow.wave_helmduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dune-yellow.wave_helmduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dune-yellow.wave_helmduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dune-yellow.wave_helmduin .field-responsible_service article.node--organisation::after,
.theme--dune-yellow.wave_helmduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_border_bottom_10_yellow.jpg);
}

.body_main_site.theme--dune-yellow.wave_helmduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_footer_yellow.jpg);
}

.theme--dune-yellow.wave_helmduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-helmduine-yellow.png) no-repeat right bottom;
}

.theme--dune-yellow.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-helmduine-yellow.png) repeat-y left center;
}

.body_main_site.theme--factor-50-red.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-dark-red.svg);
}

.body_main_site.theme--factor-50-red.wave_helmduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-400-red.svg);
}

.body_main_site.theme--factor-50-red.wave_helmduin h1::after,
.body_main_site.theme--factor-50-red.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_helmduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_helmduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--factor-50-red.wave_helmduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--factor-50-red.wave_helmduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--factor-50-red.wave_helmduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--factor-50-red.wave_helmduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_red.svg);
}

.body_main_site.theme--factor-50-red.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--factor-50-red.wave_helmduin .field-responsible_service article.node--organisation::after,
.theme--factor-50-red.wave_helmduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_border_bottom_10_red.jpg);
}

.body_main_site.theme--factor-50-red.wave_helmduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_footer_red.jpg);
}

.theme--factor-50-red.wave_helmduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-helmduine-red.png) no-repeat right bottom;
}

.theme--factor-50-red.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-helmduine-red.png) repeat-y left center;
}

.body_main_site.theme--dew-blue.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-dark-blue.svg);
}

.body_main_site.theme--dew-blue.wave_helmduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/helmduin--wave-400-blue.svg);
}

.body_main_site.theme--dew-blue.wave_helmduin h1::after,
.body_main_site.theme--dew-blue.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_helmduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_helmduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dew-blue.wave_helmduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dew-blue.wave_helmduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dew-blue.wave_helmduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dew-blue.wave_helmduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_blue.svg);
}

.body_main_site.theme--dew-blue.wave_helmduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dew-blue.wave_helmduin .field-responsible_service article.node--organisation::after,
.theme--dew-blue.wave_helmduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_border_bottom_10_blue.jpg);
}

.body_main_site.theme--dew-blue.wave_helmduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/helmduin_wave_footer_blue.jpg);
}

.theme--dew-blue.wave_helmduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-helmduine-blue.png) no-repeat right bottom;
}

.theme--dew-blue.wave_helmduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-helmduine-blue.png) repeat-y left center;
}

.body_main_site.wave_duinvallei .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 a::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-white.svg);
}

.body_main_site.theme--calmeyn-green.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-dark-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_duinvallei .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-400-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_duinvallei h1::after,
.body_main_site.theme--calmeyn-green.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_duinvallei .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_duinvallei.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--calmeyn-green.wave_duinvallei .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--calmeyn-green.wave_duinvallei .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--calmeyn-green.wave_duinvallei .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--calmeyn-green.wave_duinvallei .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
}

.body_main_site.theme--calmeyn-green.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--calmeyn-green.wave_duinvallei .field-responsible_service article.node--organisation::after,
.theme--calmeyn-green.wave_duinvallei .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_green.jpg);
}

.body_main_site.theme--calmeyn-green.wave_duinvallei footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_footer-green.jpg);
}

.theme--calmeyn-green.wave_duinvallei.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-duinvallei-green.png) no-repeat right bottom;
}

.theme--calmeyn-green.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-duinvallei-green.png) repeat-y left center;
}

.body_main_site.theme--purple.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-dark-purple.svg);
}

.body_main_site.theme--purple.wave_duinvallei .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-400-purple.svg);
}

.body_main_site.theme--purple.wave_duinvallei h1::after,
.body_main_site.theme--purple.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--purple.wave_duinvallei .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--purple.wave_duinvallei.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--purple.wave_duinvallei .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--purple.wave_duinvallei .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--purple.wave_duinvallei .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--purple.wave_duinvallei .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_purple.svg);
}

.body_main_site.theme--purple.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--purple.wave_duinvallei .field-responsible_service article.node--organisation::after,
.theme--purple.wave_duinvallei .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_purple.jpg);
}

.body_main_site.theme--purple.wave_duinvallei footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_footer_purple.jpg);
}

.theme--purple.wave_duinvallei.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-duinvallei-purple.png) no-repeat right bottom;
}

.theme--purple.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-duinvallei-purple.png) repeat-y left center;
}

.body_main_site.theme--factor-50-red.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-dark-red.svg);
}

.body_main_site.theme--factor-50-red.wave_duinvallei .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-400-red.svg);
}

.body_main_site.theme--factor-50-red.wave_duinvallei h1::after,
.body_main_site.theme--factor-50-red.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_duinvallei .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_duinvallei.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--factor-50-red.wave_duinvallei .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--factor-50-red.wave_duinvallei .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--factor-50-red.wave_duinvallei .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--factor-50-red.wave_duinvallei .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_red.svg);
}

.body_main_site.theme--factor-50-red.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--factor-50-red.wave_duinvallei .field-responsible_service article.node--organisation::after,
.theme--factor-50-red.wave_duinvallei .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_red.jpg);
}

.body_main_site.theme--factor-50-red.wave_duinvallei footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_footer_red.jpg);
}

.theme--factor-50-red.wave_duinvallei.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-duinvallei-red.png) no-repeat right bottom;
}

.theme--factor-50-red.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-duinvallei-red.png) repeat-y left center;
}

.body_main_site.theme--dune-yellow.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-dark-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_duinvallei .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-400-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_duinvallei h1::after,
.body_main_site.theme--dune-yellow.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_duinvallei .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_duinvallei.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dune-yellow.wave_duinvallei .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dune-yellow.wave_duinvallei .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dune-yellow.wave_duinvallei .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dune-yellow.wave_duinvallei .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dune-yellow.wave_duinvallei .field-responsible_service article.node--organisation::after,
.theme--dune-yellow.wave_duinvallei .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_yellow.jpg);
}

.body_main_site.theme--dune-yellow.wave_duinvallei footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_footer_yellow.jpg);
}

.theme--dune-yellow.wave_duinvallei.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-duinvallei-yellow.png) no-repeat right bottom;
}

.theme--dune-yellow.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-duinvallei-yellow.png) repeat-y left center;
}

.body_main_site.theme--dew-blue.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-dark-blue.svg);
}

.body_main_site.theme--dew-blue.wave_duinvallei .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/duinvallei--wave-400-blue.svg);
}

.body_main_site.theme--dew-blue.wave_duinvallei h1::after,
.body_main_site.theme--dew-blue.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_duinvallei .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_duinvallei.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dew-blue.wave_duinvallei .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dew-blue.wave_duinvallei .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dew-blue.wave_duinvallei .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dew-blue.wave_duinvallei .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_blue.svg);
}

.body_main_site.theme--dew-blue.wave_duinvallei .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dew-blue.wave_duinvallei .field-responsible_service article.node--organisation::after,
.theme--dew-blue.wave_duinvallei .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_blue.jpg);
}

.body_main_site.theme--dew-blue.wave_duinvallei footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/duinvallei_wave_footer_blue.jpg);
}

.theme--dew-blue.wave_duinvallei.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-duinvallei-blue.png) no-repeat right bottom;
}

.theme--dew-blue.wave_duinvallei .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-duinvallei-blue.png) repeat-y left center;
}

.body_main_site.wave_paraboolduin .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 a::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-white.svg);
}

.body_main_site.theme--factor-50-red.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-dark-red.svg);
}

.body_main_site.theme--factor-50-red.wave_paraboolduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-400-red.svg);
}

.body_main_site.theme--factor-50-red.wave_paraboolduin h1::after,
.body_main_site.theme--factor-50-red.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_paraboolduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_paraboolduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--factor-50-red.wave_paraboolduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--factor-50-red.wave_paraboolduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--factor-50-red.wave_paraboolduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--factor-50-red.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_red.svg);
}

.body_main_site.theme--factor-50-red.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--factor-50-red.wave_paraboolduin .field-responsible_service article.node--organisation::after,
.theme--factor-50-red.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_border_bottom_10_red.jpg);
}

.body_main_site.theme--factor-50-red.wave_paraboolduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_footer_red.jpg);
}

.theme--factor-50-red.wave_paraboolduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-paraboolduin-red.png) no-repeat right bottom;
}

.theme--factor-50-red.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-paraboolduin-red.png) repeat-y left center;
}

.body_main_site.theme--dune-yellow.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-dark-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_paraboolduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-400-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_paraboolduin h1::after,
.body_main_site.theme--dune-yellow.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_paraboolduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_paraboolduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dune-yellow.wave_paraboolduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dune-yellow.wave_paraboolduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dune-yellow.wave_paraboolduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dune-yellow.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dune-yellow.wave_paraboolduin .field-responsible_service article.node--organisation::after,
.theme--dune-yellow.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_border_bottom_10_yellow.jpg);
}

.body_main_site.theme--dune-yellow.wave_paraboolduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_footer_yellow.jpg);
}

.theme--dune-yellow.wave_paraboolduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-paraboolduin-yellow.png) no-repeat right bottom;
}

.theme--dune-yellow.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-paraboolduin-yellow.png) repeat-y left center;
}

.body_main_site.theme--dew-blue.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-dark-blue.svg);
}

.body_main_site.theme--dew-blue.wave_paraboolduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-400-blue.svg);
}

.body_main_site.theme--dew-blue.wave_paraboolduin h1::after,
.body_main_site.theme--dew-blue.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_paraboolduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_paraboolduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dew-blue.wave_paraboolduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dew-blue.wave_paraboolduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dew-blue.wave_paraboolduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dew-blue.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_blue.svg);
}

.body_main_site.theme--dew-blue.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dew-blue.wave_paraboolduin .field-responsible_service article.node--organisation::after,
.theme--dew-blue.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_border_bottom_10_blue.jpg);
}

.body_main_site.theme--dew-blue.wave_paraboolduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_footer_blue.jpg);
}

.theme--dew-blue.wave_paraboolduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-paraboolduin-blue.png) no-repeat right bottom;
}

.theme--dew-blue.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-paraboolduin-blue.png) repeat-y left center;
}

.body_main_site.theme--purple.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-dark-purple.svg);
}

.body_main_site.theme--purple.wave_paraboolduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-400-purple.svg);
}

.body_main_site.theme--purple.wave_paraboolduin h1::after,
.body_main_site.theme--purple.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--purple.wave_paraboolduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--purple.wave_paraboolduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--purple.wave_paraboolduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--purple.wave_paraboolduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--purple.wave_paraboolduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--purple.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_purple.svg);
}

.body_main_site.theme--purple.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--purple.wave_paraboolduin .field-responsible_service article.node--organisation::after,
.theme--purple.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_border_bottom_10_purple.jpg);
}

.body_main_site.theme--purple.wave_paraboolduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_footer_purple.jpg);
}

.theme--purple.wave_paraboolduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-paraboolduin-purple.png) no-repeat right bottom;
}

.theme--purple.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-paraboolduin-purple.png) repeat-y left center;
}

.body_main_site.theme--calmeyn-green.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-dark-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_paraboolduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-400-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_paraboolduin h1::after,
.body_main_site.theme--calmeyn-green.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_paraboolduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_paraboolduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--calmeyn-green.wave_paraboolduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--calmeyn-green.wave_paraboolduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--calmeyn-green.wave_paraboolduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--calmeyn-green.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_green.svg);
}

.body_main_site.theme--calmeyn-green.wave_paraboolduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--calmeyn-green.wave_paraboolduin .field-responsible_service article.node--organisation::after,
.theme--calmeyn-green.wave_paraboolduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_border_bottom_10_green.jpg);
}

.body_main_site.theme--calmeyn-green.wave_paraboolduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/paraboolduin_wave_footer_green.jpg);
}

.theme--calmeyn-green.wave_paraboolduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-paraboolduin-green.png) no-repeat right bottom;
}

.theme--calmeyn-green.wave_paraboolduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-paraboolduin-green.png) repeat-y left center;
}

.body_main_site.wave_loopduin .comp_uit_kalender .paddle-component--list-block.activity .paddle-component--body-section article.node--activity h2 a::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-white.svg);
}

.body_main_site.theme--factor-50-red.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-dark-red.svg);
}

.body_main_site.theme--factor-50-red.wave_loopduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-400-red.svg);
}

.body_main_site.theme--factor-50-red.wave_loopduin h1::after,
.body_main_site.theme--factor-50-red.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_loopduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--factor-50-red.wave_loopduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--factor-50-red.wave_loopduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--factor-50-red.wave_loopduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--factor-50-red.wave_loopduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--factor-50-red.wave_loopduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_red.svg);
}

.body_main_site.theme--factor-50-red.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--factor-50-red.wave_loopduin .field-responsible_service article.node--organisation::after,
.theme--factor-50-red.wave_loopduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_border_bottom_10_red.jpg);
}

.body_main_site.theme--factor-50-red.wave_loopduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_footer_red.jpg);
}

.theme--factor-50-red.wave_loopduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-loopduin-red.png) no-repeat right bottom;
}

.theme--factor-50-red.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-loopduin-red.png) repeat-y left center;
}

.body_main_site.theme--calmeyn-green.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-dark-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_loopduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-400-green.svg);
}

.body_main_site.theme--calmeyn-green.wave_loopduin h1::after,
.body_main_site.theme--calmeyn-green.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_loopduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--calmeyn-green.wave_loopduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--calmeyn-green.wave_loopduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--calmeyn-green.wave_loopduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--calmeyn-green.wave_loopduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--calmeyn-green.wave_loopduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_green.svg);
}

.body_main_site.theme--calmeyn-green.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--calmeyn-green.wave_loopduin .field-responsible_service article.node--organisation::after,
.theme--calmeyn-green.wave_loopduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_border_bottom_10_green.jpg);
}

.body_main_site.theme--calmeyn-green.wave_loopduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_footer_green.jpg);
}

.theme--calmeyn-green.wave_loopduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-loopduin-green.png) no-repeat right bottom;
}

.theme--calmeyn-green.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-loopduin-green.png) repeat-y left center;
}

.body_main_site.theme--purple.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-dark-purple.svg);
}

.body_main_site.theme--purple.wave_loopduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-400-purple.svg);
}

.body_main_site.theme--purple.wave_loopduin h1::after,
.body_main_site.theme--purple.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--purple.wave_loopduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--purple.wave_loopduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--purple.wave_loopduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--purple.wave_loopduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--purple.wave_loopduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--purple.wave_loopduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_purple.svg);
}

.body_main_site.theme--purple.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--purple.wave_loopduin .field-responsible_service article.node--organisation::after,
.theme--purple.wave_loopduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_border_bottom_10_purple.jpg);
}

.body_main_site.theme--purple.wave_loopduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_footer_purple.jpg);
}

.theme--purple.wave_loopduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-loopduin-purple.png) no-repeat right bottom;
}

.theme--purple.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-loopduin-purple.png) repeat-y left center;
}

.body_main_site.theme--dew-blue.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-dark-blue.svg);
}

.body_main_site.theme--dew-blue.wave_loopduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-400-blue.svg);
}

.body_main_site.theme--dew-blue.wave_loopduin h1::after,
.body_main_site.theme--dew-blue.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_loopduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dew-blue.wave_loopduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dew-blue.wave_loopduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dew-blue.wave_loopduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dew-blue.wave_loopduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dew-blue.wave_loopduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_blue.svg);
}

.body_main_site.theme--dew-blue.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dew-blue.wave_loopduin .field-responsible_service article.node--organisation::after,
.theme--dune-yellow.wave_loopduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_border_bottom_10_blue.jpg);
}

.body_main_site.theme--dew-blue.wave_loopduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_footer_blue.jpg);
}

.theme--dew-blue.wave_loopduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-loopduin-blue.png) no-repeat right bottom;
}

.theme--dew-blue.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-loopduin-blue.png) repeat-y left center;
}

.body_main_site.theme--dune-yellow.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section > h2::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-dark-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_loopduin .comp--block-black-bg-color .paddle-component--text-block .paddle-component--top-section.text::after {
  background-image: url(/sites/default/files/2022-05/loopduin--wave-400-yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_loopduin h1::after,
.body_main_site.theme--dune-yellow.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_loopduin .field-responsible_service article.node--organisation h2::before,
.body_main_site.theme--dune-yellow.wave_loopduin.body_landingpage_level2 .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li a::after,
.body_main_site.theme--dune-yellow.wave_loopduin .comp_btn_with_title_text__council .paddle-component--text-block .paddle-component--top-section.text::after,
.body_main_site.theme--dune-yellow.wave_loopduin .comp_wrapper_call_to_action .comp_call_to_action_btn .paddle-component--top-bottom-only-block .paddle-component--top-section.text .svg-formatter::after,
.body_main_site.theme--dune-yellow.wave_loopduin .comp_border_box_free_text_with_link .paddle-component--text-block .paddle-component--top-section.text a::after,
.theme--dune-yellow.wave_loopduin .comp--custom-content-block .paddle-component--text-block .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_yellow.svg);
}

.body_main_site.theme--dune-yellow.wave_loopduin .paddle-components-organisation-block-wrapper .paddle-component--body-section article.node--organisation::after,
.body_main_site.theme--dune-yellow.wave_loopduin .field-responsible_service article.node--organisation::after,
.theme--dune-yellow.wave_loopduin .comp--custom-content-block .paddle-component--text-block::after {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_border_bottom_10_yellow.jpg);
}

.body_main_site.theme--dune-yellow.wave_loopduin footer.sticky-footer .region-wrapper--footer {
  background-image: url(/sites/default/files/2021-07/loopduin_wave_footer_yellow.jpg);
}

.theme--dune-yellow.wave_loopduin.body_homepage.body_header-image .page-wrapper .header .header-content::before {
  background: url(/sites/default/files/2022-05/banner-image-wave-loopduin-yellow.png) no-repeat right bottom;
}

.theme--dune-yellow.wave_loopduin .comp_visit_de_panne .paddle-component--text-block .paddle-component--body-section::before {
  background: url(/sites/default/files/2022-05/visit-wave-loopduin-yellow.png) repeat-y left center;
}

/* --- END  Main site colour theme  --- */
/* --------------------------------------------------------------------------------------------------------------------------------------------------
              Subsite
  ---------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------------
              Subsite Sitewide style
  -----------------------------------------------------*/
body.body_subsite {
  color: var(--ss-main-text-color);
  /*This is to hide from the main site*/
}

@media (min-width: 1600px) {
  body.body_subsite #region-content {
    padding-left: 8.33334%;
    padding-right: 8.33334%;
  }
}
body.body_subsite .comp_tourism_header_search {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

body.body_subsite .comp_page_header_banner_tourism {
  display: none;
}

@media (max-width: 991px) {
  .breadcrumb .breadcrumb-item:not(:nth-last-child(2)) {
    display: none;
  }
}
@media (max-width: 991px) {
  .breadcrumb .breadcrumb-item::before {
    content: "←" !important;
  }
  .breadcrumb .breadcrumb-item:first-child:before {
    content: none;
  }
}
.breadcrumb .breadcrumb-item a {
  text-decoration: underline;
  border-bottom: 0;
}

.breadcrumb .breadcrumb-item:first-child a {
  height: auto;
  width: auto;
  color: var(--clr-green);
  text-decoration: none;
}

.breadcrumb .breadcrumb-item:first-child a:hover {
  text-decoration: none;
  border: 0;
}

body.body_subsite #block-ocelot-paddle-page-title {
  padding-left: 24px;
}

@media (min-width: 768px) {
  body.body_subsite #block-ocelot-paddle-page-title {
    padding-left: 12%;
  }
}
@media (min-width: 1440px) {
  body.body_subsite #block-ocelot-paddle-page-title {
    padding-left: 16.66668%;
  }
}
/*
    Fix admin view for Burgerprofiel 
*/
body.body_main_site.toolbar-horizontal {
  padding-top: 80px !important;
}

body.body_main_site.toolbar-horizontal #toolbar-administration .toolbar-bar {
  top: 43px;
}

body.body_main_site.toolbar-horizontal.toolbar-tray-open {
  padding-top: 121px !important;
}

body.body_main_site.toolbar-horizontal.toolbar-tray-open #toolbar-administration .toolbar-bar {
  top: 43px;
}

body.body_main_site.toolbar-horizontal.toolbar-tray-open #toolbar-administration .toolbar-bar.top-fix {
  top: 0 !important;
}

.user-logged-in.body_main_site .header-content {
  margin-top: 0;
}

.body_subsite .vlw {
  display: none;
}

.vlw__js-placeholder {
  display: none;
}

.body_subsite .header-content {
  margin-top: 0;
}

/*END--------------------------*/
/* START */
body.body_subsite:not(.depanne_leeft) .header #block-ocelot-paddle-page-title h1 {
  font-size: 45px;
  margin-top: 10px;
  padding-bottom: 18px;
  line-height: 1;
  max-width: 94%;
  /*  position: absolute;
  bottom: 16%;*/
  color: white;
}

/* FIX ADMIN VIEW */
body.body_subsite.user-logged-in #block-ocelot-paddle-page-title h1 {
  position: relative;
  max-width: 100%;
}

@media (min-width: 448px) {
  body.body_subsite:not(.depanne_leeft) .header #block-ocelot-paddle-page-title h1 {
    bottom: 24%;
  }
}
/* END */
@media (min-width: 768px) {
  body.body_subsite:not(.depanne_leeft) .header #block-ocelot-paddle-page-title h1 {
    font-size: 65px;
    padding-bottom: 35px;
    max-width: 64%;
  }
}
@media (min-width: 1440px) {
  body.body_subsite:not(.depanne_leeft) .header #block-ocelot-paddle-page-title h1 {
    font-size: 100px;
  }
}
body.body_subsite:not(.depanne_leeft) .header #block-ocelot-paddle-page-title h1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26px;
  width: 200px;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_white.svg);
}

@media (max-width: 767px) {
  body.body_subsite:not(.depanne_leeft) .header #block-ocelot-paddle-page-title h1::after {
    background-size: 36%;
    height: 16px;
  }
}
.body_subsite.wave_paraboolduin .header .header #block-ocelot-paddle-page-title h1::after {
  transform: rotate(180deg);
  background-position: right center;
}

body.body_subsite h3 {
  color: var(--clr-green);
}

body.body_subsite .region--content .paddle-component--top-section.text {
  color: var(--ss-main-text-color);
}

body.body_subsite footer.sticky-footer .region-wrapper--footer .paddle-component a {
  color: var(--ss-main-text-color);
}

body.body_subsite .region.region--content a .extlink span {
  font-size: 1rem;
  line-height: 1;
}

/* ----------------------------------------------------
              Subsite header
  -----------------------------------------------------*/
.body_subsite .header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  margin-bottom: 10px;
  z-index: 10;
}

@media (min-width: 768px) {
  .body_subsite:not(.depanne_leeft):not(.body_toerisme_homepage):not(.page-node-type-activity):not(.page-node-type-company) .header {
    height: 550px;
  }
}
.body_subsite .header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-repeat: repeat-x;
  background-position: bottom center;
  background-image: url(/sites/default/files/2021-07/tour_loopduin_banner_overlay_S_white.png);
  z-index: 2;
}

@media (max-width: 767px) {
  .body_subsite .header::after {
    background-size: 30px auto;
  }
}
.body_subsite .header .header-content::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent linear-gradient(180deg, #16152c 0%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
  opacity: 0.3;
  height: 200px;
}

.body_subsite .header .header-content::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 21, 44, 0.3);
  z-index: -1;
}

.body_subsite:not(.depanne_leeft) .header .header__top {
  display: none;
}

body.depanne_leeft #block-topnavigation .menu--main .nav-item a {
  display: none;
}

body:not(.depanne_leeft) #block-topnavigation .menu--main .nav-item a.depanneLeeft {
  display: none;
}

body.depanne_leeft #block-topnavigation .menu--main .nav-item a.depanneLeeft {
  display: block;
}

.body_subsite .header .header__wrapper {
  align-items: flex-start;
  position: relative;
}

.view-id-search a.card-link {
  text-decoration: none;
}
.view-id-search .fa-angle-right::before {
  display: none;
}
.view-id-search .col-lg-8::after {
  display: none;
}
.view-id-search .row.no-gutters {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  --bs-gutter-x: 0;
  overflow: hidden;
}
.view-id-search .image-wrapper {
  align-self: unset !important;
  overflow: hidden;
  /*  @media (max-width: 992px){
      align-self: unset!important;
      overflow: hidden;
      align-items: center;
      display: flex;
      justify-content: center;
    }*/
}
.view-id-search .image-wrapper .image::after {
  display: none;
}
@media (min-width: 992px) {
  .view-id-search .image-wrapper .image {
    height: 100%;
    max-width: none;
  }
}
@media (max-width: 992px) {
  .view-id-search .image-wrapper .image {
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
}

@media (max-width: 991px) {
  .body_subsite .header .header__wrapper {
    position: static;
  }
}
.body_subsite .header .header__wrapper .navbar {
  justify-content: flex-end;
  margin-top: 35px;
}

@media (max-width: 991px) {
  .body_subsite .header .header__wrapper .navbar {
    position: static;
  }
}
@media (max-width: 767px) {
  .body_subsite .header .header__wrapper .navbar {
    margin-top: 0;
  }
}
.body_subsite .header .header__wrapper .navbar .navbar-collapse {
  flex: none;
}

@media (max-width: 991px) {
  .body_subsite .header .header__wrapper .navbar .navbar-collapse {
    flex: 1;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 1;
  }
}
.body_subsite .header .header__wrapper .navbar .navbar-collapse .paddle-search-form {
  display: none;
}

.body_subsite .header .header__wrapper .hamburger {
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.body_subsite .header #block-language-dropdown {
  top: 0;
  position: static;
  margin-right: 15px;
}

.body_subsite .header .logo {
  z-index: 10;
}

@media (max-width: 991px) {
  .body_subsite .header #block-language-dropdown {
    position: absolute;
    right: 180px;
    top: 33px;
    z-index: 10;
  }
  .body_subsite a.toegankelijkheid {
    right: 207px;
    position: absolute;
    top: 17px;
  }
}
/*
@media (max-width: 767px) {
  .body_subsite .header #block-language-dropdown {
    right: 136px;
  }
}*/
.body_subsite .header #block-language-dropdown .dropdown-language-item {
  background-color: transparent;
  font-family: var(--second-font-family);
}

@media (max-width: 991px) {
  .body_subsite .header #block-language-dropdown .dropdown-language-item {
    color: var(--ss-main-text-color);
  }
}
.body_subsite .header #block-language-dropdown .dropdown-language-item li a,
.body_subsite .header #block-language-dropdown .dropdown-language-item li span {
  font-size: 1.5rem;
  color: #fff;
}

.body_subsite .header #block-language-dropdown .dropbutton-toggle button {
  color: var(--clr-green);
}

.body_subsite .header #block-language-dropdown .dropbutton-arrow,
.body_subsite .header #block-language-dropdown .open .dropbutton-arrow {
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff !important;
  height: 10px;
  width: 10px;
}

.body_subsite .header .hamburger .hamburger-inner,
.body_subsite .header .hamburger .hamburger-inner::after,
.body_subsite .header .hamburger .hamburger-inner::before {
  height: 2px;
}

.body_subsite .header .hamburger .hamburger-inner,
.body_subsite .header .hamburger .hamburger-inner::after,
.body_subsite .header .hamburger .hamburger-inner::before,
.body_subsite .header .hamburger[aria-expanded=true] .hamburger-inner,
.body_subsite .header .hamburger[aria-expanded=true] .hamburger-inner::after,
.body_subsite .header .hamburger[aria-expanded=true] .hamburger-inner::before {
  /* background-color: white; */
}

.body_subsite.body_header-image_tourism .header .hamburger .hamburger-inner,
.body_subsite.body_header-image_tourism .header .hamburger .hamburger-inner::after,
.body_subsite.body_header-image_tourism .header .hamburger .hamburger-inner::before,
.body_subsite.body_header-image_tourism .header .hamburger[aria-expanded=true] .hamburger-inner,
.body_subsite.body_header-image_tourism .header .hamburger[aria-expanded=true] .hamburger-inner::after,
.body_subsite.body_header-image_tourism .header .hamburger[aria-expanded=true] .hamburger-inner::before {
  background-color: white;
}

@media (max-width: 991px) {
  .body_subsite .header.hamburger-active {
    position: static;
  }
}
.body_subsite .header.hamburger-active .hamburger[aria-expanded=true] .hamburger-inner,
.body_subsite .header.hamburger-active .hamburger[aria-expanded=true] .hamburger-inner::after,
.body_subsite .header.hamburger-active .hamburger[aria-expanded=true] .hamburger-inner::before {
  background-color: var(--ss-main-text-color);
}

.body_subsite .comp_tourism_header_search {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.35s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--clr-green);
  padding-left: 8.33334%;
  padding-right: 8.33334%;
  display: flex;
  align-items: center;
}

.body_subsite .comp_tourism_header_search > form {
  margin: 0;
  width: 100%;
  max-width: 750px;
}

@media (min-width: 992px) {
  .body_subsite .comp_tourism_header_search > form {
    margin-left: auto;
    margin-right: auto;
  }
}
.body_subsite .comp_tourism_header_search > form .search-wrapper {
  margin: 0 0 0 0;
  width: 100%;
  padding-right: 50px;
}

.body_subsite .comp_tourism_header_search > form .search-wrapper input.form-text {
  border: 0;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  padding-left: 0;
  background-image: none;
  width: 100%;
  color: white;
  border-radius: 0;
}

.body_subsite .comp_tourism_header_search > form .search-wrapper input.form-text:focus {
  box-shadow: none;
}

.body_subsite .comp_tourism_header_search > form .search-wrapper input.form-submit {
  display: block;
  padding: 0;
  margin: 0;
  height: 32px;
  width: 32px;
  overflow: hidden;
  border-radius: 50%;
  color: transparent;
  background-color: white;
  font-size: 0;
  line-height: 0;
  border: 0;
  position: absolute;
  right: 0;
  top: 10px;
  background: transparent url(/sites/default/files/2021-07/tour_search_icon.svg) no-repeat center center;
}

.body_subsite .comp_tourism_header_search > form .search-wrapper .form-item-search {
  width: 100%;
}

.body_subsite .comp_tourism_header_search ::-moz-placeholder {
  color: white;
}

.body_subsite .comp_tourism_header_search ::placeholder {
  color: white;
}

.body_subsite .comp_tourism_header_search ::-webkit-input-placeholder {
  color: white;
}

.body_subsite .comp_tourism_header_search :-ms-input-placeholder {
  color: white;
}

.body_subsite .comp_tourism_header_search > h2 {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.body_subsite .header .subsite-header-search-btn {
  height: 32px;
  width: 32px;
  cursor: pointer;
  background: transparent url(/sites/default/files/2021-07/tour_search_icon.svg) no-repeat center center;
  z-index: 100;
}

@media (max-width: 991px) {
  .body_subsite .header .subsite-header-search-btn {
    position: absolute;
    top: 17px;
    right: 94px;
  }
}
.body_subsite .header.show-subsite-search .subsite-header-search-btn {
  background-image: url(/sites/default/files/2021-07/tour_search_close_btn.svg);
}

@media (max-width: 480px) {
  .body_subsite .header.show-subsite-search .subsite-header-search-btn {
    right: 30px;
    top: 41px;
    transition: 0.35s;
  }
}
.body_subsite .header.show-subsite-search .comp_tourism_header_search {
  height: 116px;
  opacity: 1;
}

@media (max-width: 991px) {
  .body_subsite .header.show-subsite-search .comp_tourism_header_search {
    padding-right: 130px;
  }
}
@media (max-width: 480px) {
  .body_subsite .header.show-subsite-search .comp_tourism_header_search {
    padding-right: 80px;
  }
}
.body_subsite .header.hamburger-active .subsite-header-search-btn {
  background-image: url(/sites/default/files/2021-07/tour_search_icon-black.svg);
}

.body_subsite .header.hamburger-active.show-subsite-search .subsite-header-search-btn {
  background-image: url(/sites/default/files/2021-07/tour_search_close_btn.svg);
}

.body_subsite .header.hamburger-active #block-language-dropdown .dropdown-language-item li a,
.body_subsite .header.hamburger-active #block-language-dropdown .dropdown-language-item li span {
  color: var(--ss-main-text-color);
}

/* --- END  subsite header ------------------------- */
/* ----------------------------------------------------
              Subsite Navigation
  -----------------------------------------------------*/
@media (max-width: 991px) {
  body.body_subsite #block-mainnavigation {
    padding-top: 180px;
  }
}
@media (max-width: 767px) {
  body.body_subsite #block-mainnavigation {
    padding-top: 130px;
  }
}
@media (min-width: 992px) {
  body.body_subsite #block-mainnavigation {
    margin-right: 90px;
  }
}
@media (min-width: 1600px) {
  body.body_subsite #block-mainnavigation {
    margin-right: 150px;
  }
}
body.body_subsite #block-mainnavigation .navbar-nav.menu--main {
  display: none;
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

@media (max-width: 991px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) {
    margin: 0 -30px;
    flex-direction: row;
  }
}
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li {
  margin-left: 0;
  margin-right: 0;
  padding: 0 15px;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li {
    padding: 0 15px;
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li {
    padding: 0 30px;
  }
}
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a {
  font-weight: normal;
  transition: 0.35s;
  padding-right: 0;
  text-decoration: none;
  position: relative;
  color: white;
  font-family: var(--second-font-family);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  padding-left: 50px;
}

@media (max-width: 991px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a {
    color: var(--ss-main-text-color);
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a {
    padding-left: 0;
  }
}
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before {
  width: 59px;
  height: 9px;
  bottom: auto;
  top: -15px;
  left: 50px;
  position: absolute;
  display: block;
  content: "";
  border: none;
  transform: inherit;
  transform-origin: inherit;
  transition: 0.35s ease-in-out;
  background-position: left top;
  background-repeat: no-repeat;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  /* background-size: contain; */
  opacity: 0;
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::after {
  content: "";
  display: block;
  height: 30px;
  width: 37px;
  position: absolute;
  left: 0;
  top: 0;
  background-position: left center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::after {
    top: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::after {
    content: none;
  }
}
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a .extlink {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a:hover,
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a.active,
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a.is-active {
  text-decoration: none;
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a:hover::before,
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a.active::before,
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a.is-active::before {
  opacity: 1;
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a:hover::after,
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a.active::after,
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a.is-active::after {
  transition: 0.35s;
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-verblijf.svg);
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-zien.svg);
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-praktisch.svg);
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie.svg);
}

@media (min-width: 1300px) {
  body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a {
    padding-left: 53px;
  }
}
body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::before {
  left: 53px;
}

body.body_subsite #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-webshop.svg);
}

/*END navigation -----------------------------------*/
/* ----------------------------------------------------
              Subsite Components 
  -----------------------------------------------------*/
.opening-hours--with-title .paddle-component--body-section {
  text-align: right;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status {
  display: flex;
  position: inherit;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status .field {
  margin-bottom: 0;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status h2 {
  display: block;
  flex: 0 0 50%;
  text-align: left;
  line-height: 1;
  margin-bottom: 0;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status h2 a {
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status h2 a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status h2 a:hover {
  color: var(--ss-main-text-color);
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status > div {
  flex: 0 0 50%;
  margin-bottom: 10px;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status .opening-hour .time {
  margin-left: auto;
  margin-right: 0;
  /* border: 1px solid var(--clr-green);
  border-left: 6px solid;
  border-radius: 3px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; */
  border: 0;
  text-align: center;
  color: var(--clr-green);
  padding: 5px;
}

.opening-hours--with-title .node--organisation.view-mode--opening-hours-status .opening-hour .time.closed {
  border-color: #cc2b00;
  color: #cc2b00;
}

.opening-hours--with-title .paddle-component--opening-hours-block {
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 1rem;
  position: relative;
}

.opening-hours--with-title .paddle-component--opening-hours-block:hover {
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.comp--row-gray-bg {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.comp--row-gray-bg::before {
  background-color: #eeeeee;
  content: "";
  display: block;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -60px;
  margin-bottom: -60px;
  z-index: -1;
}

.comp--row-gray-bg > .layout__region--content {
  max-width: 100%;
  /* padding-left: 15px;
        padding-right: 15px; */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  /* @media (min-width: 768px) {
            padding-left: 4.16667%;
            padding-right: 4.16667%;
        }
        @media (min-width: 1440px) {
            padding-left: 8.33334%;
            padding-right: 8.33334%;
        } */
}

.body_subsite .comp_tour_block_image_left_and_text_right {
  max-width: 1088px;
  width: 100%;
  margin: 4rem auto 0 auto;
}

@media (min-width: 768px) {
  .body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block {
    display: flex;
    flex-wrap: wrap;
  }
}
.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--top-section.image,
.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section {
  margin: 0 0px;
}

@media (min-width: 768px) {
  .body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--top-section.image,
  .body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin: 0 5px;
  }
}
.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--top-section.image picture {
  display: block;
  height: 100%;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--top-section.image picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section {
  background-color: var(--clr-green);
  padding: 40px;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  color: white;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: left bottom;
  height: 9px;
  width: 75px;
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
  background-size: contain;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section ul li::before {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 1.5rem;
  border: 2px solid var(--clr-green);
  padding: 12px 2em;
  line-height: 1;
  vertical-align: top;
  transition: 0.35s;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a::after {
  content: "";
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  height: 13px;
  width: 21px;
  transition: 0.35s;
  position: relative;
  right: 0;
  vertical-align: top;
  line-height: 1;
  margin-top: 5px;
  margin-left: 5px;
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: var(--ss-main-text-color) !important;
  border-color: var(--clr-green);
  background-color: var(--clr-green);
}

.body_subsite .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover::after {
  right: -10px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg) !important;
}

@media (min-width: 768px) {
  .body_subsite .comp_tour_block_image_left_and_text_right.no-col-gutter .paddle-component--text-block .paddle-component--top-section.image,
  .body_subsite .comp_tour_block_image_left_and_text_right.no-col-gutter .paddle-component--text-block .paddle-component--body-section {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0;
  }
}
.body_subsite .comp_text_bock_only {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.comp_toerisme_page_intro_color {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 60px auto;
}

.comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 50px;
}

.comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section {
  color: var(--clr-green);
  font-size: 25px;
}

.comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section h3:first-of-type {
  font-size: 1rem;
  font-family: var(--main-font-family);
  font-weight: normal;
  color: var(--ss-main-text-color);
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url(/sites/default/files/2021-07/small_calendar_green.svg);
  padding-left: 30px;
  margin-bottom: 35px;
}

.comp_block_quote_toerisme {
  max-width: 800px;
  width: 100%;
  margin: 90px auto 90px auto;
}

.comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  line-height: 1.4;
  position: relative;
  margin: 0;
  font-style: italic;
  padding: 15px 40px;
}

@media (min-width: 600px) {
  .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote {
    font-size: 25px;
    padding: 15px 74px;
  }
}
.comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
  display: inline-block;
  font-size: 80px;
  font-weight: bold;
  height: 56px;
  line-height: 1;
  position: absolute;
  color: var(--clr-green);
}

@media (min-width: 600px) {
  .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
  .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
    font-size: 136px;
  }
}
.comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before {
  content: "";
  background-image: url(/sites/default/files/2023-09/openquote.png);
  width: 40px;
  display: block;
  background-size: 40px auto;
  background-repeat: no-repeat;
  margin-right: 9px;
  vertical-align: text-bottom;
  height: 40px;
  line-height: 0.8;
  left: 0;
  top: 0;
}

@media (min-width: 600px) {
  .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before {
    top: 8px;
  }
}
.comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
  vertical-align: bottom;
  right: 22px;
  bottom: 5px;
  content: "";
  background-image: url(/sites/default/files/2023-09/closequote.png);
  width: 40px;
  display: block;
  background-size: 40px auto;
  background-repeat: no-repeat;
  height: 40px;
}

.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before {
  background-image: url(/sites/default/files/2023-10/openquotegreen.png);
}
.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
  background-image: url(/sites/default/files/2023-10/closequotegreen.png);
}

.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before {
  background-image: url(/sites/default/files/2023-10/openquotered.png);
}
.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
  background-image: url(/sites/default/files/2023-10/closequotered.png);
}

.theme--dew-blue .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before {
  background-image: url(/sites/default/files/2023-10/openquoteblue.png);
}
.theme--dew-blue .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
  background-image: url(/sites/default/files/2023-10/closequoteblue.png);
}

.theme--purple .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before {
  background-image: url(/sites/default/files/2023-10/openquotepurple.png);
}
.theme--purple .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
  background-image: url(/sites/default/files/2023-10/closequotepurple.png);
}

.comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section s {
  margin-left: 75px;
  font-weight: bold;
  color: var(--primary);
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__yellow.svg);
  padding-top: 22px;
  display: inline-block;
  background-repeat: no-repeat;
  text-decoration: none !important;
  margin-bottom: 60px;
}

@media (min-width: 600px) {
  .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after {
    bottom: 17px;
  }
}
.comp_block_quote_toerisme .paddle-component--bottom-section {
  margin-left: 40px;
  margin-top: 4px;
  padding-top: 15px;
  color: var(--clr-green);
  background-repeat: no-repeat;
  background-position: left top;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
}

@media (min-width: 600px) {
  .comp_block_quote_toerisme .paddle-component--bottom-section {
    margin-left: 74px;
  }
}
.paddle-components-photo-album-block-wrapper {
  margin-top: 3rem;
}

.paddle-components-photo-album-block-wrapper .paddle-component--photo-album-block .paddle-component--top-section.text {
  margin-bottom: 2rem;
  font-size: var(--h2-size);
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: black;
}

.paddle-components-photo-album-block-wrapper .row .views-row {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 0 !important;
}

@media (min-width: 579px) {
  .paddle-components-photo-album-block-wrapper .row .views-row {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 579px) {
  .paddle-components-photo-album-block-wrapper .row .views-row {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 768px) {
  .paddle-components-photo-album-block-wrapper .row .views-row {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 992px) {
  .paddle-components-photo-album-block-wrapper .row .views-row {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 1200px) {
  .paddle-components-photo-album-block-wrapper .row .views-row {
    flex: 0 0 16.6666667%;
    max-width: 16.6666667%;
  }
}
.paddle-components-photo-album-block-wrapper .row .views-row a {
  position: relative;
  display: block;
  overflow: hidden;
}

.paddle-components-photo-album-block-wrapper .row .views-row a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: all 0.35s ease-in-out;
}

.paddle-components-photo-album-block-wrapper .row .views-row a img {
  transition: all 0.35s ease-in-out;
}

.paddle-components-photo-album-block-wrapper .row .views-row a:hover img {
  transform: scale(1.05);
}

.comp_image_left_and_text_content_right {
  max-width: 1360px;
  width: 100%;
  margin: 90px auto 90px auto;
}

@media (min-width: 992px) {
  .comp_image_left_and_text_content_right {
    margin-bottom: 125px;
  }
}
.comp_image_left_and_text_content_right .paddle-component--text-block {
  display: flex;
  position: relative;
  flex-direction: column;
}

@media (min-width: 992px) {
  .comp_image_left_and_text_content_right .paddle-component--text-block {
    flex-direction: row;
  }
}
.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--top-section.image,
.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section {
  position: static;
}

@media (min-width: 992px) {
  .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--top-section.image,
  .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--top-section.image {
  margin: 0 0 0 0;
}

.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--top-section.image a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}

.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section {
  position: relative;
  background-color: white;
  padding: 30px 0;
}

@media (min-width: 992px) {
  .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section {
    padding: 70px 80px;
    margin-left: -80px;
    margin-top: 64px;
  }
}
.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2 {
  font-family: var(--second-font-family);
  font-weight: 600;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 13px;
}

.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section {
  margin: 40px 0 0 0;
  text-align: left;
}

.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section::before,
.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section::after {
  content: none;
}

.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 400;
}

.comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section a::after {
  content: "";
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  height: 13px;
  width: 21px;
  transition: 0.35s;
  position: relative;
  right: 0;
}

.comp_image_left_and_text_content_right .paddle-component--text-block:hover .paddle-component--bottom-section a::after {
  right: -10px;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.625rem;
  color: var(--clr-green);
  margin-bottom: 40px;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section > ul li {
  padding-left: 0;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section > ul li::before {
  content: none;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section > ul > li {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 5px;
}

@media (min-width: 650px) {
  .body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section > ul > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section > ul > li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity {
  position: relative;
  height: 100%;
  padding-top: 50%;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--featured-image {
  margin: 0 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--featured-image::after {
  content: "";
  display: block;
  padding-bottom: 50%;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--featured-image .items {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--featured-image .item,
.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--featured-image article.media,
.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--featured-image picture {
  height: 100%;
  display: block;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--featured-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper {
  border: 2px solid var(--clr-green);
  border-top: 0;
  height: 100%;
  padding: 20px 35px 90px 35px;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper::after {
  content: "Lees meer";
  display: inline-block;
  position: absolute;
  bottom: 34px;
  left: 35px;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  background: url(/sites/default/files/2021-06/green_arrow.svg) no-repeat right center;
  padding-right: 28px;
  line-height: 1;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--body {
  margin-top: 26px;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity h2 {
  font-size: 1.875rem;
  /* text-transform: none; */
  margin: 0 0 20px 0;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 18px;
  line-height: 1.1;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity h2 a {
  text-decoration: none;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity h2 a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node {
  margin: 0 0 0 0;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul {
  margin: 0 0 0 0;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul li {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 0;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul li a {
  color: var(--ss-main-text-color);
  text-decoration: none;
  font-size: 1rem;
  text-align: left;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-bottom: 10px;
  background: rgba(var(--clr-green-rgb), 0.2) url(/sites/default/files/2021-07/tags_black.svg) no-repeat 7px center;
  padding: 5px 5px 5px 35px;
  line-height: 1;
  transition: 0.35s;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity:hover h2 a {
  color: var(--ss-main-text-color) !important;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity:hover .activity-list-content-wrapper::after {
  padding-right: 38px;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity:hover .field--featured-image img {
  transform: scale(1.05);
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--body-section article.node--activity:hover .field--display-tags-frontend-node ul li a {
  background-image: url(/sites/default/files/2021-07/tags_green.svg);
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section {
  text-align: center;
  margin-top: 2rem;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 1.5rem;
  border: 2px solid var(--clr-green);
  padding: 12px 2em;
  line-height: 1;
  vertical-align: top;
  transition: 0.35s;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a::after {
  content: "";
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  height: 13px;
  width: 21px;
  transition: 0.35s;
  position: relative;
  right: 0;
  vertical-align: top;
  line-height: 1;
  margin-top: 5px;
  margin-left: 5px;
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a:hover {
  color: var(--ss-main-text-color) !important;
  border-color: var(--clr-green);
  background-color: var(--clr-green);
}

.body_subsite .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a:hover::after {
  right: -10px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg) !important;
}

.body_subsite .comp_image_with_title_and_text__row.row {
  margin-right: -5px;
  margin-left: -5px;
}

@media (max-width: 1240px) {
  .body_subsite .comp_image_with_title_and_text__row.row {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
  }
}
.body_subsite .comp_image_with_title_and_text__row.row .layout__region {
  padding: 0 5px 10px 5px;
}

@media (max-width: 1240px) {
  .body_subsite .comp_image_with_title_and_text__row.row .layout__region {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .body_subsite .comp_image_with_title_and_text__row.row .layout__region {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .body_subsite .comp_image_with_title_and_text {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}
.body_subsite .comp_image_with_title_and_text .paddle-component--image-block {
  position: relative;
  margin: 0;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text {
  position: absolute;
  top: 10%;
  z-index: 1;
  padding: 15px 12% 60px 12%;
}

@media (min-width: 1300px) {
  .body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text {
    top: 14%;
  }
}
@media (min-width: 1600px) {
  .body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text {
    top: 20%;
  }
}
.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a {
  display: block;
  line-height: 1;
  text-decoration: none;
  font-family: var(--second-font-family);
  font-weight: 700;
  color: white;
  position: relative;
  top: 0;
  transition: 0.35s;
  /* text-transform: none; */
  text-transform: uppercase;
  margin: 0 0 0 0;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 22px;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .caption {
  font-size: 20px;
  color: white;
  opacity: 0;
  transition: 0.35s;
  margin-top: 1rem;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--body-section a {
  display: block;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--body-section a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.35s;
  background-color: rgba(22, 21, 44, 0.2);
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--body-section a::after {
  content: "" !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--body-section img {
  width: 100%;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--bottom-section {
  margin: 0 0 0 0;
  position: absolute;
  bottom: 6%;
  left: 40px;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--bottom-section a {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  vertical-align: top;
  transition: 0.35s;
  color: white;
  opacity: 0;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--bottom-section a::after {
  content: "";
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  height: 13px;
  width: 21px;
  transition: 0.35s;
  position: relative;
  right: 0;
  vertical-align: top;
  line-height: 1;
  margin-top: 5px;
  margin-left: 10px;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block:hover .caption,
.body_subsite .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--bottom-section a {
  opacity: 1;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--top-section.text a {
  top: -15px;
}

.body_subsite .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--body-section a::before {
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}

.comp_title_pane {
  margin-top: 90px;
  margin-bottom: 98px;
}

.comp_title_pane .paddle-component--top-section.text {
  font-size: 50px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.85;
  text-align: center;
}

@media (max-width: 1169px) {
  .stories-block-wrapper .layout__region {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .comp_block_stories {
    padding-right: 60px;
  }
}
.comp_block_stories .paddle-component--image-block {
  margin-bottom: 0;
  position: relative;
  transition: all 0.35s ease-in-out;
}

.comp_block_stories .paddle-component--image-block .paddle-component--top-section.text {
  width: 320px;
  height: 280px;
  position: absolute;
  bottom: -72px;
  right: 0;
  z-index: 1;
  background-color: var(--clr-green);
  padding: 8%;
  font-size: 32px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.9;
  display: flex;
  align-items: center;
  z-index: 4;
  transition: all 0.35s ease-in-out;
}

.comp_block_stories.second {
  margin-top: 128px;
}

.comp_block_stories.second .paddle-component--image-block .paddle-component--top-section.text {
  bottom: auto;
  top: -64px;
}

@media (max-width: 600px) {
  .comp_block_stories .paddle-component--image-block .paddle-component--top-section.text {
    width: 100%;
    height: auto;
    min-height: auto;
    font-size: 40px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .comp_block_stories .paddle-component--image-block .paddle-component--top-section.text {
    right: -50px;
  }
}
.comp_block_stories .paddle-component--image-block .paddle-component--top-section.text a {
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}

.comp_block_stories .paddle-component--image-block .paddle-component--top-section.text a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.comp_block_stories .paddle-component--image-block .paddle-component--top-section.text a:hover {
  color: white;
}

.comp_block_stories .paddle-component--image-block .paddle-component--top-section.text > a {
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 144px auto;
  display: block;
  padding-bottom: 0;
  margin-bottom: 0;
}

.comp_block_stories .paddle-component--image-block .paddle-component--top-section.text .paddle-component--bottom-section {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-size: 1.875rem;
  font-weight: 400;
  margin: 0 0 0 0 !important;
  color: white;
  background: url(/sites/default/files/2021-07/arrow_black.svg) no-repeat right center;
  padding-right: 33px;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.comp_block_stories .paddle-component--image-block .paddle-component--body-section {
  overflow: hidden;
}

.comp_block_stories .paddle-component--image-block .paddle-component--body-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  background-color: rgba(var(--clr-green-700-rgb), 0.37);
}

.comp_block_stories .paddle-component--image-block .paddle-component--body-section a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.comp_block_stories .paddle-component--image-block .paddle-component--body-section img {
  transition: all 0.35s ease-in-out;
}

.comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text {
  background-color: var(--clr-green-700);
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text {
    transform: scale(1);
  }
}
.comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text a {
  color: white !important;
}

.comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text .paddle-component--bottom-section {
  opacity: 1;
}

.comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text .paddle-component--bottom-section a::after {
  content: "";
}

.comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__green.svg);
  padding-bottom: 36px;
  margin-bottom: 15px;
  background-size: 144px auto;
}

@media (max-width: 600px) {
  .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a {
    margin-bottom: 48px;
  }
}
.comp_block_stories .paddle-component--image-block:hover .paddle-component--body-section::before {
  opacity: 1;
}

.comp_block_stories .paddle-component--image-block:hover .paddle-component--body-section img {
  transform: scale(1.06);
}

.comp_block_stories.comp_stories_text_pane_top {
  padding-right: 0;
  margin-top: 157px;
}

@media (min-width: 1440px) {
  .comp_block_stories.comp_stories_text_pane_top {
    padding-left: 60px;
  }
}
.comp_block_stories.comp_stories_text_pane_top .paddle-component--top-section.text {
  top: -58px;
}

@media (max-width: 600px) {
  .comp_block_stories.comp_stories_text_pane_top .paddle-component--top-section.text {
    top: auto;
  }
}
.schrijf-nieuwsbrief {
  padding: 40px;
  background-color: var(--clr-yellow);
}

.schrijf-nieuwsbrief iframe {
  background-color: var(--clr-yellow);
}

body.fm_body {
  background-color: var(--clr-yellow);
}

.comp--center-content,
.comp--left-content {
  margin-top: 4rem;
}

.comp--center-content .paddle-component--text-block,
.comp--left-content .paddle-component--text-block {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.comp--left-content .paddle-component--text-block {
  text-align: left;
}

@media (min-width: 1024px) {
  .comp--center-content .paddle-component--text-block,
  .comp--left-content .paddle-component--text-block {
    max-width: 50%;
  }
}
.comp--center-content .paddle-component--text-block .paddle-component--top-section.text,
.comp--left-content .paddle-component--text-block .paddle-component--top-section.text {
  margin-bottom: 1.15rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.comp--left-content .paddle-component--body-section h2:first-of-type {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.comp--left-content .paddle-component--body-section h2:first-of-type::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: left bottom;
  height: 9px;
  width: 75px;
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
  background-size: contain;
}

@media (min-width: 1600px) {
  .body_subsite .paddle-components-list-block-wrapper.comp--block-list-4-col > .paddle-component--list-block .paddle-component--body-section > ul > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
/*END Components ------------------------------------*/
/* ----------------------------------------------------
              Subsite Tourism Level 1
  -----------------------------------------------------*/
.body_subsite.body_toerisme_level_1a #region-content {
  padding-left: 0;
  padding-right: 0;
}

.body_subsite.body_toerisme_level_1a .comp_text_bock_only {
  margin-bottom: 90px;
}

/*Subsite Tourism Level 1----------------------------*/
/* ----------------------------------------------------
              Subsite Tourism Level 2 
  -----------------------------------------------------*/
.body_toerisme_level_2 .layout--threecol-section--33-34-33 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .body_toerisme_level_2 .layout--threecol-section--33-34-33 {
    max-width: 737px;
  }
}
.body_toerisme_level_2 .layout--threecol-section--33-34-33 .layout__region {
  padding: 0 5px 0 5px;
}

@media (max-width: 1199px) {
  .body_toerisme_level_2 .layout--threecol-section--33-34-33 .layout__region {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 799px) {
  .body_toerisme_level_2 .layout--threecol-section--33-34-33 .layout__region {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.comp_btn_with_icon_and_title .paddle-component--top-bottom-only-block {
  margin-bottom: 0;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text {
  position: relative;
  width: 356px;
  height: 241px;
  text-align: center;
  background-color: var(--clr-green);
  padding: 0 15px 0 15px;
  margin-bottom: 10px;
  font-family: var(--second-font-family);
  font-weight: 600;
  font-size: 1.75rem;
  text-transform: uppercase;
  transition: 0.35s;
}

@media (max-width: 799px) {
  .comp_btn_with_icon_and_title .paddle-component--top-section.text {
    margin-left: auto;
    margin-right: auto;
    width: 280px;
  }
}
.comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter {
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter img {
  display: inline-block;
  margin-top: 10px;
  transition: 0.35s;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  content: "";
  display: block;
  width: 70px;
  height: 10px;
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__white_0.svg);
  opacity: 0;
  transition: 0.35s;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text a {
  text-decoration: none;
  transition: 0.35s;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text:hover {
  background-color: var(--clr-green-700);
  color: white;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text:hover .svg-formatter::after {
  opacity: 1;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text:hover .svg-formatter img {
  margin-top: -10px;
}

.comp_btn_with_icon_and_title .paddle-component--top-section.text:hover a {
  color: white !important;
}

/*Subsite Tourism Level 2 ----------------------------*/
/* ----------------------------------------------------
              Subsite Blog 
  -----------------------------------------------------*/
.body_toerisme_blog .region--content .paddle-components-image-block-wrapper {
  margin-bottom: 90px;
  margin-top: 90px;
}

/*END Subsite Blog ----------------------------------*/
/* ----------------------------------------------------
              Subsite Activities 
  -----------------------------------------------------*/
.body_subsite.page-node-type-activity #region-content {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1600px) {
  .body_subsite.page-node-type-activity .layout--twocol-section--67-33 .layout__region--first {
    padding-right: 130px;
  }
}
.body_subsite.page-node-type-activity .layout--twocol-section--67-33 .field-block {
  margin-bottom: 2.5rem;
}

.body_subsite.page-node-type-activity .field-display_tags_frontend_node {
  display: none;
}

.body_subsite.page-node-type-activity .field-title {
  margin-bottom: 0;
}

.body_subsite.page-node-type-activity .field-title h1 {
  line-height: 1;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2rem;
  background-size: auto 16px;
  margin-bottom: 3rem;
}

.body_subsite.page-node-type-activity .field-activity_type .items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.body_subsite.page-node-type-activity .field-activity_type .item {
  margin: 0 5px;
  padding: 5px 5px 5px 35px;
  font-size: 1rem;
  line-height: 1;
  background: rgba(var(--clr-green-rgb), 0.2) url(/sites/default/files/2021-07/tags_black.svg) no-repeat 7px center;
}

.body_subsite.page-node-type-activity .node--activity .field-block > h2,
.body_subsite.page-node-type-activity .node--activity .field-block .item > h2,
.body_subsite.page-node-type-activity .node--activity .field-chapter_title_h2 {
  color: var(--clr-green);
  margin-bottom: 16px;
}

.body_subsite.page-node-type-activity .node--activity .field-block.field-list_of_interesting_activities > h2 {
  margin-bottom: 2rem;
}

.body_subsite.page-node-type-activity .event-info-wrapper {
  background-color: var(--clr-green);
  padding: 25px 60px 50px 60px;
  margin-bottom: 2rem;
}

.body_subsite.page-node-type-activity .event-info-wrapper .field-block {
  margin-bottom: 3px;
}

.body_subsite.page-node-type-activity .field-block.field-date_time {
  margin: -25px -60px 50px -60px;
  background-color: var(--ss-main-text-color);
  color: var(--clr-green);
  padding: 30px 20px;
}

.body_subsite.page-node-type-activity .field-block a:hover {
  color: white;
}

.body_subsite.page-node-type-activity .field-block .field {
  margin-bottom: 0;
}

.body_subsite.page-node-type-activity .field-block .field .field-with-icon {
  align-items: center;
}

.body_subsite.page-node-type-activity .field .field-with-icon__icon {
  display: none;
}

.body_subsite.page-node-type-activity .field .field-with-icon__icon i.fas {
  display: none;
}

.body_subsite.page-node-type-activity .field-block.field-date_time .item {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.body_subsite.page-node-type-activity .field-block.field-date_time .field-with-icon__icon {
  background: url(/sites/default/files/2021-07/calendar_green.svg) no-repeat center center;
  width: 36px;
  height: 37px;
  margin-right: 20px;
  display: block;
}

.body_subsite.page-node-type-activity .extra-field-block.field-ical {
  margin-bottom: 3rem;
}

.body_subsite.page-node-type-activity .extra-field-block.field-ical .field--ical {
  text-align: center;
}

.body_subsite.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn {
  border: 2px solid white;
  height: auto;
  text-decoration: none;
  color: var(--ss-main-text-color);
  font-size: 24px;
  font-family: var(--second-font-family);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  display: block;
  vertical-align: top;
  padding: 12px 80px 12px 15px;
  line-height: 1;
  position: relative;
}

.body_subsite.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 51px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}

.body_subsite.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn i.fas {
  display: none;
}

.body_subsite.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn:hover {
  background-color: white;
  color: var(--ss-main-text-color);
}

.body_subsite.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn:hover::after {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  right: 40px;
}

.body_subsite.page-node-type-activity .field-block.field-organiser {
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
}

.body_subsite.page-node-type-activity .field-block.field-link {
  margin-top: 40px;
}

.body_subsite.page-node-type-activity .field-block.field-link .item {
  position: relative;
  border: 2px solid var(--clr-green);
  text-align: center;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
}

.body_subsite.page-node-type-activity .layout__region--second .field-block.field-link .item a.btn {
  display: inline-block;
  color: var(--ss-main-text-color);
  text-decoration: none;
  height: auto;
  font-size: 35px;
  font-family: var(--second-font-family);
  font-weight: 400;
  text-transform: uppercase;
  padding: 12px 15px 12px 15px;
  line-height: 1.1;
  position: static;
}

.body_subsite.page-node-type-activity .layout__region--second .field-block.field-link .item a.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.body_subsite.page-node-type-activity .layout__region--second .field-block.field-link .item a.btn::after {
  content: "";
  display: inline-block;
  position: relative;
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: 18px;
  top: -3px;
  left: 15px;
  transition: all 0.35s ease-in-out;
}

.body_subsite.page-node-type-activity .field-block.field-link .item a.btn .extlink {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.body_subsite.page-node-type-activity .layout__region--second .field-block.field-link .item:hover {
  background-color: var(--clr-green);
}

.body_subsite.page-node-type-activity .layout__region--second .field-block.field-link .item:hover a.btn {
  color: var(--ss-main-text-color);
  background-color: transparent;
}

.body_subsite.page-node-type-activity .field-block.field-link .item:hover a.btn::after {
  left: 25px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg) !important;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled {
  display: flex;
}

@media (max-width: 767px) {
  .body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li {
  padding-left: 0;
}

@media (max-width: 767px) {
  .body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li::before {
  content: none;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li > article::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(22, 21, 44, 0.4);
  z-index: 1;
  transition: all 0.35s ease-in-out;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li > article::after {
  content: "Lees Meer";
  position: absolute;
  bottom: 30px;
  left: 54px;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat right center;
  padding-right: 28px;
  line-height: 1;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li > article:hover::before {
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.list-unstyled li > article:hover::after {
  opacity: 1;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 80px 0;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node > div:not(.contextual) {
  height: 100%;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node h2 {
  bottom: auto;
  position: static;
  top: 0;
  padding: 0;
  transition: all 0.35s ease-in-out;
  transform: translateY(40px);
}

@media (max-width: 1169px) {
  .body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node h2 {
    padding-left: 0;
    top: 0;
  }
}
.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node h2 a {
  font-family: var(--second-font-family);
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.1;
  display: block;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 16px;
}

@media (max-width: 1169px) {
  .body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node h2 a {
    font-size: 1.75rem;
  }
}
.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node h2 a::before {
  content: "";
  position: absolute;
  display: block;
  top: -500%;
  bottom: -700%;
  left: -500%;
  right: -500%;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node h2 a:hover {
  color: white !important;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node .field--featured-image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node .field--featured-image * {
  display: block;
  height: 100%;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node .field--featured-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.35s;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node .field--body {
  position: relative;
  top: auto;
  padding: 0 45px;
  z-index: 10;
  transition: all 0.35s ease-in-out;
}

@media (max-width: 1169px) {
  .body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node .field--body {
    padding-left: 0;
    top: auto;
  }
}
.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node .field--body .items {
  opacity: 0;
  transition: 0.35s;
  color: white;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node img {
  display: block;
  width: 100%;
  height: auto;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node:hover h2 {
  transform: translateY(-15px);
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node:hover .field--body .items {
  opacity: 1;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities article.node:hover .field--featured-image img {
  transform: scale(1.05);
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  line-height: 1;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li::before {
  content: none;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a {
  height: 74px;
  width: 74px;
  position: static;
  background-color: var(--clr-green);
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}

@media (max-width: 1169px) {
  .body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a {
    height: 40px;
    width: 40px;
    padding: 0;
    background-size: 50%;
  }
}
.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a:not(.flex-disabled) {
  display: block;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a:hover {
  background-color: var(--clr-green-700);
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li i.fas {
  display: none;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li.flex-nav-prev {
  left: -37px;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li.flex-nav-prev a {
  background-image: url(/sites/default/files/2021-07/carousel_arrow_left_white.svg);
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li.flex-nav-next {
  right: -37px;
}

.body_subsite.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li.flex-nav-next a {
  background-image: url(/sites/default/files/2021-07/carousel_arrow_right_white.svg);
}

.body_subsite.page-node-type-activity .header {
  height: auto;
}

.body_subsite.page-node-type-activity .header::after {
  content: none;
}

.body_subsite.page-node-type-activity .header .header-content::before,
.body_subsite.page-node-type-activity .header .header-content::after {
  content: none;
}

.body_subsite.page-node-type-activity .header #block-language-dropdown .dropdown-language-item li span,
.body_subsite.page-node-type-activity .header #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a,
.body_subsite.page-node-type-activity .header #block-language-dropdown .dropdown-language-item li a,
.body_subsite.page-node-type-activity .header #block-language-dropdown .dropdown-language-item li span {
  color: var(--ss-main-text-color);
}

/*
.body_subsite.page-node-type-activity .header .subsite-header-search-btn {
  background: transparent url(/sites/default/files/2021-11/tour_search_icon--black.svg) no-repeat center center;
}
*/
.body_subsite.page-node-type-activity #block-ocelot-paddle-page-title {
  padding-left: 0;
}

.body_subsite.page-node-type-activity #block-ocelot-paddle-page-title h1 {
  color: var(--ss-main-text-color);
}

/*END Subsite Activities ----------------------------*/
/* ----------------------------------------------------
              Subsite search page 
  -----------------------------------------------------*/
body.body_subsite.page-node-type-search-page #region-content {
  padding-left: 0;
  padding-right: 0;
}

body.body_subsite.page-node-type-search-page .views-exposed-form label {
  font-family: var(--second-font-family);
  font-size: 1.625rem;
  color: var(--ss-main-text-color);
  font-weight: 600;
  text-transform: uppercase;
}

body.body_subsite.page-node-type-search-page .hide-label .views-exposed-form label {
  display: none;
}

body.body_subsite.page-node-type-search-page .views-exposed-form .form-control,
body.body_subsite.page-node-type-search-page .views-exposed-form .form-select {
  height: 54px;
  border-radius: 0;
}

body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-group {
  width: 100%;
  margin-bottom: 1.5rem;
}

body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input {
  border: 2px solid var(--ss-main-text-color);
  padding: 15px 36px 15px 20px;
  line-height: 1;
  color: var(--ss-main-text-color);
  font-family: var(--second-font-family);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  width: 48%;
  background-repeat: no-repeat;
  background-position: calc(100% - 19px) center;
  transition: 0.35s;
  background-image: url(/sites/default/files/2021-07/arrow_black.svg);
}

@media (min-width: 768px) and (max-width: 1375px) {
  body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input {
    width: 100%;
  }
}
body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input:hover {
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg);
  background-color: var(--ss-main-text-color);
  color: white;
  background-position: calc(100% - 10px) center;
}

body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn {
  border-color: var(--clr-blue);
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg);
}

@media (min-width: 768px) and (max-width: 1375px) {
  body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn {
    margin-bottom: 15px;
  }
}
body.body_subsite.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn:hover {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  color: var(--ss-main-text-color);
  background-color: var(--clr-blue);
}

body.body_subsite:not(.depanne_leeft).page-node-type-search-page .view-search .view-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px 2rem -4px;
}

body.body_subsite:not(.depanne_leeft).page-node-type-search-page .view-search .view-content .mb-5 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 4px 8px 4px;
  margin-bottom: 0 !important;
}

@media (min-width: 650px) {
  body.body_subsite:not(.depanne_leeft).page-node-type-search-page .view-search .view-content .mb-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1170px) {
  body.body_subsite:not(.depanne_leeft).page-node-type-search-page .view-search .view-content .mb-5 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
body.body_subsite:not(.depanne_leeft).page-node-type-search-page .view-search .view-content .no-gutters > [class*=col-] {
  flex: 0 0 100%;
  max-width: 100%;
}

body.body_subsite:not(.depanne_leeft).page-node-type-search-page .view-search .card {
  margin: 0 0 0 0;
  border-width: 2px;
  border-style: solid;
}

body.body_subsite.page-node-type-search-page .view-search .card .row.no-gutters {
  /* flex-direction: column;
  flex-wrap: nowrap;
  padding-top: 50%; 
  height: 100%;*/
}

body.body_subsite:not(.depanne_leeft).page-node-type-search-page .view-search .card .row.no-gutters .col-lg-8 {
  flex: 0 0 calc(100% + 4px);
  max-width: calc(100% + 4px);
  margin: -2px 0 0 -2px;
  overflow: hidden;
}

body.body_subsite.page-node-type-search-page .view-search .card .row.no-gutters .col-lg-8::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

body.body_subsite.page-node-type-search-page .view-search .card .row.no-gutters .col-lg-16 .card-body {
  border-top: 0;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body {
  /* border: 2px solid var(--clr-blue); */
  height: 100%;
  padding: 30px 30px 90px 30px;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body p.read-more {
  position: absolute;
  bottom: 40px;
  margin: 0;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  background: url(/sites/default/files/2021-06/blue_arrow.svg) no-repeat right center;
  padding-right: 28px;
  line-height: 1;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body p.read-more::after {
  content: none !important;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node {
  margin: 0 0 15px 0;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul {
  margin: 0 0 0 0;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 0;
  position: static;
  padding: 0 0 0 0;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li::before {
  content: none;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li a {
  color: var(--ss-main-text-color);
  text-decoration: none;
  font-size: 1rem;
  text-align: left;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-bottom: 10px;
  background: rgba(var(--clr-blue-rgb), 0.2) url(/sites/default/files/2021-07/tags_black.svg) no-repeat 7px center;
  padding: 5px 5px 5px 35px;
  line-height: 1;
  transition: 0.35s;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-text {
  padding-top: 4px;
}

body.body_subsite.page-node-type-search-page .view-search .card .field--body .item * {
  display: inline;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: var(--main-font-family);
  /* text-transform: none; */
}

body.body_subsite.page-node-type-search-page .view-search .card .card-title {
  margin-top: 0;
  font-size: 1.875rem;
  /* text-transform: none; */
  margin: 0 0 20px 0;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__blue.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 18px;
  line-height: 1.1;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-title a {
  /* text-transform: none; */
}

body.body_subsite.page-node-type-search-page .view-search .card .card-title a::before {
  z-index: 10;
}

body.body_subsite.page-node-type-search-page .view-search .card .card-title a:hover {
  text-decoration: none;
}

body.body_subsite.page-node-type-search-page .view-search .card.node.view-mode--search-teaser .image {
  /* height: 100%;
                    min-height: 50%; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.35s;
}

body.body_subsite.page-node-type-search-page .view-search .card:hover .card-title a {
  color: var(--ss-main-text-color);
}

body.body_subsite.page-node-type-search-page .view-search .card:hover .image {
  transform: scale(1.05);
}

body.body_subsite.page-node-type-search-page .view-search .card:hover p.read-more {
  padding-right: 38px;
}

body.body_subsite.page-node-type-search-page .view-search .node--activity--search-teaser .field--date-time {
  display: none;
}

body.body_subsite.page-node-type-search-page .block-facet {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 3rem;
}

body.body_subsite.page-node-type-search-page .block-facet h2 {
  font-size: 2.187rem;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin__blue.svg);
  background-size: 80px 14px;
  padding-bottom: 18px;
  margin-bottom: 26px;
}

body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item {
  padding: 0;
}

body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item::before {
  content: none;
}

body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item a {
  padding-left: 40px;
  position: relative;
  text-decoration: none;
  display: block;
  line-height: 1.1;
}

body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  border: 1px solid var(--ss-main-text-color);
}

body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item a::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-color: var(--clr-blue);
  border-radius: 4px;
  position: absolute;
  left: 4px;
  top: 6px;
  opacity: 0;
  transition: 0.35s;
}

body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item a span.facet-item__status {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item a:hover::after,
body.body_subsite.page-node-type-search-page .block-facet--general-tags ul li.facet-item a.is-active::after {
  opacity: 1;
}

.card::after,
.card::before {
  content: none;
}

/* --- END Subsite search page  ---------------------*/
/* ----------------------------------------------------
              Subsite Company page
  -----------------------------------------------------*/
.page-node-type-company .layout__region--first .field-block {
  margin-bottom: 1rem;
}

.page-node-type-company .field-with-icon__icon {
  color: var(--clr-green);
}

.page-node-type-company .social-media-links--platforms.horizontal li::before {
  content: none;
}

.page-node-type-company .social-media-links--platforms.horizontal li .extlink {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.page-node-type-company .social-media-links--platforms.horizontal li a {
  color: var(--clr-green);
}

.page-node-type-company .social-media-links--platforms.horizontal li a:hover {
  color: var(--ss-main-text-color) !important;
}

.page-node-type-company.body_subsite .header {
  height: auto;
}

.page-node-type-company.body_subsite .header::after {
  content: none;
}

.page-node-type-company.body_subsite .header .header-content::before,
.page-node-type-company.body_subsite .header .header-content::after {
  content: none;
}

.page-node-type-company.body_subsite .header #block-language-dropdown .dropdown-language-item li span,
.page-node-type-company.body_subsite .header #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a,
.page-node-type-company.body_subsite .header #block-language-dropdown .dropdown-language-item li a,
.page-node-type-company.body_subsite .header #block-language-dropdown .dropdown-language-item li span {
  color: var(--ss-main-text-color);
}

.page-node-type-company.body_subsite .header .subsite-header-search-btn {
  background: transparent url(/sites/default/files/2021-11/tour_search_icon--black.svg) no-repeat center center;
}

.page-node-type-company.body_subsite #block-ocelot-paddle-page-title {
  padding-left: 0;
}

.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1 {
  color: var(--ss-main-text-color);
  font-size: var(--h1-size);
  padding-bottom: 20px;
  margin-bottom: 3rem;
}

.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 2px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
}

@media (min-width: 768px) {
  .page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .field--body.field--type--text-with-summary p {
  color: var(--clr-green);
}

.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .paddle-component--text-block {
  margin-bottom: 0;
  margin-top: 2rem;
}

.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .paddle-component--text-block h2 {
  margin-bottom: 0.65rem;
}

@media (min-width: 768px) {
  .page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--second {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.page-node-type-company.body_subsite div#field_block\:node\:company\:social h2 {
  margin-bottom: 0;
  margin-top: 2rem;
}

.page-node-type-company.body_subsite .paddle-components-photo-album-block-wrapper {
  margin-top: 70px;
}

.page-node-type-company.body_subsite .paddle-components-photo-album-block-wrapper .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 889px) {
  .page-node-type-company.body_subsite .paddle-components-photo-album-block-wrapper .row .views-row {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.paddle-component--carousel-block .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ----------------------------------------------------
              Subsite Homepage
  -----------------------------------------------------*/
.body_toerisme_homepage #block-ocelot-paddle-page-title #block-ocelot-paddle-breadcrumbs,
.body_toerisme_homepage .region.region--breadcrumb #block-ocelot-paddle-breadcrumbs {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.body_toerisme_homepage .header {
  height: auto;
}

@media (min-width: 768px) and (min-height: 640px) {
  .body_toerisme_homepage .header {
    height: 84vh;
  }
}
.body_toerisme_homepage .header .header-content {
  height: 100%;
}

.body_toerisme_homepage .header .header-content::after {
  background-color: rgba(22, 21, 44, 0.4);
}

.body_toerisme_homepage .header .header-content .caption {
  max-width: 640px;
  width: 100%;
  font-size: 1.125rem;
  color: white;
  margin: 0 auto 7rem auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .body_toerisme_homepage .header .header-content .caption {
    margin-top: -4rem;
  }
}
@media (min-width: 768px) and (min-height: 820px) {
  .body_toerisme_homepage .header .header-content .caption {
    max-width: 530px;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-70%, -50%);
    margin-top: 0;
  }
}
.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  font-size: 80px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.85;
  color: white;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_white.svg);
  padding-bottom: 38px;
}

@media (min-width: 768px) and (min-height: 820px) {
  .body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
    font-size: 120px;
  }
}
.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text::before,
.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text::after {
  content: none;
}

.body_toerisme_homepage.body_subsite #region-content {
  padding-left: 0;
  padding-right: 0;
}

.scrolldown {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 48px;
}

.scrolldown a {
  position: relative;
  display: inline-block;
  color: #474544;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 24px;
  height: 40px;
}

.scrolldown a span {
  position: absolute;
  top: 0;
  width: 24px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  box-sizing: border-box;
}

.scrolldown a span::before {
  position: absolute;
  top: 6px;
  left: 53%;
  content: "";
  width: 4px;
  height: 4px;
  margin-left: -2px;
  background-color: #ffffff;
  border-radius: 5px;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

.scrolldown p {
  margin-right: 15px;
}

.scrolldown i.fa-long-arrow-alt-down {
  position: absolute;
  bottom: 0;
  left: 12px;
  font-size: 17px;
  right: 0;
}

@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.body_subsite .tourism_news {
  margin-top: 120px;
}

.body_subsite .tourism_news .paddle-component--list-block .paddle-component--top-section.text {
  font-size: 3.125rem;
  text-align: center;
  margin-bottom: 4rem !important;
}

.body_subsite .tourism_news .paddle-component--list-block .paddle-component--body-section ul {
  display: flex;
  flex-flow: wrap;
  margin: 0 -4px;
}

.body_subsite .tourism_news .paddle-component--list-block .paddle-component--body-section ul li {
  padding: 0 4px 8px 4px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 579px) {
  .body_subsite .tourism_news .paddle-component--list-block .paddle-component--body-section ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .body_subsite .tourism_news .paddle-component--list-block .paddle-component--body-section ul li {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.body_subsite .tourism_news .paddle-component--list-block article.node {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--publication-date {
  display: none;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image::after {
  content: "Lees Meer";
  position: absolute;
  bottom: 40px;
  left: 12%;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat right center;
  padding-right: 28px;
  line-height: 1;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image a,
.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image .item,
.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image .media,
.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image picture {
  height: 100%;
  display: block;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image a {
  transition: 0.35s;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.35s;
  background-color: rgba(22, 21, 44, 0.4);
  z-index: 1;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image .items {
  height: 100%;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--featured-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.35s;
}

.body_subsite .tourism_news .paddle-component--list-block article.node .field--body {
  min-height: 550px;
  margin: 0 0 0 0;
  padding: 10% 12% 60px 12%;
}

@media (min-width: 1300px) {
  .body_subsite .tourism_news .paddle-component--list-block article.node .field--body {
    padding-top: 20%;
  }
}
.body_subsite .tourism_news .paddle-component--list-block article.node .field--body .items {
  font-size: 20px;
  color: white;
  opacity: 0;
  transition: 0.35s;
  margin-top: 1rem;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
}

.body_subsite .tourism_news .paddle-component--list-block article.node h2 a {
  display: block;
  line-height: 1;
  text-decoration: none;
  font-family: var(--second-font-family);
  font-weight: 700;
  color: white;
  position: relative;
  top: 0;
  transition: 0.35s;
  /* text-transform: none; */
  margin: 0 0 0 0;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 22px;
  z-index: 1;
}

.body_subsite .tourism_news .paddle-component--list-block article.node:hover .field--featured-image::after {
  opacity: 1;
}

.body_subsite .tourism_news .paddle-component--list-block article.node:hover .field--featured-image a::before {
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}

.body_subsite .tourism_news .paddle-component--list-block article.node:hover .field--body .items {
  opacity: 1;
}

.body_subsite .tourism_news .paddle-component--list-block article.node:hover h2 a {
  top: -15px;
}

.body_subsite .comp-dynamic-list-with-bg-img {
  margin-top: 60px;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block .paddle-component--top-section.text {
  font-size: 3.125rem;
  text-align: center;
  margin-bottom: 4rem !important;
  font-family: var(--second-font-family);
  color: var(--ss-main-text-color) !important;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.85;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block .paddle-component--body-section ul {
  display: flex;
  flex-flow: wrap;
  margin: 0 -4px;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block .paddle-component--body-section ul li {
  padding: 0 4px 8px 4px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 579px) {
  .body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block .paddle-component--body-section ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block .paddle-component--body-section ul li {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block .paddle-component--body-section ul li::before {
  content: none;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--publication-date {
  display: none;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image::after {
  content: "Lees Meer";
  position: absolute;
  bottom: 40px;
  left: 12%;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat right center;
  padding-right: 28px;
  line-height: 1;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image a,
.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image .item,
.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image .media,
.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image picture {
  height: 100%;
  display: block;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image a {
  transition: 0.35s;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.35s;
  background-color: rgba(22, 21, 44, 0.4);
  z-index: 1;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image .items {
  height: 100%;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--featured-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.35s;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--body {
  min-height: 550px;
  margin: 0 0 0 0;
  padding: 10% 12% 60px 12%;
}

@media (min-width: 1300px) {
  .body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--body {
    padding-top: 20%;
  }
}
.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node .field--body .items {
  font-size: 20px;
  color: white;
  opacity: 0;
  transition: 0.35s;
  margin-top: 1rem;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a {
  display: block;
  line-height: 1;
  text-decoration: none;
  font-family: var(--second-font-family);
  font-weight: 700;
  color: white;
  position: relative;
  transform: translateY(40px);
  transition: 0.35s;
  /* text-transform: none; */
  margin: 0 0 0 0;
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 22px;
  z-index: 1;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--featured-image::after {
  opacity: 1;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--featured-image a::before {
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--body .items {
  opacity: 1;
}

.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover h2 a {
  transform: translateY(-15px);
}

.body_subsite .comp-dynamic-list-with-bg-img .field--type--daterange {
  display: none;
}

.body_subsite .paddle-components-list-block-wrapper .paddle-component--bottom-section {
  text-align: center;
  margin-top: 2rem;
}

.body_subsite .paddle-components-list-block-wrapper .paddle-component--bottom-section a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 1.5rem;
  border: 2px solid var(--clr-green);
  padding: 12px 2em;
  line-height: 1;
  vertical-align: top;
  transition: 0.35s;
}

.body_subsite .paddle-components-list-block-wrapper .paddle-component--bottom-section a::after {
  content: "";
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  height: 13px;
  width: 21px;
  transition: 0.35s;
  position: relative;
  right: 0;
  vertical-align: top;
  line-height: 1;
  margin-top: 5px;
  margin-left: 5px;
}

.body_subsite .paddle-components-list-block-wrapper .paddle-component--bottom-section a.ext .extlink {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.body_subsite .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover {
  color: var(--ss-main-text-color) !important;
  border-color: var(--clr-green);
  background-color: var(--clr-green);
}

.body_subsite .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover::after {
  right: -10px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg) !important;
}

.body_subsite .layout-builder__custom.page_wide .comp-dynamic-list-with-bg-img {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .body_subsite .layout-builder__custom.page_wide .comp-dynamic-list-with-bg-img {
    padding-left: 4.16667%;
    padding-right: 4.16667%;
  }
}
@media (min-width: 1440px) {
  .body_subsite .layout-builder__custom.page_wide .comp-dynamic-list-with-bg-img {
    padding-left: 8.33334%;
    padding-right: 8.33334%;
  }
}
.body_toerisme_homepage.body_subsite .comp-dynamic-list-with-bg-img .paddle-component--list-block .paddle-component--top-section.text {
  margin-top: 11rem !important;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section ul.list-unstyled li {
  padding: 0;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .comp--block-list-with-image-left-content-right .paddle-component--body-section ul.list-unstyled li {
    margin-bottom: 120px;
  }
}
.comp--block-list-with-image-left-content-right .paddle-component--body-section ul.list-unstyled li::before {
  content: none;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight > div:not(.contextual) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.35s;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image .items {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image .items a {
  position: relative;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image .items a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--featured-image .items * {
  display: block;
  height: 100%;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  background-color: white;
  padding: 4% 5% 100px 5%;
}

@media (min-width: 768px) {
  .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body {
    flex: 0 0 55%;
    max-width: 55%;
    transform: translate(-50px, 60px);
  }
}
.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body::after {
  content: "Lees Meer";
  position: absolute;
  bottom: 46px;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--ss-main-text-color);
  background: url(/sites/default/files/2021-06/purple_arrow.svg) no-repeat right center;
  padding-right: 28px;
  line-height: 1;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2 {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 15px;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2 a {
  text-decoration: none;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2 a:hover {
  color: var(--ss-main-text-color) !important;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight:hover h2 a {
  color: var(--ss-main-text-color);
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight:hover .field--body::after {
  padding-right: 40px;
}

.comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight:hover .field--featured-image img {
  transform: scale(1.05);
}

/*END Subsite Homepage ------------------------------*/
/* ----------------------------------------------------
              Subsite Instagram
  -----------------------------------------------------*/
.paddle-components-instagram-feed-block-wrapper {
  padding-top: 3rem;
}

.paddle-components-instagram-feed-block-wrapper .paddle-component--top-section.text {
  font-size: 3.125rem;
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
}

.paddle-components-instagram-feed-block-wrapper .instagram_feed {
  margin: 0 -4px;
}

.paddle-components-instagram-feed-block-wrapper .instagram_feed .instagram_new {
  padding: 0 4px 8px 4px;
}

.paddle-components-instagram-feed-block-wrapper .instagram_feed .insta-link {
  background: var(--clr-green);
}

/*END Subsite Instagram -----------------------------*/
.comp--leeft-coloured-bg {
  background-color: var(--clr-green-10);
  padding: 10px 20px;
  position: relative;
  margin-bottom: 4rem;
  margin-top: 4rem;
}
.comp--leeft-coloured-bg img.original.img-fluid {
  margin-top: 2rem;
}
.comp--leeft-coloured-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  top: -17px;
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_green.jpg) repeat-x right center;
  background-size: 35px auto !important;
}
.comp--leeft-coloured-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -17px;
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_green.jpg) repeat-x right center;
  background-size: 35px auto !important;
  transform: rotate(180deg);
}

/**** owl slider ***/
.body_subsite.depanne_leeft {
  /*Owl carousel----------------------------------------------------------------------*/
}
.body_subsite.depanne_leeft .owl-carousel,
.body_subsite.depanne_leeft .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.body_subsite.depanne_leeft .owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
  padding-left: 0 !important;
  margin-left: -7.5px !important;
  margin-right: -7.5px !important;
}
.body_subsite.depanne_leeft .owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.body_subsite.depanne_leeft .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.body_subsite.depanne_leeft .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.body_subsite.depanne_leeft .owl-carousel .owl-item,
.body_subsite.depanne_leeft .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.body_subsite.depanne_leeft .owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
  padding: 0 7.5px;
}
.body_subsite.depanne_leeft .owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.body_subsite.depanne_leeft .owl-carousel .owl-dots.disabled,
.body_subsite.depanne_leeft .owl-carousel .owl-nav.disabled {
  display: none;
}
.body_subsite.depanne_leeft .no-js .owl-carousel,
.body_subsite.depanne_leeft .owl-carousel.owl-loaded {
  display: block;
}
.body_subsite.depanne_leeft .owl-carousel .owl-dot,
.body_subsite.depanne_leeft .owl-carousel .owl-nav .owl-next,
.body_subsite.depanne_leeft .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.body_subsite.depanne_leeft .owl-carousel .owl-nav button.owl-next,
.body_subsite.depanne_leeft .owl-carousel .owl-nav button.owl-prev,
.body_subsite.depanne_leeft .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.body_subsite.depanne_leeft .owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.body_subsite.depanne_leeft .owl-carousel.owl-hidden {
  opacity: 0;
}
.body_subsite.depanne_leeft .owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.body_subsite.depanne_leeft .owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.body_subsite.depanne_leeft .owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.body_subsite.depanne_leeft .owl-carousel.owl-rtl {
  direction: rtl;
}
.body_subsite.depanne_leeft .owl-carousel.owl-rtl .owl-item {
  float: right;
}
.body_subsite.depanne_leeft .owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.body_subsite.depanne_leeft .owl-carousel .owl-animated-in {
  z-index: 0;
}
.body_subsite.depanne_leeft .owl-carousel .owl-animated-out {
  z-index: 1;
}
.body_subsite.depanne_leeft .owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.body_subsite.depanne_leeft .owl-height {
  transition: height 0.5s ease-in-out;
}
.body_subsite.depanne_leeft .owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.body_subsite.depanne_leeft .owl-carousel .owl-item .owl-lazy:not([src]),
.body_subsite.depanne_leeft .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.body_subsite.depanne_leeft .owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.body_subsite.depanne_leeft .owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.body_subsite.depanne_leeft .owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.body_subsite.depanne_leeft .owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.body_subsite.depanne_leeft .owl-carousel .owl-video-playing .owl-video-play-icon,
.body_subsite.depanne_leeft .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.body_subsite.depanne_leeft .owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.body_subsite.depanne_leeft .owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.body_subsite.depanne_leeft .owl-theme .owl-dots,
.body_subsite.depanne_leeft .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.body_subsite.depanne_leeft .owl-theme .owl-nav {
  margin-top: 10px;
}
.body_subsite.depanne_leeft .owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.body_subsite.depanne_leeft .owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}
.body_subsite.depanne_leeft .owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.body_subsite.depanne_leeft .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.body_subsite.depanne_leeft .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.body_subsite.depanne_leeft .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.body_subsite.depanne_leeft .owl-theme .owl-dots .owl-dot.active span,
.body_subsite.depanne_leeft .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/********  subsite depanne leeft ************/
.body_subsite.depanne_leeft .region-wrapper--content {
  padding-bottom: 3rem;
}
.body_subsite.depanne_leeft.theme--dew-blue.wave_loopduin .header::after,
.body_subsite.depanne_leeft #block-language-dropdown {
  display: none;
}
.body_subsite.depanne_leeft .breadcrumb-item a:focus,
.body_subsite.depanne_leeft .breadcrumb-item a:hover {
  border: 0;
}
.body_subsite.depanne_leeft .breadcrumb-item i {
  font-size: 18px;
  line-height: 30px;
  position: relative;
  top: -5px;
}
.body_subsite.depanne_leeft .header__top {
  position: absolute;
  right: 1rem;
  top: 5px;
}
.body_subsite.depanne_leeft .header__top #block-topnavigation a.depanneLeeft {
  border: 2px solid var(--clr-green);
  padding: 7px 16px;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 26px;
  transition: 0.35s;
  display: inline-block;
  font-family: var(--second-font-family);
}
.body_subsite.depanne_leeft header {
  background-color: #fff;
  height: auto;
}
.body_subsite.depanne_leeft header .header-content {
  margin-top: 14px;
}
.body_subsite.depanne_leeft header .header-content .logo {
  height: auto;
  text-decoration: none;
  display: flex;
  align-items: baseline;
}
.body_subsite.depanne_leeft header .header-content .logo svg {
  display: none;
}
.body_subsite.depanne_leeft header .header-content .logo img {
  display: block;
  margin-right: 15px;
}
.body_subsite.depanne_leeft header .header-content .logo::after {
  content: "De Panne leeft";
  color: var(--clr-green);
  font-size: 30px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none !important;
}
.body_subsite.depanne_leeft header .header-content::after, .body_subsite.depanne_leeft header .header-content::before {
  display: none;
}
@media (min-width: 992px) {
  .body_subsite.depanne_leeft header .header-content .logo {
    max-width: 270px;
    width: 270px;
  }
}
.body_subsite.depanne_leeft header .header__wrapper .navbar {
  margin-top: 0;
}
.body_subsite.depanne_leeft header .header__top .paddle-search-form {
  margin-right: 0;
}
.body_subsite.depanne_leeft header .region--header-top .paddle-search-form {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  z-index: 3333333;
}
.body_subsite.depanne_leeft header .region--header-top .paddle-search-form .search-toggle {
  margin-left: 15px;
  border: 0;
}
@media (min-width: 992px) {
  .body_subsite.depanne_leeft header .menu--main {
    margin-left: 15px;
  }
  .body_subsite.depanne_leeft header .region--header-top {
    display: flex;
  }
  .body_subsite.depanne_leeft header .paddle-search-form .search-toggle {
    display: block !important;
  }
}
.body_subsite.depanne_leeft header.show-subsite-search .header__top .paddle-search-form .search-wrapper {
  width: auto;
}
.body_subsite.depanne_leeft header::after {
  display: none;
}
.body_subsite.depanne_leeft footer {
  position: relative;
}
.body_subsite.depanne_leeft footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  top: -17px;
  background: transparent url(/sites/default/files/2022-02/duinvallei_wave_cookie-green.png) repeat-x right center;
  background-size: 35px auto !important;
}
.body_subsite.depanne_leeft .comp--slider-leeft {
  /*
  .owl-nav.disabled {
    display: block;   
  }*/
}
@media (min-width: 1025px) {
  .body_subsite.depanne_leeft .comp--slider-leeft {
    min-height: 560px;
  }
  .body_subsite.depanne_leeft .comp--slider-leeft .owl-stage-outer {
    position: absolute;
    overflow: hidden;
    left: 0;
  }
  .body_subsite.depanne_leeft .comp--slider-leeft::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #fff;
    left: 0;
    top: 0;
  }
}
@media (min-width: 1780px) {
  .body_subsite.depanne_leeft .comp--slider-leeft {
    min-height: 32vw;
  }
}
.body_subsite.depanne_leeft .comp--slider-leeft .paddle-component--top-section.text {
  color: #000;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2rem;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li {
  padding: 0;
  margin: 0;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li:before {
  display: none;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li .field--display-tags-frontend-node,
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li .field--copyright-text,
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li .field--body.field--type--text-with-summary {
  display: none;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li a {
  position: absolute;
  z-index: 2;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  font-family: var(--second-font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  padding: 2rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(22, 21, 44, 0.2);
  z-index: 1;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li a span {
  z-index: 2;
  position: relative;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li a span::after {
  content: "";
  background-image: url(/sites/default/files/2024-03/white_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 21px;
  display: inline-block;
  left: 5px;
  position: relative;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li:hover a {
  color: #ffffff;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li:hover a::before {
  /* background-color: rgba(22, 21, 44, 0.4);*/
  background-color: rgba(var(--clr-green-rgb), 0.7);
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-item li:hover span::after {
  /* background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  transition: all 0.35s ease-in-out;*/
  left: 15px;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav {
  position: absolute;
  top: 200px;
  padding: 0;
  margin: 0;
  line-height: 1;
  width: 100%;
  z-index: 0;
  height: 0;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-next,
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-prev {
  width: 36px;
  height: 36px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid var(--clr-primary-100);
  height: 74px;
  width: 74px;
  position: static;
  background-color: var(--clr-green);
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-next:hover,
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-prev:hover {
  background-color: rgba(var(--clr-green-rgb), 1);
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-next span,
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-prev span {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-next {
  background-image: url(/sites/default/files/2021-07/carousel_arrow_right_white.svg);
  right: -37px;
  position: absolute;
}
.body_subsite.depanne_leeft .comp--slider-leeft .owl-nav button.owl-prev {
  display: none;
  background-image: url(/sites/default/files/2021-07/carousel_arrow_left_white.svg);
  /* transform: scaleX(-1);*/
  left: -37px;
  position: relative;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities {
  position: relative;
  min-height: 620px;
  /*
  .owl-nav.disabled {
    display: block;   
  }*/
}
@media (min-width: 1025px) {
  .body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-stage-outer {
    position: absolute;
    overflow: hidden;
    left: 0;
  }
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--body-section {
  min-height: 340px;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--top-section.text {
  color: #000;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--top-section.text::before {
  width: 89px;
  height: 19px;
  bottom: -2rem;
  top: auto;
  left: 0;
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  border: none;
  background-color: transparent;
  transform: inherit;
  transform-origin: inherit;
  transition: 0.35s ease-in-out;
  background-position: left top;
  background-repeat: no-repeat;
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_green.svg);
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li {
  padding: 0;
  margin: 0;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li:before {
  display: none;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li .field--body.field--type--text-with-summary {
  display: none;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li a {
  position: absolute;
  z-index: 2;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  font-family: var(--second-font-family);
  font-weight: 700;
  font-size: 0;
  line-height: 1.1;
  padding: 2rem;
  color: transparent;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(22, 21, 44, 0.1);
  z-index: 1;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li a span {
  z-index: 2;
  position: relative;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li a span::after {
  content: "";
  background-image: url(/sites/default/files/2024-03/white_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 21px;
  display: inline-block;
  left: 5px;
  position: relative;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li:hover a::before {
  /* background-color: rgba(22, 21, 44, 0.4);*/
  background-color: rgba(var(--clr-green-rgb), 0.7);
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-item li:hover span::after {
  /* background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  transition: all 0.35s ease-in-out;*/
  left: 15px;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav {
  position: absolute;
  top: 150px;
  padding: 0;
  margin: 0;
  line-height: 1;
  width: 100%;
  z-index: 0;
  height: 0;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-next,
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-prev {
  width: 36px;
  height: 36px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid var(--clr-primary-100);
  height: 74px;
  width: 74px;
  position: static;
  background-color: var(--clr-green);
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-next:hover,
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-prev:hover {
  background-color: rgba(var(--clr-green-rgb), 1);
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-next span,
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-prev span {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-next {
  background-image: url(/sites/default/files/2021-07/carousel_arrow_right_white.svg);
  right: -37px;
  position: absolute;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .owl-nav button.owl-prev {
  display: none;
  background-image: url(/sites/default/files/2021-07/carousel_arrow_left_white.svg);
  /* transform: scaleX(-1);*/
  left: -37px;
  position: relative;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--bottom-section {
  text-align: left;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--bottom-section a {
  text-decoration: underline;
  text-transform: none;
  border: 0;
  padding: 0;
  font-size: var(--body-font-size);
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--bottom-section a::after {
  right: auto;
  left: 0;
  top: 25%;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--bottom-section a:hover {
  background-color: transparent !important;
  color: var(--clr-green) !important;
}
.body_subsite.depanne_leeft .comp--slider-leeft-edities .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2024-04/arrow_black.svg) !important;
}
.body_subsite.depanne_leeft.body_leeft_homepage .comp--slider-leeft-edities {
  padding-top: 1rem;
  margin-bottom: -50px;
}
@media (min-width: 1280px) {
  .body_subsite.depanne_leeft.body_leeft_homepage .comp--slider-leeft-edities {
    background-color: #eee;
  }
  .body_subsite.depanne_leeft.body_leeft_homepage .comp--slider-leeft-edities::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #eee;
    left: -25%;
    top: 0;
    position: absolute;
  }
  .body_subsite.depanne_leeft.body_leeft_homepage .comp--slider-leeft-edities::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #eee;
    right: -25%;
    top: 0;
    position: absolute;
  }
}
.body_subsite.depanne_leeft .comp--interessant .field--featured-image {
  margin-bottom: 0;
}
.body_subsite.depanne_leeft .comp--interessant .field--display-tags-frontend-node,
.body_subsite.depanne_leeft .comp--interessant .field--copyright-text {
  display: none;
}
.body_subsite.depanne_leeft .comp--interessant article {
  display: flex;
  flex-direction: column-reverse;
  transition: 0.35s;
}
.body_subsite.depanne_leeft .comp--interessant article h2 {
  line-height: 0.9;
}
.body_subsite.depanne_leeft .comp--interessant article h2 a {
  font-family: var(--second-font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 0.9;
  color: var(--clr-green);
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--interessant article h2 a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .comp--interessant article picture {
  display: block;
  overflow: hidden;
}
.body_subsite.depanne_leeft .comp--interessant article picture img {
  transition: 0.35s;
}
.body_subsite.depanne_leeft .comp--interessant article:hover {
  transition: 0.35s;
}
.body_subsite.depanne_leeft .comp--interessant article:hover picture img {
  transform: scale(1.05);
  transition: 0.35s;
}
.body_subsite.depanne_leeft .comp--interessant .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.body_subsite.depanne_leeft .comp--interessant .paddle-component--body-section ul li::before {
  display: none;
}
.body_subsite.depanne_leeft .comp--interessant .paddle-component--body-section > ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin: 0 -15px 0 -15px;
}
.body_subsite.depanne_leeft .comp--interessant .field--body {
  display: none;
}
.body_subsite.depanne_leeft .comp--interessant .paddle-component--body-section > ul > li {
  padding: 0 15px 0 15px;
}
@media (min-width: 600px) {
  .body_subsite.depanne_leeft .comp--interessant .paddle-component--body-section > ul > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .body_subsite.depanne_leeft .comp--interessant .paddle-component--body-section > ul > li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--top-section.text::before {
  width: 89px;
  height: 19px;
  bottom: -2rem;
  top: auto;
  left: 0;
  position: absolute;
  display: block;
  content: "";
  background-color: #fff;
  border: none;
  transform: inherit;
  transform-origin: inherit;
  transition: 0.35s ease-in-out;
  background-position: left top;
  background-repeat: no-repeat;
  /* background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);*/
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_green.svg);
}
@media (min-width: 600px) {
  .body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section ul {
    -moz-column-gap: 0.8vw;
         column-gap: 0.8vw;
  }
  .body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li {
    flex: 0 0 49%;
    max-width: 49%;
  }
}
@media (min-width: 992px) {
  .body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section ul li {
    flex: 0 0 32.49%;
    max-width: 32.49%;
  }
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper li {
  width: 100%;
  display: block;
  padding: 0;
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper li::before {
  display: none;
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  text-decoration: none;
  font-size: 20px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: bold;
  color: var(--main-text-color);
  display: block;
  border: 2px solid var(--clr-green);
  text-align: left;
  padding: 15px 45px 15px 20px;
  position: relative;
  transition: all 0.35s ease-in-out;
  width: 100%;
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color) !important;
}
.body_subsite.depanne_leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a:hover::after {
  right: 10px;
}
.body_subsite.depanne_leeft .comp--menu-leeft {
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
  margin-bottom: 60px;
}
.body_subsite.depanne_leeft .comp--menu-leeft::before {
  content: "";
  display: block;
  background-color: var(--clr-green);
  position: absolute;
  height: 100%;
  margin-left: -50%;
  margin-right: -50%;
  left: 0;
  right: 0;
  top: 0;
}
.body_subsite.depanne_leeft .comp--menu-leeft .paddle-component--top-section.text {
  color: #fff;
}
.body_subsite.depanne_leeft .comp--menu-leeft .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2022-05/paraboolduin--wave-white.svg) !important;
  z-index: 3;
  background-color: transparent;
  border-color: transparent !important;
}
.body_subsite.depanne_leeft .comp--menu-leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  color: var(--main-text-color);
  border: 2px solid var(--clr-green);
  background-color: var(--header-bg-color);
}
.body_subsite.depanne_leeft .comp--menu-leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a:hover {
  background-color: var(--main-text-color) !important;
  border-color: var(--main-text-color) !important;
  color: #fff;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight {
  margin-bottom: 4rem;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--featured-image {
  margin: 0;
  max-width: 45%;
  height: 100%;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--featured-image .items,
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--featured-image .item,
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--featured-image article {
  height: 100%;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .view-mode--spotlight {
  height: 100%;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--publication-date {
  padding: 15px;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--publication-date h2 a {
  color: var(--clr-green);
  text-decoration: none;
  font-size: var(--h4-size);
  line-height: 1.2;
  display: block;
  font-weight: normal;
  text-transform: none;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--publication-date .badge.badge-light {
  padding: 0;
  background-color: transparent;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--publication-date .badge.badge-light i {
  display: none;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field--publication-date .badge.badge-light time {
  color: var(--main-text-color);
  margin-top: 15px;
  font-family: stratos !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin-bottom: inherit !important;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .view-mode--spotlight > div {
  display: flex;
  background-color: var(--clr-green-10);
  height: 100%;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .paddle-component--top-section.text::before {
  width: 89px;
  height: 19px;
  bottom: -2rem;
  top: auto;
  left: 0;
  position: absolute;
  display: block;
  content: "";
  background-color: #fff;
  border: none;
  transform: inherit;
  transform-origin: inherit;
  transition: 0.35s ease-in-out;
  background-position: left top;
  background-repeat: no-repeat;
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_green.svg);
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .field.field--body.field--type--text-with-summary {
  display: none;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight picture {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight picture img {
  transition: 0.35s;
  height: auto;
  width: 350px;
  max-width: none;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight:hover {
  transition: 0.35s;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight:hover picture img {
  transform: scale(1.05);
  transition: 0.35s;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .paddle-component--bottom-section {
  text-align: left;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .paddle-component--bottom-section a {
  text-decoration: underline;
  text-transform: none;
  border: 0;
  padding: 0 0 0 30px;
  font-size: var(--body-font-size);
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .paddle-component--bottom-section a::after {
  right: auto;
  left: 0;
  top: 25%;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .paddle-component--bottom-section a:hover {
  background-color: transparent !important;
  color: var(--clr-green) !important;
}
.body_subsite.depanne_leeft .sec--news-depanne-leeft .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2024-04/arrow_black.svg) !important;
}
.body_subsite.depanne_leeft .section--newsletter-banner {
  background-color: var(--clr-green);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem !important;
}
@media (min-width: 991px) {
  .body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block {
    display: flex;
  }
  .body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--top-section.image {
    width: 10%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--body-section {
    width: 57%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--body-section p {
    margin: 0;
  }
  .body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--body-section .paddle-component--bottom-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 33%;
    padding-right: 1rem;
  }
}
.body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block {
  padding: 1rem;
  position: relative;
}
.body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--bottom-section a {
  text-decoration: none;
  font-size: 22px;
  line-height: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  border: 2px solid white;
  max-width: 280px;
  text-align: left;
  padding: 6px 40px 6px 10px;
  position: relative;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--bottom-section a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 22px;
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--bottom-section a:hover {
  background-color: #fff;
  transition: all 0.35s ease-in-out;
  color: #000 !important;
}
.body_subsite.depanne_leeft .section--newsletter-banner .paddle-component--text-block .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2024-04/arrow_black.svg) !important;
  transition: all 0.35s ease-in-out;
}
.body_subsite.depanne_leeft.artikel .header__wrapper .breadcrumb-item {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 30px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none !important;
  position: relative;
  list-style-type: none;
}
.body_subsite.depanne_leeft.artikel .header__wrapper .breadcrumb-item::before {
  content: "";
  background-image: url(/sites/default/files/2024-04/arrow_black.svg) !important;
  background-color: #fff;
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 30px;
  height: 25px;
}
.body_subsite.depanne_leeft.artikel #block-ocelot-paddle-page-title {
  display: block;
  margin: 0;
  padding: 0;
}
.body_subsite.depanne_leeft.artikel #block-ocelot-paddle-page-title h1 {
  color: #000;
  text-align: left;
  font-size: 40px;
  margin: 0;
}
.body_subsite.depanne_leeft.artikel #block-ocelot-paddle-breadcrumbs {
  display: none;
}
.body_subsite.depanne_leeft.artikel h3 {
  margin-top: 0;
}
.body_subsite.depanne_leeft.artikel .paddle-component.paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.3;
  font-size: var(--h3-size);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.body_subsite.depanne_leeft .comp--wistjedat {
  background-color: #16152a;
  padding: 30px 15px 15px 15px;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.body_subsite.depanne_leeft .comp--wistjedat img {
  width: 23px;
  top: -3px;
  position: relative;
  margin-right: 10px;
}
.body_subsite.depanne_leeft .comp--wistjedat .paddle-component--top-section.text {
  color: #fff !important;
  display: flex;
}
.body_subsite.depanne_leeft .comp--wistjedat a,
.body_subsite.depanne_leeft .comp--wistjedat p {
  color: #fff;
}
.body_subsite.depanne_leeft .comp--wistjedat::before {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  top: -15px;
  background: transparent url(/sites/default/files/2024-04/duinvallei_wave_cookie-darkpurple.png) repeat-x right center;
  background-size: 35px auto !important;
}
.body_subsite.depanne_leeft .comp--wistjedat::after {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -15px;
  background: transparent url(/sites/default/files/2024-04/duinvallei_wave_cookie-darkpurple.png) repeat-x right center;
  background-size: 35px auto !important;
  transform: rotate(180deg);
}
.body_subsite.depanne_leeft:not(.artikel) h1 {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 30px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none !important;
}
.body_subsite.depanne_leeft:not(.artikel) h1::before {
  content: "";
  background-image: url(/sites/default/files/2024-04/arrow_black.svg) !important;
  background-color: #fff;
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 30px;
  height: 25px;
}
.body_subsite.depanne_leeft:not(.body_leeft_homepage) .header {
  border-bottom-width: 2px;
  border-bottom-color: #eee;
  border-bottom-style: solid;
  padding-bottom: 14px;
}
.body_subsite.depanne_leeft.body_leeft_homepage #region-breadcrumb,
.body_subsite.depanne_leeft.body_leeft_homepage #block-ocelot-paddle-page-title {
  display: none;
}
.body_subsite.depanne_leeft.body_leeft_homepage.theme--calmeyn-green.wave_helmduin .header::after {
  display: none;
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent {
  min-height: 500px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .body_subsite.depanne_leeft.body_leeft_homepage .transparent .container-max-xxl {
    padding-left: 4.16667%;
    padding-right: 4.16667%;
  }
}
@media (min-width: 1440px) {
  .body_subsite.depanne_leeft.body_leeft_homepage .transparent .container-max-xxl {
    padding-left: 8.33334%;
    padding-right: 8.33334%;
  }
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--text-block {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (min-width: 1600px) {
  .body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--text-block {
    padding-left: 8.33334%;
    padding-right: 8.33334%;
  }
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--top-section.text {
  font-size: 60px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.85;
  color: white;
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a {
  text-align: left;
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  text-align: center;
  padding: 10px 2em 10px 2em;
  position: relative;
  transition: all 0.35s ease-in-out;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.17;
  background-color: #fff;
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a::after {
  display: inline-block;
  content: "";
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a:hover {
  background-color: var(--main-text-color);
  color: var(--clr-green);
  border-color: var(--main-text-color) !important;
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--body-section {
  position: absolute;
  right: -211px;
  max-width: 600px;
  bottom: -63px;
  transform: rotate(-45deg);
  background-repeat: repeat-x;
  background-position: left top;
  background-image: url(/sites/default/files/2024-03/duinvallei_wave_footer-green.png);
  padding-top: 19px;
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--body-section p {
  background-color: var(--clr-green);
  text-align: center;
  padding: 30px 60px 120px;
  color: #000;
  font-size: 40px;
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  line-height: 1.1;
}
.body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--body-section p strong {
  color: #fff;
}
.body_subsite.depanne_leeft blockquote {
  border-left-color: var(--clr-green);
  border-left-width: 5px;
  border-left-style: solid;
  margin: 3rem 0;
  padding: 0 2.5rem;
}
.body_subsite.depanne_leeft .comp--block-list-with-image-left-content-right .paddle-component--body-section li {
  margin-bottom: 2rem;
}
.body_subsite.depanne_leeft .comp--block-list-with-image-left-content-right .paddle-component--body-section li h2 {
  background-image: none !important;
  margin-bottom: 0;
}
.body_subsite.depanne_leeft .comp--block-list-with-image-left-content-right .paddle-component--body-section li h2 a {
  color: var(--clr-green);
}
.body_subsite.depanne_leeft .comp--block-list-with-image-left-content-right .paddle-component--body-section li article.view-mode--spotlight {
  background-color: var(--clr-green-10);
}
.body_subsite.depanne_leeft .comp--block-list-with-image-left-content-right .paddle-component--body-section li article.view-mode--spotlight .field--body {
  background-color: transparent;
}
@media (min-width: 768px) {
  .body_subsite.depanne_leeft .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body {
    transform: none;
  }
}
.body_subsite.depanne_leeft.overzichtspagina .header {
  margin-bottom: 0 !important;
}
.body_subsite.depanne_leeft.overzichtspagina .section--intro-colored-text {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 60px auto;
}
.body_subsite.depanne_leeft.overzichtspagina .section--intro-colored-text .paddle-component--text-block .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 50px;
}
.body_subsite.depanne_leeft.overzichtspagina .section--intro-colored-text .paddle-component--text-block .paddle-component--body-section {
  color: var(--clr-green);
  font-size: 25px;
}
.body_subsite.depanne_leeft.overzichtspagina .section--intro-colored-text .paddle-component--text-block .paddle-component--body-section h3:first-of-type {
  font-size: 1rem;
  font-family: var(--main-font-family);
  font-weight: normal;
  color: var(--ss-main-text-color);
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url(/sites/default/files/2021-07/small_calendar_green.svg);
  padding-left: 30px;
  margin-bottom: 35px;
}
.body_subsite.depanne_leeft .field-display_tags_frontend_node {
  display: none;
}
.body_subsite.depanne_leeft li.toegankelijkheid,
.body_subsite.depanne_leeft .breadcrumb {
  display: none;
}
.body_subsite.depanne_leeft .comp_footer_toerisme_row {
  display: none;
}
.body_subsite.depanne_leeft .comp_footer_depanneleeft_row {
  display: flex;
}
@media (max-width: 991px) {
  .body_subsite.depanne_leeft .navbar-toggler.hamburger {
    display: none;
  }
  .body_subsite.depanne_leeft .header {
    margin-bottom: 0;
  }
  .body_subsite.depanne_leeft .header .header__wrapper .logo {
    max-width: 300px !important;
    width: 270px !important;
  }
  .body_subsite.depanne_leeft .header__top .collapse.navbar-collapse {
    display: block !important;
  }
  .body_subsite.depanne_leeft .header__top .menu--main {
    position: relative;
    z-index: 333333;
    padding-top: 0;
  }
  .body_subsite.depanne_leeft.body_leeft_homepage .transparent .paddle-component--text-block {
    bottom: auto;
    top: 30px;
    left: 15px;
  }
  .body_subsite.depanne_leeft.body_leeft_homepage .comp--slider-leeft-edities {
    background-color: transparent;
  }
  .body_subsite.depanne_leeft.body_leeft_homepage .transparent {
    min-height: 600px;
  }
  .body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .view-mode--spotlight > div {
    flex-direction: column;
  }
  .body_subsite.depanne_leeft .sec--news-depanne-leeft .spotlight .view-mode--spotlight > div .field--featured-image {
    max-width: 100%;
  }
}

body:not(.depanne_leeft) .comp_footer_depanneleeft_row,
body:not(.depanne_leeft) #block-topnavigation a.depanneLeeft {
  display: none !important;
}

/*****  end subsite depanne leeft *******/
.body_subsite .ui-widget-overlay.ui-front,
.body_subsite .popup-modal {
  display: none !important;
}
.body_subsite:not(.depanne_leeft) .dropdown-language-item.dropbutton,
.body_subsite:not(.depanne_leeft) .subsite-header-search-btn,
.body_subsite:not(.depanne_leeft) .toegankelijkheid {
  border-radius: 10px;
}
.body_subsite:not(.depanne_leeft) .toegankelijkheid {
  height: 33px;
  width: 33px;
  background-size: 16px 16px;
}
.body_subsite:not(.depanne_leeft) .subsite-header-search-btn {
  background-color: var(--clr-green);
}
.body_subsite:not(.depanne_leeft) .dropdown-language-item.dropbutton {
  padding: 2px 30px 2px 12px !important;
  background-color: #fff !important;
  border-radius: 10px !important;
}
.body_subsite:not(.depanne_leeft) .dropdown-language-item.dropbutton li a,
.body_subsite:not(.depanne_leeft) .dropdown-language-item.dropbutton li span {
  font-size: 1.2rem !important;
}
.body_subsite:not(.depanne_leeft) .dropbutton-toggle {
  position: absolute;
  right: 4px;
}
.body_subsite:not(.depanne_leeft) .dropbutton-arrow {
  top: 12px !important;
}
.body_subsite:not(.depanne_leeft) .open .dropbutton-arrow {
  top: 15px !important;
}

/* ----------------------------------------------------
              Corporate identity
  -----------------------------------------------------*/
body.body--corporate-identity.body_main_site h2,
body.body--corporate-identity.body_main_site h3,
body.body--corporate-identity.body_main_site .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section,
body.body--corporate-identity.body_subsite h2,
body.body--corporate-identity.body_subsite h3,
body.body--corporate-identity.body_subsite .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section {
  color: var(--ss-main-text-color);
}

/* ----------------------------------------------------
              Spalsh page
  -----------------------------------------------------*/
.body--splash-page header.header,
.body--splash-page footer.sticky-footer,
.body--splash-page #region-breadcrumb {
  display: none;
}

.body--splash-page #block-ocelot-paddle-page-title {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.body--splash-page .region-wrapper--content {
  padding: 30px 15px;
}

.body--splash-page .paddle-components-text-block-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 12% auto 0 auto;
}

.body--splash-page .paddle-components-text-block-wrapper .paddle-component--text-block {
  margin: 0;
}

.body--splash-page .paddle-components-text-block-wrapper .paddle-component--text-block .paddle-component--top-section.text {
  margin-bottom: 1rem;
  font-size: var(--h1-size);
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: black;
  background: url(/sites/default/files/2021-07/wave_paraboolduin_green.svg) no-repeat left bottom;
  padding-bottom: 15px;
}

/*END Spalsh page -------------------------------------*/
/*END Read Speaker ----------------------*/
/* ----------------------------------------------------
              Subsite colour theme 
  -----------------------------------------------------*/
.body_subsite {
  /* -------------------- Colour + Wave type --------------------- */
}

.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a:hover::after,
.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a.is-active::after,
.body_subsite.theme--calmeyn-green.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after,
.body_subsite.theme--calmeyn-green.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-green.svg);
}

.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a:hover::after,
.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a.is-active::after,
.body_subsite.theme--calmeyn-green.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after,
.body_subsite.theme--calmeyn-green.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-zien-green.svg);
}

.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a:hover::after,
.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a.is-active::after,
.body_subsite.theme--calmeyn-green.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after,
.body_subsite.theme--calmeyn-green.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-green.svg);
}

.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a:hover::after,
.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a.is-active::after,
.body_subsite.theme--calmeyn-green.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after,
.body_subsite.theme--calmeyn-green.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-green.svg);
}

.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a:hover::after,
.body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a.is-active::after,
.body_subsite.theme--calmeyn-green.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after,
.body_subsite.theme--calmeyn-green.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-webshop-green.svg);
}

@media (max-width: 991px) {
  .body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-green.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-zien-green.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-green.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-green.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--calmeyn-green #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-webshop-green.svg);
  }
} /*
.body_subsite.theme--calmeyn-green .header #block-language-dropdown .dropbutton-arrow,
.body_subsite.theme--calmeyn-green .header #block-language-dropdown .open .dropbutton-arrow {
  border-left: 1px solid var(--clr-green);
  border-top: 1px solid var(--clr-green) !important;
}
*/ /*
.body_subsite.theme--calmeyn-green.page-node-type-activity .field-block.field-date_time .field-with-icon__icon {
  background-image: url(/sites/default/files/2021-07/calendar_green.svg);
}

.body_subsite.theme--calmeyn-green .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section h3:first-of-type {
  background-image: url(/sites/default/files/2021-07/small_calendar_green.svg);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(2) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/facebook_green.svg);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(3) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/twitter_green.svg);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(4) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/instagram_green.svg);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(5) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/share_green.svg);
}
*/
.body_subsite.theme--calmeyn-green .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section a:hover,
.body_subsite.theme--calmeyn-green.page-node-type-activity .event-info-wrapper .field-block a:hover {
  color: white;
}

.body_subsite.theme--calmeyn-green .region.region--content a:hover,
.body_subsite.theme--calmeyn-green .breadcrumb .breadcrumb-item:first-child a,
.body_subsite.theme--calmeyn-green h3,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--calmeyn-green .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.body_subsite.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.body_subsite.theme--calmeyn-green .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--calmeyn-green.page-node-type-activity .field-block.field-date_time,
.body_subsite.theme--calmeyn-green.page-node-type-activity .node--activity .field-block > h2,
.body_subsite.theme--calmeyn-green.page-node-type-activity .node--activity .field-block .item > h2,
.body_subsite.theme--calmeyn-green.page-node-type-activity .node--activity .field-chapter_title_h2,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--top-section.text,
.body_subsite.theme--calmeyn-green.page-node-type-company .field-with-icon__icon,
.body_subsite.theme--calmeyn-green.page-node-type-company .social-media-links--platforms.horizontal li a,
.body_subsite.theme--calmeyn-green .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_subsite.theme--calmeyn-green.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .field--body.field--type--text-with-summary p,
.body_subsite.theme--calmeyn-green .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover {
  color: var(--clr-green);
}

.body_subsite.theme--calmeyn-green .region--content ul li::before,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--bottom-section a::after,
.body_subsite.theme--calmeyn-green.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn:hover::after,
.body_subsite.theme--calmeyn-green.page-node-type-activity .field-block.field-link .item a.btn::after,
.body_subsite.theme--calmeyn-green .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper::after,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a::after,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input:hover,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .view-search .card .card-body p.read-more,
.body_subsite.theme--calmeyn-green .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body::after,
.body_subsite.theme--calmeyn-green .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
}

.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--bottom-section a,
.body_subsite.theme--calmeyn-green.page-node-type-news-item .badge.badge-light,
.body_subsite.theme--calmeyn-green.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--calmeyn-green.page-node-type-activity .field-block.field-link .item,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .view-search .card,
.body_subsite.theme--calmeyn-green .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a:hover {
  border-color: var(--clr-green);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .region-wrapper--footer,
.body_subsite.theme--calmeyn-green .comp_tourism_header_search,
.body_subsite.theme--calmeyn-green .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--calmeyn-green.page-node-type-activity .event-info-wrapper,
.body_subsite.theme--calmeyn-green.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--calmeyn-green.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a,
.body_subsite.theme--calmeyn-green .comp_btn_with_icon_and_title .paddle-component--top-section.text,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a:hover,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn:hover,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .block-facet ul li.facet-item a::after,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .block-facet ul li.facet-item label::after,
.body_subsite.theme--calmeyn-green .comp_block_stories .paddle-component--image-block .paddle-component--top-section.text,
.body_subsite.theme--calmeyn-green .paddle-components-instagram-feed-block-wrapper .instagram_feed .insta-link,
.body_subsite.theme--calmeyn-green .carousel-navigation a,
.body_subsite.theme--calmeyn-green .flex-pauseplay a,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--calmeyn-green .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover {
  background-color: var(--clr-green);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover,
.body_subsite.theme--calmeyn-green.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a:hover,
.body_subsite.theme--calmeyn-green .comp_btn_with_icon_and_title .paddle-component--top-section.text:hover,
.body_subsite.theme--calmeyn-green .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text {
  background-color: var(--clr-green-700);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover {
  border-color: var(--clr-green-700);
}

.body_subsite.theme--calmeyn-green footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
}

.body_subsite.theme--calmeyn-green.page-node-type-activity .field-activity_type .item,
.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul li a,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li a {
  background-color: rgba(var(--clr-green-rgb), 0.2);
}

.body_subsite.theme--calmeyn-green.page-node-type-activity .paragraph--type--list-of-interesting-activities .flex-viewport ul li > article:hover::before,
.body_subsite.theme--calmeyn-green .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--body-section a::before,
.body_subsite.theme--calmeyn-green .tourism_news .paddle-component--list-block article.node:hover .field--featured-image a::before,
.body_subsite.theme--calmeyn-green .paddle-component--carousel-block .figcaption,
.body_subsite.theme--calmeyn-green .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--featured-image a::before {
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}

.body_subsite.theme--calmeyn-green .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity:hover .field--display-tags-frontend-node ul li a,
.body_subsite.theme--calmeyn-green.page-node-type-search-page .view-search .card:hover .card-body .field--display-tags-frontend-node ul li a {
  background-image: url(/sites/default/files/2021-07/tags_green.svg);
}

.body_subsite.theme--calmeyn-green .comp_block_stories .paddle-component--image-block .paddle-component--body-section::before {
  background-color: rgba(var(--clr-green-700-rgb), 0.37);
}

.body_subsite.theme--calmeyn-green .breadcrumb .breadcrumb-item a {
  color: var(--clr-green);
}

.body_subsite.theme--calmeyn-green .header #block-language-dropdown .dropdown-language-item,
.body_subsite.theme--calmeyn-green .header #block-language-dropdown .dropdown-language-item li a,
.body_subsite.theme--calmeyn-green .header #block-language-dropdown .dropdown-language-item li span {
  background-color: var(--clr-green) !important;
}

.body_subsite.theme--calmeyn-green .subsite-header-search-btn {
  /*
  background-image: url(/sites/default/files/2024-05/tour_search_icon--green.svg);*/
  background-color: var(--clr-green);
}

.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a:hover::after,
.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a.is-active::after,
.body_subsite.theme--dew-blue.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after,
.body_subsite.theme--dew-blue.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-blue.svg);
}

.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a:hover::after,
.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a.is-active::after,
.body_subsite.theme--dew-blue.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after,
.body_subsite.theme--dew-blue.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-zien-blue.svg);
}

.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a:hover::after,
.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a.is-active::after,
.body_subsite.theme--dew-blue.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after,
.body_subsite.theme--dew-blue.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-blue.svg);
}

.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a:hover::after,
.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a.is-active::after,
.body_subsite.theme--dew-blue.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after,
.body_subsite.theme--dew-blue.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-blue.svg);
}

.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a:hover::after,
.body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a.is-active::after,
.body_subsite.theme--dew-blue.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after,
.body_subsite.theme--dew-blue.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-webshop-blue.svg);
}

@media (max-width: 991px) {
  .body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-blue.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-zien-blue.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-blue.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-blue.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dew-blue #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-webshop-blue.svg);
  }
} /*
.body_subsite.theme--dew-blue .header #block-language-dropdown .dropbutton-arrow,
.body_subsite.theme--dew-blue .header #block-language-dropdown .open .dropbutton-arrow {
  border-left: 1px solid var(--clr-blue);
  border-top: 1px solid var(--clr-blue) !important;
}
*/ /*
.body_subsite.theme--dew-blue.page-node-type-activity .field-block.field-date_time .field-with-icon__icon {
  background-image: url(/sites/default/files/2021-07/calendar_blue.svg);
}

.body_subsite.theme--dew-blue .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section h3:first-of-type {
  background-image: url(/sites/default/files/2021-07/small_calendar_blue.svg);
}

.body_subsite.theme--dew-blue footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(2) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/facebook_blue.svg);
}

.body_subsite.theme--dew-blue footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(3) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/twitter_blue.svg);
}

.body_subsite.theme--dew-blue footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(4) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/instagram_blue.svg);
}

.body_subsite.theme--dew-blue footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(5) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/share_blue.svg);
}
*/
.body_subsite.theme--dew-blue .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section a:hover,
.body_subsite.theme--dew-blue.page-node-type-activity .event-info-wrapper .field-block a:hover {
  color: white;
}

.body_subsite.theme--dew-blue .region.region--content a:hover,
.body_subsite.theme--dew-blue .breadcrumb .breadcrumb-item:first-child a,
.body_subsite.theme--dew-blue h3,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--dew-blue .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--dew-blue .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.body_subsite.theme--dew-blue .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.body_subsite.theme--dew-blue .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dew-blue.page-node-type-activity .field-block.field-date_time,
.body_subsite.theme--dew-blue.page-node-type-activity .node--activity .field-block > h2,
.body_subsite.theme--dew-blue.page-node-type-activity .node--activity .field-block .item > h2,
.body_subsite.theme--dew-blue.page-node-type-activity .node--activity .field-chapter_title_h2,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--top-section.text,
.body_subsite.theme--dew-blue.page-node-type-company .field-with-icon__icon,
.body_subsite.theme--dew-blue.page-node-type-company .social-media-links--platforms.horizontal li a,
.body_subsite.theme--dew-blue .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_subsite.theme--dew-blue .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover,
.body_subsite.theme--dew-blue.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .field--body.field--type--text-with-summary p,
.body_subsite.theme--dew-blue .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover {
  color: var(--clr-blue);
}

.body_subsite.theme--dew-blue .region--content ul li::before,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--bottom-section a::after,
.body_subsite.theme--dew-blue.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn:hover::after,
.body_subsite.theme--dew-blue.page-node-type-activity .field-block.field-link .item a.btn::after,
.body_subsite.theme--dew-blue .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper::after,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a::after,
.body_subsite.theme--dew-blue.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--dew-blue.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input:hover,
.body_subsite.theme--dew-blue.page-node-type-search-page .view-search .card .card-body p.read-more,
.body_subsite.theme--dew-blue .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body::after,
.body_subsite.theme--dew-blue .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg);
}

.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--bottom-section a,
.body_subsite.theme--dew-blue.page-node-type-news-item .badge.badge-light,
.body_subsite.theme--dew-blue.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--dew-blue.page-node-type-activity .field-block.field-link .item,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a,
.body_subsite.theme--dew-blue.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--dew-blue.page-node-type-search-page .view-search .card,
.body_subsite.theme--dew-blue .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a:hover {
  border-color: var(--clr-blue);
}

.body_subsite.theme--dew-blue footer.sticky-footer .region-wrapper--footer,
.body_subsite.theme--dew-blue .comp_tourism_header_search,
.body_subsite.theme--dew-blue .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--dew-blue.page-node-type-activity .event-info-wrapper,
.body_subsite.theme--dew-blue.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--dew-blue.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a,
.body_subsite.theme--dew-blue .comp_btn_with_icon_and_title .paddle-component--top-section.text,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a:hover,
.body_subsite.theme--dew-blue.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn:hover,
.body_subsite.theme--dew-blue.page-node-type-search-page .block-facet--general-tags ul li.facet-item a::after,
.body_subsite.theme--dew-blue .comp_block_stories .paddle-component--image-block .paddle-component--top-section.text,
.body_subsite.theme--dew-blue .paddle-components-instagram-feed-block-wrapper .instagram_feed .insta-link,
.body_subsite.theme--dew-blue .carousel-navigation a,
.body_subsite.theme--dew-blue .flex-pauseplay a,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--dew-blue .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover,
.body_subsite.theme--dew-blue .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover {
  background-color: var(--clr-blue);
}

.body_subsite.theme--dew-blue footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover,
.body_subsite.theme--dew-blue.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a:hover,
.body_subsite.theme--dew-blue .comp_btn_with_icon_and_title .paddle-component--top-section.text:hover,
.body_subsite.theme--dew-blue .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text {
  background-color: var(--clr-blue-700);
}

.body_subsite.theme--dew-blue footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover {
  border-color: var(--clr-blue-700);
}

.body_subsite.theme--dew-blue footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
}

.body_subsite.theme--dew-blue.page-node-type-activity .field-activity_type .item,
.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul li a,
.body_subsite.theme--dew-blue.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li a {
  background-color: rgba(var(--clr-blue-rgb), 0.2);
}

.body_subsite.theme--dew-blue.page-node-type-activity .paragraph--type--list-of-interesting-activities .flex-viewport ul li > article:hover::before,
.body_subsite.theme--dew-blue .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--body-section a::before,
.body_subsite.theme--dew-blue .tourism_news .paddle-component--list-block article.node:hover .field--featured-image a::before,
.body_subsite.theme--dew-blue .paddle-component--carousel-block .figcaption,
.body_subsite.theme--dew-blue .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--featured-image a::before {
  background-color: rgba(var(--clr-blue-700-rgb), 0.8);
}

.body_subsite.theme--dew-blue .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity:hover .field--display-tags-frontend-node ul li a,
.body_subsite.theme--dew-blue.page-node-type-search-page .view-search .card:hover .card-body .field--display-tags-frontend-node ul li a {
  background-image: url(/sites/default/files/2021-07/tags_blue.svg);
}

.body_subsite.theme--dew-blue .comp_block_stories .paddle-component--image-block .paddle-component--body-section::before {
  background-color: rgba(var(--clr-blue-700-rgb), 0.37);
}

.body_subsite.theme--dew-blue .breadcrumb .breadcrumb-item a {
  color: var(--clr-blue);
}

.body_subsite.theme--dew-blue .header #block-language-dropdown .dropdown-language-item,
.body_subsite.theme--dew-blue .header #block-language-dropdown .dropdown-language-item li a,
.body_subsite.theme--dew-blue .header #block-language-dropdown .dropdown-language-item li span {
  background-color: var(--clr-blue) !important;
  color: #fff !important;
}

.body_subsite.theme--dew-blue .subsite-header-search-btn {
  /* background-image: url(/sites/default/files/2024-05/tour_search_icon--blue.svg);*/
  background-color: var(--clr-blue);
}

.body_subsite.depanne_leeft.theme--dew-blue .section--newsletter-banner,
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft-edities .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft-edities .owl-nav button.owl-prev,
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft .owl-nav button.owl-prev {
  background-color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue .breadcrumb-item a,
.body_subsite.depanne_leeft.theme--dew-blue .section--intro-colored-text .paddle-component--text-block .paddle-component--body-section,
.body_subsite.depanne_leeft.theme--dew-blue a.logo::after,
.body_subsite.depanne_leeft.theme--dew-blue .comp--interessant article h2 a {
  color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue.body_leeft_homepage .transparent .paddle-component--body-section {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-blue.png);
}
.body_subsite.depanne_leeft.theme--dew-blue.body_leeft_homepage .transparent .paddle-component--body-section p {
  background-color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg);
}
.body_subsite.depanne_leeft.theme--dew-blue.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft-edities .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_blue.svg);
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft-edities .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/blue_arrow.svg) !important;
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft-edities .paddle-component--bottom-section a:hover {
  color: var(--clr-blue) !important;
}
.body_subsite.depanne_leeft.theme--dew-blue .sec--news-depanne-leeft .spotlight .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_blue.svg);
}
.body_subsite.depanne_leeft.theme--dew-blue .sec--news-depanne-leeft .spotlight .view-mode--spotlight > div {
  background-color: var(--clr-blue-10);
}
.body_subsite.depanne_leeft.theme--dew-blue .sec--news-depanne-leeft .spotlight .field--publication-date h2 a {
  color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue .sec--news-depanne-leeft .paddle-component--bottom-section a:hover {
  color: var(--clr-blue) !important;
}
.body_subsite.depanne_leeft.theme--dew-blue blockquote,
.body_subsite.depanne_leeft.theme--dew-blue .paddle-component--body-section p a.btn-primary,
.body_subsite.depanne_leeft.theme--dew-blue .header__top #block-topnavigation a.depanneLeeft,
.body_subsite.depanne_leeft.theme--dew-blue .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border-color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft-edities .owl-item li:hover a::before,
.body_subsite.depanne_leeft.theme--dew-blue .comp--slider-leeft .owl-item li:hover a::before {
  background-color: rgba(var(--clr-blue-700-rgb), 0.37);
}
.body_subsite.depanne_leeft.theme--dew-blue .paddle-components-navigation-block-wrapper .paddle-component--body-section a::after {
  background-image: url("/sites/default/files/2021-06/blue_arrow.svg");
}
.body_subsite.depanne_leeft.theme--dew-blue .paddle-components-navigation-block-wrapper .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_blue.svg);
}
.body_subsite.depanne_leeft.theme--dew-blue .header .header__top .paddle-search-form form input.form-text {
  background-color: rgba(var(--clr-blue-rgb), 0.1);
}
.body_subsite.depanne_leeft.theme--dew-blue footer::before {
  background: transparent url(/sites/default/files/2022-02/duinvallei_wave_cookie-blue.png) repeat-x right center;
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--block-list-with-image-left-content-right .paddle-component--body-section li h2 a {
  color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--block-list-with-image-left-content-right .paddle-component--body-section li article.view-mode--spotlight {
  background-color: var(--clr-blue-10);
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--menu-leeft::before {
  background-color: var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--dew-blue .comp--menu-leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border: 2px solid var(--clr-blue);
}
.body_subsite.depanne_leeft.theme--factor-50-red .section--newsletter-banner,
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft-edities .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft-edities .owl-nav button.owl-prev,
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft .owl-nav button.owl-prev {
  background-color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red .section--intro-colored-text .paddle-component--text-block .paddle-component--body-section,
.body_subsite.depanne_leeft.theme--factor-50-red a.logo::after,
.body_subsite.depanne_leeft.theme--factor-50-red .breadcrumb-item a,
.body_subsite.depanne_leeft.theme--factor-50-red .comp--interessant article h2 a {
  color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red.body_leeft_homepage .transparent .paddle-component--body-section {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-red.png);
}
.body_subsite.depanne_leeft.theme--factor-50-red.body_leeft_homepage .transparent .paddle-component--body-section p {
  background-color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/red_arrow.svg);
}
.body_subsite.depanne_leeft.theme--factor-50-red.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft-edities .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_red.svg);
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft-edities .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/red_arrow.svg) !important;
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft-edities .paddle-component--bottom-section a:hover {
  color: var(--clr-red) !important;
}
.body_subsite.depanne_leeft.theme--factor-50-red .sec--news-depanne-leeft .spotlight .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_red.svg);
}
.body_subsite.depanne_leeft.theme--factor-50-red .sec--news-depanne-leeft .spotlight .view-mode--spotlight > div {
  background-color: var(--clr-red-10);
}
.body_subsite.depanne_leeft.theme--factor-50-red .sec--news-depanne-leeft .spotlight .field--publication-date h2 a {
  color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red .sec--news-depanne-leeft .paddle-component--bottom-section a:hover {
  color: var(--clr-red) !important;
}
.body_subsite.depanne_leeft.theme--factor-50-red blockquote,
.body_subsite.depanne_leeft.theme--factor-50-red .paddle-component--body-section p a.btn-primary,
.body_subsite.depanne_leeft.theme--factor-50-red .header__top #block-topnavigation a.depanneLeeft,
.body_subsite.depanne_leeft.theme--factor-50-red .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border-color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft-edities .owl-item li:hover a::before,
.body_subsite.depanne_leeft.theme--factor-50-red .comp--slider-leeft .owl-item li:hover a::before {
  background-color: rgba(var(--clr-red-700-rgb), 0.37);
}
.body_subsite.depanne_leeft.theme--factor-50-red .paddle-components-navigation-block-wrapper .paddle-component--body-section a::after {
  background-image: url("/sites/default/files/2021-06/red_arrow.svg");
}
.body_subsite.depanne_leeft.theme--factor-50-red .paddle-components-navigation-block-wrapper .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_red.svg);
}
.body_subsite.depanne_leeft.theme--factor-50-red .header .header__top .paddle-search-form form input.form-text {
  background-color: rgba(var(--clr-red-rgb), 0.1);
}
.body_subsite.depanne_leeft.theme--factor-50-red footer::before {
  background: transparent url(/sites/default/files/2022-02/duinvallei_wave_cookie-red.png) repeat-x right center;
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--block-list-with-image-left-content-right .paddle-component--body-section li h2 a {
  color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--block-list-with-image-left-content-right .paddle-component--body-section li article.view-mode--spotlight {
  background-color: var(--clr-red-10);
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--menu-leeft::before {
  background-color: var(--clr-red);
}
.body_subsite.depanne_leeft.theme--factor-50-red .comp--menu-leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border: 2px solid var(--clr-red);
}
.body_subsite.depanne_leeft.theme--purple .section--newsletter-banner,
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft-edities .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft-edities .owl-nav button.owl-prev,
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft .owl-nav button.owl-prev {
  background-color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple .section--intro-colored-text .paddle-component--text-block .paddle-component--body-section,
.body_subsite.depanne_leeft.theme--purple a.logo::after,
.body_subsite.depanne_leeft.theme--purple .breadcrumb-item a,
.body_subsite.depanne_leeft.theme--purple .comp--interessant article h2 a {
  color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple.body_leeft_homepage .transparent .paddle-component--body-section {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-purple.png);
}
.body_subsite.depanne_leeft.theme--purple.body_leeft_homepage .transparent .paddle-component--body-section p {
  background-color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/purple_arrow.svg);
}
.body_subsite.depanne_leeft.theme--purple.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft-edities .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_purple.svg);
}
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft-edities .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/red_arrow.svg) !important;
}
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft-edities .paddle-component--bottom-section a:hover {
  color: var(--clr-red) !important;
}
.body_subsite.depanne_leeft.theme--purple .sec--news-depanne-leeft .spotlight .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_purple.svg);
}
.body_subsite.depanne_leeft.theme--purple .sec--news-depanne-leeft .spotlight .view-mode--spotlight > div {
  background-color: var(--clr-purple-10);
}
.body_subsite.depanne_leeft.theme--purple .sec--news-depanne-leeft .spotlight .field--publication-date h2 a {
  color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple .sec--news-depanne-leeft .paddle-component--bottom-section a:hover {
  color: var(--clr-purple) !important;
}
.body_subsite.depanne_leeft.theme--purple blockquote,
.body_subsite.depanne_leeft.theme--purple .paddle-component--body-section p a.btn-primary,
.body_subsite.depanne_leeft.theme--purple .header__top #block-topnavigation a.depanneLeeft,
.body_subsite.depanne_leeft.theme--purple .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border-color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft-edities .owl-item li:hover a::before,
.body_subsite.depanne_leeft.theme--purple .comp--slider-leeft .owl-item li:hover a::before {
  background-color: rgba(var(--clr-purple-700-rgb), 0.37);
}
.body_subsite.depanne_leeft.theme--purple .paddle-components-navigation-block-wrapper .paddle-component--body-section a::after {
  background-image: url("/sites/default/files/2021-06/purple_arrow.svg");
}
.body_subsite.depanne_leeft.theme--purple .paddle-components-navigation-block-wrapper .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_purple.svg);
}
.body_subsite.depanne_leeft.theme--purple .header .header__top .paddle-search-form form input.form-text {
  background-color: rgba(var(--clr-purple-rgb), 0.1);
}
.body_subsite.depanne_leeft.theme--purple footer::before {
  background: transparent url(/sites/default/files/2022-02/duinvallei_wave_cookie-purple.png) repeat-x right center;
}
.body_subsite.depanne_leeft.theme--purple .comp--block-list-with-image-left-content-right .paddle-component--body-section li h2 a {
  color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple .comp--block-list-with-image-left-content-right .paddle-component--body-section li article.view-mode--spotlight {
  background-color: var(--clr-purple-10);
}
.body_subsite.depanne_leeft.theme--purple .comp--menu-leeft::before {
  background-color: var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--purple .comp--menu-leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border: 2px solid var(--clr-purple);
}
.body_subsite.depanne_leeft.theme--dune-yellow .section--newsletter-banner,
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft-edities .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft-edities .owl-nav button.owl-prev,
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft .owl-nav button.owl-next,
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft .owl-nav button.owl-prev {
  background-color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow .section--intro-colored-text .paddle-component--text-block .paddle-component--body-section,
.body_subsite.depanne_leeft.theme--dune-yellow a.logo::after,
.body_subsite.depanne_leeft.theme--dune-yellow .breadcrumb-item a,
.body_subsite.depanne_leeft.theme--dune-yellow .comp--interessant article h2 a {
  color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow .sec--news-depanne-leeft .spotlight .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_yellow.svg);
}
.body_subsite.depanne_leeft.theme--dune-yellow .sec--news-depanne-leeft .spotlight .view-mode--spotlight > div {
  background-color: var(--clr-yellow-10);
}
.body_subsite.depanne_leeft.theme--dune-yellow .sec--news-depanne-leeft .spotlight .field--publication-date h2 a {
  color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow .sec--news-depanne-leeft .paddle-component--bottom-section a:hover {
  color: var(--clr-yellow) !important;
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft-edities .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_yellow.svg);
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft-edities .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/yellow_arrow.svg) !important;
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft-edities .paddle-component--bottom-section a:hover {
  color: var(--clr-yellow) !important;
}
.body_subsite.depanne_leeft.theme--dune-yellow.body_leeft_homepage .transparent .paddle-component--body-section {
  background-image: url(/sites/default/files/2022-02/duinvallei_wave_cookie-yellow.png);
}
.body_subsite.depanne_leeft.theme--dune-yellow.body_leeft_homepage .transparent .paddle-component--body-section p {
  background-color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/yellow_arrow.svg);
}
.body_subsite.depanne_leeft.theme--dune-yellow.body_leeft_homepage .transparent .paddle-component--text-block .paddle-component--bottom-section a:hover {
  color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow blockquote,
.body_subsite.depanne_leeft.theme--dune-yellow .paddle-component--body-section p a.btn-primary,
.body_subsite.depanne_leeft.theme--dune-yellow .header__top #block-topnavigation a.depanneLeeft,
.body_subsite.depanne_leeft.theme--dune-yellow .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border-color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft-edities .owl-item li:hover a::before,
.body_subsite.depanne_leeft.theme--dune-yellow .comp--slider-leeft .owl-item li:hover a::before {
  background-color: rgba(var(--clr-yellow-700-rgb), 0.37);
}
.body_subsite.depanne_leeft.theme--dune-yellow .paddle-components-navigation-block-wrapper .paddle-component--body-section a::after {
  background-image: url("/sites/default/files/2021-06/yellow_arrow.svg");
}
.body_subsite.depanne_leeft.theme--dune-yellow .paddle-components-navigation-block-wrapper .paddle-component--top-section.text::before {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_yellow.svg);
}
.body_subsite.depanne_leeft.theme--dune-yellow .header .header__top .paddle-search-form form input.form-text {
  background-color: rgba(var(--clr-yellow-rgb), 0.1);
}
.body_subsite.depanne_leeft.theme--dune-yellow footer::before {
  background: transparent url(/sites/default/files/2022-02/duinvallei_wave_cookie-yellow.png) repeat-x right center;
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--block-list-with-image-left-content-right .paddle-component--body-section li h2 a {
  color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--block-list-with-image-left-content-right .paddle-component--body-section li article.view-mode--spotlight {
  background-color: var(--clr-yellow-10);
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--menu-leeft::before {
  background-color: var(--clr-yellow);
}
.body_subsite.depanne_leeft.theme--dune-yellow .comp--menu-leeft .paddle-components-navigation-block-wrapper .paddle-component--body-section a {
  border: 2px solid var(--clr-yellow);
}

.theme--factor-50-red .comp--leeft-coloured-bg {
  background-color: var(--clr-red-10);
}
.theme--factor-50-red .comp--leeft-coloured-bg::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_red.jpg) repeat-x right center;
}
.theme--factor-50-red .comp--leeft-coloured-bg::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_red.jpg) repeat-x right center;
}

.theme--purple .comp--leeft-coloured-bg {
  background-color: var(--clr-purple-10);
}
.theme--purple .comp--leeft-coloured-bg::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_purple.jpg) repeat-x right center;
}
.theme--purple .comp--leeft-coloured-bg::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_purple.jpg) repeat-x right center;
}

.theme--dew-blue .comp--leeft-coloured-bg {
  background-color: var(--clr-blue-10);
}
.theme--dew-blue .comp--leeft-coloured-bg::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_blue.jpg) repeat-x right center;
}
.theme--dew-blue .comp--leeft-coloured-bg::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_blue.jpg) repeat-x right center;
}

.theme--dune-yellow .comp--leeft-coloured-bg {
  background-color: var(--clr-yellow-10);
}
.theme--dune-yellow .comp--leeft-coloured-bg::before {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_yellow.jpg) repeat-x right center;
}
.theme--dune-yellow .comp--leeft-coloured-bg::after {
  background: transparent url(/sites/default/files/2021-07/duinvallei_wave_border_bottom_10_yellow.jpg) repeat-x right center;
}

.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a:hover::after,
.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a.is-active::after,
.body_subsite.theme--dune-yellow.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after,
.body_subsite.theme--dune-yellow.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-yellow.svg);
}

.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a:hover::after,
.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a.is-active::after,
.body_subsite.theme--dune-yellow.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after,
.body_subsite.theme--dune-yellow.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-zien-yellow.svg);
}

.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a:hover::after,
.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a.is-active::after,
.body_subsite.theme--dune-yellow.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after,
.body_subsite.theme--dune-yellow.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-yellow.svg);
}

.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a:hover::after,
.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a.is-active::after,
.body_subsite.theme--dune-yellow.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after,
.body_subsite.theme--dune-yellow.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-yellow.svg);
}

.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a:hover::after,
.body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a.is-active::after,
.body_subsite.theme--dune-yellow.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after,
.body_subsite.theme--dune-yellow.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-webshop-yellow.svg);
}

@media (max-width: 991px) {
  .body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-yellow.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-zien-yellow.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-yellow.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-yellow.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--dune-yellow #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-webshop-yellow.svg);
  }
} /*
.body_subsite.theme--dune-yellow .header #block-language-dropdown .dropbutton-arrow,
.body_subsite.theme--dune-yellow .header #block-language-dropdown .open .dropbutton-arrow {
  border-left: 1px solid var(--clr-yellow);
  border-top: 1px solid var(--clr-yellow) !important;
}
*/ /*
.body_subsite.theme--dune-yellow.page-node-type-activity .field-block.field-date_time .field-with-icon__icon {
  background-image: url(/sites/default/files/2021-07/calendar_yellow.svg);
}

.body_subsite.theme--dune-yellow .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section h3:first-of-type {
  background-image: url(/sites/default/files/2021-07/small_calendar_yellow.svg);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(2) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/facebook_yellow.svg);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(3) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/twitter_yellow.svg);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(4) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/instagram_yellow.svg);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(5) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/share_yellow.svg);
}
*/
.body_subsite.theme--dune-yellow .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section a:hover,
.body_subsite.theme--dune-yellow.page-node-type-activity .event-info-wrapper .field-block a:hover {
  color: white;
}

.body_subsite.theme--dune-yellow .region.region--content a:hover,
.body_subsite.theme--dune-yellow .breadcrumb .breadcrumb-item:first-child a,
.body_subsite.theme--dune-yellow h3,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--dune-yellow .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--dune-yellow .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.body_subsite.theme--dune-yellow .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.body_subsite.theme--dune-yellow .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dune-yellow.page-node-type-activity .field-block.field-date_time,
.body_subsite.theme--dune-yellow.page-node-type-activity .node--activity .field-block > h2,
.body_subsite.theme--dune-yellow.page-node-type-activity .node--activity .field-block .item > h2,
.body_subsite.theme--dune-yellow.page-node-type-activity .node--activity .field-chapter_title_h2,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--top-section.text,
.body_subsite.theme--dune-yellow.page-node-type-company .field-with-icon__icon,
.body_subsite.theme--dune-yellow.page-node-type-company .social-media-links--platforms.horizontal li a,
.body_subsite.theme--dune-yellow .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_subsite.theme--dune-yellow.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .field--body.field--type--text-with-summary p,
.body_subsite.theme--dune-yellow .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover {
  color: var(--clr-yellow);
}

.body_subsite.theme--dune-yellow .region--content ul li::before,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--bottom-section a::after,
.body_subsite.theme--dune-yellow.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn:hover::after,
.body_subsite.theme--dune-yellow.page-node-type-activity .field-block.field-link .item a.btn::after,
.body_subsite.theme--dune-yellow .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper::after,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a::after,
.body_subsite.theme--dune-yellow.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--dune-yellow.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input:hover,
.body_subsite.theme--dune-yellow.page-node-type-search-page .view-search .card .card-body p.read-more,
.body_subsite.theme--dune-yellow .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body::after,
.body_subsite.theme--dune-yellow .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/yellow_arrow.svg);
}

.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--bottom-section a,
.body_subsite.theme--dune-yellow.page-node-type-news-item .badge.badge-light,
.body_subsite.theme--dune-yellow.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--dune-yellow.page-node-type-activity .field-block.field-link .item,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a,
.body_subsite.theme--dune-yellow.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--dune-yellow.page-node-type-search-page .view-search .card,
.body_subsite.theme--dune-yellow .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a:hover {
  border-color: var(--clr-yellow);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .region-wrapper--footer,
.body_subsite.theme--dune-yellow .comp_tourism_header_search,
.body_subsite.theme--dune-yellow .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--dune-yellow.page-node-type-activity .event-info-wrapper,
.body_subsite.theme--dune-yellow.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--dune-yellow.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a,
.body_subsite.theme--dune-yellow .comp_btn_with_icon_and_title .paddle-component--top-section.text,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a:hover,
.body_subsite.theme--dune-yellow.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn:hover,
.body_subsite.theme--dune-yellow.page-node-type-search-page .block-facet--general-tags ul li.facet-item a::after,
.body_subsite.theme--dune-yellow .comp_block_stories .paddle-component--image-block .paddle-component--top-section.text,
.body_subsite.theme--dune-yellow .paddle-components-instagram-feed-block-wrapper .instagram_feed .insta-link,
.body_subsite.theme--dune-yellow .carousel-navigation a,
.body_subsite.theme--dune-yellow .flex-pauseplay a,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--dune-yellow .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover {
  background-color: var(--clr-yellow);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover,
.body_subsite.theme--dune-yellow.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a:hover,
.body_subsite.theme--dune-yellow .comp_btn_with_icon_and_title .paddle-component--top-section.text:hover,
.body_subsite.theme--dune-yellow .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text {
  background-color: var(--clr-yellow-700);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover {
  border-color: var(--clr-yellow-700);
}

.body_subsite.theme--dune-yellow footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
}

.body_subsite.theme--dune-yellow.page-node-type-activity .field-activity_type .item,
.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul li a,
.body_subsite.theme--dune-yellow.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li a {
  background-color: rgba(var(--clr-yellow-rgb), 0.2);
}

.body_subsite.theme--dune-yellow.page-node-type-activity .paragraph--type--list-of-interesting-activities .flex-viewport ul li > article:hover::before,
.body_subsite.theme--dune-yellow .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--body-section a::before,
.body_subsite.theme--dune-yellow .tourism_news .paddle-component--list-block article.node:hover .field--featured-image a::before,
.body_subsite.theme--dune-yellow .paddle-component--carousel-block .figcaption,
.body_subsite.theme--dune-yellow .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--featured-image a::before {
  background-color: rgba(var(--clr-yellow-700-rgb), 0.8);
}

.body_subsite.theme--dune-yellow .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity:hover .field--display-tags-frontend-node ul li a,
.body_subsite.theme--dune-yellow.page-node-type-search-page .view-search .card:hover .card-body .field--display-tags-frontend-node ul li a {
  background-image: url(/sites/default/files/2021-07/tags_yellow.svg);
}

.body_subsite.theme--dune-yellow .comp_block_stories .paddle-component--image-block .paddle-component--body-section::before {
  background-color: rgba(var(--clr-yellow-700-rgb), 0.37);
}

.body_subsite.theme--dune-yellow .breadcrumb .breadcrumb-item a {
  color: var(--clr-yellow);
}

.body_subsite.theme--dune-yellow .header #block-language-dropdown .dropdown-language-item,
.body_subsite.theme--dune-yellow .header #block-language-dropdown .dropdown-language-item li a,
.body_subsite.theme--dune-yellow .header #block-language-dropdown .dropdown-language-item li span {
  background-color: var(--clr-yellow) !important;
}

.body_subsite.theme--dune-yellow .subsite-header-search-btn {
  /*
  background-image: url(/sites/default/files/2024-05/tour_search_icon--yellow.svg);*/
  background-color: var(--clr-yellow);
}

.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a:hover::after,
.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a.is-active::after,
.body_subsite.theme--factor-50-red.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after,
.body_subsite.theme--factor-50-red.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-red.svg);
}

.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a:hover::after,
.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a.is-active::after,
.body_subsite.theme--factor-50-red.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after,
.body_subsite.theme--factor-50-red.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-zien-red.svg);
}

.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a:hover::after,
.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a.is-active::after,
.body_subsite.theme--factor-50-red.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after,
.body_subsite.theme--factor-50-red.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-red.svg);
}

.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a:hover::after,
.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a.is-active::after,
.body_subsite.theme--factor-50-red.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after,
.body_subsite.theme--factor-50-red.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-red.svg);
}

.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a:hover::after,
.body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a.is-active::after,
.body_subsite.theme--factor-50-red.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after,
.body_subsite.theme--factor-50-red.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-webshop-red.svg);
}

@media (max-width: 991px) {
  .body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-red.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-zien-red.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-red.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-red.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--factor-50-red #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-webshop-red.svg);
  }
} /*
.body_subsite.theme--factor-50-red .header #block-language-dropdown .dropbutton-arrow,
.body_subsite.theme--factor-50-red .header #block-language-dropdown .open .dropbutton-arrow {
  border-left: 1px solid var(--clr-red);
  border-top: 1px solid var(--clr-red) !important;
}
*/ /*
.body_subsite.theme--factor-50-red.page-node-type-activity .field-block.field-date_time .field-with-icon__icon {
  background-image: url(/sites/default/files/2021-07/calendar_red.svg);
}

.body_subsite.theme--factor-50-red .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section h3:first-of-type {
  background-image: url(/sites/default/files/2021-07/small_calendar_red.svg);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(2) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/facebook_red.svg);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(3) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/twitter_red.svg);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(4) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/instagram_red.svg);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(5) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/share_red.svg);
}
*/
.body_subsite.theme--factor-50-red .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section a:hover,
.body_subsite.theme--factor-50-red.page-node-type-activity .event-info-wrapper .field-block a:hover {
  color: white;
}

.body_subsite.theme--factor-50-red .region.region--content a:hover,
.body_subsite.theme--factor-50-red .breadcrumb .breadcrumb-item:first-child a,
.body_subsite.theme--factor-50-red h3,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--factor-50-red .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.body_subsite.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.body_subsite.theme--factor-50-red .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--factor-50-red.page-node-type-activity .field-block.field-date_time,
.body_subsite.theme--factor-50-red.page-node-type-activity .node--activity .field-block > h2,
.body_subsite.theme--factor-50-red.page-node-type-activity .node--activity .field-block .item > h2,
.body_subsite.theme--factor-50-red.page-node-type-activity .node--activity .field-chapter_title_h2,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--top-section.text,
.body_subsite.theme--factor-50-red.page-node-type-company .field-with-icon__icon,
.body_subsite.theme--factor-50-red.page-node-type-company .social-media-links--platforms.horizontal li a,
.body_subsite.theme--factor-50-red .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_subsite.theme--factor-50-red.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .field--body.field--type--text-with-summary p,
.body_subsite.theme--factor-50-red .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover {
  color: var(--clr-red);
}

.body_subsite.theme--factor-50-red .region--content ul li::before,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--bottom-section a::after,
.body_subsite.theme--factor-50-red.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn:hover::after,
.body_subsite.theme--factor-50-red.page-node-type-activity .field-block.field-link .item a.btn::after,
.body_subsite.theme--factor-50-red .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper::after,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a::after,
.body_subsite.theme--factor-50-red.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--factor-50-red.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input:hover,
.body_subsite.theme--factor-50-red.page-node-type-search-page .view-search .card .card-body p.read-more,
.body_subsite.theme--factor-50-red .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body::after,
.body_subsite.theme--factor-50-red .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a::after,
.theme--factor-50-red .view-news a.card::after {
  background-image: url(/sites/default/files/2021-06/arrow_red.svg);
}

.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--bottom-section a,
.body_subsite.theme--factor-50-red.page-node-type-news-item .badge.badge-light,
.body_subsite.theme--factor-50-red.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--factor-50-red.page-node-type-activity .field-block.field-link .item,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a,
.body_subsite.theme--factor-50-red.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--factor-50-red.page-node-type-search-page .view-search .card,
.body_subsite.theme--factor-50-red .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a:hover {
  border-color: var(--clr-red);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .region-wrapper--footer,
.body_subsite.theme--factor-50-red .comp_tourism_header_search,
.body_subsite.theme--factor-50-red .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--factor-50-red.page-node-type-activity .event-info-wrapper,
.body_subsite.theme--factor-50-red.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--factor-50-red.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a,
.body_subsite.theme--factor-50-red .comp_btn_with_icon_and_title .paddle-component--top-section.text,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a:hover,
.body_subsite.theme--factor-50-red.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn:hover,
.body_subsite.theme--factor-50-red.page-node-type-search-page .block-facet--general-tags ul li.facet-item a::after,
.body_subsite.theme--factor-50-red .comp_block_stories .paddle-component--image-block .paddle-component--top-section.text,
.body_subsite.theme--factor-50-red .paddle-components-instagram-feed-block-wrapper .instagram_feed .insta-link,
.body_subsite.theme--factor-50-red .carousel-navigation a,
.body_subsite.theme--factor-50-red .flex-pauseplay a,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--factor-50-red .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover {
  background-color: var(--clr-red);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover,
.body_subsite.theme--factor-50-red.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a:hover,
.body_subsite.theme--factor-50-red .comp_btn_with_icon_and_title .paddle-component--top-section.text:hover,
.body_subsite.theme--factor-50-red .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text {
  background-color: var(--clr-red-700);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover {
  border-color: var(--clr-red-700);
}

.body_subsite.theme--factor-50-red footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
}

.body_subsite.theme--factor-50-red.page-node-type-activity .field-activity_type .item,
.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul li a,
.body_subsite.theme--factor-50-red.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li a {
  background-color: rgba(var(--clr-red-rgb), 0.2);
}

.body_subsite.theme--factor-50-red.page-node-type-activity .paragraph--type--list-of-interesting-activities .flex-viewport ul li > article:hover::before,
.body_subsite.theme--factor-50-red .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--body-section a::before,
.body_subsite.theme--factor-50-red .tourism_news .paddle-component--list-block article.node:hover .field--featured-image a::before,
.body_subsite.theme--factor-50-red .paddle-component--carousel-block .figcaption,
.body_subsite.theme--factor-50-red .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--featured-image a::before {
  background-color: rgba(var(--clr-red-700-rgb), 0.8);
}

.body_subsite.theme--factor-50-red .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity:hover .field--display-tags-frontend-node ul li a,
.body_subsite.theme--factor-50-red.page-node-type-search-page .view-search .card:hover .card-body .field--display-tags-frontend-node ul li a {
  background-image: url(/sites/default/files/2021-07/tags_red.svg);
}

.body_subsite.theme--factor-50-red .comp_block_stories .paddle-component--image-block .paddle-component--body-section::before {
  background-color: rgba(var(--clr-red-700-rgb), 0.37);
}

.body_subsite.theme--factor-50-red .breadcrumb .breadcrumb-item a {
  color: var(--clr-red);
}

.body_subsite.theme--factor-50-red .header #block-language-dropdown .dropdown-language-item,
.body_subsite.theme--factor-50-red .header #block-language-dropdown .dropdown-language-item li a,
.body_subsite.theme--factor-50-red .header #block-language-dropdown .dropdown-language-item li span {
  background-color: var(--clr-red) !important;
}

.body_subsite.theme--factor-50-red .subsite-header-search-btn {
  /*
  background-image: url(/sites/default/files/2024-05/tour_search_icon--red.svg);*/
  background-color: var(--clr-red);
}

.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a:hover::after,
.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a.is-active::after,
.body_subsite.theme--purple.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after,
.body_subsite.theme--purple.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-purple.svg);
}

.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a:hover::after,
.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a.is-active::after,
.body_subsite.theme--purple.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after,
.body_subsite.theme--purple.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-zien-purple.svg);
}

.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a:hover::after,
.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a.is-active::after,
.body_subsite.theme--purple.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after,
.body_subsite.theme--purple.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-purple.svg);
}

.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a:hover::after,
.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a.is-active::after,
.body_subsite.theme--purple.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after,
.body_subsite.theme--purple.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-purple.svg);
}

.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a:hover::after,
.body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a.is-active::after,
.body_subsite.theme--purple.page-node-type-company #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after,
.body_subsite.theme--purple.page-node-type-activity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
  background-image: url(/sites/default/files/2021-07/icon-menu-webshop-purple.svg);
}

@media (max-width: 991px) {
  .body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(1) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-verblijf-purple.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-zien-purple.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(3) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-praktisch-purple.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(4) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-inspiratie-purple.svg);
  }
}
@media (max-width: 991px) {
  .body_subsite.theme--purple #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(5) > a::after {
    background-image: url(/sites/default/files/2021-07/icon-menu-webshop-purple.svg);
  }
} /*
.body_subsite.theme--purple .header #block-language-dropdown .dropbutton-arrow,
.body_subsite.theme--purple .header #block-language-dropdown .open .dropbutton-arrow {
  border-left: 1px solid var(--clr-purple);
  border-top: 1px solid var(--clr-purple) !important;
}
*/
.body_subsite.theme--purple .breadcrumb .breadcrumb-item a {
  color: var(--clr-purple);
}

.body_subsite.theme--purple .header #block-language-dropdown .dropdown-language-item,
.body_subsite.theme--purple .header #block-language-dropdown .dropdown-language-item li a,
.body_subsite.theme--purple .header #block-language-dropdown .dropdown-language-item li span {
  background-color: var(--clr-purple) !important;
}

.body_subsite.theme--purple .subsite-header-search-btn {
  /* background-image: url(/sites/default/files/2024-05/tour_search_icon--purple.svg);*/
  background-color: var(--clr-purple);
}

#logo_main_color {
  fill: var(--primary);
}

/*
.body_subsite.theme--purple.page-node-type-activity .field-block.field-date_time .field-with-icon__icon {
  background-image: url(/sites/default/files/2021-07/calendar_purple.svg);
}

.body_subsite.theme--purple .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section h3:first-of-type {
  background-image: url(/sites/default/files/2021-07/small_calendar_purple.svg);
}

.body_subsite.theme--purple footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(2) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/facebook_purple.svg);
}

.body_subsite.theme--purple footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(3) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/twitter_purple.svg);
}

.body_subsite.theme--purple footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(4) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/instagram_purple.svg);
}

.body_subsite.theme--purple footer.sticky-footer .footer-content-right .paddle-component--body-section ul li:not(:first-child):nth-child(5) a:hover {
  background-image: url(https://stag-depanne.paddlecms.net/sites/default/files/2021-07/share_purple.svg);
}
*/
.body_subsite.theme--purple .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section a:hover,
.body_subsite.theme--purple.page-node-type-activity .event-info-wrapper .field-block a:hover {
  color: white;
}

.body_subsite.theme--purple .region.region--content a:hover,
.body_subsite.theme--purple .breadcrumb .breadcrumb-item:first-child a,
.body_subsite.theme--purple h3,
.body_subsite.theme--purple .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--purple .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--purple .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::before,
.body_subsite.theme--purple .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--body-section blockquote::after,
.body_subsite.theme--purple .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--purple.page-node-type-activity .field-block.field-date_time,
.body_subsite.theme--purple.page-node-type-activity .node--activity .field-block > h2,
.body_subsite.theme--purple.page-node-type-activity .node--activity .field-block .item > h2,
.body_subsite.theme--purple.page-node-type-activity .node--activity .field-chapter_title_h2,
.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--top-section.text,
.body_subsite.theme--purple.page-node-type-company .field-with-icon__icon,
.body_subsite.theme--purple.page-node-type-company .social-media-links--platforms.horizontal li a,
.body_subsite.theme--purple .paddle-components-download-block-wrapper .paddle-component--top-section.text,
.body_subsite.theme--purple.page-node-type-company.body_subsite .node--company > div > .layout--twocol-section--50-50:first-child .layout__region--first .field--body.field--type--text-with-summary p,
.body_subsite.theme--purple .paddle-components-text-block-wrapper .paddle-component--body-section p a.btn-primary:hover {
  color: var(--clr-purple);
}

.body_subsite.theme--purple .region--content ul li::before,
.body_subsite.theme--purple .paddle-components-list-block-wrapper .paddle-component--bottom-section a::after,
.body_subsite.theme--purple.page-node-type-activity .extra-field-block.field-ical .field--ical a.btn:hover::after,
.body_subsite.theme--purple.page-node-type-activity .field-block.field-link .item a.btn::after,
.body_subsite.theme--purple .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--bottom-section a::after,
.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper::after,
.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a::after,
.body_subsite.theme--purple.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--purple.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input:hover,
.body_subsite.theme--purple.page-node-type-search-page .view-search .card .card-body p.read-more,
.body_subsite.theme--purple .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight .field--body::after,
.body_subsite.theme--purple .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a::after {
  background-image: url(/sites/default/files/2021-06/purple_arrow.svg);
}

.body_subsite.theme--purple .paddle-components-list-block-wrapper .paddle-component--bottom-section a,
.body_subsite.theme--purple.page-node-type-news-item .badge.badge-light,
.body_subsite.theme--purple.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--purple.page-node-type-activity .field-block.field-link .item,
.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .activity-list-content-wrapper,
.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a,
.body_subsite.theme--purple.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn,
.body_subsite.theme--purple.page-node-type-search-page .view-search .card,
.body_subsite.theme--purple .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a,
.body_subsite.theme--purple .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--purple .paddle-components-list-block-wrapper.comp--activity-list-with-top-img > .activity .paddle-component--bottom-section a:hover {
  border-color: var(--clr-purple);
}

.body_subsite.theme--purple footer.sticky-footer .region-wrapper--footer,
.body_subsite.theme--purple .comp_tourism_header_search,
.body_subsite.theme--purple .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section,
.body_subsite.theme--purple.page-node-type-activity .event-info-wrapper,
.body_subsite.theme--purple.page-node-type-activity .field-block.field-link .item:hover,
.body_subsite.theme--purple.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a,
.body_subsite.theme--purple .comp_btn_with_icon_and_title .paddle-component--top-section.text,
.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--bottom-section a:hover,
.body_subsite.theme--purple.page-node-type-search-page .views-exposed-form > .form-row > .form-actions input.btn:hover,
.body_subsite.theme--purple.page-node-type-search-page .block-facet--general-tags ul li.facet-item a::after,
.body_subsite.theme--purple .comp_block_stories .paddle-component--image-block .paddle-component--top-section.text,
.body_subsite.theme--purple .paddle-components-instagram-feed-block-wrapper .instagram_feed .insta-link,
.body_subsite.theme--purple .carousel-navigation a,
.body_subsite.theme--purple .flex-pauseplay a,
.body_subsite.theme--purple .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover,
.body_subsite.theme--purple .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--bottom-section a:hover {
  background-color: var(--clr-purple);
}

.body_subsite.theme--purple footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover,
.body_subsite.theme--purple.page-node-type-activity .paragraph--type--list-of-interesting-activities ul.flex-direction-nav li a:hover,
.body_subsite.theme--purple .comp_btn_with_icon_and_title .paddle-component--top-section.text:hover,
.body_subsite.theme--purple .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text {
  background-color: var(--clr-purple-700);
}

.body_subsite.theme--purple footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover {
  border-color: var(--clr-purple-700);
}

.body_subsite.theme--purple footer.sticky-footer .footer-content-middle .paddle-component--top-bottom-only-block .paddle-component--top-section.text a:hover::after,
.body_subsite.theme--purple .paddle-components-list-block-wrapper .paddle-component--bottom-section a:hover::after {
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
}

.body_subsite.theme--purple.page-node-type-activity .field-activity_type .item,
.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity .field--display-tags-frontend-node ul li a,
.body_subsite.theme--purple.page-node-type-search-page .view-search .card .card-body .field--display-tags-frontend-node ul li a {
  background-color: rgba(var(--clr-purple-rgb), 0.2);
}

.body_subsite.theme--purple.page-node-type-activity .paragraph--type--list-of-interesting-activities .flex-viewport ul li > article:hover::before,
.body_subsite.theme--purple .comp_image_with_title_and_text .paddle-component--image-block:hover .paddle-component--body-section a::before,
.body_subsite.theme--purple .tourism_news .paddle-component--list-block article.node:hover .field--featured-image a::before,
.body_subsite.theme--purple .paddle-component--carousel-block .figcaption,
.body_subsite.theme--purple .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node:hover .field--featured-image a::before {
  background-color: rgba(var(--clr-purple-700-rgb), 0.8);
}

.body_subsite.theme--purple .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity:hover .field--display-tags-frontend-node ul li a,
.body_subsite.theme--purple.page-node-type-search-page .view-search .card:hover .card-body .field--display-tags-frontend-node ul li a {
  background-image: url(/sites/default/files/2021-07/tags_purple.svg);
}

.body_subsite.theme--purple .comp_block_stories .paddle-component--image-block .paddle-component--body-section::before {
  background-color: rgba(var(--clr-purple-700-rgb), 0.37);
}

.body_subsite.theme--purple.wave_helmduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--purple.wave_helmduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--purple.wave_helmduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--purple.wave_helmduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--purple.wave_helmduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--purple.wave_helmduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--purple.wave_helmduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--purple.wave_helmduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--purple.wave_helmduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--purple.wave_helmduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--purple.wave_helmduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--purple.wave_helmduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__purple.svg);
}

.body_subsite.theme--purple.wave_helmduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_helmduin_banner_overlay_S_white.png);
}

.body_subsite.theme--purple.wave_helmduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--purple.wave_helmduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_white.svg);
}

.body_subsite.theme--purple.wave_helmduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--purple.wave_helmduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--purple.wave_helmduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_black.svg);
}

.body_subsite.theme--purple.wave_helmduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__white_0.svg);
}

.body_subsite.theme--purple.wave_helmduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--purple.wave_helmduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin__purple.svg);
}

.body_subsite.theme--purple.wave_helmduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_purple.svg);
}

.body_subsite.theme--calmeyn-green.wave_helmduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--calmeyn-green.wave_helmduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--calmeyn-green.wave_helmduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--calmeyn-green.wave_helmduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--calmeyn-green.wave_helmduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--calmeyn-green.wave_helmduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--calmeyn-green.wave_helmduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--calmeyn-green.wave_helmduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--calmeyn-green.wave_helmduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--calmeyn-green.wave_helmduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--calmeyn-green.wave_helmduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--calmeyn-green.wave_helmduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_helmduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_helmduin_banner_overlay_S_white.png);
}

.body_subsite.theme--calmeyn-green.wave_helmduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--calmeyn-green.wave_helmduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_white.svg);
}

.body_subsite.theme--calmeyn-green.wave_helmduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--calmeyn-green.wave_helmduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--calmeyn-green.wave_helmduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_black.svg);
}

.body_subsite.theme--calmeyn-green.wave_helmduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__white_0.svg);
}

.body_subsite.theme--calmeyn-green.wave_helmduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--calmeyn-green.wave_helmduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_helmduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_green.svg);
}

.body_subsite.theme--dune-yellow.wave_helmduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dune-yellow.wave_helmduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dune-yellow.wave_helmduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dune-yellow.wave_helmduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dune-yellow.wave_helmduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dune-yellow.wave_helmduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dune-yellow.wave_helmduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dune-yellow.wave_helmduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dune-yellow.wave_helmduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dune-yellow.wave_helmduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dune-yellow.wave_helmduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dune-yellow.wave_helmduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_helmduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_helmduin_banner_overlay_S_white.png);
}

.body_subsite.theme--dune-yellow.wave_helmduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dune-yellow.wave_helmduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_white.svg);
}

.body_subsite.theme--dune-yellow.wave_helmduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dune-yellow.wave_helmduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dune-yellow.wave_helmduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_black.svg);
}

.body_subsite.theme--dune-yellow.wave_helmduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__white_0.svg);
}

.body_subsite.theme--dune-yellow.wave_helmduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dune-yellow.wave_helmduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_helmduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_yellow.svg);
}

.body_subsite.theme--factor-50-red.wave_helmduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--factor-50-red.wave_helmduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--factor-50-red.wave_helmduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--factor-50-red.wave_helmduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--factor-50-red.wave_helmduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--factor-50-red.wave_helmduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--factor-50-red.wave_helmduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--factor-50-red.wave_helmduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--factor-50-red.wave_helmduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--factor-50-red.wave_helmduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--factor-50-red.wave_helmduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--factor-50-red.wave_helmduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__red.svg);
}

.body_subsite.theme--factor-50-red.wave_helmduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_helmduin_banner_overlay_S_white.png);
}

.body_subsite.theme--factor-50-red.wave_helmduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--factor-50-red.wave_helmduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_white.svg);
}

.body_subsite.theme--factor-50-red.wave_helmduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--factor-50-red.wave_helmduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--factor-50-red.wave_helmduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_black.svg);
}

.body_subsite.theme--factor-50-red.wave_helmduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__white_0.svg);
}

.body_subsite.theme--factor-50-red.wave_helmduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--factor-50-red.wave_helmduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin__red.svg);
}

.body_subsite.theme--factor-50-red.wave_helmduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_red.svg);
}

.body_subsite.theme--dew-blue.wave_helmduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dew-blue.wave_helmduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dew-blue.wave_helmduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dew-blue.wave_helmduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dew-blue.wave_helmduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dew-blue.wave_helmduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dew-blue.wave_helmduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dew-blue.wave_helmduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dew-blue.wave_helmduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dew-blue.wave_helmduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dew-blue.wave_helmduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dew-blue.wave_helmduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__blue.svg);
}

.body_subsite.theme--dew-blue.wave_helmduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_helmduin_banner_overlay_S_white.png);
}

.body_subsite.theme--dew-blue.wave_helmduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dew-blue.wave_helmduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_white.svg);
}

.body_subsite.theme--dew-blue.wave_helmduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dew-blue.wave_helmduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dew-blue.wave_helmduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin_title_black.svg);
}

.body_subsite.theme--dew-blue.wave_helmduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__white_0.svg);
}

.body_subsite.theme--dew-blue.wave_helmduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dew-blue.wave_helmduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_helmduin__blue.svg);
}

.body_subsite.theme--dew-blue.wave_helmduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_helmduin_blue.svg);
}

.body_subsite.theme--calmeyn-green.wave_duinvallei #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--calmeyn-green.wave_duinvallei .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--calmeyn-green.wave_duinvallei.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--calmeyn-green.wave_duinvallei .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--calmeyn-green.wave_duinvallei .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--calmeyn-green.wave_duinvallei .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--calmeyn-green.wave_duinvallei.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--calmeyn-green.wave_duinvallei .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--calmeyn-green.wave_duinvallei .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--calmeyn-green.wave_duinvallei .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--calmeyn-green.wave_duinvallei .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--calmeyn-green.wave_duinvallei .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_duinvallei .header::after {
  background-image: url(/sites/default/files/2021-07/tour_duinvallei_banner_overlay_S_white.png);
}

.body_subsite.theme--calmeyn-green.wave_duinvallei #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--calmeyn-green.wave_duinvallei.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_white.svg);
}

.body_subsite.theme--calmeyn-green.wave_duinvallei .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--calmeyn-green.wave_duinvallei.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--calmeyn-green.wave_duinvallei .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
}

.body_subsite.theme--calmeyn-green.wave_duinvallei .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__white_0.svg);
}

.body_subsite.theme--calmeyn-green.wave_duinvallei.page-node-type-search-page .block-facet h2,
.body_subsite.theme--calmeyn-green.wave_duinvallei.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_duinvallei.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_green.svg);
}

.body_subsite.theme--purple.wave_duinvallei #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--purple.wave_duinvallei .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--purple.wave_duinvallei.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--purple.wave_duinvallei .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--purple.wave_duinvallei .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--purple.wave_duinvallei .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--purple.wave_duinvallei.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--purple.wave_duinvallei .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--purple.wave_duinvallei .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--purple.wave_duinvallei .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--purple.wave_duinvallei .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--purple.wave_duinvallei .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__purple.svg);
}

.body_subsite.theme--purple.wave_duinvallei .header::after {
  background-image: url(/sites/default/files/2021-07/tour_duinvallei_banner_overlay_S_white.png);
}

.body_subsite.theme--purple.wave_duinvallei #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--purple.wave_duinvallei.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_white.svg);
}

.body_subsite.theme--purple.wave_duinvallei .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--purple.wave_duinvallei.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--purple.wave_duinvallei .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
}

.body_subsite.theme--purple.wave_duinvallei .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__white_0.svg);
}

.body_subsite.theme--purple.wave_duinvallei.page-node-type-search-page .block-facet h2,
.body_subsite.theme--purple.wave_duinvallei.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei__purple.svg);
}

.body_subsite.theme--purple.wave_duinvallei.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_purple.svg);
}

.body_subsite.theme--factor-50-red.wave_duinvallei #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--factor-50-red.wave_duinvallei .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--factor-50-red.wave_duinvallei.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--factor-50-red.wave_duinvallei .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--factor-50-red.wave_duinvallei .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--factor-50-red.wave_duinvallei .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--factor-50-red.wave_duinvallei.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--factor-50-red.wave_duinvallei .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--factor-50-red.wave_duinvallei .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--factor-50-red.wave_duinvallei .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--factor-50-red.wave_duinvallei .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--factor-50-red.wave_duinvallei .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__red.svg);
}

.body_subsite.theme--factor-50-red.wave_duinvallei .header::after {
  background-image: url(/sites/default/files/2021-07/tour_duinvallei_banner_overlay_S_white.png);
}

.body_subsite.theme--factor-50-red.wave_duinvallei #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--factor-50-red.wave_duinvallei.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_white.svg);
}

.body_subsite.theme--factor-50-red.wave_duinvallei .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--factor-50-red.wave_duinvallei.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--factor-50-red.wave_duinvallei .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
}

.body_subsite.theme--factor-50-red.wave_duinvallei .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__white_0.svg);
}

.body_subsite.theme--factor-50-red.wave_duinvallei.page-node-type-search-page .block-facet h2,
.body_subsite.theme--factor-50-red.wave_duinvallei.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei__red.svg);
}

.body_subsite.theme--factor-50-red.wave_duinvallei.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_red.svg);
}

.body_subsite.theme--dune-yellow.wave_duinvallei #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dune-yellow.wave_duinvallei .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dune-yellow.wave_duinvallei.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dune-yellow.wave_duinvallei .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dune-yellow.wave_duinvallei .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dune-yellow.wave_duinvallei .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dune-yellow.wave_duinvallei.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dune-yellow.wave_duinvallei .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dune-yellow.wave_duinvallei .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dune-yellow.wave_duinvallei .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dune-yellow.wave_duinvallei .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dune-yellow.wave_duinvallei .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_duinvallei .header::after {
  background-image: url(/sites/default/files/2021-07/tour_duinvallei_banner_overlay_S_white.png);
}

.body_subsite.theme--dune-yellow.wave_duinvallei #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dune-yellow.wave_duinvallei.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_white.svg);
}

.body_subsite.theme--dune-yellow.wave_duinvallei .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dune-yellow.wave_duinvallei.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dune-yellow.wave_duinvallei .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
}

.body_subsite.theme--dune-yellow.wave_duinvallei .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__white_0.svg);
}

.body_subsite.theme--dune-yellow.wave_duinvallei.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dune-yellow.wave_duinvallei.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_duinvallei.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_yellow.svg);
}

.body_subsite.theme--dew-blue.wave_duinvallei #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dew-blue.wave_duinvallei .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dew-blue.wave_duinvallei.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dew-blue.wave_duinvallei .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dew-blue.wave_duinvallei .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dew-blue.wave_duinvallei .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dew-blue.wave_duinvallei.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dew-blue.wave_duinvallei .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dew-blue.wave_duinvallei .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dew-blue.wave_duinvallei .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dew-blue.wave_duinvallei .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dew-blue.wave_duinvallei .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__blue.svg);
}

.body_subsite.theme--dew-blue.wave_duinvallei .header::after {
  background-image: url(/sites/default/files/2021-07/tour_duinvallei_banner_overlay_S_white.png);
}

.body_subsite.theme--dew-blue.wave_duinvallei #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dew-blue.wave_duinvallei.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_white.svg);
}

.body_subsite.theme--dew-blue.wave_duinvallei .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dew-blue.wave_duinvallei.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dew-blue.wave_duinvallei .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei_title_black.svg);
}

.body_subsite.theme--dew-blue.wave_duinvallei .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_duinvallei__white_0.svg);
}

.body_subsite.theme--dew-blue.wave_duinvallei.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dew-blue.wave_duinvallei.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_duinvallei__blue.svg);
}

.body_subsite.theme--dew-blue.wave_duinvallei.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_blue.svg);
}

.body_subsite.theme--factor-50-red.wave_paraboolduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--factor-50-red.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--factor-50-red.wave_paraboolduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--factor-50-red.wave_paraboolduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--factor-50-red.wave_paraboolduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--factor-50-red.wave_paraboolduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--factor-50-red.wave_paraboolduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--factor-50-red.wave_paraboolduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--factor-50-red.wave_paraboolduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--factor-50-red.wave_paraboolduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--factor-50-red.wave_paraboolduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--factor-50-red.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__red.svg);
}

.body_subsite.theme--factor-50-red.wave_paraboolduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_paraboolduin_banner_overlay_S_white.png);
}

.body_subsite.theme--factor-50-red.wave_paraboolduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--factor-50-red.wave_paraboolduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_white.svg);
}

.body_subsite.theme--factor-50-red.wave_paraboolduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--factor-50-red.wave_paraboolduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--factor-50-red.wave_paraboolduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_black.svg);
}

.body_subsite.theme--factor-50-red.wave_paraboolduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__white_0.svg);
}

.body_subsite.theme--factor-50-red.wave_paraboolduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--factor-50-red.wave_paraboolduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin__red.svg);
}

.body_subsite.theme--factor-50-red.wave_paraboolduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_red.svg);
}

.body_subsite.theme--dune-yellow.wave_paraboolduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dune-yellow.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dune-yellow.wave_paraboolduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dune-yellow.wave_paraboolduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dune-yellow.wave_paraboolduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dune-yellow.wave_paraboolduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dune-yellow.wave_paraboolduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dune-yellow.wave_paraboolduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dune-yellow.wave_paraboolduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dune-yellow.wave_paraboolduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dune-yellow.wave_paraboolduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dune-yellow.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_paraboolduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_paraboolduin_banner_overlay_S_white.png);
}

.body_subsite.theme--dune-yellow.wave_paraboolduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dune-yellow.wave_paraboolduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_white.svg);
}

.body_subsite.theme--dune-yellow.wave_paraboolduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dune-yellow.wave_paraboolduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dune-yellow.wave_paraboolduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_black.svg);
}

.body_subsite.theme--dune-yellow.wave_paraboolduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__white_0.svg);
}

.body_subsite.theme--dune-yellow.wave_paraboolduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dune-yellow.wave_paraboolduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_paraboolduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_yellow.svg);
}

.body_subsite.theme--dew-blue.wave_paraboolduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dew-blue.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dew-blue.wave_paraboolduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dew-blue.wave_paraboolduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dew-blue.wave_paraboolduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dew-blue.wave_paraboolduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dew-blue.wave_paraboolduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dew-blue.wave_paraboolduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dew-blue.wave_paraboolduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dew-blue.wave_paraboolduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dew-blue.wave_paraboolduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dew-blue.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__blue.svg);
}

.body_subsite.theme--dew-blue.wave_paraboolduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_paraboolduin_banner_overlay_S_white.png);
}

.body_subsite.theme--dew-blue.wave_paraboolduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dew-blue.wave_paraboolduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_white.svg);
}

.body_subsite.theme--dew-blue.wave_paraboolduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dew-blue.wave_paraboolduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dew-blue.wave_paraboolduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_black.svg);
}

.body_subsite.theme--dew-blue.wave_paraboolduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__white_0.svg);
}

.body_subsite.theme--dew-blue.wave_paraboolduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dew-blue.wave_paraboolduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin__blue.svg);
}

.body_subsite.theme--dew-blue.wave_paraboolduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_blue.svg);
}

.body_subsite.theme--purple.wave_paraboolduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--purple.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--purple.wave_paraboolduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--purple.wave_paraboolduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--purple.wave_paraboolduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--purple.wave_paraboolduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--purple.wave_paraboolduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--purple.wave_paraboolduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--purple.wave_paraboolduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--purple.wave_paraboolduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--purple.wave_paraboolduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--purple.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__purple.svg);
}

.body_subsite.theme--purple.wave_paraboolduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_paraboolduin_banner_overlay_S_white.png);
}

.body_subsite.theme--purple.wave_paraboolduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--purple.wave_paraboolduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_white.svg);
}

.body_subsite.theme--purple.wave_paraboolduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--purple.wave_paraboolduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--purple.wave_paraboolduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_black.svg);
}

.body_subsite.theme--purple.wave_paraboolduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__white_0.svg);
}

.body_subsite.theme--purple.wave_paraboolduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--purple.wave_paraboolduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin__purple.svg);
}

.body_subsite.theme--purple.wave_paraboolduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_purple.svg);
}

.body_subsite.theme--calmeyn-green.wave_paraboolduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--calmeyn-green.wave_paraboolduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--calmeyn-green.wave_paraboolduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--calmeyn-green.wave_paraboolduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_paraboolduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_paraboolduin_banner_overlay_S_white.png);
}

.body_subsite.theme--calmeyn-green.wave_paraboolduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--calmeyn-green.wave_paraboolduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_white.svg);
}

.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--calmeyn-green.wave_paraboolduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--calmeyn-green.wave_paraboolduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin_title_black.svg);
}

.body_subsite.theme--calmeyn-green.wave_paraboolduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_paraboolduin__white_0.svg);
}

.body_subsite.theme--calmeyn-green.wave_paraboolduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--calmeyn-green.wave_paraboolduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_paraboolduin__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_paraboolduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_paraboolduin_green.svg);
}

.body_subsite.theme--factor-50-red.wave_loopduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--factor-50-red.wave_loopduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--factor-50-red.wave_loopduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--factor-50-red.wave_loopduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--factor-50-red.wave_loopduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--factor-50-red.wave_loopduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--factor-50-red.wave_loopduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--factor-50-red.wave_loopduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--factor-50-red.wave_loopduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--factor-50-red.wave_loopduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--factor-50-red.wave_loopduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--factor-50-red.wave_loopduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__red.svg);
}

.body_subsite.theme--factor-50-red.wave_loopduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_loopduin_banner_overlay_S_white.png);
}

.body_subsite.theme--factor-50-red.wave_loopduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--factor-50-red.wave_loopduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_white.svg);
}

.body_subsite.theme--factor-50-red.wave_loopduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--factor-50-red.wave_loopduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--factor-50-red.wave_loopduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_black.svg);
}

.body_subsite.theme--factor-50-red.wave_loopduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__white_0.svg);
}

.body_subsite.theme--factor-50-red.wave_loopduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--factor-50-red.wave_loopduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin__red.svg);
}

.body_subsite.theme--factor-50-red.wave_loopduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_red.svg);
}

.body_subsite.theme--calmeyn-green.wave_loopduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--calmeyn-green.wave_loopduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--calmeyn-green.wave_loopduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--calmeyn-green.wave_loopduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--calmeyn-green.wave_loopduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--calmeyn-green.wave_loopduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--calmeyn-green.wave_loopduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--calmeyn-green.wave_loopduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--calmeyn-green.wave_loopduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--calmeyn-green.wave_loopduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--calmeyn-green.wave_loopduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--calmeyn-green.wave_loopduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_loopduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_loopduin_banner_overlay_S_white.png);
}

.body_subsite.theme--calmeyn-green.wave_loopduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--calmeyn-green.wave_loopduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_white.svg);
}

.body_subsite.theme--calmeyn-green.wave_loopduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--calmeyn-green.wave_loopduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--calmeyn-green.wave_loopduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_black.svg);
}

.body_subsite.theme--calmeyn-green.wave_loopduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__white_0.svg);
}

.body_subsite.theme--calmeyn-green.wave_loopduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--calmeyn-green.wave_loopduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin__green.svg);
}

.body_subsite.theme--calmeyn-green.wave_loopduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_green.svg);
}

.body_subsite.theme--purple.wave_loopduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--purple.wave_loopduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--purple.wave_loopduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--purple.wave_loopduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--purple.wave_loopduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--purple.wave_loopduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--purple.wave_loopduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--purple.wave_loopduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--purple.wave_loopduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--purple.wave_loopduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--purple.wave_loopduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--purple.wave_loopduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__purple.svg);
}

.body_subsite.theme--purple.wave_loopduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_loopduin_banner_overlay_S_white.png);
}

.body_subsite.theme--purple.wave_loopduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--purple.wave_loopduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_white.svg);
}

.body_subsite.theme--purple.wave_loopduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--purple.wave_loopduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--purple.wave_loopduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_black.svg);
}

.body_subsite.theme--purple.wave_loopduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__white_0.svg);
}

.body_subsite.theme--purple.wave_loopduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--purple.wave_loopduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin__purple.svg);
}

.body_subsite.theme--purple.wave_loopduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_purple.svg);
}

.body_subsite.theme--dew-blue.wave_loopduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dew-blue.wave_loopduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dew-blue.wave_loopduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dew-blue.wave_loopduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dew-blue.wave_loopduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dew-blue.wave_loopduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dew-blue.wave_loopduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dew-blue.wave_loopduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dew-blue.wave_loopduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dew-blue.wave_loopduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dew-blue.wave_loopduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dew-blue.wave_loopduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__blue.svg);
}

.body_subsite.theme--dew-blue.wave_loopduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_loopduin_banner_overlay_S_white.png);
}

.body_subsite.theme--dew-blue.wave_loopduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dew-blue.wave_loopduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_white.svg);
}

.body_subsite.theme--dew-blue.wave_loopduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dew-blue.wave_loopduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dew-blue.wave_loopduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_black.svg);
}

.body_subsite.theme--dew-blue.wave_loopduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__white_0.svg);
}

.body_subsite.theme--dew-blue.wave_loopduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dew-blue.wave_loopduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin__blue.svg);
}

.body_subsite.theme--dew-blue.wave_loopduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_blue.svg);
}

.body_subsite.theme--dune-yellow.wave_loopduin #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::before,
.body_subsite.theme--dune-yellow.wave_loopduin .comp_block_quote_toerisme .paddle-component--text-block .paddle-component--bottom-section,
.body_subsite.theme--dune-yellow.wave_loopduin.page-node-type-activity .paragraph--type--list-of-interesting-activities article h2 a,
.body_subsite.theme--dune-yellow.wave_loopduin .comp_image_left_and_text_content_right .paddle-component--text-block .paddle-component--body-section > h2,
.body_subsite.theme--dune-yellow.wave_loopduin .paddle-components-list-block-wrapper > .activity .paddle-component--body-section article.node--activity h2,
.body_subsite.theme--dune-yellow.wave_loopduin .comp_image_with_title_and_text .paddle-component--image-block .paddle-component--top-section.text a,
.body_subsite.theme--dune-yellow.wave_loopduin.page-node-type-search-page .view-search .card .card-title,
.body_subsite.theme--dune-yellow.wave_loopduin .comp_block_stories .paddle-component--image-block:hover .paddle-component--top-section.text > a,
.body_subsite.theme--dune-yellow.wave_loopduin .tourism_news .paddle-component--list-block article.node h2 a,
.body_subsite.theme--dune-yellow.wave_loopduin .comp--block-list-with-image-left-content-right .paddle-component--body-section article.view-mode--spotlight h2,
.body_subsite.theme--dune-yellow.wave_loopduin .comp-dynamic-list-with-bg-img .paddle-component--list-block article.node h2 a,
.theme--dune-yellow.wave_loopduin .comp_block_quote_toerisme .paddle-component--bottom-section {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_loopduin .header::after {
  background-image: url(/sites/default/files/2021-07/tour_loopduin_banner_overlay_S_white.png);
}

.body_subsite.theme--dune-yellow.wave_loopduin #block-ocelot-paddle-page-title h1::after,
.body_subsite.theme--dune-yellow.wave_loopduin.body_toerisme_homepage .header .header-content .caption .paddle-component--top-section.text {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_white.svg);
}

.body_subsite.theme--dune-yellow.wave_loopduin .comp_tour_block_image_left_and_text_right .paddle-component--text-block .paddle-component--body-section h2:first-child::after,
.theme--dune-yellow.wave_loopduin.body--corporate-identity .layout-builder__custom.page_wide.layout--twocol-section--50-50 .layout__region--second .paddle-component--body-section h2::after,
.theme--dune-yellow.wave_loopduin .comp--left-content .paddle-component--body-section h2:first-of-type::after {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin_title_black.svg);
}

.body_subsite.theme--dune-yellow.wave_loopduin .comp_btn_with_icon_and_title .paddle-component--top-section.text .svg-formatter::after {
  background-image: url(/sites/default/files/2021-07/tour--wave-thin_loopduin__white_0.svg);
}

.body_subsite.theme--dune-yellow.wave_loopduin.page-node-type-search-page .block-facet h2,
.body_subsite.theme--dune-yellow.wave_loopduin.page-node-type-activity .field-title h1 {
  background-image: url(/sites/default/files/2021-07/tour_wave_loopduin__yellow.svg);
}

.body_subsite.theme--dune-yellow.wave_loopduin.page-node-type-company.body_subsite #block-ocelot-paddle-page-title h1::after {
  background-image: url(/sites/default/files/2021-07/wave_loopduin_yellow.svg);
}

/* --- END  Main site colour theme  --- */
/* --- END Theme ---------------------------------------------------------*/
/* ---  START COPY styling activities teaser --- */
.comp_uit_kalender .paddle-component--list-block.page {
  margin-bottom: 100px;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--top-section.text {
  font-family: var(--second-font-family);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2.75rem;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section ul {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
  justify-content: center;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section ul li {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

@media (max-width: 888px) {
  .comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section ul li::before {
  content: none;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page {
  position: relative;
  overflow: hidden;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body {
  position: absolute;
  bottom: 0;
  padding: 20px 20px 20px 20px;
  z-index: 10;
  transition: all 0.15s ease-in-out;
  margin: 0;
}

@media (min-width: 1600px) {
  .comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body {
    padding: 20px 20px 20px 40px;
  }
}
.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body .items {
  height: 0;
  opacity: 0;
  transition: all 0.35s;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body .items .item {
  color: white;
  height: 0;
  overflow: hidden;
}

@media (min-width: 1440px) {
  .comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body .items .item {
    height: auto;
  }
}
.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body .items .item::after {
  content: "Lees meer";
  font-weight: 400;
  font-size: 22px;
  display: block;
  text-transform: uppercase;
  color: white;
  padding: 10px 40px 2px 0px;
  background: url(/sites/default/files/2021-06/arrow_white.svg) no-repeat calc(100% - 15px) center;
  margin-top: 0;
  height: auto;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body .items p {
  margin: 0;
  color: white;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--body .items p:not(:first-child) {
  display: none;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page h2 {
  margin: 0 0 20px 0;
  font-size: 2rem;
  /* text-transform: none; */
}

@media (max-width: 1199px) {
  .comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page h2 {
    bottom: 0;
    font-size: 1.75rem;
  }
}
@media (min-width: 1600px) {
  .comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page h2 {
    font-size: 2.5rem;
  }
}
.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page h2 a {
  text-decoration: none;
  color: white;
  line-height: 1;
  display: block;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page h2 a::before {
  content: "";
  display: block;
  position: absolute;
  top: -180%;
  bottom: -100%;
  left: 0;
  right: -100%;
  /* background-color: var(--main-text-color); */
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page h2 a::after {
  content: "";
  display: block;
  width: 84px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/2021-07/wave_duinvallei_white.svg);
  margin-top: 12px;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--featured-image {
  margin: 0 0 0 0;
  position: relative;
  overflow: hidden;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--featured-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--featured-image::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--featured-image article.media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--featured-image picture {
  display: block;
  height: 100%;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--featured-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page .field--display-tags-frontend-node {
  display: none;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page:hover .field--body .items {
  height: var(--news-body-height);
  opacity: 1;
}

@media (min-width: 1440px) {
  .comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page:hover .field--body .items .item {
    height: auto;
  }
}
.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page:hover .field--featured-image::before {
  background-color: rgba(38, 134, 80, 0.8);
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--body-section article.node--page:hover .field--featured-image img {
  transform: scale(1.05);
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--bottom-section {
  margin-top: 2rem;
  text-align: center;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--bottom-section a {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-text-color);
  display: inline-block;
  border: 2px solid var(--clr-green);
  text-align: center;
  padding: 2px 45px 2px 20px;
  position: relative;
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--bottom-section a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  background-image: url(/sites/default/files/2021-06/green_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--bottom-section a:hover {
  background-color: var(--main-text-color);
  color: white;
  border-color: var(--main-text-color);
}

.comp_uit_kalender .paddle-component--list-block.page .paddle-component--bottom-section a:hover::after {
  right: 10px;
}

/* ---  END COPY styling activities teaser --- */
/* FIX SEARCHBAR THROBBER */
.js input.form-autocomplete,
.js input.form-autocomplete.ui-autocomplete-loading {
  background-position: 96% center;
}

.js input.form-autocomplete.ui-autocomplete-loading {
  background-image: url(/sites/default/files/2021-12/throbber-active.gif);
}

/* WEBFORMS MAX WIDTH */
form.webform-submission-form {
  max-width: 920px;
}

/* TEMP FIX SUBMIT BUTTONS*/
.region--content input[type=submit].button--primary,
.region--content .btn-primary,
.region--content .btn-job {
  font-size: 22px;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  border: 2px solid var(--clr-purple-700);
  /*max-width: 400px;
  width: 100%;*/
  text-align: center;
  padding: 2px 40px 2px 15px;
  position: relative;
  transition: all 0.35s ease-in-out;
  background-color: var(--clr-purple-700);
  color: white;
}

.region--content input[type=submit].button--primary:hover,
.region--content .btn-job:hover,
.region--content .btn-primary:hover {
  color: var(--clr-purple-700);
  background-color: white;
  border-color: var(--clr-purple-700);
}

.path-user .region--content input[type=submit].button--primary,
.path-user .region--content .btn-primary,
.path-user .region--content .btn-job {
  background-color: var(--clr-purple-700);
}

.path-user .region--content input[type=submit].button--primary:hover,
.path-user .region--content .btn-primary:hover,
.path-user .region--content .btn-job:hover {
  color: var(--clr-purple-700);
  background-color: white;
  border-color: var(--clr-purple-700);
}

/* MARGIN VARIABLES */
.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-img .paddle-component--top-section {
  margin-top: 0 !important;
}

.extra-margin {
  margin-bottom: 4rem;
}

.extra-margin-top {
  margin-top: 4rem;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

/* INTRO NEWS */
.intro {
  font-size: 116%;
}

/* TEMP FIX FORMS */
.form-item label:not(.option),
fieldset.form-composite > legend {
  font-family: stratos !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin-bottom: inherit !important;
}

/* TEMP FIX NO CLICK */
.noClick .node--company--search-teaser .read-more {
  display: none;
}

/* HIDE TARGET GROUP */
.field-target_group {
  display: none;
}

/* TEMP FIX ORGANISATION DETAIL */
@media (min-width: 1440px) {
  .body_main_site.page-node-type-organisation .page-wrapper .region-wrapper--content .container-max-xxl,
  .body_main_site.page-node-type-organisation .page-wrapper .region--breadcrumb .container-max-xxl {
    max-width: 80%;
  }
}
/* FIX IFRAME WIDTH */
iframe {
  max-width: 100% !important;
}

/* BLOCK IMAGE + TEXT GEMEENTE */
.body_main_site .comp--block-list-with-image-left-content-right .paddle-component--text-block {
  display: flex;
  flex-wrap: wrap;
}

.body_main_site .comp--block-list-with-image-left-content-right .image {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .body_main_site .comp--block-list-with-image-left-content-right .image {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.body_main_site .comp--block-list-with-image-left-content-right .image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.body_main_site .comp--block-list-with-image-left-content-right .paddle-component--body-section {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  background-color: white;
  padding: 0 5%;
}

@media (min-width: 768px) {
  .body_main_site .comp--block-list-with-image-left-content-right .paddle-component--body-section {
    flex: 0 0 55%;
    max-width: 55%;
  }
}
/* QUICKFIX LEERPLANEET HOME */
.logo-leerplaneet {
  margin-top: -60px;
}

/* QUICKFIX LEERPLANEET SIDEBAR */
.contact-deleerplaneet article.media {
  width: 24%;
  position: absolute;
  top: -40px;
  right: 40px;
}

/* QUICKFIX WIDTH DROPDOWN */
.select2-container {
  max-width: 300px;
}

/* QUICKFIX 404 */
.img-404 {
  margin: 0 !important;
  text-align: center;
}

.img-404 img {
  max-width: 80%;
}

/* QUICKLINKS */
.quicklinks-title {
  text-align: left;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 578px) {
  .quicklinks-title {
    display: none;
  }
}
/* QUICKFIX HUISSTIJL PAGINA */
.body_subsite.body--corporate-identity .block-yellow .paddle-component--text-block .paddle-component--body-section {
  background-color: var(--clr-yellow) !important;
}

/* QUICKFIX HUISSTIJL FORM */
.body--corporate-identity #webform_block form {
  margin: 0 auto;
}

body.body--corporate-identity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a {
  padding: 2px 10px;
}

body.body--corporate-identity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li > a::after {
  display: none !important;
}

body.body--corporate-identity #block-mainnavigation ul:not(.navbar-nav.menu--main) > li:nth-child(2) > a {
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* QUICKFIX BURGERPROFIEL */
.vlw .vlw__header {
  position: absolute !important;
}

/* QUICKFIX COOKIE */
.sliding-popup-bottom .eu-cookie-withdraw-tab {
  border-width: 0;
  border-radius: 0;
}

/* QUICKFIX HOME */
@media (min-width: 769px) {
  .block-small {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* QUICKIX COLOR INTRO */
.color-intro {
  font-size: 25px;
}

.body_main_site.theme--calmeyn-green .color-intro {
  color: var(--clr-green);
}

.body_main_site.theme--dune-yellow .color-intro {
  color: var(--clr-yellow);
}

.body_main_site.theme--factor-50-red .color-intro {
  color: var(--clr-red);
}

.body_main_site.theme--dew-blue .color-intro {
  color: var(--clr-blue);
}

.body_main_site.theme--purple .color-intro {
  color: var(--clr-purple);
}

/* BLOCKQUOTE */
.body_main_site blockquote {
  font-size: 25px;
  padding-left: 25px;
  border-left: 0;
}

body:not(.body_subsite.depanne_leeft) blockquote {
  border-left: 0 !important;
}

.body_main_site.theme--calmeyn-green blockquote {
  border-color: var(--clr-green);
}

.body_main_site.theme--dune-yellow blockquote {
  border-color: var(--clr-yellow);
}

.body_main_site.theme--factor-50-red blockquote {
  border-color: var(--clr-red);
}

.body_main_site.theme--dew-blue blockquote {
  border-color: var(--clr-blue);
}

.body_main_site.theme--purple blockquote {
  border-color: var(--clr-purple);
}

a.toegankelijkheid {
  height: 44px;
  width: auto;
  border: 0;
  transition: background-color 0.35s;
  margin-left: 10px;
  font-size: 0;
  width: 44px;
  background-image: url("/sites/default/files/2024-05/rolstoel.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  background-color: var(--clr-blue);
}
@media (min-width: 992px) {
  a.toegankelijkheid {
    margin-left: 15px;
  }
}

/*
body:not(.body_subsite){
  .toegankelijkheid{
     @media (max-width:578px) {
        top:60px;
        position: absolute;
        right: 0;
  }
  } 
}
*/
/*
.theme--calmeyn-green {
  .toegankelijkheid{
  background-color: var(--clr-green);
}
}
.theme--dune-yellow {
  .toegankelijkheid{
  background-color: var(--clr-yellow);
}
}
.theme--factor-50-red{
  .toegankelijkheid{
  background-color: var(--clr-red);
}
}
.theme--purple {
  .toegankelijkheid{
  background-color: var(--clr-purple);
}
}
.theme--dew-blue {
  .toegankelijkheid{
  background-color: var(--clr-blue);
}
}
*/
/* Colored buttons */
.theme--calmeyn-green .comp--btn-simple-large .paddle-component--top-section.text a {
  border-color: var(--clr-green);
}

.theme--calmeyn-green .comp--btn-simple-large .paddle-component--top-section.text a:hover {
  border-color: var(--clr-green) !important;
  background-color: var(--clr-green);
}

.theme--dune-yellow .comp--btn-simple-large .paddle-component--top-section.text a {
  border-color: var(--clr-yellow);
}

.theme--dune-yellow .comp--btn-simple-large .paddle-component--top-section.text a:hover {
  border-color: var(--clr-yellow) !important;
  background-color: var(--clr-yellow);
}

.theme--factor-50-red .comp--btn-simple-large .paddle-component--top-section.text a {
  border-color: var(--clr-red);
}

.theme--factor-50-red .comp--btn-simple-large .paddle-component--top-section.text a:hover {
  border-color: var(--clr-red) !important;
  background-color: var(--clr-red);
}

.theme--dew-blue .comp--btn-simple-large .paddle-component--top-section.text a {
  border-color: var(--clr-blue);
}

.theme--dew-blue .comp--btn-simple-large .paddle-component--top-section.text a:hover {
  border-color: var(--clr-blue) !important;
  background-color: var(--clr-blue);
}

.theme--purple .comp--btn-simple-large .paddle-component--top-section.text a {
  border-color: var(--clr-purple);
}

.theme--purple .comp--btn-simple-large .paddle-component--top-section.text a:hover {
  border-color: var(--clr-purple) !important;
  background-color: var(--clr-purple);
}

/* QUICKFIX kleuren intoteksten gemeente */
.theme--dew-blue .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section {
  color: var(--clr-blue);
}

.theme--dune-yellow .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section {
  color: var(--clr-yellow);
}

.theme--purple .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section {
  color: var(--clr-purple);
}

.theme--factor-50-red .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section {
  color: var(--clr-red);
}

.theme--calmeyn-green .comp_toerisme_page_intro_color .paddle-component--text-block .paddle-component--body-section {
  color: var(--clr-green);
}

/* QUICKFIX hide 'empty' breadcrumbs on mobile & desktop */
.breadcrumb .breadcrumb-item:only-child {
  display: none;
}

/* QUICKFIX APP FORM */
#webform-submission-melding-app-node-2692-add-form .custom-file {
  display: none;
}

/* Fix header */
body:not(.body_subsite).user-logged-in .header-content {
  margin-top: 0;
}

body:not(.body_subsite) .header .paddle-search-form .search-toggle {
  border-color: var(--primary);
}

#logo_main_color {
  fill: var(--primary);
}

.instagram_gallery a {
  overflow: hidden;
}

.instagram_gallery a img {
  transition: 0.35s;
}

.instagram_gallery a:hover img {
  transform: scale(1.05);
}

.instagram_gallery a:after {
  position: absolute;
  top: 15px;
  right: 15px;
  content: "";
  background-image: url(/sites/default/files/2023-03/insta_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-left: 0;
  background-color: transparent;
  box-sizing: border-box;
  z-index: 333;
}

.instagram_gallery a.insta-video:before {
  position: absolute;
  top: 39%;
  right: 39%;
  content: "";
  background-image: url(/sites/default/files/2023-03/play_button_off.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  height: 45px;
  margin-left: 0;
  background-color: transparent;
  box-sizing: border-box;
  z-index: 333;
  opacity: 0.8;
}

.instagram_gallery a.insta-video:after {
  background-image: url(/sites/default/files/2023-03/video_icon.svg);
  z-index: 333;
}

.instagram_gallery a:hover:before {
  opacity: 1;
}

.instagram_gallery a:hover:after {
  opacity: 0.5;
}

.insta-video img {
  display: none;
}

.instagram_gallery video {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .instagram_feed .instagram_new {
    width: 100%;
    float: none;
  }
}
/*****  zomer vol muziek ******/
.node-3251 .region--content .paddle-components-image-block-wrapper {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

/* EVENEMENTENLOKET - MATERIAALLIJST */
@media (min-width: 600px) {
  .materiaallijst {
    display: block;
    clear: both;
    float: left;
    width: 100%;
  }
  .materiaallijst .js-form-item {
    display: block;
    clear: both;
    float: left;
    width: 100%;
    margin: 0;
    padding: 10px 18px;
  }
  .materiaallijst .js-form-item:nth-child(odd) {
    background: #eee;
    border-bottom: 1px solid #ddd;
  }
  .materiaallijst .js-form-item:nth-child(even) {
    background: #ddd;
    border-bottom: 1px solid #ccc;
  }
  .materiaallijst .js-form-item label {
    float: left;
    margin-bottom: 0 !important;
  }
  .materiaallijst .js-form-item input {
    float: right;
    width: 30%;
    margin-top: 4px;
  }
  .materiaallijst .js-form-item small {
    float: left;
    clear: left;
    margin-top: 0;
  }
  .materiaallijst .js-form-item small p {
    margin: 0;
  }
  .materiaallijst .js-form-item .invalid-feedback {
    float: right;
    text-align: right;
    margin-top: 16px;
  }
}
.graybox {
  background-color: #eeeeee;
  padding: 18px 24px;
}

.graybox p:last-child {
  margin-bottom: 0;
}

.webform-progress-bar {
  border: 1px solid var(--clr-green);
  margin-bottom: 2rem;
  display: inline-block;
}

li.webform-progress-bar__page > b:after {
  display: none;
}

li.webform-progress-bar__page > b:before {
  content: "\f054";
  font-size: 11px;
  padding-left: 20px;
  color: var(--main-text-color);
  opacity: 1;
  margin-top: 4px;
  font-family: "Font Awesome 6 Free";
  padding-right: 5px;
  position: relative !important;
  left: -40px;
  border: 0;
  font-weight: 900;
}

.webform-progress-bar li {
  width: auto !important;
}

.webform-progress-bar li.webform-progress-bar__page:first-child span,
.webform-progress-bar li.webform-progress-bar__page:last-child span {
  border-left: 0;
}

.webform-progress-bar__page--current {
  color: var(--primary);
}

.webform-submission-aanvraag-materiaal-en-zaalverhuu-form .form-actions input.form-submit {
  text-decoration: none;
  font-size: 22px !important;
  font-family: var(--second-font-family);
  text-transform: uppercase;
  font-weight: 400 !important;
  color: var(--main-text-color) !important;
  display: inline-block;
  border: 2px solid var(--clr-green) !important;
  text-align: center;
  padding: 0px 15px !important;
  position: relative;
  transition: all 0.35s ease-in-out;
  margin-top: 20px;
}

.webform-submission-aanvraag-materiaal-en-zaalverhuu-form .form-actions input.form-submit:hover {
  background-color: var(--main-text-color);
  color: white !important;
  border-color: var(--main-text-color) !important;
}

li.webform-progress-bar__page--done > b {
  background-color: #fff;
  color: var(--primary);
}

.webform-submission-form .form-check-label.option.webform-required {
  position: relative;
  top: 4px;
}
.webform-submission-form .form-check-label.option.webform-required .fa-asterisk {
  display: none;
}

/* QUICKFIX IMAGES COMPANY */
/*.page-node-type-company .node--company--full .field--pictures .items {
  flex-wrap: nowrap;
}
  .page-node-type-company .node--company--full .field--pictures .items img {
    height: 420px;
    width: auto;
    max-width: none;
  }*/
.page-node-type-company .node--company--full .field--pictures .items img {
  max-width: 90;
  margin: 0 0 1rem 0;
}

@media (min-width: 600px) {
  .page-node-type-company .node--company--full .field--pictures .items {
    display: block;
    clear: both;
  }
  .page-node-type-company .node--company--full .field--pictures .items img {
    float: left;
    max-width: 48%;
    margin: 0 1rem 1rem 0;
  }
}
/* QUICKFIX DATERANGE TOP ROW */
.page-node-type-search-page .js-form-wrapper.form-group {
  float: left;
  width: auto;
}

@media (max-width: 768px) {
  .page-node-type-search-page .js-form-wrapper.form-group {
    float: none;
    width: 100%;
  }
}
.page-node-type-search-page .js-form-item-mesh-terms-name {
  display: none;
}

@media (min-width: 768px) {
  .page-node-type-search-page #edit-actions {
    float: left;
    display: block;
    width: 100%;
    align-self: flex-start;
    padding-top: 40px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.page-node-type-company .node--company--full .block-facet.field-location {
  margin: 0;
  border: none;
}

.page-node-type-search-page .js-form-wrapper.form-group fieldset {
  background-color: #fff;
}

.page-node-type-search-page .js-form-wrapper.form-group fieldset .fieldset-wrapper {
  border-width: 1px !important;
  border-style: solid;
  border-color: #67797d;
}

.page-node-type-search-page .js-form-wrapper.form-group fieldset legend {
  display: none;
}

.page-node-type-search-page .js-form-wrapper.form-group fieldset .js-form-item {
  float: left;
  margin-right: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-node-type-search-page .js-form-wrapper.form-group fieldset .js-form-item {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }
}
.page-node-type-search-page .js-form-wrapper.form-group fieldset .fieldset-wrapper {
  border: 0;
}

.page-node-type-search-page fieldset:not(.form-composite) > .fieldset-wrapper {
  padding: 0;
}

.page-node-type-search-page label[for=edit-date-range-min] {
  /* color: #fff !important;*/
  margin-bottom: 15px !important;
} /*
.page-node-type-search-page label[for=edit-date-range-min]::before {
  content: "Van";
  color: #000 !important;
}*/
.page-node-type-search-page label[for=edit-date-range-max] {
  color: #fff !important;
  margin-bottom: 15px !important;
}

html[lang=nl-be] .page-node-type-search-page label[for=edit-date-range-max]::before {
  content: "Tot";
  color: #000 !important;
}

html[lang=en] .page-node-type-search-page label[for=edit-date-range-max]::before {
  content: "Until";
  color: #000 !important;
}

html[lang=de] .page-node-type-search-page label[for=edit-date-range-max]::before {
  content: "Bis";
  color: #000 !important;
}

html[lang=fr] .page-node-type-search-page label[for=edit-date-range-max]::before {
  content: "Jusqu'à";
  color: #000 !important;
}

/* QUICKFIX KALENDER */
.page-node-type-search-page .form-item-sort-by,
.page-node-type-search-page .form-item-sort-order {
  display: none;
}

.page-node-type-search-page .view-search .node--activity--search-teaser .field--date-time {
  display: block !important;
}

.page-node-type-search-page .view-search .node--activity--search-teaser .field--type--text-with-summary {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-node-type-search-page .view-search .node--activity--search-teaser .read-more span {
  display: none;
}

.insta-video-wr span.extlink {
  display: none !important;
}

.views-exposed-form #edit-actions a #edit-reset {
  pointer-events: none;
}

.path-webform input.btn.btn-primary.button.js-form-submit.form-submit {
  color: var(--main-text-color) !important;
  border-color: var(--main-text-color) !important;
  padding: 2px 20px 2px 20px;
  font-size: 1.5rem;
  font-weight: normal;
}
.path-webform input.btn.btn-primary.button.js-form-submit.form-submit:hover {
  background-color: var(--main-text-color) !important;
  color: #ffffff !important;
}

/* QUICKFIX PRIVACYLABLE FORM */
.privacydisclaimer {
  font-size: 0.9rem;
}

/* QUICKFIX BBWG */
.bbwg {
  position: absolute;
  top: 60px;
  right: -4px;
  margin-right: 0;
  display: block;
  width: 68px;
  margin-right: 0;
}

@media (min-width: 440px) {
  .bbwg {
    position: relative;
    top: auto;
    right: auto;
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  .bbwg {
    margin-right: 15px;
  }
}
/* QUICKFIX WORKFLOW */
.field--name-assignee,
.form-item-webform-workflow-list {
  background: #ddd;
  padding: 2rem;
  border: 2px solid var(--clr-green);
}

.page--without-popup #boxes {
  display: none !important;
}

.paddle-component--top-section.text:hover .top-section-extra-icon .img-fluid,
.paddle-component--top-section.image:hover .top-section-extra-image .img-fluid {
  position: absolute;
  top: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .bbwg {
    display: none !important;
  }
}
/* SOCIAL SHARING */
#social_sharing_block h2 {
  font-size: 20px;
  color: var(--main-text-color);
  margin-bottom: 0;
}

#social_sharing_block .social-media-sharing {
  margin-top: 1rem;
}

#social_sharing_block .social-media-sharing li {
  padding: 0;
}

#social_sharing_block .social-media-sharing li:before {
  display: none;
  width: 0;
}

/***  GOOGLE TRANSLATE BLOCK ****/
.google-translate-block {
  border-radius: 5px;
  padding: 1.5rem 3rem;
  color: #000;
  border: 0;
  margin-bottom: 2rem;
}
.google-translate-block .fa-external-link-alt::before {
  color: #fff;
}
.google-translate-block .alert-success {
  color: #000;
}
.google-translate-block div {
  background-image: url(/sites/default/files/2024-02/i-black.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  position: relative;
  padding-left: 40px;
  color: #000;
}
.google-translate-block a {
  color: #fff !important;
  position: relative;
}
.google-translate-block a::after {
  content: "";
  background-image: url(/sites/default/files/2024-02/white_arrow.svg);
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
  width: 30px;
  height: 18px;
  top: 3px;
  left: 10px;
  position: relative;
}

.theme--dew-blue .google-translate-block {
  background-color: var(--clr-blue) !important;
}

.theme--dune-yellow .google-translate-block {
  background-color: var(--clr-yellow) !important;
}

.theme--purple .google-translate-block {
  background-color: var(--clr-purple) !important;
}

.theme--factor-50-red .google-translate-block {
  background-color: var(--clr-red) !important;
}

.theme--calmeyn-green .google-translate-block {
  background-color: var(--clr-green) !important;
}

.body_subsite .google-translate-block {
  display: none !important;
}

body:not(.body_subsite) .header #block-language-dropdown {
  position: relative;
  top: 0;
  right: auto;
}
body:not(.body_subsite) .header #block-language-dropdown .dropbutton-wrapper {
  padding: 0;
  height: 44px;
  width: auto;
  border: 2px solid var(--primary);
  transition: background-color 0.35s;
  margin-left: 15px;
}
@media (max-width: 991px) {
  body:not(.body_subsite) .header #block-language-dropdown .dropbutton-wrapper {
    margin-left: 10px;
  }
}

.header #block-language-dropdown .dropdown-language-item {
  background-color: transparent;
}

body:not(.body_subsite) .header #block-language-dropdown .dropdown-language-item {
  top: 0;
  width: auto;
  position: relative;
  padding-top: 5px;
}
body:not(.body_subsite) .header #block-language-dropdown .dropdown-language-item .dropbutton-toggle {
  top: 3px;
}

.body_landingpage_level2 .header #block-language-dropdown .dropbutton-arrow {
  border-left-color: #000 !important;
  border-top-color: #000 !important;
}
.body_landingpage_level2 .header #block-language-dropdown .dropdown-language-item li a,
.body_landingpage_level2 .header #block-language-dropdown .dropdown-language-item li span {
  color: #000 !important;
}

.body_landingpage_level1 .header #block-language-dropdown .dropbutton-arrow,
.body_homepage .header #block-language-dropdown .dropbutton-arrow {
  border-left-color: #fff !important;
  border-top-color: #fff !important;
}
.body_landingpage_level1 .header #block-language-dropdown .dropdown-language-item li a,
.body_landingpage_level1 .header #block-language-dropdown .dropdown-language-item li span,
.body_homepage .header #block-language-dropdown .dropdown-language-item li a,
.body_homepage .header #block-language-dropdown .dropdown-language-item li span {
  color: #fff !important;
}

.body_toerisme_homepage #block-ocelot-paddle-page-title {
  display: none;
}

/* TEMP HIDE LANGUAGE SWITCH GEMEENTE */
/*
.body_main_site #block-language-dropdown {
  display: none;
}

.user-logged-in.body_main_site #block-language-dropdown {
  display: block !important;
} 
*/
.body_homepage.body_main_site #block-ocelot-paddle-page-title {
  display: none;
}

/*
@media (min-width: 768px) {
  .page-node-type-activity .header {
      height: auto!important;
  }
}*/
.body_homepage .header .paddle-search-form form input.form-text {
  background-color: #fff !important;
  box-shadow: none;
}

/*
  .body_subsite.theme--factor-50-red .header #block-language-dropdown .dropbutton-arrow, 
  .body_subsite.theme--factor-50-red .header #block-language-dropdown .open .dropbutton-arrow,
  .body_subsite.theme--purple .header #block-language-dropdown .dropbutton-arrow, 
  .body_subsite.theme--purple .header #block-language-dropdown .open .dropbutton-arrow,
.body_subsite.theme--dune-yellow .header #block-language-dropdown .dropbutton-arrow, 
.body_subsite.theme--dune-yellow .header #block-language-dropdown .open .dropbutton-arrow,
.body_subsite.theme--calmeyn-green .header #block-language-dropdown .dropbutton-arrow, 
.body_subsite.theme--calmeyn-green .header #block-language-dropdown .open .dropbutton-arrow,
.body_subsite.theme--dew-blue .header #block-language-dropdown .dropbutton-arrow, 
.body_subsite.theme--dew-blue .header #block-language-dropdown .open .dropbutton-arrow{
  border-left: 1px solid var(--clr-red);
  border-top: 1px solid var(--clr-red) !important;
}
*/
/*** fixes pop up overlay ****/
html {
  overflow-y: scroll !important;
}

body.body_subsite .comp--visit-de-panne-list-block-rectangle {
  margin-left: -0.3125rem;
  margin-right: -0.3125rem;
  margin-top: 3.75rem;
}
@media (max-width: 1280px) {
  body.body_subsite .comp--visit-de-panne-list-block-rectangle {
    max-width: 48rem;
    width: 100%;
    margin: 0 auto;
  }
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul {
  display: flex;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  padding-bottom: 0.625rem;
  margin-bottom: 0;
  cursor: pointer;
}
@media (max-width: 1280px) {
  body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li {
    flex: 0 0 50%;
  }
}
@media (max-width: 600px) {
  body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li {
    flex: 0 0 100%;
  }
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li::before {
  content: none;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.35s;
  background-color: rgba(22, 21, 44, 0.2);
  z-index: 0;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-bottom: 0;
  position: absolute;
  z-index: 1;
  background-image: none !important;
  height: 100%;
  padding-top: 32%;
}
@media (max-width: 1600px) {
  body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 {
    padding-top: 26.4%;
  }
}
@media (max-width: 1280px) {
  body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 {
    padding-top: 19%;
  }
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 a {
  color: #fff;
  display: block;
  line-height: 1;
  text-decoration: none;
  font-family: var(--second-font-family);
  font-weight: 700;
  text-transform: uppercase;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  transform: translateY(0);
  transition: transform 0.25s ease-out;
  background-position-y: bottom;
  padding-bottom: 1.375rem;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 .field--date-time {
  display: none;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 .field--date-time .field-with-icon div.items .item {
  font-family: var(--main-font-family);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  text-transform: none;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 .field--body {
  margin-bottom: 0;
  margin-top: 30px;
  opacity: 0;
  transition: 0.35s;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 .field--body .items .item {
  font-family: var(--main-font-family);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  text-transform: none;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 .field--body .items .item p {
  text-align: left;
}
@media (min-width: 1280px) and (max-width: 1720px) {
  body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 .field--body .items .item p {
    display: -webkit-box;
    -webkit-line-clamp: 7; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 .field--body .items .item p strong {
  font-family: var(--main-font-family);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  text-transform: none;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 p.read-more {
  margin-bottom: 0;
  position: absolute;
  bottom: 1.9375rem;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 p.read-more a {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--second-font-family);
  font-weight: 400;
  font-size: 22px;
  vertical-align: top;
  transition: 0.35s;
  color: white;
  opacity: 0;
  margin-top: 3.75rem;
  transform: unset;
  background-image: none;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 p.read-more a::after {
  content: "";
  background-image: url(/sites/default/files/2021-06/arrow_white.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  height: 13px;
  width: 21px;
  transition: 0.35s;
  position: relative;
  right: 0;
  vertical-align: top;
  margin-top: 5px;
  margin-left: 10px;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article > div:not(.contextual) .field--featured-image {
  margin-bottom: 0 !important;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article > div:not(.contextual) .field--featured-image .items .item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article > div:not(.contextual) .field--featured-image .items .item a article picture {
  height: 100%;
  display: block;
  aspect-ratio: 2/3;
  width: 100%;
  overflow: hidden;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article > div:not(.contextual) .field--featured-image .items .item a article picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article::before {
  transition: 0.35s;
  background-color: rgba(var(--clr-red-700-rgb), 0.8);
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article h2 a {
  color: #fff;
  transform: translateY(-1rem);
  transition: transform 0.25s ease-out;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article h2 .field--date-time {
  display: none;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article h2 .field--body {
  opacity: 1;
  transition: 0.35s;
}
body.body_subsite .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article h2 p.read-more a {
  transition: 0.35s;
  opacity: 1;
}
body.body_subsite.theme--factor-50-red .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 a {
  background: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__red.svg) no-repeat;
  background-position-y: bottom;
}
body.body_subsite.theme--factor-50-red .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article::before {
  transition: 0.35s;
  background-color: rgba(var(--clr-red-700-rgb), 0.8);
}
body.body_subsite.theme--dune-yellow .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 a {
  background: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__yellow.svg) no-repeat;
  background-position-y: bottom;
}
body.body_subsite.theme--dune-yellow .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article::before {
  transition: 0.35s;
  background-color: rgba(var(--clr-yellow-700-rgb), 0.8);
}
body.body_subsite.theme--purple .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 a {
  background: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__purple.svg) no-repeat;
  background-position-y: bottom;
}
body.body_subsite.theme--purple .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article::before {
  transition: 0.35s;
  background-color: rgba(var(--clr-purple-700-rgb), 0.8);
}
body.body_subsite.theme--calmeyn-green .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 a {
  background: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__green.svg) no-repeat;
  background-position-y: bottom;
}
body.body_subsite.theme--calmeyn-green .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article::before {
  transition: 0.35s;
  background-color: rgba(var(--clr-green-700-rgb), 0.8);
}
body.body_subsite.theme--dew-blue .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li article h2 a {
  background: url(/sites/default/files/2021-07/tour--wave-thin_helmduin__blue.svg) no-repeat;
  background-position-y: bottom;
}
body.body_subsite.theme--dew-blue .comp--visit-de-panne-list-block-rectangle .paddle-component--list-block .paddle-component--body-section ul li:hover article::before {
  transition: 0.35s;
  background-color: rgba(var(--clr-blue-700-rgb), 0.8);
}/*# sourceMappingURL=panne.css.map */