/* Gameday Style */
#spieltag {
	
}
#spieltag:hover {
	background-color:#f5f5f5;
}
.datum {
	width:95%;
	font-size:0.8em;
	padding:0.75em 0 0 0.75em;
}
.paarung {
	display:flex;
	margin:0 auto;
	justify-content:center;
	align-items:flex-end;
	font-weight:bold;
}
.heimverein {
	width:45%;
	float:right;
	text-align:right;
	margin:0.33em;
}
.gastverein {
	width:45%;
	float:left;
	text-align:left;
	margin:0.33em;
}
.ergebnis {
	float:inherit;
	font-family:'Titillium Web','Merriweather', serif,Helvetica, Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
	font-size:1.33em;
	font-weight:100;
	text-align:center;
	margin:0 0.33em 0 0.33em;
}

#aufstellungen-flexbox {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-around;
	width:1000px;
	max-width:90%;
	margin:0 auto;
	padding:0.5em;
	/*border-bottom:#fff 1px solid;*/
}
.aufstellungen-flexbox-heim, .aufstellungen-flexbox-gast {
	align-items:stretch;
	width:50%;
	text-align:center;
	padding-top:0.75em;
	border-bottom:#fff 1px solid;
}

@media screen and (max-width:576px) {
	.aufstellungen-flexbox-heim, .aufstellungen-flexbox-gast {
		width:100%;
	}
}