@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
.flex-text-columns {
  margin: 100px auto;
}
.flex-text-columns .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.flex-text-columns .column-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 50px;
}
.flex-text-columns .column-blocks .column-block.image-block {
  display: flex;
  align-items: center;
  position: relative;
  height: auto;
  min-height: 100%;
}
.flex-text-columns .column-blocks .column-block.image-block img {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.flex-text-columns .column-blocks .column-block.image-block svg {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flex-text-columns .column-blocks .column-block.gallery-block .splide {
  width: 100%;
  display: flex;
  height: fit-content;
}
.flex-text-columns .column-blocks .column-block.gallery-block .splide .splide__track .splide__list .splide__slide {
  display: flex;
  height: auto;
  align-items: center;
  width: 100%;
}
.flex-text-columns .column-blocks .column-block.gallery-block .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: auto;
  object-position: center;
  object-fit: contain;
}
.flex-text-columns .column-blocks .column-block.text-block {
  overflow: hidden;
}
.flex-text-columns .column-blocks .column-block.text-block table {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.flex-text-columns .column-blocks .column-block.text-block table tbody tr td {
  border: 1px solid #1F2532;
  padding: 0.5rem 1.5rem;
}
.flex-text-columns .column-blocks .column-block.text-block ul {
  list-style: none;
  padding-left: 0;
}
.flex-text-columns .column-blocks .column-block.text-block ul li {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.flex-text-columns .column-blocks .column-block.text-block ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  padding-top: 0.25rem;
}
.flex-text-columns .column-blocks .column-block.text-block h2 {
  font-size: 33px;
  margin-bottom: 1rem;
}
.flex-text-columns .column-blocks .column-block.text-block h3 {
  margin-bottom: 1rem;
}
.flex-text-columns .column-blocks .column-block:empty {
  display: none;
}
.flex-text-columns .column-blocks:has(.column-block:empty) {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-text-columns.highlighted {
  background-color: #F6F7F0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.flex-text-columns.highlighted .column-blocks {
  display: flex;
  flex-direction: row;
  gap: 130px;
}
.flex-text-columns.highlighted .column-blocks .column-block.text-block {
  flex: 1;
}
.flex-text-columns.highlighted .column-blocks .column-block.image-block, .flex-text-columns.highlighted .column-blocks .column-block.gallery-block {
  display: flex;
  width: 28%;
}
@media (max-width: 767px) {
  .flex-text-columns {
    margin: 50px auto;
  }
  .flex-text-columns .column-blocks {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 30px;
  }
  .flex-text-columns .column-blocks .column-block.image-block {
    width: 100%;
    height: 250px;
  }
  .flex-text-columns .column-blocks .column-block.gallery-block {
    width: 100%;
  }
  .flex-text-columns.highlighted .column-blocks {
    flex-direction: column;
    gap: 50px;
  }
  .flex-text-columns.highlighted .column-blocks .column-block.image-block {
    width: 100%;
    height: 250px;
  }
  .flex-text-columns.highlighted .column-blocks .column-block.gallery-block {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .flex-text-columns .column-blocks .column-block.text-block table tbody tr td {
    padding: 4px;
  }
}

.flex-cta {
  margin: 100px auto;
}
.flex-cta .cta-block {
  max-width: 800px;
  margin: auto;
}
.flex-cta .cta-block .cta-content {
  background-color: #52AE32;
  padding: 40px;
  display: flex;
  flex-direction: row;
  height: fit-content;
  gap: 35px;
}
.flex-cta .cta-block .cta-content .cta__image {
  width: 75px;
  min-width: 75px;
  height: 150px;
  display: flex;
  position: relative;
  margin: auto;
}
.flex-cta .cta-block .cta-content .cta__image img {
  border-radius: 50%;
  width: 200%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.flex-cta .cta-block .cta-content .cta__text {
  color: white;
}
.flex-cta .cta-block .cta-content .cta__text a:not(.btn) {
  color: white;
}
.flex-cta .cta-block .cta-content .cta__text .btn {
  background: #fff !important;
  color: #52AE32;
  margin-top: 10px;
}
.flex-cta .cta-block .cta-content:has(.cta__image) {
  padding-left: 0;
  margin-left: 75px;
}
@media (max-width: 575px) {
  .flex-cta .cta-block .cta-content {
    flex-direction: column;
  }
  .flex-cta .cta-block .cta-content:has(.cta__image) {
    padding-left: 40px;
    padding-top: 0;
    margin-left: 0;
    margin-top: 75px;
  }
  .flex-cta .cta-block .cta-content:has(.cta__image) .cta__image {
    width: 150px;
    min-width: 150px;
    height: 75px;
  }
  .flex-cta .cta-block .cta-content:has(.cta__image) .cta__image img {
    width: 100%;
    height: 200%;
    top: auto;
    bottom: 0;
  }
  .flex-cta .cta-block .cta-content .cta__text {
    text-align: center;
  }
}

.flex-chalet-slider {
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.flex-chalet-slider .slider-title {
  text-align: center;
}
.flex-chalet-slider .slider-btn {
  width: fit-content;
  margin: auto;
}

.flex-gallery {
  --gallery-gap: 15px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  column-gap: var(--gallery-gap);
  row-gap: 50px;
}
.flex-gallery .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--gallery-gap);
  height: auto;
  width: 100%;
}
.flex-gallery .section-content .content-text {
  margin-bottom: auto;
}
.flex-gallery .section-content .gallery-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gallery-gap);
}
.flex-gallery .section-content .gallery-images .gallery-image img {
  display: flex;
  width: 100%;
  height: auto;
}
.flex-gallery .section-content .gallery-images .gallery-image:nth-child(n+3) {
  display: none;
}
.flex-gallery .section-content .gallery-thumbnail {
  height: calc(50% - 15px);
  width: 100%;
  position: relative;
}
.flex-gallery .section-content .gallery-thumbnail img {
  width: 100%;
  height: 100%;
  display: flex;
  object-position: center;
  object-fit: cover;
}
.flex-gallery .section-content .gallery-thumbnail:after {
  content: var(--leftover-images);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 7px 10px;
  width: fit-content;
  height: fit-content;
  background-color: #52AE32;
  color: white;
  z-index: 1;
}
@media (min-width: 768px) {
  .flex-gallery {
    --gallery-gap: 30px;
  }
}
@media (min-width: 576px) {
  .flex-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flex-gallery .section-content:last-child {
    flex-direction: column-reverse;
  }
  .flex-gallery .section-content:last-child .content-text {
    margin-bottom: 0;
    margin-top: auto;
  }
  .flex-gallery .section-content:last-child .gallery-thumbnail:after {
    content: none;
  }
  .flex-gallery .section-content:last-child .gallery-images .gallery-image:nth-child(2) {
    position: relative;
  }
  .flex-gallery .section-content:last-child .gallery-images .gallery-image:nth-child(2):after {
    content: var(--leftover-images);
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 7px 10px;
    width: fit-content;
    height: fit-content;
    background-color: #52AE32;
    color: white;
    z-index: 1;
  }
}

.gallery .single-gallery-item {
  display: flex;
}
.gallery .single-gallery-item .event-images, .gallery .single-gallery-item .galleryImage, .gallery .single-gallery-item .galleryCounter {
  display: flex;
  max-height: 100%;
  max-width: 100%;
}

.flex-chalet-grid {
  margin: 100px auto;
}
.flex-chalet-grid .grid-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.flex-chalet-grid .grid-block .grid-title {
  text-align: center;
}
.flex-chalet-grid .grid-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}
.flex-chalet-grid .grid-items .grid-item {
  height: fit-content;
}
.flex-chalet-grid .grid-items .grid-item .archiveImage img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: flex;
}
.flex-chalet-grid.background {
  background-color: #F6F7F0;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 575px) {
  .flex-chalet-grid .grid-items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.flex-event {
  margin: 100px auto;
}
.flex-event .singleEventBlock {
  margin: 0 !important;
}
@media (max-width: 575px) {
  .flex-event .singleEventBlock {
    height: auto;
    line-height: 40px;
  }
  .flex-event .singleEventBlock .btn {
    position: relative;
    left: 0;
    margin-top: 30px;
  }
  .flex-event .singleEventBlock .eventTitle {
    position: relative;
    margin-bottom: 15px;
    top: 0;
    left: 0;
    height: 70px;
  }
}

.BannerComponent .banner-banner {
  background-color: rgb(192, 23, 131);
  color: white;
  display: flex;
  gap: 2rem;
}
.BannerComponent .banner-banner .banner-title {
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  width: 25%;
}
.BannerComponent .banner-banner .banner-title h3 {
  text-transform: uppercase;
  color: white;
  margin: 0;
}
.BannerComponent .banner-banner .banner-info {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}
.BannerComponent .banner-banner .banner-info--content p {
  margin: 0;
}

.btn-banner {
  background-color: rgb(247, 247, 247);
  border: 2px solid rgb(247, 247, 247);
  color: rgb(192, 23, 131);
  cursor: pointer;
  display: flex;
  font-weight: 600;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  width: fit-content;
}
.btn-banner:hover {
  text-decoration: none !important;
  color: rgb(192, 23, 131);
  background-color: rgba(255, 255, 255, 0.5019607843);
}

.archive-banner-component {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .BannerComponent .banner-banner {
    flex-direction: column;
    gap: 0;
  }
  .BannerComponent .banner-banner .banner-title {
    width: 100%;
  }
  .BannerComponent .banner-banner .banner-info {
    flex-direction: column;
    padding: 25px;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  .BannerComponent .banner-banner .banner-info p {
    text-align: left;
  }
  .BannerComponent .banner-banner .banner-info--content {
    text-align: center;
  }
}
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.opening-hours .anchor {
  position: absolute;
  top: -20vh;
  left: 0;
  height: 0;
  width: 0;
}
.opening-hours > h3, .opening-hours h4 {
  margin-bottom: 0 !important;
}
.opening-hours table {
  width: fit-content;
}
.opening-hours table tr td {
  padding: 0.1rem 0;
}
.opening-hours table tr td:first-child {
  font-weight: 600;
  padding-right: 1rem;
}

.gform_wrapper form .gform-footer {
  position: relative;
  width: fit-content;
}
.gform_wrapper form .gform-footer > input {
  margin-bottom: 0 !important;
}
.gform_wrapper form .gform-footer > i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
  display: flex;
  line-height: 1;
  width: fit-content;
  color: white;
  font-size: 14px;
  transition: all 0.15s ease-in-out;
}
.gform_wrapper form .gform-footer SPAN:after {
  font-weight: 600;
  content: "\f054";
  margin-left: 15px;
  margin-right: 5px;
  font-size: 13px;
  font-family: "Font Awesome 5 Pro";
}
.gform_wrapper ul li input {
  border: 1px solid #E0E0E0;
  margin-top: 0 !important;
}
.gform_wrapper ul li textarea {
  border: 1px solid #E0E0E0;
}
.gform_wrapper ul li .ginput_container_consent {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.gform_wrapper ul li .ginput_container_consent input {
  height: 28px;
}
.gform_wrapper .gform_button {
  background: #fff;
  color: #52AE32;
  -webkit-appearance: none;
  font-size: 14px;
  padding: 7.5px 15px;
  padding-right: 30px;
  border-radius: 0 !important;
  border: none;
}
.gform_wrapper .gform_button:focus {
  outline: 0;
  border: none;
}
.gform_wrapper .gform_button:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.gform_wrapper .gform_button:hover ~ i {
  margin-left: -32px;
  margin-right: -3px;
}
.gform_wrapper#gform_wrapper_14 ul li label.gfield_label {
  display: block !important;
  font-weight: 500;
}

.magazine-aanvragen .gform_wrapper ul li input {
  background: #F6F7F0;
}
.magazine-aanvragen .gform_wrapper ul li select {
  border: none;
  height: 37px;
  background: #F6F7F0;
}
.magazine-aanvragen .gform_wrapper ul li.labelBlock label.gfield_label {
  display: block !important;
}
.magazine-aanvragen .gform_wrapper ul li textarea {
  background: #F6F7F0;
}
.magazine-aanvragen .gform_wrapper .gform_button {
  background: #52AE32;
  color: #fff;
}

body.single-specials .special-hero {
  overflow: hidden;
  margin-top: -55px;
  margin-bottom: 100px;
  padding-top: 25px;
}
body.single-specials .special-hero .special-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.single-specials .special-hero .special-content .content-text {
  padding: 30px;
  position: relative;
  height: fit-content;
  border: 1px solid #CCC;
  background: #FFF;
}
body.single-specials .special-hero .special-content .content-info .content-usps {
  --label-height: 185px;
  height: fit-content;
  background: #52AE32;
  color: #fff;
  position: relative;
  margin-bottom: calc(0.5 * var(--label-height));
  padding: 0 25px calc(0.5 * var(--label-height));
}
body.single-specials .special-hero .special-content .content-info .content-usps ul li:before {
  color: white;
}
body.single-specials .special-hero .special-content .content-info .content-usps:before {
  width: 100%;
  height: 25px;
  background: #52AE32;
  position: absolute;
  bottom: 100%;
  left: 0;
  content: "";
}
body.single-specials .special-hero .special-content .content-info .content-usps .energy-label {
  display: flex;
  position: absolute;
  align-items: center;
  left: 100px;
  bottom: calc(-0.5 * var(--label-height));
  z-index: 2;
}
body.single-specials .special-hero .special-content .content-info .content-usps .energy-label .label-wrapper {
  height: var(--label-height);
  width: var(--label-height);
  min-width: var(--label-height);
  padding: 5px;
  border-radius: 50%;
  background: #F6F7F0;
}
body.single-specials .special-hero .special-content .content-info .content-usps .energy-label .label-wrapper svg {
  height: 100%;
  width: 100%;
}
body.single-specials .special-hero .special-content .content-info .content-usps .energy-label .label-text {
  background: #F6F7F0;
  color: #52AE32;
  height: fit-content;
  position: relative;
  width: fit-content;
  min-width: max-content;
  padding: 35px;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}
body.single-specials .special-hero .special-content .content-info .content-usps .energy-label .label-text:before {
  width: 100vw;
  height: 100%;
  background: #F6F7F0;
  position: absolute;
  top: 0;
  left: calc(-0.5 * var(--label-height));
  content: "";
  z-index: -1;
}
body.single-specials .special-hero .special-content .content-info .content-usps:not(:has(.energy-label)) {
  padding-bottom: 25px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  body.single-specials .special-hero .special-content .content-info .content-usps {
    --label-height: 100px;
  }
  body.single-specials .special-hero .special-content .content-info .content-usps .energy-label {
    left: 10%;
  }
  body.single-specials .special-hero .special-content .content-info .content-usps .energy-label .label-text {
    padding: 10px 5px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  body.single-specials .special-hero .special-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  body.single-specials .special-hero .special-content .content-info .content-usps {
    padding-top: 25px;
  }
  body.single-specials .special-hero .special-content .content-info .content-usps:before {
    content: none;
  }
}

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans";
  font-size: 15px;
  color: #1F2532;
  line-height: 28px;
  min-height: fit-content;
}

.mainFixed {
  margin-top: 79px;
}

:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

h1.smallTitle {
  font-size: 24px;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
h3.greenTitle {
  color: #52AE32;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: #52AE32;
}
a:hover {
  color: #52AE32;
  text-decoration: underline;
}

.anchor {
  display: flex;
  transform: translateY(-150px);
}

.TopTotaalVideoOver {
  margin-top: 30px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: -30px;
}

.TopTotaalVideo {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.TopTotaalVideo .TopTotaalVideoIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-fluid {
  width: 100%;
}

.vacature-rows {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vacature-rows .text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #E0E0E0;
}
.vacature-rows .text-columns .left, .vacature-rows .text-columns .right {
  padding: 30px;
}
.vacature-rows .text-columns .right {
  grid-row: span 2/span 2;
}
.vacature-rows .media-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.vacature-rows .media-columns .type-video {
  aspect-ratio: 16/9;
  align-self: end;
  display: flex;
}
.vacature-rows .media-columns .type-video iframe {
  width: 100%;
  height: 100%;
}
.vacature-rows .media-columns .type-maps .googleMaps {
  width: 100%;
  height: 100%;
  display: flex;
}
.vacature-rows .media-columns .type-maps .googleMaps > *, .vacature-rows .media-columns .type-maps .googleMaps .maps-iframe, .vacature-rows .media-columns .type-maps .googleMaps .maps-placeholder {
  width: 100%;
  flex: 1;
}
.vacature-rows .cta-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 10%;
}
.vacature-rows .cta-columns .left {
  margin: auto;
  height: fit-content;
}
.vacature-rows .cta-columns .right {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  height: fit-content;
  margin-bottom: auto;
  padding: 50px;
}
.vacature-rows .cta-columns .right .image-wrapper {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  max-width: 240px;
}
.vacature-rows .cta-columns .right .image-wrapper img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
}
.vacature-rows .cta-columns .right .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 0.7rem;
}
.vacature-rows .cta-columns .right .socials a i {
  font-size: 28px;
  transition: 0.2s color;
  line-height: 1;
}
.vacature-rows .cta-columns .right .socials a:hover i {
  color: #1F2532;
}
@media (max-width: 991px) {
  .vacature-rows .text-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .vacature-rows .text-columns .right {
    padding-top: 0;
    grid-row: span 1/span 1;
  }
  .vacature-rows .text-columns .left {
    padding-bottom: 0;
  }
  .vacature-rows .media-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .vacature-rows .media-columns .type-maps .googleMaps {
    aspect-ratio: 16/9;
  }
  .vacature-rows .cta-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .vacature-rows .cta-columns .right {
    order: 1;
  }
  .vacature-rows .cta-columns .right .image-wrapper {
    max-width: 300px;
  }
  .vacature-rows .cta-columns .left {
    order: 2;
  }
}

