.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid > .grid-col:first-child {
  margin-top: 0 !important;
}
.grid--gutters-xs {
  margin: 0 -4px;
}
.grid--gutters-xs > .grid-col {
  margin-top: 8px;
  padding: 0 4px;
}
.grid--gutters-sm {
  margin: 0 -12px;
}
.grid--gutters-sm > .grid-col {
  margin-top: 24px;
  padding: 0 12px;
}
.grid--gutters-md {
  margin: 0 -20px;
}
.grid--gutters-md > .grid-col {
  margin-top: 40px;
  padding: 0 20px;
}
.grid--gutters-lg {
  margin: 0 -28px;
}
.grid--gutters-lg > .grid-col {
  margin-top: 56px;
  padding: 0 28px;
}
.grid--gutters-xl {
  margin: 0 -40px;
}
.grid--gutters-xl > .grid-col {
  margin-top: 80px;
  padding: 0 40px;
}
.grid--2col > .grid-col {
  width: 100%;
}
@media (min-width: 480px) {
  .grid--2col.grid--sm > .grid-col {
    width: 50%;
  }
  .grid--2col.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--2col.grid--md > .grid-col {
    width: 50%;
  }
  .grid--2col.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--2col.grid--lg > .grid-col {
    width: 50%;
  }
  .grid--2col.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
.grid--3col > .grid-col {
  width: 100%;
}
@media (min-width: 480px) {
  .grid--3col.grid--sm > .grid-col {
    width: 33.33333%;
  }
  .grid--3col.grid--sm > .grid-col:nth-child(-n+3) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--3col.grid--md > .grid-col {
    width: 33.33333%;
  }
  .grid--3col.grid--md > .grid-col:nth-child(-n+3) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--3col.grid--lg > .grid-col {
    width: 33.33333%;
  }
  .grid--3col.grid--lg > .grid-col:nth-child(-n+3) {
    margin-top: 0 !important;
  }
}
.grid--4col > .grid-col {
  width: 100%;
}
@media (min-width: 480px) {
  .grid--4col.grid--sm > .grid-col {
    width: 50%;
  }
  .grid--4col.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--4col.grid--sm > .grid-col {
    width: 25%;
  }
  .grid--4col.grid--sm > .grid-col:nth-child(-n+4) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--4col.grid--md > .grid-col {
    width: 50%;
  }
  .grid--4col.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--4col.grid--md > .grid-col {
    width: 25%;
  }
  .grid--4col.grid--md > .grid-col:nth-child(-n+4) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--4col.grid--lg > .grid-col {
    width: 50%;
  }
  .grid--4col.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1200px) {
  .grid--4col.grid--lg > .grid-col {
    width: 25%;
  }
  .grid--4col.grid--lg > .grid-col:nth-child(-n+4) {
    margin-top: 0 !important;
  }
}
.grid--5col > .grid-col {
  width: 100%;
}
@media (min-width: 480px) {
  .grid--5col.grid--sm > .grid-col {
    width: 33.3333333%;
  }
  .grid--5col.grid--sm > .grid-col:nth-child(-n+3) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--5col.grid--sm > .grid-col {
    width: 20%;
  }
  .grid--5col.grid--sm > .grid-col:nth-child(-n+5) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--5col.grid--md > .grid-col {
    width: 33.3333333%;
  }
  .grid--5col.grid--md > .grid-col:nth-child(-n+3) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--5col.grid--md > .grid-col {
    width: 20%;
  }
  .grid--5col.grid--md > .grid-col:nth-child(-n+5) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--5col.grid--lg > .grid-col {
    width: 33.3333333%;
  }
  .grid--5col.grid--lg > .grid-col:nth-child(-n+3) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1200px) {
  .grid--5col.grid--lg > .grid-col {
    width: 20%;
  }
  .grid--5col.grid--lg > .grid-col:nth-child(-n+5) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--25-75.grid--sm > .grid-col:nth-child(1) {
    width: 25%;
  }
  .grid--25-75.grid--sm > .grid-col:nth-child(2) {
    width: 75%;
  }
  .grid--25-75.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--25-75.grid--md > .grid-col:nth-child(1) {
    width: 25%;
  }
  .grid--25-75.grid--md > .grid-col:nth-child(2) {
    width: 75%;
  }
  .grid--25-75.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--25-75.grid--lg > .grid-col:nth-child(1) {
    width: 25%;
  }
  .grid--25-75.grid--lg > .grid-col:nth-child(2) {
    width: 75%;
  }
  .grid--25-75.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--75-25.grid--sm > .grid-col:nth-child(1) {
    width: 75%;
  }
  .grid--75-25.grid--sm > .grid-col:nth-child(2) {
    width: 25%;
  }
  .grid--75-25.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--75-25.grid--md > .grid-col:nth-child(1) {
    width: 75%;
  }
  .grid--75-25.grid--md > .grid-col:nth-child(2) {
    width: 25%;
  }
  .grid--75-25.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--75-25.grid--lg > .grid-col:nth-child(1) {
    width: 75%;
  }
  .grid--75-25.grid--lg > .grid-col:nth-child(2) {
    width: 25%;
  }
  .grid--75-25.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--30-70.grid--sm > .grid-col:nth-child(1) {
    width: 30%;
  }
  .grid--30-70.grid--sm > .grid-col:nth-child(2) {
    width: 70%;
  }
  .grid--30-70.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--30-70.grid--md > .grid-col:nth-child(1) {
    width: 30%;
  }
  .grid--30-70.grid--md > .grid-col:nth-child(2) {
    width: 70%;
  }
  .grid--30-70.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--30-70.grid--lg > .grid-col:nth-child(1) {
    width: 30%;
  }
  .grid--30-70.grid--lg > .grid-col:nth-child(2) {
    width: 70%;
  }
  .grid--30-70.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--70-30.grid--sm > .grid-col:nth-child(1) {
    width: 70%;
  }
  .grid--70-30.grid--sm > .grid-col:nth-child(2) {
    width: 30%;
  }
  .grid--70-30.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--70-30.grid--md > .grid-col:nth-child(1) {
    width: 70%;
  }
  .grid--70-30.grid--md > .grid-col:nth-child(2) {
    width: 30%;
  }
  .grid--70-30.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--70-30.grid--lg > .grid-col:nth-child(1) {
    width: 70%;
  }
  .grid--70-30.grid--lg > .grid-col:nth-child(2) {
    width: 30%;
  }
  .grid--70-30.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--35-65.grid--sm > .grid-col:nth-child(1) {
    width: 35%;
  }
  .grid--35-65.grid--sm > .grid-col:nth-child(2) {
    width: 65%;
  }
  .grid--35-65.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--35-65.grid--md > .grid-col:nth-child(1) {
    width: 35%;
  }
  .grid--35-65.grid--md > .grid-col:nth-child(2) {
    width: 65%;
  }
  .grid--35-65.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--35-65.grid--lg > .grid-col:nth-child(1) {
    width: 35%;
  }
  .grid--35-65.grid--lg > .grid-col:nth-child(2) {
    width: 65%;
  }
  .grid--35-65.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--65-35.grid--sm > .grid-col:nth-child(1) {
    width: 65%;
  }
  .grid--65-35.grid--sm > .grid-col:nth-child(2) {
    width: 35%;
  }
  .grid--65-35.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--65-35.grid--md > .grid-col:nth-child(1) {
    width: 65%;
  }
  .grid--65-35.grid--md > .grid-col:nth-child(2) {
    width: 35%;
  }
  .grid--65-35.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--65-35.grid--lg > .grid-col:nth-child(1) {
    width: 65%;
  }
  .grid--65-35.grid--lg > .grid-col:nth-child(2) {
    width: 35%;
  }
  .grid--65-35.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--40-60.grid--sm > .grid-col:nth-child(1) {
    width: 40%;
  }
  .grid--40-60.grid--sm > .grid-col:nth-child(2) {
    width: 60%;
  }
  .grid--40-60.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--40-60.grid--md > .grid-col:nth-child(1) {
    width: 40%;
  }
  .grid--40-60.grid--md > .grid-col:nth-child(2) {
    width: 60%;
  }
  .grid--40-60.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--40-60.grid--lg > .grid-col:nth-child(1) {
    width: 40%;
  }
  .grid--40-60.grid--lg > .grid-col:nth-child(2) {
    width: 60%;
  }
  .grid--40-60.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 480px) {
  .grid--60-40.grid--sm > .grid-col:nth-child(1) {
    width: 60%;
  }
  .grid--60-40.grid--sm > .grid-col:nth-child(2) {
    width: 40%;
  }
  .grid--60-40.grid--sm > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .grid--60-40.grid--md > .grid-col:nth-child(1) {
    width: 60%;
  }
  .grid--60-40.grid--md > .grid-col:nth-child(2) {
    width: 40%;
  }
  .grid--60-40.grid--md > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}
@media (min-width: 1024px) {
  .grid--60-40.grid--lg > .grid-col:nth-child(1) {
    width: 60%;
  }
  .grid--60-40.grid--lg > .grid-col:nth-child(2) {
    width: 40%;
  }
  .grid--60-40.grid--lg > .grid-col:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}

.Pager__button--next::before, .Pager__button--previous::before, .ws-dropdown .ws-dropdown-trigger::after, .Notice--success::before, .Notice--error::before, .Notice--neutral::before, .Notice--note::before, .FancyCheckbox input + span::after, .knop::after, .btn::after, main ul li::before,
body[class*=cke_] ul li::before, .icon-lg-after::after, .icon-lg-before::before, .icon-lg::before, .icon-md-after::after, .icon-md-before::before, .icon-md::before, .icon-sm-after::after, .icon-sm-before::before, .icon-sm::before {
  content: "";
  display: inline-block;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  vertical-align: middle;
  background-color: #c8a779;
}

.icon-sm {
  display: inline-block;
}
.icon-sm::before {
  width: 16px;
  height: 16px;
}

.icon-sm-before {
  display: inline-block;
}
.icon-sm-before::before {
  margin-right: 12px;
  width: 16px;
  height: 16px;
}

.icon-sm-after {
  display: inline-block;
}
.icon-sm-after::after {
  margin-left: 12px;
  width: 16px;
  height: 16px;
}

.icon-md {
  display: inline-block;
}
.icon-md::before {
  width: 24px;
  height: 24px;
}

.icon-md-before {
  display: inline-block;
}
.icon-md-before::before {
  margin-right: 12px;
  width: 24px;
  height: 24px;
}

.icon-md-after {
  display: inline-block;
}
.icon-md-after::after {
  margin-left: 12px;
  width: 24px;
  height: 24px;
}

.icon-lg {
  display: inline-block;
}
.icon-lg::before {
  width: 32px;
  height: 32px;
}

.icon-lg-before {
  display: inline-block;
}
.icon-lg-before::before {
  margin-right: 12px;
  width: 32px;
  height: 32px;
}

.icon-lg-after {
  display: inline-block;
}
.icon-lg-after::after {
  margin-left: 12px;
  width: 32px;
  height: 32px;
}

.icon-check::before, .icon-check::after {
  -webkit-mask: url(/images/check.svg?284051777c702bbb81a3d2c115435d7e) no-repeat 100% 100%;
          mask: url(/images/check.svg?284051777c702bbb81a3d2c115435d7e) no-repeat 100% 100%;
}
.icon-chevron-up::before, .icon-chevron-up::after {
  -webkit-mask: url(/images/chevron-up-regular.svg?fdadcdad91c756f6587e18b790cbda66) no-repeat 100% 100%;
          mask: url(/images/chevron-up-regular.svg?fdadcdad91c756f6587e18b790cbda66) no-repeat 100% 100%;
}
.icon-chevron-down::before, .icon-chevron-down::after {
  -webkit-mask: url(/images/chevron-down-regular.svg?551b50108ed45cd14b6e04dad3c8e8c0) no-repeat 100% 100%;
          mask: url(/images/chevron-down-regular.svg?551b50108ed45cd14b6e04dad3c8e8c0) no-repeat 100% 100%;
}
.icon-chevron-left::before, .icon-chevron-left::after {
  -webkit-mask: url(/images/chevron-left-regular.svg?5f3b4f372bd79a556644704fce5b67b4) no-repeat 100% 100%;
          mask: url(/images/chevron-left-regular.svg?5f3b4f372bd79a556644704fce5b67b4) no-repeat 100% 100%;
}
.icon-chevron-right::before, .icon-chevron-right::after {
  -webkit-mask: url(/images/chevron-right-regular.svg?a6c8f785dd284b710694b40f6da875cb) no-repeat 100% 100%;
          mask: url(/images/chevron-right-regular.svg?a6c8f785dd284b710694b40f6da875cb) no-repeat 100% 100%;
}
.icon-arrow-left::before, .icon-arrow-left::after {
  -webkit-mask: url(/images/arrow-left-regular.svg?95336c5a9cad9be694661abff0b03070) no-repeat 100% 100%;
          mask: url(/images/arrow-left-regular.svg?95336c5a9cad9be694661abff0b03070) no-repeat 100% 100%;
}
.icon-arrow-right::before, .icon-arrow-right::after {
  -webkit-mask: url(/images/arrow-right-regular.svg?750c326e9b817cf6adcc200814a20896) no-repeat 100% 100%;
          mask: url(/images/arrow-right-regular.svg?750c326e9b817cf6adcc200814a20896) no-repeat 100% 100%;
}
.icon-search::before, .icon-search::after {
  -webkit-mask: url(/images/magnifying-glass-regular.svg?25a160cfc454c3a9930a6e83af319a6f) no-repeat 100% 100%;
          mask: url(/images/magnifying-glass-regular.svg?25a160cfc454c3a9930a6e83af319a6f) no-repeat 100% 100%;
}
.icon-close::before, .icon-close::after {
  -webkit-mask: url(/images/xmark-solid.svg?b183d8b8e8fec34841c17be507d81128) no-repeat 100% 100%;
          mask: url(/images/xmark-solid.svg?b183d8b8e8fec34841c17be507d81128) no-repeat 100% 100%;
}
.icon-user::before, .icon-user::after {
  -webkit-mask: url(/images/user-solid.svg?a3efe7339d68bc1d08a962728e03e904) no-repeat 100% 100%;
          mask: url(/images/user-solid.svg?a3efe7339d68bc1d08a962728e03e904) no-repeat 100% 100%;
}
.icon-download::before, .icon-download::after {
  -webkit-mask: url(/images/download-solid.svg?bc02ae2836cd131c84b1a3ff5699257c) no-repeat 100% 100%;
          mask: url(/images/download-solid.svg?bc02ae2836cd131c84b1a3ff5699257c) no-repeat 100% 100%;
}
.icon-file::before, .icon-file::after {
  -webkit-mask: url(/images/file-solid.svg?befa98c2b902f8e2ccc380400c53fab1) no-repeat 100% 100%;
          mask: url(/images/file-solid.svg?befa98c2b902f8e2ccc380400c53fab1) no-repeat 100% 100%;
}
.icon-file-text::before, .icon-file-text::after {
  -webkit-mask: url(/images/file-lines-solid.svg?2749b28804f4351acbedaea4d5327d51) no-repeat 100% 100%;
          mask: url(/images/file-lines-solid.svg?2749b28804f4351acbedaea4d5327d51) no-repeat 100% 100%;
}
.icon-pdf::before, .icon-pdf::after {
  -webkit-mask: url(/images/file-pdf-solid.svg?0a9d75fe1d7a3c61aae0aebdd0c8f516) no-repeat 100% 100%;
          mask: url(/images/file-pdf-solid.svg?0a9d75fe1d7a3c61aae0aebdd0c8f516) no-repeat 100% 100%;
}
.icon-excel::before, .icon-excel::after {
  -webkit-mask: url(/images/file-excel-solid.svg?217d73dbae138c408b515c481550dd52) no-repeat 100% 100%;
          mask: url(/images/file-excel-solid.svg?217d73dbae138c408b515c481550dd52) no-repeat 100% 100%;
}
.icon-word::before, .icon-word::after {
  -webkit-mask: url(/images/file-word-solid.svg?9228e1ff52e2ba74418465324170dd6c) no-repeat 100% 100%;
          mask: url(/images/file-word-solid.svg?9228e1ff52e2ba74418465324170dd6c) no-repeat 100% 100%;
}
.icon-alert::before, .icon-alert::after {
  -webkit-mask: url(/images/triangle-exclamation-regular.svg?664d5c7d591311fa62dcbf1fe23a65c9) no-repeat 100% 100%;
          mask: url(/images/triangle-exclamation-regular.svg?664d5c7d591311fa62dcbf1fe23a65c9) no-repeat 100% 100%;
}
.icon-home::before, .icon-home::after {
  -webkit-mask: url(/images/house-chimney-solid.svg?07eca755331c7a231240b47c7798f688) no-repeat 100% 100%;
          mask: url(/images/house-chimney-solid.svg?07eca755331c7a231240b47c7798f688) no-repeat 100% 100%;
}
.icon-sort::before, .icon-sort::after {
  -webkit-mask: url(/images/arrow-down-wide-short-regular.svg?14fd747184d971ba9435630979aee29a) no-repeat 100% 100%;
          mask: url(/images/arrow-down-wide-short-regular.svg?14fd747184d971ba9435630979aee29a) no-repeat 100% 100%;
}
.icon-play::before, .icon-play::after {
  -webkit-mask: url(/images/play-solid.svg?4ae9fd65c2d33a967f740cf15700cc7b) no-repeat 100% 100%;
          mask: url(/images/play-solid.svg?4ae9fd65c2d33a967f740cf15700cc7b) no-repeat 100% 100%;
}
.icon-menu::before, .icon-menu::after {
  -webkit-mask: url(/images/bars-solid.svg?0671bc5b9388995c7446ee5e448f585d) no-repeat 100% 100%;
          mask: url(/images/bars-solid.svg?0671bc5b9388995c7446ee5e448f585d) no-repeat 100% 100%;
}
.icon-phone::before, .icon-phone::after {
  -webkit-mask: url(/images/phone-arrow-up-right-light.svg?18aea49b326bc75221b73daeb0958722) no-repeat 100% 100%;
          mask: url(/images/phone-arrow-up-right-light.svg?18aea49b326bc75221b73daeb0958722) no-repeat 100% 100%;
}
.icon-mail::before, .icon-mail::after {
  -webkit-mask: url(/images/envelope-light.svg?217393289b77103a0e63ea3b71932e73) no-repeat 100% 100%;
          mask: url(/images/envelope-light.svg?217393289b77103a0e63ea3b71932e73) no-repeat 100% 100%;
}
.icon-globe::before, .icon-globe::after {
  -webkit-mask: url(/images/globe-light.svg?18a3366846853002db4a4e5d5a6d0f7a) no-repeat 100% 100%;
          mask: url(/images/globe-light.svg?18a3366846853002db4a4e5d5a6d0f7a) no-repeat 100% 100%;
}
.icon-facebook::before, .icon-facebook::after {
  background: #3b5998 !important;
  -webkit-mask: url(/images/facebook-f-brands.svg?aac44a46af0289ca8c081237beb198da) no-repeat center;
          mask: url(/images/facebook-f-brands.svg?aac44a46af0289ca8c081237beb198da) no-repeat center;
}
.icon-twitter::before, .icon-twitter::after {
  background: #1DA1F2 !important;
  -webkit-mask: url(/images/twitter-brands.svg?fbef2378c4d482d9dd0c5b25849b27a3) no-repeat 100% 100%;
          mask: url(/images/twitter-brands.svg?fbef2378c4d482d9dd0c5b25849b27a3) no-repeat 100% 100%;
}
.icon-instagram::before, .icon-instagram::after {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  -webkit-mask: url(/images/instagram-brands.svg?90a80cd5b9a105845e0d07f0cdaf509b) no-repeat 100% 100%;
          mask: url(/images/instagram-brands.svg?90a80cd5b9a105845e0d07f0cdaf509b) no-repeat 100% 100%;
}
.icon-linkedin::before, .icon-linkedin::after {
  background: #2867B2 !important;
  -webkit-mask: url(/images/linkedin-in-brands.svg?e7181b246abffeb7d8773b37d85b6dbb) no-repeat 100% 100%;
          mask: url(/images/linkedin-in-brands.svg?e7181b246abffeb7d8773b37d85b6dbb) no-repeat 100% 100%;
}
.icon-linkedin-boxed::before, .icon-linkedin-boxed::after {
  background: #2867B2 !important;
  -webkit-mask: url(/images/linkedin-brands-boxed.svg?d31fae38b05787df3938719b7c1f603f) no-repeat 100% 100%;
          mask: url(/images/linkedin-brands-boxed.svg?d31fae38b05787df3938719b7c1f603f) no-repeat 100% 100%;
}
.icon-youtube::before, .icon-youtube::after {
  background: #f00 !important;
  -webkit-mask: url(/images/youtube-brands.svg?356c7c0756e9a3308cf8ba44dc144a15) no-repeat 100% 100%;
          mask: url(/images/youtube-brands.svg?356c7c0756e9a3308cf8ba44dc144a15) no-repeat 100% 100%;
}
.icon-plus::before, .icon-plus::after {
  -webkit-mask: url(/images/plus-solid.svg?474c4dcb061199d23b1c6ae61c8d6f55) no-repeat 100% 100%;
          mask: url(/images/plus-solid.svg?474c4dcb061199d23b1c6ae61c8d6f55) no-repeat 100% 100%;
}
.icon-min::before, .icon-min::after {
  -webkit-mask: url(/images/minus-solid.svg?174348bfaf9c5bef60dbebeaa6e9af49) no-repeat 100% 100%;
          mask: url(/images/minus-solid.svg?174348bfaf9c5bef60dbebeaa6e9af49) no-repeat 100% 100%;
}

html, body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
.heading-h1,
.heading-h2,
.heading-h3,
.heading-h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
.heading-h1:first-child,
.heading-h2:first-child,
.heading-h3:first-child,
.heading-h4:first-child {
  padding-top: 0;
}

p,
address,
ol,
table {
  line-height: 1.75;
  margin-bottom: 1.5em;
}
p:last-child,
address:last-child,
ol:last-child,
table:last-child {
  margin-bottom: 0;
}

h1,
.heading--h1 {
  margin-bottom: 1em;
  padding-top: 0;
  font-size: 2rem;
  line-height: 1.25;
  color: #fff;
}

h2,
.heading--h2 {
  margin-bottom: 1em;
  padding-top: 1em;
  font-size: 1.625rem;
  line-height: 1.5384615385;
  color: #fff;
}

h3,
.heading--h3 {
  margin-bottom: 1em;
  padding-top: 1em;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
}

h4,
.heading--h4 {
  margin-bottom: 1em;
  padding-top: 1em;
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
}

strong {
  font-weight: 700;
}

a {
  transition: background 0.3s ease, color 0.3s ease;
  color: #c8a779;
  text-decoration: underline;
}
a:hover {
  color: #c8a779;
  text-decoration: underline;
}

main ul, main ol,
body[class*=cke_] ul,
body[class*=cke_] ol {
  margin: 0 0 24px 20px;
}
main ul ul, main ul ol, main ol ul, main ol ol,
body[class*=cke_] ul ul,
body[class*=cke_] ul ol,
body[class*=cke_] ol ul,
body[class*=cke_] ol ol {
  margin-bottom: 0;
}
main ol,
body[class*=cke_] ol {
  list-style: decimal;
}
main ol li,
body[class*=cke_] ol li {
  margin-left: 24px;
}
main ul li,
body[class*=cke_] ul li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}
main ul li::before,
body[class*=cke_] ul li::before {
  width: 12px;
  height: 12px;
  background-color: #c8a779;
  position: absolute;
  top: 9px;
  left: 0;
  -webkit-mask: url(/images/chevron-right-solid.svg?f1af0fe0b2c3b01b1150dad57e80981d) no-repeat 100% 100%;
          mask: url(/images/chevron-right-solid.svg?f1af0fe0b2c3b01b1150dad57e80981d) no-repeat 100% 100%;
}

