h1 {
	margin: 30px 0 20px;
	padding: 0 0 5px;
	font-size: 1.4vw;
	font-weight: 300;
	text-transform: uppercase;
}

#effekt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	background: rgba(0, 0, 0, .8);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s, visibility .2s;
	z-index: 999;
}
#effekt.active {
	opacity: 1;
	visibility: visible;
}

#effekt > div {
	width: 60%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	margin-left: 15%;
	color: #fff;
	font-size: 5vw;
	text-align: center;
	padding: 5%;
	text-shadow: 1px 1px #000;
}

#effekt > div > h2 {
	font-size: 10vw;
	font-weight: 400;
	padding: 0;
	margin: 0;
	text-shadow: 2px 2px #000;
}

#effekt > div > p > span {
	font-weight: 400;
}

#effekt_reihe {
	background: #5e35b1;
	display: none;
}

#effekt_bingo {
	background: #e91e63;
	display: none;
}

#leftbar {
	float: left;
	width: 20%;
	height: 100%;
	text-align: center;
	background: rgba(38,50,56,0.5);
	box-shadow: inset -2px 0px 3px 0px rgba(0,0,0,0.75);
}

#leftbar > img {
	width: 90%;
	margin: 20px 0 0;
}

#feld_wrapper {
	float: left;
	width: 80%;
	height: 100%;
	position: relative;
	color: #fff;
	font-weight: 300;
}

.feld_zahl_wrapper {
	width: 10%;
	height: 10%;
	position: absolute;
	z-index: 0;
	backface-visibility: hidden;
}

.feld_zahl {
	background: #263238;
	width: 50%;
	padding-bottom: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	margin-left: -22.5%;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.10);
	border-radius: 50%;
	opacity: 0.3;
	font-size: 4.5vh;
}

.feld_zahl > span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#jackpot_zahlen {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: -5px;
}
#jackpot_zahlen > li {
	position: relative;
	flex: 0 0 75px;
	width: 75px;
	height: 75px;
	margin: 5px;
	border-radius: 50%;
	background: #374248;
	font-size: 4vh;
	font-weight: 100;
	box-sizing: border-box;
}
#jackpot_zahlen > li > span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#gewinner {
	list-style: none;
	margin: 0;
	padding: 0;
}

#gewinner > li {
	font-size: 3vh;
	font-weight: 100;
}

#screensaver {
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: #000;
	/*display: none;*/
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s, visibility .2s;
}
#screensaver.active {
	/*display: block;*/
	opacity: 1;
	visibility: visible;
}

#screensaver_logo {
	display: block;
	width: 300px;
	height: auto;
	position: absolute;
}

.feld_zahl {
	width: 50%;
	padding-bottom: 50%;
	margin-left: -22.5%;
	font-size: 4.5vh;
}

.drawn {
	width: 75%;
	padding-bottom: 75%;
	margin-left: -37.5%;
	font-size: 7.5vh;
	opacity: 1;
}

.drawn-last-5 {
	width: 100%;
	padding-bottom: 100%;
	margin-left: -50%;
	font-size: 10vh;

	background: #b71c1c;
}

.drawn-last {
	width: 100%;
	padding-bottom: 100%;
	margin-left: -50%;
	font-size: 10vh;

	background: #b71c1c;
	font-weight: 700;
	border: 3px solid #eeeeee;
}

.drawn-last-wrapper {
	animation-name: drawn-last-animation;
	animation-duration: 2s;
}
@keyframes drawn-last-animation {

	0% {
		/*transform: scale(1.0);*/
		transform: scale3d(1.0, 1.0, 1.0);
	}
	50% {
		/*transform: scale(2.0);*/
		transform: scale3d(2.0, 2.0, 2.0);
	}
	100% {
		/*transform: scale(1.0);*/
		transform: scale3d(1.0, 1.0, 1.0);
	}

}

.drawn-jackpot {
	background: #ffeb3b;
}