.grid-content {
	display: grid;
	grid-template-columns: repeat(12, 6.5%);
	grid-auto-flow: row;
	column-gap: 2%;
	row-gap: 20px;
	text-align: center;
}
/*n*/
@media only screen and (max-width: 992px){
	.grid-content {
		display: grid;
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
}
/*n*/
.grid-content-item-bericht {
	grid-column: auto/span 12;
	display: none;
	text-align: center;
	justify-content: center;
	align-self: center;
	font-size: clamp(2vh, 1.5vmax, 20vh);
}
/*n*/
@media only screen and (max-width: 992px){
	.grid-content-item-bericht {
		grid-column: auto/span 12;
		display: none;
		text-align: center;
		justify-content: center;
		align-self: center;
		font-size: clamp(2vh, 1.5vmax, 20vh);
	}
}
/*n*/
.grid-content-item-Inloggen {
	grid-column: auto/span 12;
	border: 1px solid #d3d3d3;
	padding: 10px;
}
/*n*/
@media only screen and (max-width: 992px){
	.grid-content-item-Inloggen {
		grid-column: auto/span 12;
		border: 1px solid #d3d3d3;
		padding: 10px;
	}
}
/*n*/