blockquote {
  margin: 32px;
  padding: 8px 0 8px 24px;
  border-left: 4px solid #CFD8DC;
  font-style: italic;
  color: #fff;
}
blockquote p {
  margin: 0;
  padding: 0;
}

.bg-color-1 {
  background-color: #FFFFFF;
}

.bg-color-2 {
  background-color: #ECEFF1;
}

.bg-color-3 {
  background-color: #c8a779;
}

.bg-color-4 {
  background-color: #000000;
}

.bg-color-is-dark {
  color: #FFF;
}
.bg-color-is-dark * {
  color: #FFF;
}
.bg-color-is-dark a {
  color: #FFF;
}
.bg-color-is-dark a:hover {
  color: #FFF;
}
.bg-color-is-dark .more,
.bg-color-is-dark .back {
  color: #FFF;
}
.bg-color-is-dark .more:hover,
.bg-color-is-dark .back:hover {
  color: #FFF;
}
.bg-color-is-dark .btn {
  background-color: #FFF;
  color: #fff;
}
.bg-color-is-dark .btn:hover {
  color: #fff;
}
.bg-color-is-dark .btn--ghost {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #FFF !important;
}
.bg-color-is-dark .btn--ghost:hover {
  color: #FFF;
}

.knop, .btn {
  position: relative;
  border: 0 !important;
  display: inline-block;
  max-width: 100%;
  transition: background 0.3s ease;
  text-decoration: none !important;
  text-align: center;
  text-overflow: ellipsis;
  z-index: 1;
  margin: 16px 16px 0 0;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  background: #c8a779;
  border-radius: 4px;
  color: #FFF !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  transition: background 0.3s ease;
}
.knop::after, .btn::after {
  margin-left: 12px;
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #FFF;
  -webkit-mask: url(/images/chevron-right-solid.svg?f1af0fe0b2c3b01b1150dad57e80981d) no-repeat 100% 100%;
          mask: url(/images/chevron-right-solid.svg?f1af0fe0b2c3b01b1150dad57e80981d) no-repeat 100% 100%;
}
.knop:active, .btn:active {
  box-shadow: none;
  outline: none;
  background: #c8a779;
}
.knop:focus, .btn:focus {
  box-shadow: none;
  outline: none;
}

