:root {
    --hoofdkleur: #2d943e;
    --subkleur: #5bc691;
    --donker: #323530;
    --vrijstaand: #d38e51;
    --tok: #c1793a;
    --rij: #b36827;
}

/* ======== STANDAARD STYLING ======== */

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    text-decoration: none;
}

p {
    color: #221E1F;
    font-size: 17px;
    line-height: 30px;
    font-family: "helvetica-neue-lt-pro", sans-serif;
}

input:focus,
textarea {
    outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
     font-family: "stolzl", sans-serif;
}

/* ======== MENU ======== */

.topbar {
    background: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    top: 0;
    z-index: 100;
    position: relative;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
}

img.logo {
    width: 255px;
}

img.logo-klein {
    width: 200px;
}

.innermenu {
    display: flex;
    justify-content: space-between;
}

ul#menu-hoofdmenu {
    display: flex;
    list-style: none;
    gap: 15px;
     font-family: "stolzl", sans-serif;
}

ul#menu-hoofdmenu-1 {
    display: flex;
    list-style: none;
    gap: 15px;
}

.mobiel-menu {
    display: flex;
    flex-direction: column;
}

.navigatie {
    display: flex;
    list-style: none;
    gap: 20px;
}

.legendablok {
    background: #fff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

ul.menu-wrap {
    font-family: "stolzl", sans-serif;
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
}

ul.menu-wrap a {
    color: var(--donker);
    font-size: 20px;
}

h1.header-titel {
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--donker);
}

span.ondertitel {
    display: flex;
    font-weight: 200;
}

.menu-fixed {
    position: fixed;
    top: -120px;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.6s;
}

.menu-fixed.visible {
    transform: translateY(0);
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    top: 0;
    background: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 20;
}

.menu-fixed span.ondertitel {
    display: inline-block;
    font-weight: 200;
}

.menu-fixed .header-titel {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 3px;
}

/* ======== HEADER ======== */

.header {
    background: #f7f7f7;
    height: 850px;
    width: 100%;
    /* background-image: linear-gradient(to top right, transparent calc(50% - 1px), #777 50%, transparent calc(50% + 1px)), linear-gradient(to bottom right, transparent calc(50% - 1px), #777 50%, transparent calc(50% + 1px)); */
    /* background-repeat: no-repeat; */
    /* background-size: 100% 100%; */
    background-image: url(../img/testafbeelding.png);
    background-position: center;
    background-size: cover;
}

.header-small {
    height: 450px;
}

section.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--hoofdkleur);
    padding: 9rem 0;
}

.map-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    overflow: hidden;
    background: #404040;
}

.hero .map-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