.grid-overview {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pum-theme-9428 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
  font-size: 43px !important;
  font-weight: 300 !important;
  box-shadow: none !important;
  padding: 8px 14px !important;
}

.pum-theme-9428, .pum-theme-default-theme {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.insideRow {
  margin-left: 0;
  margin-right: 0;
}

.main-page {
  margin-bottom: 100px;
}

.page-template-archive-evenementen .main-page {
  margin-bottom: 70px;
}

.main-page-background {
  margin-bottom: 0;
}

.background {
  background: #F6F7F0;
  padding: 100px 0;
}
.background.backgroundArchive {
  padding-bottom: 70px;
}

.backgroundSmall {
  background: #F6F7F0;
  padding-top: 100px;
}

.background-small {
  background: #F6F7F0;
  padding: 30px 0;
}
.background-small .breadcrumbs {
  position: relative;
  top: -40px;
}

.breadcrumbs {
  position: relative;
  top: -20px;
  font-size: 13px;
}
.breadcrumbs a:hover {
  color: #52AE32;
}

.magazine-popup {
  display: flex;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 2147483645;
  transition: all 0.2s;
  pointer-events: none;
}
.magazine-popup .opened {
  display: flex;
  transition: all 0.2s;
  transform: translateX(100%);
  max-width: 300px;
  background: white;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1450980392);
  border-radius: 10px 0 0 10px;
}
.magazine-popup .opened .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.magazine-popup .opened .content .popup-title {
  line-height: 1.1;
  text-align: center;
}
.magazine-popup .opened .content .should-close i {
  display: flex;
  position: absolute;
  bottom: 100%;
  right: 0;
  transform: translateX(0.5rem);
}
.magazine-popup .opened .content .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.magazine-popup .opened .content .img-wrapper img {
  height: 7rem;
  margin: auto;
}
.magazine-popup .opened .content .btn {
  margin: auto;
}
.magazine-popup .closed {
  cursor: pointer !important;
  pointer-events: all;
  position: fixed;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: flex-end;
  transform: translateX(0);
  transition: all 0.2s;
}
.magazine-popup .closed img {
  background: white;
  padding: 2px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 12px;
}
.magazine-popup.open .opened {
  transform: translateX(0);
  pointer-events: all;
}
.magazine-popup.open .closed {
  transform: translateX(100%);
}