.btn--primary:hover {
  background-color: #d7bf9d !important;
}
.btn--secondary {
  background: #ECEFF1 !important;
  color: #fff !important;
}
.btn--secondary:hover {
  background-color: #cfd6db !important;
}
.btn--secondary::after {
  background-color: #fff;
}
.btn--secondary:active {
  box-shadow: none;
  outline: none;
  background: #ECEFF1;
}
.btn--secondary:focus {
  box-shadow: none;
  outline: none;
}
.btn--ghost {
  padding-top: calc(8px - 1px);
  padding-bottom: calc(10px - 1px);
  background: none !important;
  border: 1px solid #CFD8DC !important;
  color: #fff !important;
}
.btn--ghost:hover {
  background-color: #ecf0f2 !important;
}
.btn--ghost::after {
  background-color: #fff;
}
.btn--ghost:active {
  border: 1px solid #CFD8DC !important;
}
.btn--ghost:focus {
  box-shadow: none;
  outline: none;
  background: none;
  border: 1px solid #CFD8DC !important;
}
.btn--link {
  background: none !important;
  color: #c8a779 !important;
}
.btn--link::after {
  background-color: #c8a779;
}
.btn--link:active {
  box-shadow: none;
  outline: none;
  background: none !important;
}
.btn--link:focus {
  box-shadow: none;
  outline: none;
}
.btn--no-icon::after {
  display: none !important;
}