.hero .text-col {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

section.hero h2 {
    font-family: "stolzl", sans-serif;
    font-size: 45px;
    text-wrap-style: pretty;
    margin-bottom: 25px;
    line-height: 42px;
    color: #fff;
    font-weight: 800;
}

.innertekst {
    padding-right: 30px;
}

.innertekst p {
    color: #fff;
}

span.ondertitel-h2 {
    display: flex;
    font-size: 28px;
    font-weight: 200;
    margin-top: 5px;
}

.no-current a {
    color:#000!important;
    font-size: 20px!important;
    font-weight: 400!important;
}

/* ======== CONTENT ======== */

.buttongroep {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    font-size: 17px;
}


a.knop {
    background: var(--donker);
    padding: 12px 60px;
    border-radius: 50px;
    font-family: "stolzl", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

a.knop.knop-licht {
    background: #fff;
    color: var(--donker);
}


.innerafbeelding-1 {
    background-image: url(../img/afbeelding1-nieuw.jpg);
    background-position: center;
    background-size: cover;
    height: 300px;
    border-radius: 20px;
}

.innerafbeelding-2 {
    background-image: url(../img/afbeelding2.jpg);
    background-position: center;
    background-size: cover;
    height: 300px;
    border-radius: 20px;
}

.innerafbeelding-3 {
    background-image: url(../img/afbeelding2-nieuw.jpg);
    background-position: center;
    background-size: cover;
    height: 300px;
    border-radius: 20px;
}



/* ======== DIVIDER ======== */

.divider {
    height: 800px;
    width: 100%;
    background-image: url(../img/divider-vv.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-size: cover;
    background-position: center;
}

/* ======== GASSELTERNIJVEEN ======== */

.gasselternijveen {
    padding-top: 110px;
    padding-bottom: 80px;
}

h3.h3-titel {
    font-weight: 800;
    font-size: 38px;
}

span.ondertitel-h3 {
    display: flex;
    font-weight: 300;
    font-size: 28px;
}

.fotorij {
    padding-bottom: 50px;
}

/* ======== DOWNLOADS ======== */

.downloads {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--subkleur);
}

.witblok-downloads {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    margin-bottom: 50px;
}

a.download-button {
    background: #fff;
    padding: 15px 20px;
    display: inline-flex;
    margin-bottom: 20px;
    margin-right: 10px;
    border-radius: 20px;
    color: #000;
    font-family: "gotham", sans-serif;
    font-weight: 500;
    min-width: 31%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    text-transform: none;
}

.rijtop {
    padding: 25px 20px 20px 20px;
}

.balkonder {
    padding: 0px 20px 15px 20px;
}

.witblok-downloads img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.innerdownloads {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #444;
    padding-left: 0;
    padding-right: 5px;
}

.innerdownloads:last-child {
    padding-top: 20px;
    padding-bottom: 15px;
    border-bottom: 0px dotted #444;
}

.innerdownloads a {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    text-transform: none;
}



/* ======== WONINGTYPES ======== */

.innermodal h5 {
    font-weight: 800;
    font-size: 30px;
    padding: 25px;
}

.woningtypes {
    background: var(--subkleur);
    padding-top: 80px;
    padding-bottom: 140px;
}



.woningtypes p {
    font-size: 18px;
}

i.fas.fa-arrow-right {
    position: relative;
    top: 4px;
    left: 15px;
}

.buttongroep i.fas.fa-arrow-right {
    position: relative;
    top: 0;
    left: 15px;
}

.h4-titel {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.margin-knop {
    display: inline-flex;
    margin-top: 20px;
}

.info-wrap {
    padding-top: 15px;
    margin-top: 15px;
}

.info {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    text-transform: none;
    font-size: 16px;
    border-bottom: 1px solid #dadada;
    padding-top: 10px;
    padding-bottom: 10px;
}

.info:last-child {
    border-bottom: none;
}

span.ondertitel-wt {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    
}

p.woningtype-titel {
    font-weight: 600;
    font-size: 20px;
    font-family: "stolzl", sans-serif;
    margin-bottom: 0px;
}

span.ondertitel-wt {
    display: flex;
    font-size: 16px;
    font-weight: 300;
}

.innerwit-blok {
    background: #fff;
    padding: 25px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.woningtype-info{

}

.woningtype{
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
}

.woningtype img {
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#woningtypes {
    scroll-margin-top: 65px;
}

span.blok1 {
    font-weight: 700;
}

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

/* ======== BLIJF OP DE HOOGTE ======== */

.blijfopdehoogte {
    background: #2d943e;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
    color: #fff;
}

.blijfopdehoogte p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

h5.h5-titel {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 800;
}

/* ======== SITUATIE ======== */

a.button-bekijk-woning {
    color: #fff;
    padding: 25px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    letter-spacing: 2px;
    background: #000;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

i.fa-solid.fa-arrow-right {
    margin-left: 10px;
    font-size: 17px;
}

section#image-container {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

span.onder.optie {
    pointer-events: none;
    opacity: 1 !important;
    background: #ffc200;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 15px;
}

span.verkocht.onder.voorbehoud {
    pointer-events: none;
    opacity: 1 !important;
    background: #ffc200;
    color: #000;
    padding: 7px 10px;
    border-radius: 50px;
    font-size: 15px;
    top: 4px;
    position: relative;
}

span.verkocht {
    pointer-events: none;
    opacity: 1;
    background: #c60d0d;
    color: #fff;
    padding: 7px 10px;
    border-radius: 50px;
    font-size: 15px;
    top: 4px;
    position: relative;
}

.modal tr {
    height: 60px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
    border-bottom: 1px dotted #dadada;
}

.modal tr:last-child {
    border-bottom: 0 dotted #dadada;
}

.modal-body.woning-modal {
    padding: 0;
}

.woning-modal img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

span.smalltwee {
    font-size: 12px;
    position: relative;
    top: -5px;
    font-weight: 400;
}

.infogedeelte {
    padding: 35px 30px 35px 30px;
}


.blok-legenda.kavel-blok {
    background: #bb9d1c;
  border:none!important;
}

.blok-legenda.kavel-tok2 {
    background: #da8eba;
    border:none!important;
}

.kavel-starter {
    background: #8b4e23;
   border:none!important;
}

.blok-legenda.kavel-tok {
    background: #5fba96;
    border:none!important;
   
}

.blok-legenda.kavel-huur {
    background: #df2786;
    border:none!important;
}

.kavel-middenhuur {
    background: #138b3a;
    border:none!important;

}

h2.bouwnummer-title {
    display: none;
}

.infogedeelte h1 {
    font-size: 17px;
    font-weight: 300;
}

h2.woningtype-info {
    font-size: 27px;
}

.modal-content {
    border-radius: 10px !important;
    border: 0px;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
}

.modal {
    background: rgb(0 0 0 / 6%);
    -webkit-backdrop-filter: blur(5px) brightness(90%);
    backdrop-filter: blur(5px) brightness(90%);
}

.legenda-blok {
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

.legenda-blok-inner {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blok {
    width: 40px;
    height: 25px;
    display: flex;
    margin-right: 10px;
}

.kleur1 {
    background: #5b327b;
}

.kleur2 {
    background: #5b327b;
}

.kleur3 {
    background: #5b327b;
}

.kleur4 {
    background: #5b327b;
}

button.sluitknlop {
    position: absolute;
    background: #000;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 8px 15px;
    font-weight: 500;
    right: 0;
    font-family: "gotham", sans-serif;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

div#situatie {
    background: var(--subkleur);
    padding-top: 90px;
    padding-bottom: 90px;
}

.kavel.vrij {
    fill: #00800000;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    stroke-width: 6px;
    stroke: #000;
}

a.button-bekijk-woning.Vrijstaande.woning-button {
    background: var(--vrijstaand);
}

a.button-bekijk-woning.Rijwoning-button{
    background: var(--rij);
}

a.button-bekijk-woning.Twee-onder-een-kap-woning-button{
    background: var(--tok);
}

.vrij:hover {
    fill: #008000 !important;
    opacity: 0.85;
    cursor: pointer;
        stroke-width: 10px;
    stroke: #008000 !important;
}

polygon.kavel.Te.koop {
    fill: green;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

polygon.kavel.Te.koop:hover {
    fill: green;
    opacity: 0.8;
    cursor: pointer;
}
.verkocht {
    fill: red;
    opacity: 0.75;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.witte-content-vervolg {
    padding-top: 10px;
    padding-bottom: 20px;
}

.verkocht2 {
    color: red;
}

.optie2 {}

.vrij2 {
    color: green;
}

.verkocht:hover {
    fill: red;
    opacity: 0.8;
    cursor: pointer;
}

.optie {
    fill: #ffc200;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.optie:hover {
    fill: #ffc200;
    opacity: 0.8;
    cursor: pointer;
}

.kavel-betaalbaarkoop {
    background: #0f5f2a;
    border: none !important;
}

.voorbehoud {
    pointer-events: all;
    fill: #ffc200;
    opacity: 0.5;
}

.voorbehoud:hover {
    fill: #ffc200;
    opacity: 0.8;
    cursor: pointer;
}

span.voorbehoud {
    fill: #000 !important;
    opacity: 1;
    pointer-events: none;
}

.innerwit-informatie tr {
    height: 60px;
    border-bottom: 1px solid #ffffff4f;
    font-size: 17px;
    line-height: 30px;
    font-family: "gotham", sans-serif;
}

.innerwit-informatie tr:last-child {
    height: 55px;
    border-bottom:none
}

.inner {
    background: #ffffff;
    padding: 20px;
    -webkit-box-shadow: 0 -5px 50px 0 rgb(0 0 0 / 1%);
    -moz-box-shadow: 0 -5px 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0px 20px 0 rgb(0 0 0 / 5%);
    border-radius: 15px;
        -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.21s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.inner:hover {
    transform: translate(0px, -5px);
}

/* ======== BETROKKEN PARTIJEN ======== */

.betrokkenpartijen {
    padding-top: 60px;
    padding-bottom: 60px;
}

.logo-rij {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.makelaars {
    margin-top: 20px;
}

img.logo-partij {
    width: 200px;
}

.betrokkenpartijen h6 {
    font-size: 20px;
    color: #333531;
    margin-bottom: 40px;
    text-align: center;
}

/* ======== OVERLAY MENU ======== */

body.menu-open {
  overflow: hidden;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    display: none;
}

.line {
  display: block;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.line:nth-child(1) { width: 30px; }
.line:nth-child(2) { width: 30px;}
.line:nth-child(3) { width: 30px; }

/* Animatie naar Kruis (X) */
.menu-toggle.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 30px;
}
.menu-toggle.active .line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle.active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 30px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    background-color: var(--hoofdkleur);
}

.menu-overlay.active {
  right: 0;
}

.current-menu-item a {
    color: #56876d;
    font-weight: 600;
}

ul.menu-wrap a:hover{
    color: #56876d !important;
}

.interesse-knop a {
    background: #fff;
    padding-left: 25px;
    padding-right: 22px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 50px;
    background-color: #098b38;
    color: #fff !important;
}

.interesse-knop a:hover{
    color:#fff !important;
    background-color: #3259ab;
}

.site-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 71%);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.site-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.menu-content a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    font-family: "stolzl", sans-serif;
}

.active .line {
    display: block;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}



#image-container {
    position: relative;
}

#panzoom {
    overflow: hidden;
    cursor: grab;
}

#panzoom:active {
   cursor: grab;
}

.controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    z-index: 10;
    font-family: "gotham", sans-serif;
    font-weight: 800;
}

.controls button {
    background: rgb(169 116 93);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    background: #000;
}

.knop-licht i, .knop-donker i {
    display: inline-block;
    transform-origin: center center; 
    vertical-align: middle; 
    transition: transform 0.3s ease;
}


.knop-licht:hover i, .knop-donker:hover i {
  transform: rotate(45deg); 
}


button#reset {
    font-size: 13px;
}

.controls button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.plattegronden {
    background-position: center;
    padding-top: 90px;
    padding-bottom: 90px;
    background: var(--subkleur);
}

.content-plattegronden {
    padding-top: 50px;
    padding-bottom: 50px;
}

.content-plattegronden h3 {
    font-size: 40px;
}

.downloads-blok {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #343434;
}

.downloads-blok h4 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 0;
}

span.vrij {
    pointer-events: none;
}



.inner p {
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    padding-top: 10px;
    font-family: "stolzl", sans-serif;
    font-size: 19px;
}

.innerwit-informatie {
    color: #fff;
}

.schaduw{
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    border-radius: 20px;
}

.inner-legenda {
    padding: 50px;
}
.blok-legenda { width: 30px; height: 20px; /* background: #cd8854; */ border-radius: 5px; border: 2px solid #000; }

.item {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px dashed #dadada;
    padding-bottom: 25px;
}

.item:last-child {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 0px dashed #dadada;
    padding-bottom: 25px;
}

.woningtype-blok {
    font-weight: 400;
    font-family: "stolzl", sans-serif;
}

h3.titel-legenda {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 25px;
}

.formulier {
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
}

.formulier h5 {
    color: #436955;
    border-bottom: 1px solid #436955;
    padding-bottom: 20px;
}

.form-h1ps4cklip label {
    display: block;
    padding: .4em 0 .1em 0;
    font-weight: 500;
    font-family: "stolzl", sans-serif;
}

.form-h1ps4cklip fieldset {
	border: 0;
}

.form-h1ps4cklip fieldset label {
        display: inline;
        padding: 0 0 0 .1em;
}

.form-h1ps4cklip input:valid {
    width: 100%;
    border: none!important;
}

.form-h1ps4cklip input[type=email], .form-h1ps4cklip input[type=number], .form-h1ps4cklip input[type=text] {
    padding: 8px;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    background: #eaeaea;
    border: none;
    border:none;
}

/* client side validation */
.form-h1ps4cklip input:invalid {
	border: 2px dashed red;
}


.form-h1ps4cklip input:invalid:required {
        border: 0px solid #ccc;
        width: 100%;
}

.form-h1ps4cklip input:valid {
        border: 2px solid #ccc;
}

select#id-ds3uVWt2Qa, select#id-iSEEsFITpa, select#id-Yx5IXueH3j, select#id-X7IdYFRWr5 {
    padding: 8px;
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 10px;
    background: #eaeaea;
    border: none;
    width: 100%;
}

.form-h1ps4cklip input[type=submit] {
    margin-top: 30px;
    font-size: 17px;
    background: #6e4122;
    color: #fff;
    font-weight: 200;
    padding: 5px 25px;
    width: auto !important;
    border: none !important;
    border-radius: 35px;
    padding: 12px 60px;
    border-radius: 50px;
    font-family: "stolzl", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.idweb {
    padding-top: 25px;
    padding-bottom: 15px;
    background: #f7f7f7;
    text-align: center;
}

p.small-tekst {
    font-size: 14px;
    font-weight: 400;
    font-family: "stolzl", sans-serif;
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e67e22;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 75px;
    z-index: 10;
}