.pageHeader {
  background-size: cover !important;
  height: 300px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.pageHeaderMaps {
  height: 350px;
}

.titleBlock {
  padding-bottom: 100px;
}
.titleBlock .greenBtn {
  font-size: 14px;
  color: #fff;
  padding: 10px 15px;
  background: #52AE32;
  display: inline-block;
  margin-top: 15px;
  position: relative;
}
.titleBlock .greenBtn:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-top: solid 10px #52AE32;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}

.checklist ul {
  list-style: none;
}
.checklist ul li {
  line-height: 40px;
}
.checklist ul li:before {
  font-weight: 600;
  content: "\f00c";
  color: #52AE32;
  margin-left: -30px;
  margin-right: 15px;
  font-family: "Font Awesome 5 Pro";
}
.checklist ul li.infomationBullet:before {
  content: "\f05a";
}

.margin-top {
  margin-top: 60px;
}

.margin-bottom {
  margin-bottom: 60px;
}

.padding-bottom {
  padding-bottom: 100px;
}

.header-logo-wrapper {
  height: 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.header-logo-wrapper a {
  display: flex;
  width: fit-content;
}
.header-logo-wrapper a .header-logo {
  margin-top: -6px;
  display: flex;
  width: 108px;
  z-index: 9999;
  top: 0;
}

header.stickyNav {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #E0E0E0;
  width: 100%;
}
header.stickyNav .container {
  padding: 0;
}
header.stickyNav .navbar-nav .nav-link {
  padding-right: 0.9rem;
}
header.top-bar {
  width: 100%;
  border-bottom: 1px solid #E0E0E0;
}
header.top-bar .top-nav {
  display: inline-block;
  text-align: right;
  width: 100%;
}
header.top-bar .top-nav .navbar {
  float: right;
  padding: 0 1rem;
}
header.top-bar .top-nav li {
  float: left;
}
header.top-bar .top-nav li a {
  font-size: 13px;
}
header.top-bar .top-nav li i {
  color: #52AE32;
}
header.top-bar .top-nav .navbar-left {
  float: left;
  position: relative;
  left: 145px;
}
header.top-bar .top-nav .navbar-left li a {
  font-size: 13px;
}
header.top-bar .top-nav .navbar-left li a:has(.post-count) {
  position: relative;
}
header.top-bar .top-nav .navbar-left li a:has(.post-count) .post-count {
  width: 14px;
  height: 14px;
  aspect-ratio: 1/1;
  display: inline-block;
  align-items: center;
  text-align: center;
  line-height: 1.08;
  border-radius: 999px;
  padding: 1px 1px;
  font-size: 12px;
  background-color: #52AE32;
  color: #fff;
  position: absolute;
  top: 0.6rem;
  right: -0.3rem;
}
header.top-bar .top-bar-menu {
  height: 40px;
}
header.notice-wrapper {
  border-bottom: 1px solid #E0E0E0;
}
header.notice-wrapper.type-text {
  background-color: #52AE32;
}
header.notice-wrapper.type-text .notice .notice-text {
  padding: 5px 1rem;
}
header.notice-wrapper.type-text .notice .notice-text-inner {
  color: #fff;
  width: 100%;
  text-align: center;
}
header.notice-wrapper.type-text .notice .notice-close {
  position: absolute;
  display: flex;
  cursor: pointer;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
header.notice-wrapper.type-text .notice .notice-close:after {
  font-weight: 500;
  color: #fff;
  content: "\f00d";
  font-size: 15px;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.15s ease-in-out;
}
header.notice-wrapper.type-text .notice .notice-close:hover:after {
  color: #000;
}
header.notice-wrapper.type-image .notice {
  padding: 0;
}
header.notice-wrapper.type-image .notice .notice-image {
  height: 57px;
}
header.notice-wrapper.type-image .notice .notice-image picture {
  display: flex;
  height: fit-content;
}
header.notice-wrapper.type-image .notice .notice-image img {
  width: 100%;
  object-fit: contain;
}
header .container {
  position: relative;
}
header .navbar-brand {
  width: 170px;
  display: flex;
  align-items: start;
  justify-content: center;
  z-index: 9999999;
  padding: 0 !important;
  height: 100%;
  max-height: 70px;
}
@media (max-width: 991px) {
  header .navbar-brand {
    width: 100px;
  }
}
header .notice-image-small {
  width: auto;
}
@media (max-width: 450px) {
  header .notice-image-small {
    width: 70px;
  }
}
header .notice-image-small picture {
  width: 100%;
  height: 100%;
  display: flex;
}
header .notice-image-small picture img {
  max-height: 70px;
  width: 100%;
}
header .notice-image-small > img {
  display: flex;
  max-height: 70px;
  width: 100%;
}
header .btn-search:focus {
  outline: none;
}
header .btn-search i {
  color: rgba(0, 0, 0, 0.5);
}
header .btn-search:hover i {
  color: #52AE32;
}
header .btn-navbar {
  position: absolute;
  right: 38px;
  background: #52AE32;
  color: #fff;
  padding: 0.5rem 1rem;
  transition: all 0.15s ease-in-out;
}
header .btn-navbar i {
  transition: all 0.15s ease-in-out;
}
header .btn-navbar:hover {
  text-decoration: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
header .btn-navbar:hover i {
  margin-left: 3px;
  margin-right: -3px;
}
header .phone-header-menu {
  margin-top: 50px;
}
header .phone-header-menu .navbar-left li:has(.post-count) a, header .phone-header-menu .navbar-left li:has(> a > .post-count) a, header .phone-header-menu .navbar-left li:has(> a > span > .post-count) a {
  width: fit-content;
  position: relative;
}
header .phone-header-menu .navbar-left li:has(.post-count) a .post-count, header .phone-header-menu .navbar-left li:has(> a > .post-count) a .post-count, header .phone-header-menu .navbar-left li:has(> a > span > .post-count) a .post-count {
  width: 14px;
  height: 14px;
  aspect-ratio: 1/1;
  display: inline-block;
  align-items: center;
  text-align: center;
  line-height: 1.08;
  border-radius: 999px;
  padding: 1px 1px;
  font-size: 12px;
  background-color: #52AE32;
  color: #fff;
  position: absolute;
  top: 0.6rem;
  right: -0.3rem;
}
header #menu-header-menu li.active a {
  color: #52AE32;
}
header #menu-header-menu li a:hover {
  color: #52AE32;
  outline: 2px 0 0 #52AE32;
}
header .btn-search {
  -webkit-appearance: none !important;
  border: none;
  position: relative;
  left: 30px;
  background: transparent;
}

#search .modal-dialog {
  max-width: 100%;
  height: 100%;
  margin: 0;
}
#search input[type=text] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #ffffff;
  background: transparent;
  font-size: 2.2em;
  font-weight: 800;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  left: 0;
  position: absolute;
}
#search input[type=text]::placeholder {
  color: white !important;
}
#search .btn-zoeken {
  top: 50%;
  left: 49%;
  margin-top: 61px;
  margin-left: -45px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  position: absolute;
}
#search .close {
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #a4c847;
  border-color: #a4c847;
  opacity: 1;
  padding: 0px 10px;
  font-size: 43px;
  font-weight: 300;
  border-radius: 0;
  width: auto;
  height: auto;
}

.fa-phone {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 0.25rem;
}

.btn.btn-primary {
  padding: 10px 15px;
  background: #52AE32;
  border: none;
  border-radius: 0;
}
.btn.btn-primary:after {
  font-weight: 600;
  content: "\f054";
  margin-left: 15px;
  font-size: 13px;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.15s ease-in-out;
}
.btn.btn-primary:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.btn.btn-primary:hover:after {
  margin-left: 18px;
  margin-right: -3px;
}
.btn.btn-primary.btn-green {
  background: #52AE32 !important;
}
.btn.btn-primary.btn-small {
  padding: 5px;
  font-size: 14px;
}
.btn.btn-secundairy {
  padding: 10px 35px;
  background: #52AE32;
  border: none;
  border-radius: 0;
  color: #fff;
}
.btn.btn-secundairy:after {
  font-weight: 600;
  content: "\f078";
  margin-left: 15px;
  font-size: 13px;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.15s ease-in-out;
}
.btn.btn-secundairy:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.btn.btn-secundairy:hover:after {
  position: relative;
  top: 2px;
}

.LoadMoreCol {
  width: 100%;
  text-align: center;
}

.background .LoadMoreCol {
  margin-bottom: 0;
}

