.fotogallerijItemHolder{
	margin: 0px auto;
	width:100%;
	min-height: calc(100dvh - 420px);
    --columns: 2;
}

.fotogallerijItem{
    --borderColor: rgb(255 255 255 / 55%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0px;
    transition: all .2s ease-in-out;
    border: 1px solid var(--borderColor);
    cursor:pointer;
    justify-content: center;
}
.fotogallerijItem:hover .imageHolder{
    /* filter: drop-shadow(0 0 6px rgba(0,0,0,0.2)); */
}

.fotogallerijItem .imageHolder{
    width: 100%;
    height:100%;
    max-height: 110px;
    background-size:contain;
    border-radius: 0;
}
.fotogallerijItem .imageHolder .new{
	padding:6px 14px;
	border-radius:6px;
    background-color:rgb(136 136 136 / 38%);
	color:white;
	font-size:12px;
}
.fotogallerijItem .fotogallerijContent{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 50px;
    padding: 5px;
    align-items: flex-start;
    border-top: none;
    color: #fff;
    font-size: 12px;
}

.fotogallerijItem .fotogallerijContent p{
    width:100%;
    text-align:Center;
    color:#fff;
    margin: 0;
    font-size:0.8em;
}

.fotogallerijItem .fotogallerijTitle{
    width: 100%;
    font-weight: 500;
    margin: 0;
    font-size:1.0em;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
    text-align: center;
}
.fotogallerijItem .fotogallerijContent-content + span{
    color: var(--themeTextGrey);
    font-size:12px;
}


.fotogallerijItem .fotogallerijUtils{
	display:flex;
	justify-content: space-between;
	z-index: 2;
	position: relative;
}
.fotogallerijItem .fotogallerijUtils .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;
}
.fotogallerijItem .fotogallerijUtils .score svg{
	height:14px;
	fill: var(--themeGreenDark);
}
.fotogallerijItem .fotogallerijUtils .like{
    height: 30px;
    padding: 3px 5px;
    cursor:pointer;
}
.fotogallerijItem .fotogallerijUtils .like svg{
	height:100%;
	width: auto;
	float:right;
}
.fotogallerijItem .fotogallerijUtils .like.liked svg path:first-of-type {
    fill: #fff;
    fill-opacity: 0.8;
}

.fotogallerijItem .fotogallerijTitlebar{
	display:flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
}
.fotogallerijItem .fotogallerijTitlebar div{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}
.fotogallerijItem .fotogallerijTitlebar .fotogallerijTitle{
    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;
}
.fotogallerijItem .fotogallerijTitlebar .fotogallerijPrice{
    padding-top: 3px;
}

.fotogallerijItem .fotogallerijDescription{
    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);
}

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

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

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

.fotogallerijSection{
	padding-bottom:42px !important;
}

.links {
    display:flex;
    gap:6px;
}

.links b,
.links a{
    padding:5px;
    border: 1px solid #dddddd;
    width: 40px;
    height: 40px;
    display:inline-flex;
    justify-content:center;
    border-radius: 0;
    font-size: 12px;
    align-items: center;
    color:#000;
}


.links b {
    color:white;
    background-color: var(--themeOrange);
    border-color: var(--themeOrange);
}
.links a {}

.links a.spacer {
    border-color: transparent;
}

.links a.next {}

.links a.last {}


/* -- overview filters -- */
.fotogallerij-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;
}

.fotogallerij-headerFilter .fotogallerijFilters{
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    padding: 0 0px 0 15px;
}
.fotogallerij-headerFilter .fotogallerijFilters .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;
}
.fotogallerij-headerFilter .fotogallerijFilters .searchButton svg{
    width: 22px;
    height: 22px;
    /* fill: #000; */
}
.fotogallerij-headerFilter .fotogallerijFilters .filterItem{
    flex: 1;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.fotogallerij-headerFilter .fotogallerijFilters .filterItem svg{
	
}

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

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

.fotogallerij-sideTitle{
    background-color:var(--themeBlue);
    padding: 1px 15px;
}
.fotogallerij-sideTitle h3{
    color:white;   
}
.fotogallerij-sideTitle h3 font{
    color:var(--themeGold);
}
/* -- side filters -- */
.fotogallerij-filterSideContent{
    display: flex;
    padding:0;
    margin-top:15px;
    flex-direction: column;
    gap: 15px;
}

.fotogallerij-filtersSide .filterItem{
	padding: 8px;
	position: relative;
	border-radius: 10px;
	border: 1px solid var(--themeBorderColor);
	background-color: var(--themeGreyLight2);
}
.fotogallerij-filtersSide .filterItem + .filterItem{
}

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

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

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

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

.fotogallerij-filtersSide .filterItem ul:not(.type-multiple) li label,
.fotogallerij-filtersSide .filterItem ul.type-multiple label div{
    display: flex;
    border-radius: 6px;
    color: var(--themeTextDark);
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    gap: 8px;
    padding: 9px;
}
.fotogallerij-filtersSide .filterItem ul.type-multiple label{
    display:block;
    cursor:pointer;
}
.fotogallerij-filtersSide .filterItem ul.type-multiple li label input{
	display: none;
}
.fotogallerij-filtersSide .filterItem ul.type-multiple label input:checked + div{
    border-color:var(--themeGreenDark);
    color:var(--themeGreenDark);
}

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

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

.fotogallerij-filtersSide .filterItem .plusmin{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    padding: 5px 0;
}
.fotogallerij-filtersSide .filterItem .plusmin label{
    flex: 1;
}
.fotogallerij-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));
}
.fotogallerij-filtersSide .filterItem .plusmin span:hover{
	--color: var(
	--themeGreenDark);
	filter: drop-shadow(1px 1px 4px rgba(0,0,0,0.05));
}

.fotogallerij-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){
    .overviewCol{
        width:100%;
        /* max-width: calc(100% - 280px); */
    }
}



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

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

.fotogallerij-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;}
.fotogallerij-headerFilter .dateRangeHolder label:first-of-type svg{
	height:22px;
}

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

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

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

.fotogallerij-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;
}

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

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



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

@media screen and (max-width: 1200px){
	.fotogallerij-overview .row{
		display:flex;
	}
}
@media screen and (max-width: 1024px){
	
    .fotogallerij-headerFilter:not(.home){
        display:none;
    }
    .overviewpy-4{
        margin-top: 40px !important;
    }

	.fotogallerijRow > a {
	    width: calc(34% - var(--gap));
	}
	.fotogallerijRow > 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 .fotogallerij-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);
        background-color: var(--themeBlue);
        /* 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);
    }	

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

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

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