#ampelContainer {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 2em 0;
}

#ampelContainer h2 {
	display: inline;
	float: left;
	width: 40%;
	text-align: right;
}

#ampelContainer h3 {
	display: inline;
	float: left;
	width: 60%;
	text-align: left;
	padding-left: 10px;
}

.ampelClub {
	display: block;
	position: relative;
	width: 90%;
	padding: 10px;
	text-align: center;
	vertical-align: top;
}

.ampelClub img {
	width: 100%;
}

.ampelText {
	bottom: 0; left: 0;
	width: 100%;
	padding: 5px 0 10px 0;
	text-align: center;
	font-size: 1.8rem;
	line-height: 2.2rem;
	font-weight: bold;
}

@media only screen and (max-width: 680px) {
	.ampelText {
		font-size: 5vw;
		line-height: 0.8rem;
		text-align: left !important;
		display: block !important;
	}
	.ampelClub {
		width: 100%;
		padding: 5px;
		font-size: 5vw;
		text-align: right !important;
		display: block !important;
	}
	h2 {
		font-size: 5vw !important;
	}
}

.status_red {
	border-color: #df2b44;
	color:  #000;
}
.text_red {
	color: #c90000;
}
.text_red:after {
	content: "Einlassstopp, Einlass nur im Wechsel";
}

.status_yellow {
	border-color: #d4df2b;
	color: #000;
}
.text_yellow {
	color: #e19400;
}
.text_yellow:after {
	content: "Gut gefüllt, solltest dich beeilen";
}

.status_green {
	border-color: #2bdf7b;
	color: #000;
}
.text_green {
	color: #3d9433;
}
.text_green:after {
	content: "Es ist noch Platz, komm rein"
}