.skyline-banner {
  width: 100%;
  height: 500px;
  background: #ffee99;
  background: -moz-linear-gradient(-45deg, #ffee99 0%, #fdc212 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #ffee99), color-stop(100%, #fdc212));
  background: -webkit-linear-gradient(-45deg, #ffee99 0%, #fdc212 100%);
  background: -o-linear-gradient(-45deg, #ffee99 0%, #fdc212 100%);
  background: -ms-linear-gradient(-45deg, #ffee99 0%, #fdc212 100%);
  background: linear-gradient(135deg, #ffee99 0%, #fdc212 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffee99", endColorstr="#fdc212", GradientType=1);
}

.imageBlock {
  padding: 30px;
  padding-top: 45px;
  color: #fff;
  position: relative;
  background-size: cover !important;
}
.imageBlock .btn.btn-primary {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.greenBlock {
  background: #52AE32;
  color: #fff;
  padding: 30px;
  padding-top: 45px;
  height: 100%;
  position: relative;
}
.greenBlock a {
  color: #fff;
}
.greenBlock.checklist li:before {
  color: #fff;
}
.greenBlock .btn.btn-primary {
  background: #fff !important;
  color: #52AE32;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.greenBlock .btn.btn-primary:hover {
  background: #d4d4d4;
}

.theTitleBlock {
  padding: 30px;
  position: relative;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-bottom: none;
  word-break: break-word;
}

.theTitleBlockWrapper {
  display: flex;
  flex-direction: row;
}
.theTitleBlockWrapper .theTitleBlock {
  width: 50%;
}
.theTitleBlockWrapper .header-image {
  width: 50%;
  background: black;
  display: flex;
  flex: 1;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.theTitleBlockWrapper .header-image picture {
  position: absolute;
  width: 100%;
  height: 100%;
}
.theTitleBlockWrapper .header-image picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.theTitleBlockWrapper .header-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .theTitleBlockWrapper {
    flex-direction: column;
  }
  .theTitleBlockWrapper .theTitleBlock {
    width: 100%;
  }
  .theTitleBlockWrapper .header-image {
    width: 100%;
    flex: auto;
    aspect-ratio: 16/9;
  }
}

.whiteBlock {
  padding: 30px;
  padding-top: 45px;
  position: relative;
  background: #fff;
  border: 1px solid #E0E0E0;
  height: 100%;
}
.whiteBlock .gform_wrapper .gform_button {
  background: #52AE32;
  color: #fff;
  border: none;
}
.whiteBlock .btn.btn-primary {
  background: #1F2532;
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.whiteBlock .btn.btn-primary.btnMagazine {
  left: 15px;
  bottom: 15px;
}

.greyBlock {
  padding: 30px;
  position: relative;
  background: #F6F7F0;
  height: 100%;
}
.greyBlock .gform_wrapper .gform_button {
  background: #52AE32;
  color: #fff;
  border: none;
}

.frontpage-block {
  margin-top: -80px;
  margin-bottom: -60px;
}
.frontpage-block .col-md-6 {
  padding: 0;
}
.frontpage-block .col-md-4 {
  padding: 0;
}
.frontpage-block .imageBlock {
  margin-top: 30px;
  height: 400px;
}
.frontpage-block .whiteBlock {
  height: 285px;
}
.frontpage-block .videoBlock {
  position: relative;
  max-height: 285px;
  overflow: hidden;
}
.frontpage-block .videoBlock .videoOverlay {
  background: rgba(31, 37, 50, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.frontpage-block .videoBlock .videoOverlay:hover .play-button {
  background: #52AE32;
}
.frontpage-block .videoBlock .play-button {
  position: absolute;
  top: 40%;
  left: 40%;
  padding: 10px;
  padding-left: 14px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 0.15s ease-in-out;
}
.frontpage-block .videoBlock .play-button i {
  color: #fff;
}
.frontpage-block .videoBlock h3 {
  position: absolute;
  top: 45px;
  left: 30px;
  color: #fff;
}

.videoModal .modal-dialog,
.plattegrondModal .modal-dialog {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}
.videoModal button,
.plattegrondModal button {
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #52AE32;
  border-color: #52AE32;
  opacity: 1;
  padding: 0px 10px;
  font-size: 43px;
  font-weight: 300;
  border-radius: 0;
  width: auto;
  height: auto;
}
.videoModal button:hover,
.plattegrondModal button:hover {
  color: white;
}

.buitenplaatsSingle {
  position: absolute;
  right: 25px;
  top: 0;
  background: url(/app/uploads/2019/05/achtergrond-logo-toptoptaal.svg);
  color: #52AE32;
  width: 100px;
  background-size: contain;
  font-weight: 800;
  height: 107px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 15px;
}

.singlepageLabel {
  position: absolute;
  right: 25px;
  top: 0;
  background: url(/app/uploads/2019/05/achtergrond-logo-toptoptaal.svg);
  color: #52AE32;
  width: 115px;
  background-size: cover;
  font-weight: 700;
  height: 122px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 15px;
}

.relative {
  position: relative;
}

.archive-chalet {
  margin-bottom: 30px;
  transition: all 0.15s ease-in-out;
  min-width: 100%;
}
.archive-chalet:hover {
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.11);
}
.archive-chalet a {
  text-decoration: none;
}
.archive-chalet .archiveImage {
  height: 360px;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.archive-chalet .archiveImage .eventLink {
  display: block;
}
.archive-chalet .archiveImage .label {
  position: absolute;
  right: 25px;
  top: 0;
  background: url(/app/uploads/2019/05/achtergrond-logo-toptoptaal.svg);
  color: #52AE32;
  width: 100px;
  background-size: contain;
  font-weight: 700;
  height: 107px;
  line-height: 70px;
  text-transform: uppercase;
  text-align: center;
}
.archive-chalet .archiveImage .label.verkocht {
  color: #1F2532;
}
.archive-chalet .archiveImage .label.vanafprijs {
  line-height: 20px;
  padding-top: 20px;
}
.archive-chalet .archiveImage .label.buitenplaats {
  line-height: 20px;
  padding-top: 15px;
}
.archive-chalet address {
  font-size: 12px;
  color: #747474;
}
.archive-chalet address i {
  color: #52AE32;
}
.archive-chalet.archive-event .title {
  display: block !important;
}
.archive-chalet .excerptContent {
  background: #fff;
  color: #1F2532;
  border: 1px solid #E0E0E0;
}
.archive-chalet .excerptContent span {
  color: #52AE32;
  display: block;
}
.archive-chalet .excerptContent .title {
  padding: 30px;
  border-bottom: 1px solid #E0E0E0;
  min-height: 125px;
  display: flex;
  align-items: center;
}
.archive-chalet .excerptContent .title.has-subtitle {
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.archive-chalet .excerptContent .title.has-subtitle .subtitle {
  color: black;
}
.archive-chalet .excerptContent .description {
  padding: 30px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}
.archive-chalet .excerptContent .description p {
  margin-bottom: 0;
}
.archive-chalet .excerptContent .description .btn-container {
  display: flex;
  align-items: flex-end;
  flex: 1;
}
.archive-chalet .excerptContent .description.description-vacatures {
  min-height: 276px;
}
.archive-chalet.archive-special {
  margin-bottom: 0;
}
.archive-chalet.archive-special .archiveImage {
  cursor: pointer;
}
.archive-chalet.archive-special .excerptContent {
  min-height: 360px;
}
.archive-chalet.archive-special .btn {
  margin-left: 30px;
}

.gform_legacy_markup_wrapper .gform_footer input.button, .gform_legacy_markup_wrapper .gform_page_footer input.button, .gform_legacy_markup_wrapper .gform_footer input[type=submit], .gform_legacy_markup_wrapper .gform_page_footer input[type=submit] {
  cursor: pointer;
}

.plattegrondBlock {
  height: auto;
  border-left: none;
  cursor: pointer;
}
.plattegrondBlock .plattegrondChalet {
  max-width: 100%;
  height: auto;
}

.specialGallery {
  margin-top: 50px;
}
.specialGallery .col-md-4 .thumbnail {
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 255px;
  margin-bottom: 30px;
}
.specialGallery .col-md-4 .thumbnail .galleryImage {
  height: 350px;
  width: 540px;
  background-size: cover !important;
  background-position: center center !important;
}
.specialGallery .col-md-4:nth-child(3) .thumbnail {
  position: relative;
}
.specialGallery .col-md-4:nth-child(3) .thumbnail a:after {
  content: "";
  background: #1F2532;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.specialGallery .col-md-4:nth-child(1n+4) {
  display: none;
}

.specialTitle {
  padding-bottom: 0;
}
.specialTitle .titleBlock {
  padding-bottom: 50px;
}

img.alignleft {
  float: left;
  margin: 15px;
  margin-left: 0;
}

img.alignright {
  float: right;
  margin: 15px;
  margin-right: 0;
}

.teamfoto {
  padding-bottom: 50px;
}
.teamfoto img {
  margin-bottom: 30px;
}

.specialBackground {
  background: #F6F7F0;
}
.specialBackground:nth-of-type(odd) {
  background: white;
}
.specialBackground .specialsRow {
  padding: 50px 0;
  justify-content: center;
}

.kenmerkenBtn {
  top: 30px;
}

.page-template-template-fullscreen iframe {
  width: 100vw;
  height: 100vh;
}
.page-template-template-fullscreen p {
  margin-bottom: 0;
  height: 100vh;
}

.vacatureArchive a {
  color: #1F2532;
}
.vacatureArchive a.btn {
  color: white;
}
.vacatureArchive .title {
  min-height: 145px !important;
  display: block !important;
}
.vacatureArchive .small_vacature_logo {
  max-height: 70px;
  margin-bottom: 10px;
}
.vacatureArchive .description-vacatures {
  min-height: 306px !important;
}

.specialSlug {
  text-transform: capitalize;
}

.specialBlock {
  margin-top: 50px;
}
.specialBlock .imageBlock {
  padding: 0;
}
.specialBlock:nth-of-type(even) .col-md-6:first-child {
  order: 2;
}

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio], .gform_wrapper.gf_browser_chrome .gfield_checkbox li input {
  margin-top: 0 !important;
}

#gform_wrapper_8 .gfield {
  margin-top: 24px !important;
}
#gform_wrapper_8 .gfield .ginput_container, #gform_wrapper_8 .gfield .ginput_container input, #gform_wrapper_8 .gfield .ginput_container label {
  margin: 0 !important;
}
#gform_wrapper_8 .gfield .ginput_container label {
  line-height: 1;
}
#gform_wrapper_8 .gfield .ginput_container_textarea {
  display: flex !important;
  height: fit-content !important;
}
#gform_wrapper_8 .gform_footer {
  padding-top: 0 !important;
  margin-top: 24px !important;
}

.ti-widget {
  width: auto !important;
  display: inline-block !important;
}

.trustindex-wrapper {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  height: fit-content;
}
@media (min-width: 992px) {
  .trustindex-wrapper {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .trustindex-wrapper {
    top: 50%;
    transform: translate(-50%, -50%) scale(0.75);
  }
}
@media (max-width: 400px) {
  .trustindex-wrapper {
    display: none !important;
  }
}

.notificationBar {
  display: flex;
}
.notificationBar .notificationicon {
  padding-right: 20px;
}
.notificationBar .fa-circle {
  color: #52AE32;
}

.margin-overlay {
  margin-top: -60px;
}
.margin-overlay .row .col-md-6:first-child {
  padding-right: 0;
}
.margin-overlay .row .col-md-6:last-child {
  padding-left: 0;
}
.margin-overlay .whiteBlock {
  margin-top: 30px;
}
.margin-overlay .whiteBlock .btn {
  bottom: 60px;
}

.serviceBlock.margin-overlay .whiteBlock {
  margin-top: 0;
}

.trioBlockOverlay {
  margin-top: -90px;
}
.trioBlockOverlay .greenBlock {
  padding-top: 15px;
}
.trioBlockOverlay .greenBlock:before {
  width: 100%;
  height: 30px;
  background: #52AE32;
  position: absolute;
  top: -30px;
  left: 0;
  content: "";
}

.bottom-overlay {
  margin-bottom: -120px;
}

.archive-aankooptips .excerptContent .title {
  display: block !important;
}
.archive-aankooptips .excerptContent .title small {
  color: #52AE32;
  font-weight: 600;
}
.archive-aankooptips .excerptContent .description {
  min-height: 160px;
}

.aankoopTips .gform_footer i {
  position: relative;
  top: 25px;
  color: #52AE32;
}
.aankoopTips .gform_button {
  top: 25px;
  position: relative;
}

.greenBlock .gform_footer i {
  color: #52AE32;
}

.informatieAanvragen .gform_wrapper ul li select {
  border: none;
  height: 37px;
  background: white;
}
.informatieAanvragen .gform_wrapper ul li label.gfield_label {
  font-weight: 300;
}
.informatieAanvragen .gform_wrapper ul li.gf_list_2col label.gfield_label, .informatieAanvragen .gform_wrapper ul li#field_5_1 label.gfield_label, .informatieAanvragen .gform_wrapper ul li#field_5_14 label.gfield_label, .informatieAanvragen .gform_wrapper ul li#field_11_14 label.gfield_label {
  display: block !important;
  font-weight: 300;
}

.searchresults {
  margin: 80px 0;
}

.windTurbine {
  margin-top: 20px;
  margin-bottom: 50px;
}
.windTurbine .col-4:first-child {
  width: 26%;
  max-width: 26%;
}
.windTurbine .singleWind {
  margin-bottom: 10px;
}
.windTurbine .singleWind i {
  font-size: 28px;
  color: #52AE32;
}

.page-template-template-energie h1 {
  font-size: 2rem;
}
.page-template-template-energie .greenBlock .windTurbine {
  margin-bottom: 0;
}
.page-template-template-energie .greenBlock .windTurbine .singleWind i {
  font-size: 34px;
  padding-top: 10px;
}

.home .greenBlock.aankoopTips .gform_wrapper .gform_footer {
  margin: 18px 0 0 0;
}

.greenBlock .windTurbine .singleWind {
  margin-bottom: 20px;
}
.greenBlock .windTurbine .singleWind i {
  color: #fff;
}

.usp_background {
  display: flex;
  min-height: 320px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 60px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-size: cover !important;
}
.usp_background .usp {
  display: flex;
  width: 250px;
  justify-content: center;
}
.usp_background .usp i {
  margin-right: 10px;
}

.eventType {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #52AE32;
  color: #fff;
}
.eventType span {
  float: left;
  font-weight: 900;
  padding: 10px 30px;
  text-transform: uppercase;
  background: #499a2c;
}
.eventType .date,
.eventType .time {
  float: left;
  padding: 10px 30px;
  padding-right: 0px;
}

.sectionBlock {
  padding: 60px 0;
}
.sectionBlock .row {
  height: 100%;
}
.sectionBlock .row .col-md-6:first-child {
  padding-right: 0;
}
.sectionBlock .row .col-md-6:last-child {
  padding-left: 0;
}

.inspiratieFilters {
  position: relative;
  float: right;
  top: -30px;
}
.inspiratieFilters select {
  background: white;
  border-radius: 0;
  border: 1px solid #E0E0E0;
  width: 200px;
}
.inspiratieFilters select:not([multiple]) {
  color: grey;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 50%;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
  padding: 5px;
  padding-right: 15px;
  padding-left: 10px;
}

.pageBanner {
  background-size: cover !important;
  min-height: 550px;
}

.footer-margin {
  margin-bottom: 60px;
}

footer.footer {
  background: #1F2532;
  color: #fff;
  padding-top: 140px;
  padding-bottom: 85px;
  position: relative;
}
footer.footer h4 {
  margin-bottom: 30px;
}
footer.footer a {
  color: #fff;
}
footer.footer .navbar {
  padding: 0;
}
footer.footer .navbar #menu-footer-menu {
  flex-direction: column;
}
footer.footer .navbar ul li {
  min-height: 25px;
}
footer.footer .navbar ul li a {
  color: #fff;
}
footer.footer .btn {
  background: #fff !important;
  color: #1F2532;
}
footer.footer .container {
  position: relative;
}
footer.footer .nieuwsbrief {
  background: #52AE32;
  color: #fff;
  padding: 30px;
  position: absolute;
  top: -190px;
  width: 97.5%;
}
footer.footer .nieuwsbrief .validation_error {
  display: none;
}
footer.footer .nieuwsbrief .gform_wrapper {
  margin: 0;
}
footer.footer .nieuwsbrief .gfield,
footer.footer .nieuwsbrief .top_label div.ginput_container {
  margin-top: 0 !important;
}
footer.footer .nieuwsbrief .gform_body {
  float: left;
  width: 80%;
}
footer.footer .nieuwsbrief .gform_body input {
  color: white;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 1px solid white;
}
footer.footer .nieuwsbrief .gform_body input::-webkit-input-placeholder { /* Chrome */
  color: white !important;
}
footer.footer .nieuwsbrief .gform_body input:focus {
  outline: none;
}
footer.footer .nieuwsbrief .gform_footer {
  display: inline;
}
footer.footer .nieuwsbrief .gform_footer i {
  color: #52AE32;
}

.toggleButton {
  position: relative !important;
  left: 0px !important;
  bottom: 0 !important;
}
.toggleButton i {
  margin-left: 10px;
}
.toggleButton:after {
  display: none;
}

.archiveNews {
  margin-bottom: 20px !important;
}
.archiveNews .archiveImage {
  max-height: 200px;
  overflow: hidden;
}
.archiveNews .excerptContent {
  min-height: 500px !important;
}
.archiveNews .title {
  min-height: 120px;
}

.galleryCounter {
  color: #fff;
  position: absolute;
  font-size: 28px;
  z-index: 1;
  bottom: 20px;
  right: 20px;
  font-weight: 600;
}

.eventBlock {
  margin-top: 0 !important;
  height: auto;
  min-height: 220px;
}
.eventBlock .btn {
  bottom: 20px !important;
}

.sectionBlockPark {
  margin-bottom: 90px;
}
.sectionBlockPark .col-lg-6:first-child {
  padding-right: 0;
}
.sectionBlockPark .col-lg-6:last-child {
  padding-left: 0;
}
.sectionBlockPark .col-lg-6:last-child .col-md-6:last-child {
  padding-left: 15px;
  padding-right: 0;
}
.sectionBlockPark .col-lg-6:last-child .col-md-6:last-child .greenBlock {
  position: relative;
}
.sectionBlockPark .col-lg-6:last-child .col-md-6:last-child .greenBlock:after {
  background: #52AE32;
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: -30px;
  content: "";
  left: 0;
}
.sectionBlockPark #map {
  min-height: 500px;
}

.chaletInfo {
  margin-top: -30px;
  margin-bottom: 100px;
}
.chaletInfo .col-md-6:first-child {
  padding-right: 0;
}
.chaletInfo .col-md-6:last-child {
  padding-left: 0;
}
.chaletInfo .greenBlock {
  height: auto;
  margin-top: -30px;
}
.chaletInfo .post-info ul.info-list {
  padding: 0;
  margin: 0;
}
.chaletInfo .post-info ul.info-list li {
  display: flex;
  padding: 0;
  flex-direction: row;
  gap: 2px;
}
.chaletInfo .post-info ul.info-list li i {
  padding: 2px 0 0 0;
  width: 20px;
  height: 28px;
  margin-left: 0;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: start;
}
.chaletInfo .informatieBlock {
  height: 267px;
  border-left: none;
}
.chaletInfo .informatieBlock h3 {
  color: #52AE32;
}
.chaletInfo .informatieBlock .btn {
  position: relative;
  left: 0;
  bottom: 0;
}
.chaletInfo .informatieBlock.informatieBlockPG {
  height: auto;
  border-left: 1px solid #e0e0e0;
  padding: 30px;
  margin-top: 30px;
}
.chaletInfo .informatieBlock.informatieBlockPG p {
  margin-bottom: 0;
}
.chaletInfo .informatieBlock.informatieBlockPG .informatieBlockPGButton {
  align-items: center;
  display: flex;
  justify-content: center;
}
.chaletInfo .informatieBlock.informatieBlockPG .informatieBlockPGButton a {
  margin-left: 5px;
}
.chaletInfo .informatieBlock.informatieBlockPG .informatieBlockPGButton a.btn {
  margin-right: 5px;
}
.chaletInfo h1 {
  color: #52AE32;
  font-size: 24px;
  font-weight: 600;
}
.chaletInfo .readMoreBlock .readMore {
  height: 400px;
  overflow: hidden;
  margin-bottom: 0.5vw;
  position: relative;
}
.chaletInfo .readMoreBlock .readMore.plattegrondContainer {
  height: 730px;
}
.chaletInfo .readMoreBlock .theContent.toggled {
  height: auto;
}
.chaletInfo .readMoreBlock .theContent.toggled:after {
  opacity: 0;
  display: none;
}
.chaletInfo .readMoreBlock .theContent:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  opacity: 1;
}

.chalet-info .singleEventBlock, .chaletInfo .singleEventBlock, .flex-event .singleEventBlock {
  margin-top: 30px !important;
  padding-top: 30px;
  height: 100px;
  display: flex;
  align-items: center;
}
.chalet-info .singleEventBlock > .row, .chaletInfo .singleEventBlock > .row, .flex-event .singleEventBlock > .row {
  width: 100%;
}
.chalet-info .singleEventBlock .eventTitle, .chaletInfo .singleEventBlock .eventTitle, .flex-event .singleEventBlock .eventTitle {
  position: absolute;
  background: #3f8627;
  left: -15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chalet-info .singleEventBlock h3, .chaletInfo .singleEventBlock h3, .flex-event .singleEventBlock h3 {
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
}
.chalet-info .singleEventBlock a.btn, .chaletInfo .singleEventBlock a.btn, .flex-event .singleEventBlock a.btn {
  bottom: 0;
}
@media (max-width: 767.9px) {
  .chalet-info .singleEventBlock, .chaletInfo .singleEventBlock, .flex-event .singleEventBlock {
    height: fit-content;
  }
  .chalet-info .singleEventBlock .eventTitle, .chaletInfo .singleEventBlock .eventTitle, .flex-event .singleEventBlock .eventTitle {
    height: 70px;
    position: relative;
    margin-bottom: 15px;
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateY(0);
  }
  .chalet-info .singleEventBlock .btn, .chaletInfo .singleEventBlock .btn, .flex-event .singleEventBlock .btn {
    position: relative;
    margin-top: 20px;
    left: 0;
    bottom: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .chalet-info .singleEventBlock, .chalet-info .singleEventBlock .eventTitle, .chaletInfo .singleEventBlock, .chaletInfo .singleEventBlock .eventTitle, .flex-event .singleEventBlock, .flex-event .singleEventBlock .eventTitle {
    height: 220px;
  }
  .chalet-info .singleEventBlock .eventTitle, .chalet-info .singleEventBlock a.btn, .chaletInfo .singleEventBlock .eventTitle, .chaletInfo .singleEventBlock a.btn, .flex-event .singleEventBlock .eventTitle, .flex-event .singleEventBlock a.btn {
    bottom: 50%;
    transform: translateY(50%);
  }
  .chalet-info .singleEventBlock a.btn, .chaletInfo .singleEventBlock a.btn, .flex-event .singleEventBlock a.btn {
    left: 0;
  }
}
@media (min-width: 992px) {
  .chalet-info .singleEventBlock, .chalet-info .singleEventBlock .eventTitle, .chaletInfo .singleEventBlock, .chaletInfo .singleEventBlock .eventTitle, .flex-event .singleEventBlock, .flex-event .singleEventBlock .eventTitle {
    height: 100px;
  }
}

.parkInfo .readMoreBlock .readMore {
  height: 500px;
}
.parkInfo .col-md-6:last-child {
  margin-top: -40px;
}
.parkInfo .greenBlock {
  height: 280px;
  padding-top: 35px;
}
.parkInfo .greenBlock time,
.parkInfo .greenBlock .location,
.parkInfo .greenBlock .contactpersoon {
  line-height: 30px;
}
.parkInfo .greenBlock h3 {
  width: 100%;
}
.parkInfo .greenBlock .col-md-6 {
  margin-top: 0px;
}
.parkInfo .location {
  padding-left: 17px;
}
.parkInfo .location i {
  margin-left: -15px;
}

.blueimp-gallery-single > .indicator li, .blueimp-gallery-display > .indicator li {
  width: 65px;
  height: 65px;
  background-size: cover;
  flex-shrink: 0;
}

.blueimp-gallery-single > .indicator, .blueimp-gallery-display > .indicator {
  display: flex;
  overflow-x: auto;
}

.gallery .col-md-4 .thumbnail {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.gallery .col-md-4 .thumbnail .galleryImage {
  height: 350px;
  width: 540px;
  background-size: cover !important;
  background-position: center center !important;
}
.gallery .col-md-4:nth-child(1), .gallery .col-md-4:nth-child(2) {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 30px;
  margin-top: 30px;
  height: auto;
}
.gallery .col-md-4:nth-child(1) .thumbnail .galleryImage, .gallery .col-md-4:nth-child(2) .thumbnail .galleryImage {
  height: 350px;
  width: 540px;
  background-size: cover !important;
  background-position: center center !important;
}
.gallery .col-md-4:nth-child(5) .thumbnail {
  position: relative;
}
.gallery .col-md-4:nth-child(5) .thumbnail a:after {
  content: "";
  background: #1F2532;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.gallery .col-md-4:nth-child(1n+6) {
  display: none;
}

.eventGallery .col-md-6 .thumbnail {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.eventGallery .col-md-6 .thumbnail img {
  height: 250px;
}
.eventGallery .col-md-6:nth-child(1) {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
  height: auto;
}
.eventGallery .col-md-6:nth-child(1) .thumbnail img {
  width: 100%;
  height: auto;
}
.eventGallery .col-md-6:nth-child(3) .thumbnail {
  position: relative;
}
.eventGallery .col-md-6:nth-child(3) .thumbnail:after {
  content: "";
  background: #1F2532;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.eventGallery .col-md-6:nth-child(1n+4) {
  display: none;
}

.post-has-header {
  padding-top: 0;
}
.post-has-header .whiteBlock {
  margin-top: -30px;
}

.map-wrapper {
  margin-top: 3rem;
}

.referenties {
  font-size: 15px;
  text-align: center;
  max-width: 90%;
}

.aanpakInfo {
  margin-top: 30px;
  margin-bottom: 100px;
}
.aanpakInfo .col-md-6:first-child {
  padding-right: 0;
}
.aanpakInfo .col-md-6:last-child {
  padding-left: 0;
}
.aanpakInfo .greenBlock {
  height: auto;
  margin-top: -30px;
}
.aanpakInfo .videoBlock {
  position: relative;
  max-height: 230px;
  overflow: hidden;
}
.aanpakInfo .videoBlock .video-player img {
  margin-top: -60px;
}
.aanpakInfo .videoBlock .videoOverlay {
  background: rgba(31, 37, 50, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.aanpakInfo .videoBlock .play-button {
  position: absolute;
  top: 40%;
  left: 40%;
  padding: 10px;
  padding-left: 14px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.aanpakInfo .videoBlock .play-button i {
  color: #fff;
}
.aanpakInfo .videoBlock h3 {
  position: absolute;
  top: 45px;
  left: 30px;
  color: #fff;
}
.aanpakInfo .readMoreBlock h1 {
  color: #52AE32;
  font-size: 24px;
  font-weight: 600;
}
.aanpakInfo .readMoreBlock .readMore {
  height: 300px;
  overflow: hidden;
  margin-bottom: 0.5vw;
  position: relative;
}
.aanpakInfo .readMoreBlock .theContent.toggled {
  height: auto;
}
.aanpakInfo .readMoreBlock .theContent.toggled:after {
  opacity: 0;
}
.aanpakInfo .readMoreBlock .theContent:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  opacity: 1;
}
.aanpakInfo:last-child {
  margin-bottom: 0;
}

.page-template-template-aanpak .vraagBlock,
.page-template-template-overons .vraagBlock {
  padding-bottom: 0;
}

.page-template-template-informatie-aanvragen .sectionBlock,
.page-template-template-contact .sectionBlock {
  padding-bottom: 0;
}

.aboutUsBlock .greenBlock {
  position: relative;
  box-shadow: 0 -30px 0 #52AE32;
  padding-top: 15px;
}
.aboutUsBlock .whiteBlock {
  margin-top: 0;
}
.aboutUsBlock .col-md-6 {
  padding: 0;
}
.aboutUsBlock .col-md-4 {
  padding: 0;
}
.aboutUsBlock .col-md-4 .contentBlock {
  padding: 30px;
  border: 1px solid #f5f5f5;
  min-height: 212px;
  background: #fff;
  height: 100%;
}
.aboutUsBlock .col-md-4:first-child {
  padding-left: 15px;
}
.aboutUsBlock .col-md-4:first-child .contentBlock {
  background: #52AE32;
  color: #fff;
  border: none;
}
.aboutUsBlock .col-md-4:last-child {
  padding-right: 15px;
}
.aboutUsBlock .col-md-4:last-child .contentBlock {
  background: #F6F7F0;
}

.teamMember {
  margin-bottom: 30px;
}
.teamMember .teamInfo {
  padding: 15px;
  border: 1px solid #E0E0E0;
  background: white;
  min-height: 123px;
}

.sectionBlock .modelContainer .col-md-6 .greenBlock {
  height: auto;
}
.sectionBlock .modelContainer .col-md-6:first-child {
  padding-right: 15px;
  padding-left: 0;
}
.sectionBlock .modelContainer .col-md-6:first-child .greenBlock ul {
  columns: 2;
}
.sectionBlock .modelContainer .col-md-6:last-child {
  padding-left: 0;
}
.sectionBlock .modelContainer .col-md-6:last-child .whiteBlock {
  height: auto;
}
.sectionBlock .modelContainer .col-lg-6.col-md-12:first-child {
  padding-right: 0;
}
.sectionBlock.specials .col-md-6:first-child {
  padding-right: 15px;
  padding-left: 0;
}
.sectionBlock.specials .col-md-6:last-child {
  padding-left: 0;
}
.sectionBlock.specials .col-md-6:last-child .whiteBlock {
  height: 100%;
}
.sectionBlock.specials .col-lg-6.col-md-12:first-child {
  padding-right: 0;
}

.page-template-archive-modellen .modelBlock,
.page-template-archive-specials .modelBlock {
  margin-bottom: 30px;
}

.sectionBlock.serviceBlock {
  padding-bottom: 0;
}

.page-template-archive-modellen .background,
.page-template-archive-parken .background {
  padding-top: 10px;
}

.page-template-archive-vacatures .background,
.page-template-template-aankooptips .background {
  padding-top: 60px;
}

.page-template-archive-specials .modelBlock {
  margin-bottom: 30px;
  background: transparent;
  border: none;
}
.page-template-archive-specials .col-lg-12.col-md-6:nth-of-type(odd) .archiveImage {
  padding-right: 0;
}
.page-template-archive-specials .col-lg-12.col-md-6:nth-of-type(odd) .rightBlock {
  padding-left: 0;
}
.page-template-archive-specials .col-lg-12.col-md-6:nth-of-type(even) .archiveImage {
  padding-left: 0;
  order: 2;
}
.page-template-archive-specials .col-lg-12.col-md-6:nth-of-type(even) .rightBlock {
  padding-right: 0;
}

.modelBlock {
  background: #fff;
  margin-left: 0;
  margin-right: 0;
  border: 1px solid #E0E0E0;
  border-left: none;
}
.modelBlock .col-lg-6 {
  padding: 0;
}
.modelBlock:nth-of-type(even) .leftBlock {
  order: 2;
}
.modelBlock:nth-of-type(even) .rightBlock {
  order: 1;
}
.modelBlock .readMoreBlock {
  height: 280px;
}
.modelBlock .readMoreBlock .readMore {
  height: 103px;
  overflow: hidden;
  margin-bottom: 0.5vw;
  position: relative;
}
.modelBlock .readMoreBlock .readMore.toggled {
  height: auto;
}
.modelBlock .readMoreBlock .readMore.toggled > .readMoreBlock {
  height: auto;
}
.modelBlock .readMoreBlock .readMore.toggled:after {
  display: none;
}
.modelBlock .readMoreBlock .readMore:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  opacity: 1;
}
.modelBlock .imageBlock {
  padding: 0;
  cursor: pointer;
  position: relative;
}
.modelBlock .imageBlock:hover .btn.btn-primary:after {
  margin-left: 18px;
  margin-right: -3px;
}
.modelBlock .imageBlock .btn-primary {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.modelBlock .whiteBlock {
  height: auto;
  border: none;
}
.modelBlock .whiteBlock:first-child {
  border-bottom: 1px solid #E0E0E0;
}
.modelBlock .accordion .card {
  border: none;
  border-radius: 0;
}
.modelBlock .accordion .card .card-header {
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  padding-left: 15px;
}
.modelBlock .accordion .card .card-header .btn-link {
  color: #52AE32;
}
.modelBlock .accordion .card .card-header .btn-link:before {
  font-weight: 600;
  content: "\f0fe";
  color: #52AE32;
  margin-left: -30px;
  margin-right: 15px;
  font-family: "Font Awesome 5 Pro";
  position: relative;
}

.single-vacatures .whiteBlock {
  height: auto;
}

.sollicitatieFormulier .gform_footer .gform_button {
  background: #52AE32;
  color: #fff;
}
.sollicitatieFormulier li.gf_right_half, .sollicitatieFormulier li#field_9_6 {
  padding-right: 0 !important;
}
.sollicitatieFormulier #extensions_message_9_5 {
  display: none;
}
.sollicitatieFormulier #field_9_5 label {
  display: block !important;
}

.familyImage {
  margin-bottom: 0;
}

.familyBlock {
  margin-bottom: 40px;
}
.familyBlock .row .col-md-6:first-child {
  padding-right: 0;
}
.familyBlock .row .col-md-6:last-child {
  padding-left: 0;
}
.familyBlock .greyBlock {
  height: auto;
}
.familyBlock .accordion .card {
  background: transparent;
  border: none;
  border-radius: 0;
}
.familyBlock .accordion .card .card-header {
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  padding-left: 15px;
}
.familyBlock .accordion .card .card-header .btn-link {
  color: #52AE32;
}
.familyBlock .accordion .card .card-header .btn-link:before {
  font-weight: 600;
  content: "\f0fe";
  color: #52AE32;
  margin-left: -30px;
  margin-right: 15px;
  font-family: "Font Awesome 5 Pro";
}

.serviceBlock .greenBlock {
  min-height: 210px;
}
.serviceBlock .familyImage {
  margin-top: -30px;
}
.serviceBlock .col-lg-6:first-child {
  padding-right: 0px;
}
.serviceBlock .col-lg-6:last-child .col-md-6:first-child {
  padding-left: 0px;
  padding-right: 15px;
}

.serviceAanvraag .gform_wrapper .gform_button {
  background: #52AE32;
  color: #fff;
}
.serviceAanvraag li.field_description_below div.ginput_container_radio {
  margin-top: 8px !important;
}
.serviceAanvraag li.field_description_below div.ginput_container_radio ul {
  margin-bottom: 0;
}
.serviceAanvraag .gform_wrapper ul li.showLabel label.gfield_label {
  display: block !important;
  margin-top: 24px;
}
.serviceAanvraag #extensions_message_6_8 {
  display: none;
}
.serviceAanvraag #field_6_8 {
  margin-top: -20px;
}

.googleMapsContainer .googleMaps {
  height: 500px;
}

.bottom-footer a {
  color: #1F2532;
  font-size: 14px;
  margin-right: 20px;
}
.bottom-footer .row {
  position: relative;
}

.informatie_img_block {
  display: flex;
}
.informatie_img_block .imgbox {
  padding-right: 10px;
}
.informatie_img_block .imgbox img {
  height: 50px;
}
.informatie_img_block .textbox p {
  margin: 0;
}

.veconet {
  font-size: 12px;
  float: right;
  margin-right: 30px;
  position: absolute;
  right: 0;
}
.veconet a {
  font-weight: 700;
  text-decoration: none !important;
}
.veconet a:hover {
  text-decoration: underline !important;
}

#bs-example-navbar-collapse-2 {
  padding: 0;
}

.te-koop-filter .filter-title {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.te-koop-filter .items {
  margin-bottom: 38px;
  margin-top: 10px;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.te-koop-filter .items li {
  display: flex;
  padding: 8px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: solid 2px #BEBEBE;
  list-style: none;
  cursor: pointer;
  color: #BEBEBE;
  font-size: 16px;
  font-weight: 600;
  transition: 0.2s;
}
.te-koop-filter .items li.active {
  background: #52AE32;
  border: solid 2px #52AE32;
  color: white;
}
.te-koop-filter .items li:hover:not(.active) {
  background: rgba(190, 190, 190, 0.2);
}

.parken .title:has(.parken-regio) {
  flex-wrap: wrap;
}
.parken .title:has(.parken-regio) h2 {
  width: 100%;
  margin-bottom: 13px;
}
.parken .title:has(.parken-regio) .parken-regio {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.te-koop-chalet .title:has(.chalet-regio) {
  flex-wrap: wrap;
}
.te-koop-chalet .title:has(.chalet-regio) h2 {
  width: 100%;
  margin-bottom: 13px;
}
.te-koop-chalet .title:has(.chalet-regio) .chalet-regio {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.te-koop-chalet .description {
  flex-direction: row !important;
  justify-content: space-between !important;
  width: 100%;
  gap: 10px;
}
.te-koop-chalet .description .desc-btn {
  display: inline-flex;
  height: 44.2px;
  padding: 15.6px 19.5px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  background-color: #52AE32;
  align-self: end;
  transition: 0.2s;
}
.te-koop-chalet .description .desc-btn svg {
  width: 7.48px;
  height: 13px;
}
.te-koop-chalet:hover .description .desc-btn {
  opacity: 0.8;
}

.moreChalets {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.moreChalets > h2 {
  text-align: center;
  color: #1F2532;
  font-size: 28px;
  line-height: normal;
  margin-bottom: 0;
}

.chalet-splide, .gallery-splide {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 40px;
}
.chalet-splide .splide__track, .gallery-splide .splide__track {
  width: 100%;
}
.chalet-splide .splide__track .splide__list, .gallery-splide .splide__track .splide__list {
  height: fit-content;
}
.chalet-splide .splide__track .splide__list .splide-chalet, .gallery-splide .splide__track .splide__list .splide-chalet {
  min-width: auto !important;
  min-height: fit-content;
  height: auto;
  display: flex;
  flex-direction: column;
}
.chalet-splide .splide__track .splide__list .splide-chalet .archiveImage, .gallery-splide .splide__track .splide__list .splide-chalet .archiveImage {
  height: auto !important;
  aspect-ratio: 1/1;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent, .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent {
  flex: 1;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent .title, .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent .title {
  padding: 14px 20px 20px 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  height: 100%;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent .title h2, .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent .title h2 {
  font-size: 18px;
  line-height: 25px;
  width: 100%;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom, .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom {
  display: flex;
  width: 100%;
  justify-content: end;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom .chalet-btn, .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom .chalet-btn {
  display: flex;
  height: 34.476px;
  padding: 12.168px 15.21px;
  justify-content: center;
  align-items: center;
  gap: 15.6px;
  background: #52AE32;
  width: fit-content;
  transition: 0.2s;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom .chalet-btn svg, .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom .chalet-btn svg {
  width: 5.834px;
  height: 10.14px;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom:has(.chalet-regio), .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom:has(.chalet-regio) {
  justify-content: space-between;
}
.chalet-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom:has(.chalet-regio) .chalet-regio, .gallery-splide .splide__track .splide__list .splide-chalet .excerptContent .title .bottom:has(.chalet-regio) .chalet-regio {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.chalet-splide .splide__track .splide__list .splide-chalet:hover, .gallery-splide .splide__track .splide__list .splide-chalet:hover {
  text-decoration: none;
}
.chalet-splide .splide__track .splide__list .splide-chalet:hover .excerptContent .title .chalet-btn, .gallery-splide .splide__track .splide__list .splide-chalet:hover .excerptContent .title .chalet-btn {
  opacity: 0.8;
}
.chalet-splide .splide__pagination, .gallery-splide .splide__pagination {
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 8px;
  bottom: 0;
}
.chalet-splide .splide__pagination li .splide__pagination__page, .gallery-splide .splide__pagination li .splide__pagination__page {
  display: flex;
  border-radius: 99px;
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.2s;
  border: none;
  margin: 0;
  opacity: 1;
}
.chalet-splide .splide__pagination li .splide__pagination__page.is-active, .gallery-splide .splide__pagination li .splide__pagination__page.is-active {
  width: 25px;
  background: rgba(0, 0, 0, 0.3);
  transform: none;
}
.chalet-splide .splide__pagination li .splide__pagination__page:hover:not(.is-active), .gallery-splide .splide__pagination li .splide__pagination__page:hover:not(.is-active) {
  background: rgba(0, 0, 0, 0.3);
}
.chalet-splide .splide__arrows, .gallery-splide .splide__arrows {
  position: absolute;
  width: calc(100% + 80px);
  max-width: calc(100vw - 30px);
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.chalet-splide .splide__arrows .splide__arrow, .gallery-splide .splide__arrows .splide__arrow {
  background: none;
  position: static;
  width: fit-content;
  height: fit-content;
  opacity: 1;
  transition: 0.2s;
}
.chalet-splide .splide__arrows .splide__arrow svg, .gallery-splide .splide__arrows .splide__arrow svg {
  flex-shrink: 0;
  fill: #52AE32;
  width: 18px;
  height: 30px;
}
.chalet-splide .splide__arrows .splide__arrow[disabled], .gallery-splide .splide__arrows .splide__arrow[disabled] {
  opacity: 0.4;
}
.chalet-splide .splide__arrows .splide__arrow:hover:not([disabled]), .gallery-splide .splide__arrows .splide__arrow:hover:not([disabled]) {
  opacity: 0.7;
}
.chalet-splide .splide__arrows .splide__arrow--prev, .gallery-splide .splide__arrows .splide__arrow--prev {
  transform: rotate(180deg);
}
.chalet-splide .splide__arrows:not(:has(.splide__arrow:not([disabled]))), .gallery-splide .splide__arrows:not(:has(.splide__arrow:not([disabled]))) {
  display: none;
}

.magazine-cta {
  background-color: #F6F7F0;
  padding-top: 50px;
  padding-bottom: 100px;
}
.magazine-cta .cta-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}
.magazine-cta .cta-content .cta-text {
  height: fit-content;
  width: 100%;
  margin: auto;
}
.magazine-cta .cta-content .cta-text .btn {
  margin-top: 10px;
}
.magazine-cta .cta-content .cta-image {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}
.magazine-cta .cta-content .cta-image img {
  width: 100%;
  height: auto;
  object-position: center;
  object-fit: contain;
  max-width: 400px;
}
@media (max-width: 500px) {
  .magazine-cta .cta-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .magazine-cta .cta-content .cta-image {
    order: -1;
  }
}

@media (max-width: 1199px) {
  header.stickyNav .navbar-nav .nav-link {
    padding-right: 0.5rem;
  }
  header.stickyNav .navbar {
    min-height: 60px;
  }
  .home .banner {
    height: 450px !important;
  }
  header .btn-navbar {
    right: 10px;
  }
  header .navbar ul#menu-top-menu {
    margin-top: 0;
  }
  header .navbar-toggler {
    position: absolute;
    right: 30px;
    top: 10px;
    z-index: 9999999;
  }
  .show .collapse,
  .collapsing .collapse {
    display: block;
  }
  .frontpage-block .videoBlock {
    height: 100%;
  }
  .frontpage-block .videoBlock .video-player {
    height: 100%;
  }
  .frontpage-block .videoBlock .video-player img {
    width: auto;
    height: 100%;
  }
  .archive-chalet .excerptContent .description {
    min-height: 165px;
  }
  .windTurbine {
    margin-bottom: 50px;
  }
  footer.footer .nieuwsbrief .gform_body {
    width: 75%;
  }
  .page-template-archive-specials .modelBlock {
    margin-bottom: 30px;
    background: transparent;
    border: none;
  }
  .page-template-archive-specials .modelBlock:nth-of-type(odd) .archiveImage {
    overflow: hidden;
  }
  .page-template-archive-specials .modelBlock:nth-of-type(odd) .archiveImage img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    max-width: none;
  }
}
@media (max-width: 1024px) {
  .eventType .time {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-logo {
    width: 92px !important;
  }
  .checklist ul li {
    line-height: normal;
    padding-bottom: 20px;
  }
  .page-template-template-25jaar .sectionBlock .greenBlock, .page-template-template-25jaar .sectionBlock .whiteBlock {
    padding-bottom: 0;
  }
  h2 {
    font-size: 20px;
  }
  header .btn-search {
    position: absolute;
    top: 17px;
    left: auto;
    right: 100px;
    z-index: 999;
  }
  .navbar > .trustindex-wrapper {
    display: none;
  }
  .navbar ul#menu-top-menu {
    flex-direction: row;
  }
  .navbar ul#menu-top-menu .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  h3 {
    font-size: 21px;
  }
  .topNav {
    margin-top: 20px !important;
  }
  header .btn-navbar {
    left: 0;
    top: 15px;
    margin-bottom: 30px;
  }
  #bs-example-navbar-collapse-2 {
    padding: 0.5rem 1rem;
  }
  .archive-chalet .archiveImage {
    height: 220px;
  }
  .archive-chalet .excerptContent .description {
    min-height: 210px;
  }
  header .btn-navbar {
    right: 0;
    position: relative;
    display: block;
    width: auto;
    float: left;
  }
  header .navbar-collapse {
    padding-top: 50px;
  }
  #bs-example-navbar-collapse-2 {
    border-right: 1px solid #E0E0E0;
  }
  .menu-item-65 {
    display: none;
  }
  footer .col-12 {
    margin-top: 50px;
  }
  footer.footer .nieuwsbrief .gform_body {
    width: 60%;
  }
  .sectionBlock .modelContainer .col-md-6:first-child {
    padding-right: 0 !important;
    padding-left: 15px;
  }
  .sectionBlock .modelContainer .col-md-6:first-child .greenBlock {
    padding-top: 30px;
    padding-bottom: 30px;
    height: 100%;
  }
  .sectionBlock .modelContainer .col-md-6:first-child .greenBlock:before {
    display: none;
  }
  .sectionBlock .modelContainer .col-md-6:first-child .greenBlock ul {
    column-count: 1;
  }
  .sectionBlock .modelContainer .col-md-6:last-child {
    padding-left: 15px !important;
    padding-right: 0;
  }
  .sectionBlock .modelContainer .col-md-6:last-child .whiteBlock {
    margin-top: 0;
    padding-top: 30px;
  }
  .sectionBlock.specials .col-md-6:first-child {
    padding-right: 0 !important;
    padding-left: 15px;
  }
  .sectionBlock.specials .col-md-6:first-child .greenBlock {
    padding-top: 30px;
    padding-bottom: 30px;
    height: 100%;
  }
  .sectionBlock.specials .col-md-6:first-child .greenBlock:before {
    display: none;
  }
  .sectionBlock.specials .col-md-6:last-child {
    padding-left: 0 !important;
    padding-right: 0;
  }
  .sectionBlock.specials .col-md-6:last-child .whiteBlock {
    margin-top: 0;
    padding-top: 30px;
  }
  .modelBlock {
    background: transparent;
    border: none;
  }
  .modelBlock .readMoreBlock .readMore {
    height: 110px;
  }
  .modelBlock .row {
    margin-left: 0;
    margin-right: 0;
    border: 1px solid #E0E0E0;
    border-left: none;
    background: #fff;
  }
  .modelBlock:nth-of-type(odd) .leftBlock {
    order: 2;
  }
  .modelBlock:nth-of-type(odd) .rightBlock {
    order: 1;
  }
  .modelBlock .archive-special:nth-of-type(odd) .leftBlock {
    order: 1;
  }
  .modelBlock .archive-special:nth-of-type(odd) .rightBlock {
    order: 2;
  }
  .modelBlock .archive-special .readMoreBlock {
    height: auto;
  }
  .modelBlock .archive-special .readMoreBlock .excerptContent {
    min-height: 430px;
  }
  .modelBlock .archive-special .readMoreBlock .excerptContent .title {
    min-height: 145px;
  }
  .gallery .col-md-4 .thumbnail {
    height: 210px;
  }
  .gallery .col-md-4:nth-child(1) .thumbnail, .gallery .col-md-4:nth-child(2) .thumbnail {
    height: 280px;
  }
  .specialGallery .col-md-4 .thumbnail {
    height: 255px;
    justify-content: center;
    align-items: center;
  }
  .ContactgegevensBlock .col-lg-6 {
    margin-bottom: 20px;
  }
  .sectionBlockPark #map {
    height: 400px;
  }
  .sectionBlockPark .eventBlock {
    height: 100%;
  }
  .sectionBlockPark .col-lg-6:first-child {
    margin-bottom: 30px;
  }
  .sectionBlockPark .col-lg-6:last-child {
    padding-left: 15px;
  }
  .sectionBlockPark .col-lg-6:last-child .col-md-6:last-child {
    padding-left: 0;
  }
  .sectionBlockPark .col-lg-6:last-child .col-md-6:last-child .greenBlock:after {
    display: none;
  }
  .singleWindDescription {
    display: none;
  }
  .page-template-archive-modellen .background .margin-top {
    margin-top: 0;
  }
  .singleKrant {
    margin-bottom: 50px;
  }
  .singleKrant h4 {
    margin-bottom: 15px;
  }
  .serviceBlock .greenBlock {
    min-height: 230px;
  }
  .serviceBlock .familyImage {
    margin-top: 0px;
  }
  .serviceBlock .col-lg-6:first-child {
    padding-right: 15px;
  }
  .serviceBlock .col-lg-6:last-child .col-md-6:first-child {
    padding-left: 15px;
    padding-right: 0;
  }
  .serviceBlock .col-lg-6:last-child .col-md-6:last-child {
    padding-right: 15px;
  }
  .chaletInfo .informatieBlock {
    height: auto;
  }
  .chaletInfo .informatieBlock .btn {
    display: block;
  }
  .inspiratieFilters {
    top: -15px;
  }
  .parkInfo .greenBlock {
    height: 300px;
  }
}
@media (max-width: 767.98px) {
  .grid-overview {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  h2 {
    font-size: 20px;
  }
  .pageHeader {
    height: 200px;
    background-position: center !important;
  }
  .pageBanner {
    min-height: 400px;
    background-position: center !important;
  }
  .gallery .col-md-4 .thumbnail .galleryImage {
    width: 300px;
    height: 210px;
  }
  .background {
    padding: 70px 0;
  }
  .main-page {
    margin-bottom: 70px;
  }
  .page-template-default .main-page {
    margin-bottom: 100px;
  }
  .margin-overlay .row .col-md-6:first-child {
    margin-top: 40px;
  }
  .chaletInfo .informatieBlock {
    height: fit-content !important;
    border-left: 1px solid #e0e0e0;
  }
  .chaletInfo .informatieBlock .btn {
    display: table;
  }
  .chaletInfo .informatieBlock.informatieBlock-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 0.5rem;
  }
  .chaletInfo .readMoreBlock .readMore {
    height: 430px;
  }
  .plattegrondBlock {
    border-left: 1px solid #E0E0E0;
  }
  .parkInfo .readMoreBlock .readMore {
    height: 550px;
  }
  .parkInfo .greenBlock {
    height: auto;
  }
  .parkInfo .greenBlock .btn {
    position: static;
    margin-top: 20px;
  }
  .trioBlockOverlay {
    margin-top: -50px;
  }
  .sectionBlock {
    padding: 0;
  }
  .blueimp-gallery-single > .indicator, .blueimp-gallery-display > .indicator {
    height: auto;
    width: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .inspiratieFilters {
    margin-top: 30px;
    float: left;
  }
  .frontpage-block {
    padding: 0 15px;
  }
  .frontpage-block .col-md-4 {
    margin-bottom: 30px;
  }
  .frontpage-block .greenBlock {
    padding-bottom: 80px;
  }
  .frontpage-block .videoBlock {
    max-height: none;
  }
  .frontpage-block .videoBlock .video-player img {
    width: 100%;
    height: 100%;
  }
  .frontpage-block .imageBlock {
    height: calc(100% - 30px);
  }
  .frontpage-block .whiteBlock {
    height: 100%;
  }
  .aankoopTips {
    margin-right: 0px;
  }
  .usp_background .usp {
    width: 100%;
    margin: 15px 0;
  }
  .margin-overlay .row .col-md-6:last-child,
  .sectionBlock .row .col-md-6:last-child {
    padding-left: 15px;
  }
  .sectionBlock .row .col-md-6:first-child {
    padding-right: 15px;
  }
  .archive-chalet .excerptContent .description {
    min-height: 210px;
  }
  .sectionBlock .greenBlock,
  .sectionBlock .whiteBlock {
    padding-bottom: 80px;
  }
  .sectionBlock .col-md-6 {
    margin-bottom: 30px;
  }
  .sectionBlock .col-md-6 .col-12:first-child {
    margin-bottom: 30px;
  }
  .modelContainer .col-md-6:first-child {
    margin-bottom: 30px;
  }
  .modelContainer .col-md-6:last-child .whiteBlock {
    margin-top: 30px;
  }
  .card-body {
    padding: 0;
  }
  .card-body ul {
    margin-left: -20px;
  }
  .sectionBlockPark {
    margin-bottom: 30px;
    margin-top: -100px;
  }
  .sectionBlockPark .col-lg-6:first-child {
    padding-right: 15px;
  }
  .sectionBlockPark .col-lg-6:last-child .col-md-6:last-child {
    padding-left: 15px;
    padding-right: 15px;
  }
  .archive-chalet.archive-special .excerptContent {
    min-height: 370px;
  }
  .sectionBlock.specials .col-lg-6.col-md-12:first-child {
    padding-right: 15px;
  }
  .sectionBlock.specials .col-lg-6.col-md-12:last-child .col-md-6 {
    padding-right: 15px !important;
  }
  .sectionBlock.specials .col-md-6:last-child {
    padding-left: 15px !important;
  }
  .chaletInfo {
    margin-bottom: 30px;
  }
  .chaletInfo .col-md-6:first-child {
    padding-right: 15px;
  }
  .chaletInfo .col-md-6:last-child {
    padding-left: 15px;
    margin-left: 15px;
    margin-right: 15px;
    border: 1px solid #e0e0e0;
    border-top: none;
  }
  .chaletInfo .parkInfo .col-md-6:last-child {
    margin-left: 15px;
    margin-right: 15px;
    border: none;
    padding: 0;
  }
  .chaletInfo .modelBlock.col-md-6:last-child {
    padding-left: 0;
    padding-right: 0;
  }
  .chaletInfo .modelBlock.col-md-6:last-child .informatieBlock {
    border-left: none;
  }
  .parkInfo .col-md-6:last-child {
    margin-top: 30px;
  }
  .parkInfo .col-md-6:last-child #map {
    margin-bottom: 30px;
  }
  .single-chalets .chaletInfo {
    margin-bottom: 50px;
  }
  .single-chalets .chaletInfo .col-md-6:last-child {
    margin-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
    border: none;
    padding: 0;
  }
  .specialTitle {
    padding-bottom: 0;
  }
  .footer-margin {
    margin-bottom: 0;
  }
  footer.footer {
    padding-top: 180px;
  }
  footer.footer .nieuwsbrief {
    width: 93.5%;
    top: -220px;
  }
  footer.footer .nieuwsbrief .gform_wrapper .gform_body {
    margin-right: 5px;
  }
  footer.footer .nieuwsbrief .gform_wrapper .gform_button {
    width: 158px;
  }
  .serviceAanvraag #field_6_8 {
    margin-top: 0;
  }
  .serviceBlock {
    margin-top: 30px;
  }
  .serviceBlock .col-lg-6:last-child .col-md-6 {
    padding-right: 15px !important;
  }
  .serviceBlock .col-lg-6:last-child .col-md-6:first-child {
    margin-top: 30px;
  }
  .aboutUsBlock .row .col-md-6:first-child {
    margin-top: 10px !important;
  }
  .aboutUsBlock .row .col-md-4 {
    padding: 7.5px 15px !important;
  }
  .gallery .col-md-4:nth-child(1) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gallery .col-md-4:nth-child(2), .gallery .col-md-4:nth-child(3), .gallery .col-md-4:nth-child(4), .gallery .col-md-4:nth-child(5) {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 0;
  }
  .gallery .col-md-4:nth-child(2) .thumbnail, .gallery .col-md-4:nth-child(3) .thumbnail, .gallery .col-md-4:nth-child(4) .thumbnail, .gallery .col-md-4:nth-child(5) .thumbnail {
    height: 160px;
  }
  .gallery .col-md-4:nth-child(2) .thumbnail .galleryImage, .gallery .col-md-4:nth-child(3) .thumbnail .galleryImage, .gallery .col-md-4:nth-child(4) .thumbnail .galleryImage, .gallery .col-md-4:nth-child(5) .thumbnail .galleryImage {
    width: 250px;
    height: 160px;
  }
  footer.footer {
    padding-top: 260px;
  }
  footer.footer .nieuwsbrief {
    top: -300px;
  }
  footer.footer .nieuwsbrief .gform_body {
    width: 100%;
  }
  footer.footer .nieuwsbrief .gform_footer {
    display: block;
  }
  footer.footer .nieuwsbrief .gform_footer input {
    margin-bottom: 0;
  }
  .models.sectionBlock .whiteBlock {
    padding-bottom: 0px;
  }
  .mob-order-1 {
    order: 1 !important;
  }
  .mob-order-2 {
    order: 2 !important;
  }
  .page-template-template-aanpak .margin-overlay .row .col-md-6:first-child {
    padding-right: 15px;
  }
  .page-template-template-aanpak .titleBlock {
    padding-bottom: 50px;
  }
  .archive-special {
    margin-bottom: 80px;
  }
  .archive-special .archiveImage {
    height: auto;
  }
  .archive-special .archiveImage img {
    height: auto !important;
    width: 100% !important;
    max-width: 100%;
  }
  .windTurbine .col-4:first-child {
    width: 33%;
    max-width: 33%;
  }
  .aanpakInfo {
    margin-bottom: 30px;
  }
  .aanpakInfo .greenBlock {
    margin: 30px 0;
  }
  .aanpakInfo .col-md-6:first-child {
    padding-right: 15px;
  }
  .aanpakInfo .col-md-6:last-child {
    padding-left: 15px;
  }
  .aanpakInfo:last-child {
    margin-bottom: 0;
  }
  .inspiratieFilters select {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-template-archive-vacatures .sectionBlock .greenBlock, .sectionBlock .whiteBlock {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .whiteBlock .btn {
    position: relative !important;
    left: 0 !important;
    bottom: 0 !important;
    display: inline-block !important;
    margin: 15px 0;
  }
  .magazineInfo .whiteBlock {
    padding-bottom: 45px;
  }
  div.pum-content.popmake-content h1 {
    font-size: 22px;
  }
  div.pum-content.popmake-content h2 {
    font-size: 18px;
  }
  .page-template-archive-vacatures .background, .page-template-template-aankooptips .background {
    padding-top: 30px;
  }
}
@media (max-width: 575.98px) {
  img.alignleft {
    float: none;
    width: 90%;
  }
  img.alignright {
    float: none;
    width: 91%;
  }
  .chaletInfo .informatieBlock.informatieBlockPG .informatieBlockPGButton {
    display: block;
  }
  .chaletInfo .informatieBlock.informatieBlockPG .informatieBlockPGButton a {
    margin-left: 0;
  }
  .aboutUsBlock .row .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .aboutUsBlock .row .col-md-6:first-child {
    margin-top: 10px !important;
    padding-right: 15px;
  }
  .aboutUsBlock .row .col-md-4 {
    padding: 15px !important;
  }
  .aboutUsBlock .speerpuntenRow {
    margin-left: 0;
    margin-right: 0;
  }
  #bs-example-navbar-collapse-2 {
    width: 100%;
  }
  .navbar .navbar-collapse {
    padding-bottom: 60px;
  }
  .navbar .navbar-collapse .col-6:last-child {
    position: static;
  }
  .navbar .navbar-collapse .col-6:last-child .btn-navbar {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .navbar .navbar-collapse .col-6:last-child .btn-navbar i {
    font-size: 13px;
    margin-left: 5px;
  }
  .home .banner {
    height: 300px !important;
  }
  .frontpage-block .col-md-6:first-child {
    order: 2;
  }
  .frontpage-block .col-md-6:nth-child(2) {
    order: 1;
    margin-bottom: 0px;
  }
  .frontpage-block .col-md-4 {
    order: 3;
  }
  .pageBanner {
    min-height: 200px;
  }
  .chaletInfo .greenBlock {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .chaletInfo .informatieBlock .btn {
    bottom: 10px;
  }
  .flex-event .singleEventBlock, .chaletInfo .singleEventBlock {
    height: auto;
    line-height: 40px;
  }
  .flex-event .singleEventBlock .btn, .chaletInfo .singleEventBlock .btn {
    position: relative;
    left: 0;
    margin-top: 30px;
  }
  .flex-event .singleEventBlock .eventTitle, .chaletInfo .singleEventBlock .eventTitle {
    position: relative;
    margin-bottom: 15px;
    top: 0;
    left: 0;
    height: 70px;
  }
  .margin-overlay .row .col-md-6:first-child {
    padding-right: 15px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .usp_background {
    height: auto;
    padding: 30px 0;
  }
  .titleBlock {
    padding-bottom: 30px;
  }
  .tax-kenmerken .titleBlock {
    padding-bottom: 80px;
  }
  .sectionBlock .row .col-md-6:last-child {
    margin-top: 30px;
  }
  .whiteBlock .btn.btn-primary.btnMagazine {
    left: 15px;
    bottom: -50px;
  }
  .specialBlock {
    margin-top: 0;
  }
  .specialBlock .imageBlock {
    margin-bottom: 30px;
  }
  iframe {
    width: 100%;
    height: 300px;
  }
  .margin-overlay .whiteBlock {
    word-break: break-word;
  }
  footer.bottom-footer {
    padding-left: 15px;
  }
  .veconet {
    position: relative;
    width: 100%;
    text-align: center;
  }
  #search input[type=text] {
    font-size: 24px;
  }
  .greenBlock .btn.btn-primary {
    position: static;
  }
}
@media (max-width: 420px) {
  .footer-left {
    width: 100%;
    text-align: left;
  }
  .footer-left a {
    width: 100%;
    display: block;
  }
  #search input[type=text] {
    font-size: 20px;
  }
  .frontpage-block .whiteBlock {
    height: 300px;
  }
  .magazineInfo h3 {
    font-size: 18px;
  }
}
@media (max-height: 420px) {
  header .navbar-collapse {
    height: calc(100vh - 61px);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .blueimp-gallery > .slides > .slide > .slide-content {
    max-height: 80vh;
    margin-top: 10px;
  }
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #52AE32;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #52AE32 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
main .cmplz-placeholder-1, .maps-placeholder {
  background: url("/app/themes/veconet/complianz-gdpr-premium/google-maps-custom-1280×500.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: auto !important;
}

.maps-iframe {
  width: 100%;
  height: auto;
  display: flex;
  border: 0;
}

/*# sourceMappingURL=style.min.css.map */
