@charset "UTF-8";

body {
	font-family: 'Oswald', sans-serif;
	font-weight: 200;
	font-size: 18px;
	line-height: 1.6;
	background-color: #fff;
	color: #000;
}


strong {
	font-weight: 600;
}

label {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 80%;
}

section {
	padding: 1em 0;
}


@media (min-width: 1400px) {
	section {
		padding: 2em 0;
	}
}



h1, h2, h3, h4, h5 {
	font-weight: 600;
}


.bg_hellgrau {
	background-color: #f2f2f2;
}


audio {
	width: 100%;
}



.grid-container {
	display: grid;
	gap: 1em;
	grid-template-columns: 1fr !important;
}


.grid-item {
}

.gridsize_1x1 {
	grid-column: span 1;
	grid-row: span 1;
}

.gridsize_1x2 {
	grid-column: span 1;
	grid-row: span 1;
}


.gridsize_2x1 {
	grid-column: span 1;
	grid-row: span 1;
}

.gridsize_2x2 {
	grid-column: span 1;
	grid-row: span 1;
}

.gridsize_3x1 {
	grid-column: span 1;
	grid-row: span 1;
}







@media (min-width: 992px) {
	.grid-container {
		grid-template-columns: 1fr 1fr 1fr !important;
		grid-auto-flow: dense;
	}

	.gridsize_1x1 {
		grid-column: span 1;
		grid-row: span 1;
	}

	.gridsize_1x2 {
		grid-column: span 2 !important;
	}


	.gridsize_2x1 {
		grid-row: span 2 !important;
	}

	.gridsize_2x2 {
		grid-column: span 2 !important;
		grid-row: span 2 !important;
	}


	.gridsize_3x1 {
		grid-column: span 3;
		grid-row: span 1;
	}
}




.heading {
	margin: 0;
	padding: 0;
}


th {
	font-weight: unset;
}

.zeile_titel {
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 2px solid #f3f3f3;
}

.zeile_total {
	font-weight: bold;
	text-transform: uppercase;
	background-color: #f3f3f3;
	color: #000;
}

.zeile_leer {
	height: 2em;
}