.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  margin: 0 !important;
  border-radius: 0;
  transform: none !important;
}
.btn-group .btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 0 none !important;
  margin-left: 0 !important;
}
.btn-group .btn:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group .btn--primary {
  border-left: 1px solid #d7bf9d !important;
  margin-left: -1px !important;
}
.btn-group .btn--secondary {
  border-left: 1px solid #cfd6db !important;
  margin-left: -1px !important;
}
.btn-group .btn--ghost {
  border-left: 1px solid #CFD8DC !important;
  margin-left: -1px !important;
}
.btn-group .btn--ghost:first-child {
  border-left: 1px solid #CFD8DC !important;
}

.container {
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .container {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.container--small {
  max-width: 900px;
}
.container--no-padding {
  padding-left: 0;
  padding-right: 0;
}

.iframe-container-16-9, .iframe-container-4-3, .iframe-container-4-2, .iframe-container {
  position: relative;
  height: 0;
  overflow: hidden;
  margin-bottom: 24px;
}
.iframe-container-16-9 iframe, .iframe-container-4-3 iframe, .iframe-container-4-2 iframe, .iframe-container iframe,
.iframe-container-16-9 object,
.iframe-container-4-3 object,
.iframe-container-4-2 object,
.iframe-container object,
.iframe-container-16-9 embed,
.iframe-container-4-3 embed,
.iframe-container-4-2 embed,
.iframe-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-container {
  margin: 56px 0;
  padding-bottom: 60%;
}

.iframe-container-4-2 {
  padding-bottom: 50%;
}

.iframe-container-4-3 {
  padding-bottom: 75%;
}

.iframe-container-16-9 {
  padding-bottom: 56.25%;
}

/* Responsive afbeeldingen in de content
--------------------------------------------------------------------*/
img.responsive-left-10 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 10%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-10 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-20 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 20%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-20 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-30 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 30%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-30 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-40 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 40%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-40 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-50 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 50%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-50 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-60 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 60%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-60 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-70 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 70%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-70 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-80 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 80%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-80 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-90 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 90%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-90 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive-left-100 {
  float: left;
  margin: 8px 48px 48px 0;
  max-width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-100 {
    margin: 8px 32px 24px 0;
  }
}

img.responsive {
  max-width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-10, img.responsive-right-10 {
    max-width: 15%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-10, img.responsive-right-10 {
    max-width: 20%;
  }
}
@media (max-width: 700px) {
  img.responsive-left-20, img.responsive-right-20 {
    max-width: 25%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-20, img.responsive-right-20 {
    max-width: 30%;
  }
}
@media (max-width: 700px) {
  img.responsive-left-30, img.responsive-right-30 {
    max-width: 35%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-30, img.responsive-right-30 {
    max-width: 40%;
  }
}
@media (max-width: 700px) {
  img.responsive-left-40, img.responsive-right-40, img.responsive-left-50, img.responsive-right-50, img.responsive-left-60, img.responsive-right-60, img.responsive-left-70, img.responsive-right-70, img.responsive-left-80, img.responsive-right-80 {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-40, img.responsive-right-40, img.responsive-left-50, img.responsive-right-50, img.responsive-left-60, img.responsive-right-60, img.responsive-left-70, img.responsive-right-70, img.responsive-left-80, img.responsive-right-80 {
    max-width: 100%;
  }
}

img.responsive-right-10 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 10%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-10 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-20 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 20%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-20 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-30 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 30%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-30 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-40 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 40%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-40 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-50 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 50%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-50 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-60 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 60%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-60 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-70 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 70%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-70 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-80 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 80%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-80 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-90 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 90%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-90 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive-right-100 {
  float: right;
  margin: 8px 0 48px 48px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-right-100 {
    margin: 8px 0 24px 32px;
  }
}

img.responsive {
  max-width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  img.responsive-left-10, img.responsive-right-10 {
    max-width: 15%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-10, img.responsive-right-10 {
    max-width: 20%;
  }
}
@media (max-width: 700px) {
  img.responsive-left-20, img.responsive-right-20 {
    max-width: 25%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-20, img.responsive-right-20 {
    max-width: 30%;
  }
}
@media (max-width: 700px) {
  img.responsive-left-30, img.responsive-right-30 {
    max-width: 35%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-30, img.responsive-right-30 {
    max-width: 40%;
  }
}
@media (max-width: 700px) {
  img.responsive-left-40, img.responsive-right-40, img.responsive-left-50, img.responsive-right-50, img.responsive-left-60, img.responsive-right-60, img.responsive-left-70, img.responsive-right-70, img.responsive-left-80, img.responsive-right-80 {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  img.responsive-left-40, img.responsive-right-40, img.responsive-left-50, img.responsive-right-50, img.responsive-left-60, img.responsive-right-60, img.responsive-left-70, img.responsive-right-70, img.responsive-left-80, img.responsive-right-80 {
    max-width: 100%;
  }
}

table {
  width: 100%;
}
table th, table td {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: left;
}
table th:first-child, table td:first-child {
  padding-left: 0 !important;
}
table th:last-child, table td:last-child {
  padding-right: 0 !important;
}

.table-bordered th, .table-bordered td {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: calc(2px + 6px);
  padding-bottom: calc(2px + 6px);
}
.table-bordered tr {
  border-bottom: 1px solid #CFD8DC;
}
.table-bordered tr:last-child {
  border-bottom: 0px none !important;
}
.table-bordered th {
  border-bottom: 2px solid #CFD8DC !important;
}
.table-alternate th, .table-alternate td {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: calc(2px + 6px);
  padding-bottom: calc(2px + 6px);
}
.table-alternate th:first-child, .table-alternate td:first-child {
  padding-left: 8px !important;
}
.table-alternate th:last-child, .table-alternate td:last-child {
  padding-right: 8px !important;
}
.table-alternate tbody tr:nth-child(odd) td {
  background-color: #ECEFF1;
}
@media (max-width: 768px) {
  .table-responsive-stack {
    display: block;
  }
  .table-responsive-stack thead {
    display: none;
  }
  .table-responsive-stack thead + tbody tr td {
    padding-left: 148px !important;
    position: relative;
  }
  .table-responsive-stack thead + tbody tr td::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 132px;
    content: attr(data-title);
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .table-responsive-stack tbody {
    display: block;
  }
  .table-responsive-stack tbody tr {
    display: block;
  }
  .table-responsive-stack tbody td {
    display: block;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .table-responsive-stack.table-bordered thead + tbody tr td {
    padding-left: 148px !important;
  }

  .table-responsive-stack.table-alternate thead + tbody tr td {
    padding-left: 148px !important;
  }
}
@media (max-width: 768px) {
  .table-responsive-stack.table-bordered tbody td {
    display: block;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .table-responsive-stack.table-bordered tbody td:first-child {
    padding-top: calc(2px + 6px) !important;
  }
  .table-responsive-stack.table-bordered tbody td:first-child::before {
    top: calc(2px + 6px);
  }
  .table-responsive-stack.table-bordered tbody td:last-child {
    padding-bottom: calc(2px + 6px) !important;
  }
}
@media (max-width: 768px) {
  .table-responsive-stack.table-alternate tbody td {
    display: block;
    padding-left: calc(2px + 6px) !important;
    padding-right: calc(2px + 6px) !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .table-responsive-stack.table-alternate tbody td::before {
    left: 8px !important;
  }
  .table-responsive-stack.table-alternate tbody td:first-child {
    padding-top: calc(2px + 6px) !important;
  }
  .table-responsive-stack.table-alternate tbody td:first-child::before {
    top: calc(2px + 6px);
  }
  .table-responsive-stack.table-alternate tbody td:last-child {
    padding-bottom: calc(2px + 6px) !important;
  }
}
@media (max-width: 768px) {
  .table-responsive-slide-wrapper {
    overflow-x: scroll;
    padding-top: 32px;
    margin-bottom: 1.5em;
    position: relative;
  }
  .table-responsive-slide-wrapper::before {
    content: "";
    display: inline-block;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    vertical-align: middle;
    background-color: #c8a779;
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 16px;
    background-color: #c8a779;
    -webkit-mask: url(/images/arrow-right-arrow-left-regular.svg?549fc4e2dc21e60dbdfb792842b1d2e7) no-repeat 100% 100%;
            mask: url(/images/arrow-right-arrow-left-regular.svg?549fc4e2dc21e60dbdfb792842b1d2e7) no-repeat 100% 100%;
  }
  .table-responsive-slide-wrapper table.table-responsive-slide {
    min-width: 800px;
    margin-bottom: 0;
  }
}

/* Editor table styles
--------------------------------------------------------------------*/
table.striped th, table.striped td {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: calc(2px + 6px);
  padding-bottom: calc(2px + 8px);
}
table.striped th:first-child, table.striped td:first-child {
  padding-left: 8px !important;
}
table.striped th:last-child, table.striped td:last-child {
  padding-right: 8px !important;
}
table.striped tbody tr {
  border-top: 1px solid #CFD8DC;
}
table.striped tbody tr:nth-child(odd) {
  background-color: #ECEFF1;
}
table.striped tbody tr:last-child {
  border-bottom: 1px solid #CFD8DC;
}
@media (max-width: 768px) {
  table.striped tbody tr td {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
@media (max-width: 768px) {
  table.striped {
    display: block;
  }
  table.striped tbody {
    display: block;
  }
  table.striped tbody tr {
    display: block;
    background: none !important;
  }
  table.striped tbody td {
    display: block;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  table.striped tbody td:first-child {
    padding-top: 8px !important;
  }
  table.striped tbody td:last-child {
    padding-bottom: 8px !important;
  }
}

@media (max-width: 768px) {
  table.responsive {
    display: block;
  }
  table.responsive thead {
    display: none;
  }
  table.responsive thead + tbody tr td {
    padding-left: 148px !important;
    position: relative;
  }
  table.responsive thead + tbody tr td::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 132px;
    content: attr(data-title);
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  table.responsive tbody {
    display: block;
  }
  table.responsive tbody tr {
    display: block;
  }
  table.responsive tbody td {
    display: block;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
}

@media (max-width: 768px) {
  .table-slider-wrapper {
    overflow-x: scroll;
    padding-top: 32px;
    margin-bottom: 1.5em;
    position: relative;
  }
  .table-slider-wrapper::before {
    content: "";
    display: inline-block;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    vertical-align: middle;
    background-color: #c8a779;
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 16px;
    background-color: #c8a779;
    -webkit-mask: url(/images/arrow-right-arrow-left-regular.svg?549fc4e2dc21e60dbdfb792842b1d2e7) no-repeat 100% 100%;
            mask: url(/images/arrow-right-arrow-left-regular.svg?549fc4e2dc21e60dbdfb792842b1d2e7) no-repeat 100% 100%;
  }
}

table.slider {
  min-width: 800px;
  margin-bottom: 0;
}
table.slider th, table.slider td {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: calc(2px + 6px);
  padding-bottom: calc(2px + 8px);
}
table.slider th:first-child, table.slider td:first-child {
  padding-left: 8px !important;
}
table.slider th:last-child, table.slider td:last-child {
  padding-right: 8px !important;
}
table.slider tbody tr {
  border-top: 1px solid #CFD8DC;
}
table.slider tbody tr:nth-child(odd) {
  background-color: #ECEFF1;
}
table.slider tbody tr:last-child {
  border-bottom: 1px solid #CFD8DC;
}
@media (max-width: 768px) {
  table.slider tbody tr td {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}

.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.strong {
  font-weight: 700;
}

.black {
  font-weight: 900;
}

.color-primary {
  color: #c8a779;
}

.color-secondary {
  color: #000000;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}
.flex--h-start {
  justify-content: flex-start;
}
.flex--h-end {
  justify-content: flex-end;
}
.flex--h-center {
  justify-content: center;
}
.flex--h-equal {
  justify-content: space-between;
}
.flex--v-start {
  align-content: flex-start;
}
.flex--v-end {
  align-content: flex-end;
}
.flex--v-center {
  align-content: center;
}
.flex--v-equal {
  align-content: space-between;
}
.flex--v-center-items {
  align-items: center;
}
.flex--row-reverse {
  flex-direction: row-reverse;
}
.flex--col-reverse {
  flex-direction: column-reverse;
}
.flex--grow {
  flex-grow: 1;
}

.border {
  border: 1px solid #CFD8DC;
}

.border-left {
  border-left: 1px solid #CFD8DC;
}

.border-right {
  border-right: 1px solid #CFD8DC;
}

.border-bottom {
  border-bottom: 1px solid #CFD8DC;
}

.border-top {
  border-top: 1px solid #CFD8DC;
}

.border-left-0 {
  border-left: 0;
}

.border-right-0 {
  border-right: 0;
}

.border-bottom-0 {
  border-bottom: 0;
}

.border-top-0 {
  border-top: 0;
}

.rounded-sm {
  border-radius: 4px;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 16px;
}

.box-shadow-sm {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

.box-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.box-shadow-lg {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.bg-color-1 {
  background-color: #FFFFFF;
}

.bg-color-2 {
  background-color: #ECEFF1;
}

.bg-color-3 {
  background-color: #c8a779;
}

.bg-color-4 {
  background-color: #000000;
}

.bg-color-is-dark {
  color: #FFF;
}
.bg-color-is-dark * {
  color: #FFF;
}
.bg-color-is-dark a {
  color: #FFF;
}
.bg-color-is-dark a:hover {
  color: #FFF;
}
.bg-color-is-dark .more, .bg-color-is-dark .back {
  color: #FFF;
}
.bg-color-is-dark .more:hover, .bg-color-is-dark .back:hover {
  color: #FFF;
}
.bg-color-is-dark .btn {
  background-color: #FFF;
  color: #fff;
}
.bg-color-is-dark .btn:hover {
  color: #fff;
}
.bg-color-is-dark .btn--ghost {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #FFF !important;
}
.bg-color-is-dark .btn--ghost:hover {
  color: #FFF;
}

.ph-sm {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 480px) {
  .ph-sm {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .ph-sm {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .ph-sm {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.ph-md {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 480px) {
  .ph-md {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 768px) {
  .ph-md {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 1024px) {
  .ph-md {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.ph-lg {
  padding-left: 48px;
  padding-right: 48px;
}
@media (min-width: 480px) {
  .ph-lg {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 768px) {
  .ph-lg {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1024px) {
  .ph-lg {
    padding-left: 136px;
    padding-right: 136px;
  }
}

.pv-sm {
  padding-top: calc(16px + 8px);
  padding-bottom: calc(16px + 8px);
}
@media (min-width: 480px) {
  .pv-sm {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .pv-sm {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  .pv-sm {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.pv-md {
  padding-top: calc(24px + 8px);
  padding-bottom: calc(24px + 8px);
}
@media (min-width: 480px) {
  .pv-md {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .pv-md {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .pv-md {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.pv-lg {
  padding-top: calc(48px + 8px);
  padding-bottom: calc(48px + 8px);
}
@media (min-width: 480px) {
  .pv-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .pv-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .pv-lg {
    padding-top: 136px;
    padding-bottom: 136px;
  }
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.mh-sm {
  margin-left: 16px;
  margin-right: 16px;
}
@media (min-width: 480px) {
  .mh-sm {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (min-width: 768px) {
  .mh-sm {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (min-width: 1024px) {
  .mh-sm {
    margin-left: 32px;
    margin-right: 32px;
  }
}

.mh-md {
  margin-left: 24px;
  margin-right: 24px;
}
@media (min-width: 480px) {
  .mh-md {
    margin-left: 48px;
    margin-right: 48px;
  }
}
@media (min-width: 768px) {
  .mh-md {
    margin-left: 48px;
    margin-right: 48px;
  }
}
@media (min-width: 1024px) {
  .mh-md {
    margin-left: 64px;
    margin-right: 64px;
  }
}

.mh-lg {
  margin-left: 48px;
  margin-right: 48px;
}
@media (min-width: 480px) {
  .mh-lg {
    margin-left: 80px;
    margin-right: 80px;
  }
}
@media (min-width: 768px) {
  .mh-lg {
    margin-left: 80px;
    margin-right: 80px;
  }
}
@media (min-width: 1024px) {
  .mh-lg {
    margin-left: 136px;
    margin-right: 136px;
  }
}

.mv-sm {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .mv-sm {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .mv-sm {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  .mv-sm {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

.mv-md {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .mv-md {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .mv-md {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .mv-md {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.mv-lg {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media (min-width: 480px) {
  .mv-lg {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .mv-lg {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .mv-lg {
    margin-top: 136px;
    margin-bottom: 136px;
  }
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

@media (max-width: 1200px) {
  .show-on-xl {
    display: none;
  }
}

@media (max-width: 1024px) {
  .show-on-lg {
    display: none;
  }
}

@media (max-width: 768px) {
  .show-on-md {
    display: none;
  }
}

@media (max-width: 480px) {
  .show-on-sm {
    display: none;
  }
}

@media (max-width: 320px) {
  .show-on-xs {
    display: none;
  }
}

html.sr .load-hidden {
  visibility: hidden;
}

/* Formulier resets
--------------------------------------------------------------------*/
textarea,
select,
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 4px 8px;
  text-align: left;
  background-clip: padding-box;
  float: left;
  border-style: solid;
  border-width: 1px;
  -o-border-image: none;
     border-image: none;
  outline: 0 none;
}

form::after {
  content: "";
  display: table;
  clear: both;
}

textarea, select[size], select[multiple] {
  height: auto;
}

textarea {
  min-height: 110px;
}

/* Formulier styles
--------------------------------------------------------------------*/
form {
  margin-bottom: 40px;
}

input, select, textarea, optgroup {
  font-family: "Poppins", sans-serif;
  line-height: 1.75;
}

/* Formulier input styles
--------------------------------------------------------------------*/
textarea,
select,
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  height: 40px;
  background-color: #FFF;
  color: #fff !important;
  border-color: #CFD8DC;
  border-radius: 4px;
}

/* Input focus styles
--------------------------------------------------------------------*/
input:focus,
input[type=file]:focus + span,
button:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 5px 0 #9ac0fb;
  border: 1px solid;
  border-color: #7baefc;
  z-index: 1;
}

input[type=file]:focus {
  box-shadow: none;
  border: 0;
  z-index: 2;
  outline: none;
}

/* Input disabled / readonly styles
--------------------------------------------------------------------*/
textarea[disabled],
select[disabled],
input[type=date][disabled],
input[type=datetime][disabled],
input[type=datetime-local][disabled],
input[type=email][disabled],
input[type=month][disabled],
input[type=number][disabled],
input[type=password][disabled],
input[type=search][disabled],
input[type=tel][disabled],
input[type=text][disabled],
input[type=time][disabled],
input[type=url][disabled],
input[type=week][disabled] {
  opacity: 0.5;
  cursor: default;
}

textarea[readonly],
select[readonly],
input[type=date][readonly],
input[type=datetime][readonly],
input[type=datetime-local][readonly],
input[type=email][readonly],
input[type=month][readonly],
input[type=number][readonly],
input[type=password][readonly],
input[type=search][readonly],
input[type=tel][readonly],
input[type=text][readonly],
input[type=time][readonly],
input[type=url][readonly],
input[type=week][readonly] {
  opacity: 0.5;
  cursor: default;
}

button[disabled],
input[disabled],
select[disabled],
select[disabled] option,
select[disabled] optgroup,
textarea[disabled],
a.button_disabled {
  -moz-user-select: none;
  box-shadow: none;
  opacity: 0.5;
  cursor: default;
}

option {
  color: #fff !important;
}

label {
  display: block;
  float: left;
  margin: 0 10px 4px 0;
  cursor: pointer;
  line-height: 1.75;
}
label .optional {
  display: inline-block;
  margin-left: 4px;
  font-style: italic;
  font-size: 0.813rem;
  opacity: 0.65;
}

.label {
  display: block;
  margin: 0 10px 4px 0;
  line-height: 1.75;
}

.file {
  position: relative;
  clear: both;
}
.file::after {
  content: "";
  display: table;
  clear: both;
}

.file input[type=file] + span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.file input[type=file] + span {
  border: 1px solid;
  border-color: #CFD8DC;
}

.file input[type=file] {
  position: relative;
  width: 95%;
  margin: 10px;
  float: left;
  font-size: 13px;
  font-style: italic;
  z-index: 3;
}

form .captcha_container {
  clear: both;
  margin: 10px 0 10px 0;
  padding: 10px 0;
  text-align: center;
  border: 1px solid;
  border-color: #CFD8DC;
  -o-border-image: none;
     border-image: none;
  border-radius: 0 0 0 0;
}

.review_photowrap label {
  float: none;
  white-space: normal;
}

/* Webkit select styles
--------------------------------------------------------------------*/
@media (-webkit-min-device-pixel-ratio: 0) {
  select {
    -webkit-appearance: none;
  }

  select[size],
select[multiple],
select[multiple][size] {
    background-image: none;
    padding-right: 3px;
  }

  select,
select[size="0"],
select[size="1"] {
    background-image: url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
  }

  ::-webkit-validation-bubble-message {
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #666), color-stop(1, #000));
    border: 0;
    color: #fff;
    font: 13px/17px "Lucida Grande", Arial, "Liberation Sans", FreeSans, sans-serif;
    overflow: hidden;
    padding: 15px 15px 17px;
    text-shadow: #000 0 0 1px;
    min-height: 16px;
  }

  ::-webkit-validation-bubble-arrow,
::-webkit-validation-bubble-top-outer-arrow,
::-webkit-validation-bubble-top-inner-arrow {
    box-shadow: none;
    background: #666;
    border-color: #666;
  }
}
/* Indeling
--------------------------------------------------------------------*/
.fld {
  float: left;
  margin-bottom: 8px;
  padding-right: 8px;
  box-sizing: border-box;
}

.fld_1 {
  width: 8.3333333333%;
}

.fld_2 {
  width: 16.6666666667%;
}

.fld_3 {
  width: 25%;
}

.fld_4 {
  width: 33.3333333333%;
}

.fld_5 {
  width: 41.6666666667%;
}

.fld_6 {
  width: 50%;
}

.fld_7 {
  width: 58.3333333333%;
}

.fld_8 {
  width: 66.6666666667%;
}

.fld_9 {
  width: 75%;
}

.fld_10 {
  width: 83.3333333333%;
}

.fld_11 {
  width: 91.6666666667%;
}

.fld_12 {
  width: 100%;
}

.fld_cleft {
  clear: left;
}

.fld_cright {
  clear: right;
}

.fld_clear {
  clear: both;
}

.fld_aright {
  text-align: right;
}

.fld_fright {
  float: right;
}

.fld_website {
  display: none;
}

.nopadding {
  padding: 0;
}

.nomargin {
  margin: 0;
}

.FancyCheckbox {
  position: relative;
  cursor: pointer;
  white-space: normal;
  display: flex;
  margin: 8px 0;
  width: 100%;
}
.FancyCheckbox + .FancyCheckbox {
  margin-top: 0;
}
.FancyCheckbox::-moz-selection {
  background: transparent;
}
.FancyCheckbox::selection {
  background: transparent;
}
.FancyCheckbox input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}
.FancyCheckbox input[disabled] + span {
  opacity: 0.5;
  cursor: not-allowed;
}
.FancyCheckbox input + span {
  content: "";
  display: block;
  flex-basis: 22px;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0 12px 0 0;
  padding: 0;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  background: #FFF;
  border: 2px solid #CFD8DC;
  border-radius: 4px;
  text-align: center;
  opacity: 1;
  position: relative;
}
.FancyCheckbox input + span::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  opacity: 0;
  background-color: #fff;
  -webkit-mask: url(/images/check.svg?284051777c702bbb81a3d2c115435d7e) no-repeat 100% 100%;
          mask: url(/images/check.svg?284051777c702bbb81a3d2c115435d7e) no-repeat 100% 100%;
}
.FancyCheckbox input:focus + span {
  border: 2px solid #c8a779;
}
.FancyCheckbox input:checked + span::after {
  opacity: 1;
}

.FancyRadio {
  position: relative;
  cursor: pointer;
  white-space: normal;
  display: flex;
  margin: 8px 0;
  width: 100%;
}
.FancyRadio + .FancyRadio {
  margin-top: 0;
}
.FancyRadio::-moz-selection {
  background: transparent;
}
.FancyRadio::selection {
  background: transparent;
}
.FancyRadio input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}
.FancyRadio input[disabled] + span {
  opacity: 0.5;
  cursor: not-allowed;
}
.FancyRadio input + span {
  position: relative;
  content: "";
  display: block;
  flex-basis: 22px;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 1px 12px 0 0;
  padding: 0;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: relative;
  top: -1px;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  background: #FFF;
  border: 2px solid #CFD8DC;
  text-align: center;
  opacity: 1;
}
.FancyRadio input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 8px;
  height: 8px;
  transition: opacity 0.3s;
  opacity: 0;
}
.FancyRadio input:focus + span {
  border: 2px solid #c8a779;
}
.FancyRadio input:checked + span::after {
  opacity: 1;
}

.FancySwitch {
  display: block;
  margin: 8px 0;
}
.FancySwitch-label {
  position: relative;
  white-space: normal;
}
.FancySwitch--left .FancySwitch-label {
  padding: 6px 0 6px 76px;
}

.FancySwitch--right .FancySwitch-label {
  padding: 6px 76px 6px 0;
}

.FancySwitch-toggle {
  position: absolute;
  top: 0;
  display: block;
  box-sizing: border-box;
  background-color: white;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 32px;
  padding: 0;
  border-radius: 16px;
  opacity: 1;
}
.FancySwitch--left .FancySwitch-toggle {
  left: 0;
}

.FancySwitch--right .FancySwitch-toggle {
  right: 0;
}

.FancySwitch-toggle::after {
  content: "V";
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 23px;
  background-color: #78909c;
  text-align: center;
  color: white;
  font-size: 11px;
  transition: left 0.3s ease;
  overflow: hidden;
}
.FancySwitch-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.FancySwitch-input:checked + span::after {
  left: 31px;
  background-color: #43A047;
  content: "\f00c";
}
.FancySwitch-input:disabled + span {
  opacity: 0.5;
}

.Note {
  display: block;
  margin-top: 8px;
  clear: both;
  font-style: italic;
  font-size: 0.813rem;
  opacity: 0.65;
}

.has-error textarea,
.has-error input,
.has-error select,
.has-error .FancyCheckbox input + span {
  background-color: #f8e8e8;
  border: 1px solid #c95555;
}

@media (max-width: 800px) {
  /* Formulier Styles
  --------------------------------------------------------------------*/
  .fld_1 {
    width: 50%;
  }

  .fld_2 {
    width: 50%;
  }

  .fld_3 {
    width: 50%;
  }

  .fld_4 {
    width: 50%;
  }

  .fld_5 {
    width: 50%;
  }

  .fld_6 {
    width: 100%;
  }

  .fld_7 {
    width: 100%;
  }

  .fld_8 {
    width: 100%;
  }

  .fld_9 {
    width: 100%;
  }

  .fld_10 {
    width: 100%;
  }

  .fld_11 {
    width: 100%;
  }

  .fld_12 {
    width: 100%;
  }

  .fld_100procent {
    width: 100%;
  }

  .fld_btn {
    width: 50%;
  }
}
/*/mediaquery*/
@media (max-width: 580px) {
  /* Formulier Styles
  --------------------------------------------------------------------*/
  .fld_1 {
    width: 100%;
  }

  .fld_2 {
    width: 100%;
  }

  .fld_3 {
    width: 100%;
  }

  .fld_4 {
    width: 100%;
  }

  .fld_5 {
    width: 100%;
  }

  .fld_6 {
    width: 100%;
  }

  .fld_7 {
    width: 100%;
  }

  .fld_8 {
    width: 100%;
  }

  .fld_9 {
    width: 100%;
  }

  .fld_10 {
    width: 100%;
  }

  .fld_11 {
    width: 100%;
  }

  .fld_12 {
    width: 100%;
  }

  .fld_100procent {
    width: 100%;
  }

  .fld_btn {
    width: 100%;
  }
}
/*/mediaquery*/
.Notice {
  display: flex;
  margin: 32px 0;
  padding: 12px 16px;
  border-radius: 5px;
  line-height: 1.75;
  text-align: left;
}
.Notice a {
  color: #fff !important;
}
.Notice--note {
  background-color: #fbf5e8;
  border: 1px solid #e3b655;
  color: #d99d1c !important;
}
.Notice--note::before {
  margin-right: 12px;
  width: 24px;
  height: 24px;
  position: relative;
  top: 1px;
  background: no-repeat 50% 50%;
  background-size: contain;
  vertical-align: middle;
  background-color: #d99d1c;
  -webkit-mask: url(/images/triangle-exclamation-light.svg?aebb4d94894018c8d023e9aa812ba2e0) no-repeat 100% 100%;
          mask: url(/images/triangle-exclamation-light.svg?aebb4d94894018c8d023e9aa812ba2e0) no-repeat 100% 100%;
  opacity: 0.75;
}
.Notice--neutral {
  background-color: #e8f0f9;
  border: 1px solid #508cd0;
  color: #1565C0 !important;
}
.Notice--neutral::before {
  margin-right: 12px;
  width: 24px;
  height: 24px;
  position: relative;
  top: 1px;
  background: no-repeat 50% 50%;
  background-size: contain;
  vertical-align: middle;
  background-color: #1565C0;
  -webkit-mask: url(/images/circle-exclamation-light.svg?b91b162ed9494eb9362a9c0d605b6f05) no-repeat 100% 100%;
          mask: url(/images/circle-exclamation-light.svg?b91b162ed9494eb9362a9c0d605b6f05) no-repeat 100% 100%;
  opacity: 0.65;
}
.Notice--error {
  background-color: #f8e8e8;
  border: 1px solid #c95555;
  color: #B71C1C !important;
}
.Notice--error::before {
  margin-right: 12px;
  width: 24px;
  height: 24px;
  position: relative;
  top: 1px;
  background: no-repeat 50% 50%;
  background-size: contain;
  vertical-align: middle;
  background-color: #B71C1C;
  -webkit-mask: url(/images/triangle-exclamation-light.svg?aebb4d94894018c8d023e9aa812ba2e0) no-repeat 100% 100%;
          mask: url(/images/triangle-exclamation-light.svg?aebb4d94894018c8d023e9aa812ba2e0) no-repeat 100% 100%;
  opacity: 0.65;
}
.Notice--success {
  background-color: #eaf2eb;
  border: 1px solid #629e65;
  color: #2E7D32 !important;
}
.Notice--success::before {
  margin-right: 12px;
  width: 24px;
  height: 24px;
  position: relative;
  top: 2px;
  background-color: #2E7D32;
  -webkit-mask: url(/images/circle-check-light.svg?5d9c719c0dd032350453e05dde3a137a) no-repeat 100% 100%;
          mask: url(/images/circle-check-light.svg?5d9c719c0dd032350453e05dde3a137a) no-repeat 100% 100%;
  opacity: 0.65;
}
.Notice strong {
  display: block;
}
.Notice > div {
  position: relative;
  opacity: 0.8;
}

.ws-dropdown {
  display: inline-flex;
  position: relative;
  overflow: visible;
  padding-right: 24px !important;
}
.ws-dropdown .btn {
  margin: 0 !important;
  transform: none !important;
}
.ws-dropdown .btn--primary:not(:first-child) {
  border-left: 1px solid #d7bf9d !important;
  margin-left: -1px !important;
}
.ws-dropdown .btn--secondary:not(:first-child) {
  border-left: 1px solid #cfd6db !important;
  margin-left: -1px !important;
}
.ws-dropdown .btn--ghost:not(:first-child) {
  border-left: 1px solid #CFD8DC !important;
  margin-left: -1px !important;
}
.ws-dropdown.btn {
  padding-right: 48px !important;
  margin: 0 !important;
  transform: none !important;
}
.ws-dropdown.btn .ws-dropdown-trigger::after {
  right: 16px;
}
.ws-dropdown .ws-dropdown-trigger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}
.ws-dropdown .ws-dropdown-trigger::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  -webkit-mask: url(/images/chevron-down-regular.svg?551b50108ed45cd14b6e04dad3c8e8c0) no-repeat 100% 100%;
          mask: url(/images/chevron-down-regular.svg?551b50108ed45cd14b6e04dad3c8e8c0) no-repeat 100% 100%;
}
.ws-dropdown.btn.btn--primary .ws-dropdown-trigger::after,
.ws-dropdown.btn.btn--primary + .ws-dropdown-trigger::after,
.ws-dropdown .btn.btn--primary .ws-dropdown-trigger::after,
.ws-dropdown .btn.btn--primary + .ws-dropdown-trigger::after {
  background-color: #FFF;
}
.ws-dropdown-trigger-inline .ws-dropdown-trigger {
  left: auto;
  width: 40px;
}
.ws-dropdown-trigger-inline-button {
  padding-right: 40px !important;
}
.ws-dropdown-trigger-inline-button .ws-dropdown-trigger {
  left: auto;
  width: 40px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ws-dropdown-trigger-inline-button .ws-dropdown-trigger::after {
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ws-dropdown-trigger-inline-button .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ws-dropdown-trigger-inline-button .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ws-dropdown-trigger-inline-button .btn.btn--primary + .ws-dropdown-trigger {
  border-left: 1px solid #d7bf9d;
  width: 41px;
  background: #c8a779 !important;
}
.ws-dropdown-trigger-inline-button .btn.btn--primary + .ws-dropdown-trigger:hover {
  background-color: #d7bf9d !important;
}
.ws-dropdown-trigger-inline-button .btn.btn--secondary + .ws-dropdown-trigger {
  border-left: 1px solid #cfd6db;
  width: 41px;
  background: #ECEFF1 !important;
}
.ws-dropdown-trigger-inline-button .btn.btn--secondary + .ws-dropdown-trigger:hover {
  background-color: #cfd6db !important;
}
.ws-dropdown-trigger-inline-button .btn.btn--ghost + .ws-dropdown-trigger {
  background: none !important;
  border: 1px solid #CFD8DC !important;
  border-left: 0 none !important;
}
.ws-dropdown-trigger-inline-button .btn.btn--ghost + .ws-dropdown-trigger:hover {
  background-color: #ecf0f2 !important;
}
.ws-dropdown-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
.ws-dropdown-content {
  position: absolute;
  padding-top: 24px;
  top: 100%;
  opacity: 0;
  transform-origin: top left;
  margin-top: -99999999px;
  z-index: 999999;
  transition: opacity 0.3s ease, transform 0.3s ease, margin 0s ease 0.3s;
}
.ws-dropdown-content-inner {
  position: relative;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
  border-radius: 8px;
  color: #fff;
  font-weight: 400;
  text-align: left;
}
.ws-dropdown-content-inner::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -8px;
}
.ws-dropdown-content-sm {
  width: 220px;
}
.ws-dropdown-content-md {
  width: 320px;
}
.ws-dropdown-content-lg {
  width: 600px;
}
.ws-dropdown-content-scroll {
  max-height: 460px;
  overflow-y: auto;
}
.ws-dropdown--open {
  z-index: 999;
}
.ws-dropdown--open .ws-dropdown-content {
  display: block;
  margin-top: 0;
  opacity: 1;
  transform: scale(1, 1);
  transition: opacity 0.3s ease, transform 0.3s ease, margin 0s ease;
}
.ws-dropdown-left .ws-dropdown-content {
  left: 0;
}
.ws-dropdown-left .ws-dropdown-content-inner::after {
  left: 16px;
}
.ws-dropdown-center .ws-dropdown-content {
  left: 50%;
  transform: scale(1, 0.8) translateX(-50%);
}
.ws-dropdown-center .ws-dropdown-content-inner::after {
  left: 50%;
  transform: translateX(-50%);
}
.ws-dropdown-center.ws-dropdown--open .ws-dropdown-content {
  transform: scale(1, 1) translateX(-50%);
}
.ws-dropdown-right .ws-dropdown-content {
  right: 0;
}
.ws-dropdown-right .ws-dropdown-content-inner::after {
  right: 16px;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.aspect-ratio-box {
  position: relative;
  height: 0;
  background-color: #ECEFF1;
}
.aspect-ratio-box-4-3 {
  padding-bottom: 75%;
}
.aspect-ratio-box-16-9 {
  padding-bottom: 56.25%;
}
.aspect-ratio-box-1-1 {
  padding-bottom: 100%;
}
.aspect-ratio-box-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.aspect-ratio-box::before {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  display: inline-block;
  transform: rotate(0deg);
  width: 24px;
  height: 24px;
  border: 0.25rem solid #c8a779;
  border-bottom: 0.25rem solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  opacity: 0.2;
  z-index: 1;
}

body.compensate-for-scrollbar {
  overflow-y: auto !important;
  margin-right: 0 !important;
}

.Pager {
  margin-top: 32px;
  clear: both;
  float: left;
}
.Pager__button {
  width: 48px;
  padding: 0;
  text-align: center;
  display: inline-block;
  float: left;
  margin-right: 10px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #CFD8DC;
  border-radius: 4px;
  color: #c8a779;
  text-decoration: none;
}
@media (max-width: 768px) {
  .Pager__button {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
}
.Pager__button:hover {
  background-color: #e8e8e8;
  color: #fff;
  text-decoration: none;
}
.Pager__button--next, .Pager__button--previous {
  width: 20px;
  padding: 0 15px;
}
.Pager__button--next::before, .Pager__button--previous::before {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-color: #c8a779;
}
.Pager__button--previous::before {
  -webkit-mask: url(/images/chevron-left-regular.svg?5f3b4f372bd79a556644704fce5b67b4) no-repeat 100% 100%;
          mask: url(/images/chevron-left-regular.svg?5f3b4f372bd79a556644704fce5b67b4) no-repeat 100% 100%;
}
.Pager__button--next::before {
  -webkit-mask: url(/images/chevron-right-regular.svg?a6c8f785dd284b710694b40f6da875cb) no-repeat 100% 100%;
          mask: url(/images/chevron-right-regular.svg?a6c8f785dd284b710694b40f6da875cb) no-repeat 100% 100%;
}
.Pager__button--active {
  background-color: #e8e8e8;
}
.Pager span:hover {
  background-color: #FFF;
}

.fa::before,
.fa::after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iframe-container, .iframe-container-4-2, .iframe-container-4-3, .iframe-container-16-9 {
  display: none;
}

html, body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
.heading-h1,
.heading-h2,
.heading-h3,
.heading-h4 {
  font-family: "Poppins", sans-serif;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
.heading-h1:first-child,
.heading-h2:first-child,
.heading-h3:first-child,
.heading-h4:first-child {
  padding-top: 0;
}

p,
address,
ol,
table {
  line-height: 1.75;
  margin-bottom: 24px;
}

h1, span.h1 {
  display: block;
  font-size: 1.9em;
  color: #000;
  margin-bottom: 20px;
  padding-top: 0;
}

h2 {
  font-size: 1.4em;
  color: #000;
  margin-bottom: 20px;
  padding-top: 10px;
}

h3 {
  font-size: 1.2em;
  color: #000;
  margin-bottom: 15px;
  padding-top: 0;
}

a {
  color: #000;
  text-decoration: underline;
}

blockquote {
  margin: 32px;
  padding: 8px 0 8px 24px;
  border-left: 4px solid #CFD8DC;
  font-style: italic;
  color: #fff;
}
blockquote p {
  margin: 0;
  padding: 0;
}

input, select, textarea, optgroup, form {
  display: none !important;
}

.btn,
.knop {
  display: none;
}

/* Responsive afbeeldingen in de content
--------------------------------------------------------------------*/
img.responsive {
  max-width: 100%;
  height: auto;
}

img.responsive-left-10 {
  float: left;
  margin: 9px 40px 40px 0;
  max-width: 10%;
  height: auto;
}

img.responsive-left-20 {
  float: left;
  margin: 9px 40px 40px 0;
  max-width: 20%;
  height: auto;
}

img.responsive-left-30 {
  float: left;
  margin: 9px 40px 40px 0;
  max-width: 30%;
  height: auto;
}

img.responsive-left-40 {
  float: left;
  margin: 9px 40px 40px 0;
  max-width: 40%;
  height: auto;
}

img.responsive-left-50 {
  float: left;
  margin: 9px 40px 40px 0;
  max-width: 50%;
  height: auto;
}

img.responsive-right-10 {
  float: right;
  margin: 9px 0 40px 40px;
  max-width: 10%;
  height: auto;
}

img.responsive-right-20 {
  float: right;
  margin: 9px 0 40px 40px;
  max-width: 20%;
  height: auto;
}

img.responsive-right-30 {
  float: right;
  margin: 9px 0 40px 40px;
  max-width: 30%;
  height: auto;
}

img.responsive-right-40 {
  float: right;
  margin: 9px 0 40px 40px;
  max-width: 40%;
  height: auto;
}

img.responsive-right-50 {
  float: right;
  margin: 9px 0 40px 40px;
  max-width: 50%;
  height: auto;
}
