/* ============================================================
Grid blokken stijl (3 columns)
============================================================ */
.gridBlocks {
	--column-count: 3;
	--column-gap: 2%;
	display: grid;
	grid-template-columns: repeat(var(--column-count), 1fr);
	gap: var(--column-gap);
}
	/* Custom Ovis media query */
	@media only screen and (min-width: 0px) and (max-width: 800px) {
		.gridBlocks {
			--column-count: 2;
		}
	}
	/* Custom Ovis media query */
	@media only screen and (min-width: 0px) and (max-width: 550px) {
		.gridBlocks {
			--column-count: 1;
		}		
	}

/* ============================================================
Verkocht overzicht
============================================================ */
.verkochtContainer .item {}
.verkochtContainer .item img {
	display: block;
	width: 100%;
	height: auto;
}
