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

.teamItem{
    --borderColor: rgb(255 255 255 / 55%);
    display: flex;
    background: var(--themeGreyDark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0px;
    transition: all .2s ease-in-out;
    border: 1px solid var(--borderColor);
}
.teamItem:hover{	
    box-shadow: 0 8px 53px rgba(0,0,0,0.08);
}

.teamItem .imageHolder{
    width: 100%;
    aspect-ratio: 1/1.5;
    border-radius: 0;
}
.teamItem .imageHolder .new{
	padding:6px 14px;
	border-radius:6px;
    background-color:rgb(136 136 136 / 38%);
	color:white;
	font-size:12px;
}
.teamItem .teamContent{
    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;
}

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

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


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

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

.teamItem .teamDescription{
    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);
}

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

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

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

.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:3px;
    font-size: 12px;
    align-items: center;
    color:#000;
}


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

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

.links a.next {}

.links a.last {}


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

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

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

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

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

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

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

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

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

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

.team-filtersSide .filterItem ul:not(.type-multiple) li label,
.team-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;
}
.team-filtersSide .filterItem ul.type-multiple label{
    display:block;
    cursor:pointer;
}
.team-filtersSide .filterItem ul.type-multiple li label input{
	display: none;
}
.team-filtersSide .filterItem ul.type-multiple label input:checked + div{
    border-color:var(--themeGreenDark);
    color:var(--themeGreenDark);
}

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

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

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

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



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

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

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

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

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

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

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

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

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

/* -- team carousel -- */
.teamContainer{
    
}

.teamCarouselSlider .carouselHolder{
    --spacing: 45px;
    /* padding: calc(var(--spacing)/2) calc(var(--spacing)); */
    padding: calc(var(--spacing)/2) 0;
    /* margin-left: calc(-1 * var(--spacing)); */
    /* width: calc(100% + (1* var(--spacing))); */
    margin: calc(-1 * var(--spacing)) 0;
}

.teamCarouselSlider .carousel{
	/* gap: 30px; */
}


.teamCarouselSlider .carousel .carouselSlide{padding: 10px 30px;overflow: visible;}


.teamItem .inhoud p{
    color: var(--themeTextLightGrey);
    font-size: 17px;
    line-height: 30px;
    width: 100%;
}

.teamCarouselSlider {
    width: calc(100% - 10px);
    margin-left: -10px;
}

.teamCarouselSlider .prevButton.floating{
    left: -30px;
}
.teamCarouselSlider .nextButton.floating{
    right: 30px;
    color: white;
}


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

@media screen and (max-width: 1200px){
	.team-overview .row{
		display:flex;
	}
}
@media screen and (max-width: 1024px){
	.teamItemHolder{		
	    --columns: 2;
	    padding: 15px 0;
	}
	.teamCarouselSlider{
		margin:2rem 0;
		width:100%;
	}
	.teamCarouselSlider .nextButton.floating{
		top:100%;
	}
	
    .team-headerFilter:not(.home){
        display:none;
    }
    .overviewpy-4{
        margin-top: 40px !important;
    }

	.teamRow > a {
	    width: calc(34% - var(--gap));
	}
	.teamRow > 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 .team-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);
    }	

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

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

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