.pageContentCol > p{
    margin:0;
}

.projectItemHolder{
	margin: 0px auto;
	width:100%;
	min-height: calc(100dvh - 420px);
	--columns: 2;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.projectItem{
    position: relative;
    display: flex;
    /* background: white; */
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: 30dvw;
    color: white;
    padding: 0px;
    transition: all .2s ease-in-out;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.projectItem:hover{	
    box-shadow: 0 8px 53px rgba(0,0,0,0.08);
}
.projectItem .showmore{	
	transition: all .15s ease-in-out;
}
.projectItem:hover .showmore{	
	color:#fff;
	/* transform:translateX(5px); */
}
.projectItem .showmore svg{
    height: 1.0em;
}

.projectItem .imageHolder{
	position:relative;
	width: 100%;
	border-radius: var(--themeBorderRadius);
	height: 100%;
	padding:15px;
	transition: all .25s ease-in-out;
}
.projectItem:hover .imageHolder{
	
}

.projectItem .imageHolder::after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 76%) 100%);
	z-index: 0;
}


.projectItem .imageHolder .new{
	padding:6px 14px;
	border-radius:6px;
    background-color:rgb(136 136 136 / 38%);
	color:white;
	font-size:12px;
}
.projectItem .projectContent{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 140px; */
    padding: 1.2rem;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    gap: 7px;
    background-color: transparent;
    border-radius: var(--themeBorderRadius);
}
.projectItem .projectContent > div:not(.projectContent-content){
    display:flex;
    flex-direction: column;
    gap: 5px;
}
.projectItem .projectContent-content{
    line-height: 1.8em;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 2px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.projectItem .projectContent-content p{
}

.projectItem .projectContent .button{
	/* width:auto; */
	/* flex: 0; */
}

.projectItem .subTitle{
    font-size: 0.9em !important;
    text-transform: none;
    font-weight: 100;
    color: var(--themeYellow);
}
.projectItem .projectTitle{
    font-size: 23px;
    font-weight: bold;
    margin: 0;
    display: -webkit-box;
    max-width: 100%;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: white;
}
.projectItem .projectContent-content + span{
    color: var(--themeTextGrey);
    font-size:12px;
}


.projectItem .projectUtils{
	display:flex;
	justify-content: space-between;
	z-index: 2;
	position: relative;
}
.projectItem .projectUtils .score{
    display: inline-flex;
    padding: 4px 10px 4px 6px;
    align-items: center;
    gap: 5px;
    color: var(--themeText);
    background-color: white;
    border-radius: 5px;
    font-weight: bold;
    width: auto;
    height: 26px;
    justify-content: center;
}
.projectItem .projectUtils .score svg{
	height:14px;
	fill: var(--themeGreenDark);
}
.projectItem .projectUtils .like{
    height: 30px;
    padding: 3px 5px;
    cursor:pointer;
}
.projectItem .projectUtils .like svg{
	height:100%;
	width: auto;
	float:right;
}
.projectItem .projectUtils .like.liked svg path:first-of-type {
    fill: #fff;
    fill-opacity: 0.8;
}

.projectItem .projectTitlebar{
	display:flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
}
.projectItem .projectTitlebar div{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}
.projectItem .projectTitlebar .projectTitle{
    margin: 0;
    font-size: 27px;
    line-height: 1.2em;
    font-weight: 500;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.projectItem .projectTitlebar .projectPrice{
    padding-top: 3px;
}

.projectItem .projectDescription{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0px 0 10px;
    line-height: 22px;
    height: calc(4 * 22px);
}

.projectItem .projectLocatie{
    color: var(--themeTextGrey);
    font-weight: 300;
}
.projectItem .projectBottomBar{
    padding: 0;
    color: var(--themeTextGrey);
    font-weight: 400;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.projectItem .projectBottomBar .button{
	width:100%;
}

/* -- blokken filters -- */
.projectBlokkenFilterHolder{
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.projectBlokkenFilterHolder .projectFilters{
    display: flex;
    gap: 5px;
    height: 30px;
    align-items: center;
}
.projectBlokkenFilterHolder .projectFilters .filterItem{
    padding: 5px 20px;
    background-color: var(--themeTextDark);
    color: white;
    border-radius: 7px;
    cursor:pointer;
    font-size: 13px;
}

.projectBlokkenFilterHolder .projectFilters .filterItem:not(.active){
	background-color:transparent;
	color:var(--themeTextDark);
}
.projectBlokkenFilterHolder a{
	font-size:13px;
}
.projectBlokkenFilterHolder a svg{	
	margin-left:5px;
    transform:translateY(1px);
}


/* -- overview filters -- */
.projecten-headerFilter{
	--radius: 40px;
	border-radius: var(--radius);
	height: 68px;
	width: calc(100% - 60px);
	max-width: 900px;
	margin: 0 auto 50px;
	background-color: white;
	padding: 0 15px;
	box-shadow: 3px 3px 16px 5px rgb(218 208 155 / 24%);
	display: flex;
	align-items: center;
	flex-direction: row;
}

.projecten-headerFilter .projectFilters{
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    padding: 0 0px 0 15px;
}
.projecten-headerFilter .projectFilters .searchButton{
    --size: 48px;
    border-radius: calc(var(--size) / 2);
    height:var(--size);
    width: auto;
    background-color:var(--themeGreen2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 20px;
}
.projecten-headerFilter .projectFilters .searchButton svg{
    width: 22px;
    height: 22px;
    /* fill: #000; */
}
.projecten-headerFilter .projectFilters .filterItem{
    flex: 1;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.projecten-headerFilter .projectFilters .filterItem svg{
	
}

.projecten-headerFilter .projectFilters .filterItem span{
	font-weight:600;
	width:100%;
	display:inline-block;
	color: var(--themeTextLightGrey);
	font-weight: 300;
}
.projecten-headerFilter .projectFilters .filterItem input:not([type='radio']):not([type='checkbox']):not(.daterange),
.projecten-headerFilter .projectFilters .filterItem select{
    height: 25px !important;
    background: none;
    padding: 0 !important;
    color: var(--themeText);
    font-weight: 600;
    font-size: 13px !important;
    border: none !important;
}
.projecten-headerFilter .projectFilters .filterItem input[type='date']{
	max-width:110px;
}
.projecten-headerFilter .projectFilters .filterItem ul{}
.projecten-headerFilter .projectFilters .filterItem ul li{}

/* .projecten-headerFilter .projectFilters .filterItem:first-of-type{
	border-top-left-radius:var(--radius);
	border-bottom-left-radius:var(--radius);
}
.projecten-headerFilter .projectFilters .filterItem:last-of-type{
	border-top-right-radius:var(--radius);
	border-bottom-right-radius:var(--radius);
} */

.projecten-sideTitle{
    background-color:var(--themeRed);
    padding: 1px 15px;
}
.projecten-sideTitle h3{
    color:white;   
}
.projecten-sideTitle h3 font{
    color:var(--themeGold);
}
/* -- side filters -- */
.projecten-filterSideContent{
    display: flex;
    padding:0;
    margin-top:15px;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

.projecten-filtersSide .filterItem{
	padding: 8px;
	position: relative;
}
.projecten-filtersSide .filterItem + .filterItem{
}

.projecten-filtersSide .filterItem > label{
	background-color:var(--themeGreen);
	/* display:block; */
	display:none;
	padding: 0.6rem 1rem;
	border-radius: 5px;
}

.projecten-filtersSide .filterItem > label > span {
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
}

.projecten-filtersSide .filterItem ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 6px;
    margin-top: 10px;
}
.projecten-filtersSide .filterItem ul li{
    display: block;
}
.projecten-filtersSide .filterItem:not(.extended) ul{
	display:none;
}

.projecten-filtersSide .filterItem .extend{
    position: absolute;
    padding: 5px;
    cursor: pointer;
    top: 5px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.projecten-filtersSide .filterItem:not(.extended) .extend.fold,
.projecten-filtersSide .filterItem.extended .extend.unfold{
    display:none;
}

.projecten-filtersSide .filterItem ul:not(.type-multiple) li label,
.projecten-filtersSide .filterItem ul.type-multiple label div{
    display: flex;
    border-radius: 6px;
    color: var(--themeTextDark);
    border: 2px solid #ddd;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    gap: 0;
    padding: 9px;
}
.projecten-filtersSide .filterItem ul.type-multiple label{
    display:block;
    cursor:pointer;
}
.projecten-filtersSide .filterItem ul.type-multiple li label input{
	display: none;
}
.projecten-filtersSide .filterItem ul.type-multiple label input:checked + div{
    border-color: var(--themeBlue);
    color: #fff;
    background-color: var(--themeBlue);
}

.projecten-filtersSide .filterItem ul.type-multiple label div svg{
    height:25px;
    width:50px;
}

.projecten-filtersSide .filterItem[type='plusmin']{
    margin:19px 0;
}
.projecten-filtersSide .filterItem[type='plusmin'] + .filterItem[type='plusmin']{
    margin-top:-19px;
}

.projecten-filtersSide .filterItem .plusmin{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    padding: 5px 0;
}
.projecten-filtersSide .filterItem .plusmin label{
    flex: 1;
}
.projecten-filtersSide .filterItem .plusmin span{
    --color: var(
    --themeBlueLight);
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color);
    color: var(
    --color);
    flex: none;
    cursor: pointer;
    background-color: #ffffffdb;
    transition: all .1s ease-in-out;
    filter: drop-shadow(1px 1px 4px rgba(0,0,0,0.0));
}
.projecten-filtersSide .filterItem .plusmin span:hover{
	--color: var(
	--themeGreenDark);
	filter: drop-shadow(1px 1px 4px rgba(0,0,0,0.05));
}

.projecten-filtersSide .filterItem .plusmin input{
    height: 35px;
    width: 40px;
    text-align: center;
    padding: 1px 0 0 !important;
    font-size: 14px !important;
    background: transparent;
    border: none;
    font-weight: 500;
}

.status{
    --bgColor: var(
    --themeGrey);
    --textColor: var(
    --themeTextDark);
    display: block;
    padding:5px;
    border-radius:5px;
    background-color:var(--bgColor);
    color:var(--textColor);
    max-width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.status.status--1{
    --textColor: #fff;
    --bgColor: #c03100;
}
.status.status-0{
    --textColor: #1c71ff;
    --bgColor: #dbe7fd;
}
.status.status-1{
    --textColor: #08c258;
    --bgColor: #e9f7ef;
}
.status.status-2{
    --textColor: #00c5ff;
    --bgColor: #d8f4fd;
}
.status.status-3{
    --textColor: #ffffff;
    --bgColor: var(
    --themeGreen2);
}



.status.status-aanvraag{
    --textColor: #ffffff;
    --bgColor: #75a35f;
}
.status.status-geaccepteerd{
    --textColor: #ffffff;
    --bgColor: #75a35f;
}
.status.status-aanbetaling{
    --textColor: #16181e;
    --bgColor: #dbe7fd;
}
.status.status-volledige_betaling{
    --textColor: #16181e;
    --bgColor: #9fceed;
}
.status.status-opgehaald{
    --textColor: #16181e;
    --bgColor: #9fceed;
}
.status.status-teruggebracht{
    --textColor: #16181e;
    --bgColor: #9fceed;
}
.status.status-reservering_afgerond{
    --textColor: #ba3d09;
    --bgColor: #ffcfac;
}
.status.status-geannuleerd{
    --textColor: #ffffff;
    --bgColor: #b70e0e;
}

.gridItem smaller {
    font-size: 0.8em;
    font-weight: 400;
}

.gridItemHeader.tekoopHeader span:first-of-type{
    width: calc(100% - 100px) !important;
}

.gridItem.tekoopGridItem div > .gridItem-sub:last-of-type{
    width: 115px;
}

@media screen and (min-width: 1200px){
    .filterCol{
        width:100%;
    }
    .overviewCol{
        width:100%;
    }
}



.projecten-headerFilter #filterForm{
    width:100%;
}
.projecten-headerFilter .dateRangeHolder{
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	height: 100%;
	width: 100%;
	min-width: 300px;
}

.projecten-headerFilter .dateRangeHolder .divider{
	height: 25px;
	width: 1px;
	display:inline-block;
	background-color: #ddd;
	border: none;
}

.projecten-headerFilter .dateRangeHolder label{display: flex;align-items: center;justify-content: center;flex-direction: row;width: 50%;color: var(--themeTextGrey);padding: 0;gap: 5px;font-size: 13px;font-weight: 300;}
.projecten-headerFilter .dateRangeHolder label:first-of-type svg{
	height:22px;
}

.projecten-headerFilter .dateRangeHolder label div{
	display:flex;
	flex-direction: column;
	align-items: stretch;
	font-weight: 400;
}
.projecten-headerFilter .dateRangeHolder label div span{
	color: var(--themeBlue);
	font-size: 14px;
}
.projecten-headerFilter .dateRangeHolder label div font{font-weight: 300;}
.projecten-headerFilter .dateRangeHolder label svg{
	height:26px;
	width:32px;
	fill: var(--themeTextLightGrey);
}

.projecten-headerFilter .dateRangeHolder input.daterange{
	opacity:0.0;
	position:absolute;
	top:0;
	left:0;
	height: 100% !important;
	width: 100%;
	cursor: pointer;
}

.projecten-headerFilter .filterItem + .filterItem{
    border-left:1px solid #ddd;
    padding-left: 20px;
}

.projecten-headerFilter .dateRangeHolder label div span:last-of-type{
    color: var(--themeText);
    font-weight: 600;
    font-size: 13px !important;
}

.textBox{
	padding:0 !important;
}

.slider-box {
	width:100%;
}
.slider-box label, 
.slider-box input {border: none; display: inline-block; margin-right: -4px; vertical-align: top; width: 30%}
.slider-box input {width: 70%}
.slider-box .slider {margin: 15px 10px 30px;position: relative;height: 5px;/* border: 1px solid #f4f5f6; */background-color: #fff;border-radius: 4px;border-color: #ddd;}
span#priceRange {
    color: var(--themeTextLessDark);
    font-size: 14px;
    font-weight: 400;
    padding: 6px 0 0;
    display: inline-block;
}
.ui-slider-range{
	height: 100%;
	display: block;
	position: absolute;
	background-color: var(--themeGreen-light2);
	border: none;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
	background-color: var(--themeGreenDark);
	border-radius: 50%;
	width: 25px;
	height: 25px;
	position: absolute;
	display: block;
	top: -11px;
	transform: translateX(-50%);
	border-color: transparent;
}

.projectsRow{
	--gap: 21px;
	display: flex;
	flex-direction: row;
	gap: var(--gap);
}
.projectsRow > a{
	width: calc(25% - var(--gap));
}
.projectsRow .projectItem{
	width:100%;
}

#projectenListTitle font{
    color:var(--themeGold);
}

/* -- projecten carousel -- */
.projectenContainer{
	
    
}

.projectItem{
	overflow:hidden;
	border-radius:var(--themeBorderRadius);
}

.projectItem:hover .imageHolder{
	transform:scale(1.05);
}

.projectItemHolder.gridItemHolder .gridItem{width: calc(50% - var(--gap));}
.projectItemHolder.gridItemHolder .gridItem:nth-of-type(4n+3){
    width: calc(66% - var(--gap));
}
.projectItemHolder.gridItemHolder .gridItem:nth-of-type(4n+4){
	width: calc(33%);
}

.project-mainContent .subTitle{
    color: var(--themeYellow);
    font-size: 0.5em;
    font-weight: 100;
}


@media screen and (min-width: 1024px){
    .projectItemHolder{
        padding-right: 0;
        padding-left: 0;
    }
}

@media screen and (max-width: 1200px){
	.projecten-overview .row{
		display:flex;
	}
	.filterCol{
	}
}
@media screen and (max-width: 1024px){
	.projectItemHolder{		
	    --columns: 2;
	    padding: 15px 0;
	}
    .projecten-headerFilter:not(.home){
        display:none;
    }
    .:-4{
        margin-top: 40px !important;
    }

	.projectsRow > a {
	    width: calc(34% - var(--gap));
	}
	.projectsRow > a:nth-of-type(3) + a {
		display:none;
	}
	
}
@media screen and (max-width: 769px){
    .filterCol{
		position:fixed;
		z-index: 100;
		background-color:#fff;
		height: 100dvh;
		top: 0;
		left: 0;
		overflow: auto;
		opacity: 1.0;
	}
    .filterCol .projecten-filtersSide{
        padding: 60px 0 50px;
    }
	body:not(.showFilters) .filterCol{
		top:100dvh;
		opacity:0.0;
	}
    .showFilters{
        position:fixed;
        bottom:15px;
        left: 15px;
        z-index: 99;
        width: calc(100dvw - 30px);
        box-shadow: 0 0 16px 0px #00000021;
    }

    .closeMenu{
        --size: 32px;
        position:absolute;
        top:15px;
        right:15px;
        cursor:pointer;
        display:flex;
        align-items:center;
        justify-content: center;
        width: var(--size);
        height: var(--size);
        background-color: var(--themeTextLightGrey3);
        border-radius: 50%;
        z-index: 2;
    }
    .closeMenu i{
        font-size: 15px;
        color:var(--themeBlue);
    }	

	.projectsRow{
		flex-direction:column;
	}
	.projectsRow > a {
	    width: calc(100%);
	}
	.projectsRow > a:nth-of-type(3) + a {
		display:none;
	}

	.projectItemHolder.gridItemHolder .gridItem{
		width:100% !important; 		
	}
	.projectItemHolder.gridItemHolder .projectItem{
		height:80dvw;
	}

}
@media screen and (max-width: 600px){
	.filterCol{
		/* padding-right:0; */
	}
	.projectItemHolder{		
	    --columns: 1;
	    padding: 0;
	}
	.projectBlokkenFilterHolder .projectFilters{
		display:none;
	}
}

@media screen and (max-width: 500px){
	.projectItemHolder{		
	    --columns: 1;
	}
	.projecten-overview .row{
		flex-direction: column;
	}
	.filterCol{
		width: 100%;
		padding-right:15px;
	}
}