body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

body * {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #000;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
	box-sizing: border-box;
}
/*@media screen and (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
	body * {
		font-size: 28px;
	}
}
@media screen and (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
	body * {
		font-size: 42px;
	}
}*/

a, button {
	text-decoration: none;
	outline: none;
}

div, p, img {
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.game-container {
	width: 100%;
	max-width: 400px;
	height: 100vh;
	max-height: 800px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;

	width: 360px;
	height: 650px;
}


/*----- start & end ------------------------------------------------------*/

	.start-slide, 
	.end-slide {
		position: absolute;
		width: 100%;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 20px 25px 60px;
		background-color: #fff;
		transition: left .5s linear;
	}
	.start-slide {
		z-index: 30;
	}
	.end-slide {
		left: 100%;
	}

	/* Energizer Logo */
		.energizer-logo {
			width: 100%;
			max-width: 200px;
			margin: 0 auto 25px;
		}

	/* Intro Text */
		p {
			text-align: center;
		}

	/* Los geht's Button */
		button, a.join {
			text-align: center;
			margin: 0 auto 10px;
			display: block;
			padding: 3px 40px 6px;
			border-radius: 50px;
			border: 2px solid #95c11f;
			background-color: #95c11f;
			color: #fff;
			cursor: pointer;
			font-size: 175%;
		}
		button.start {
			width: 80%;
			max-width: 380px;
		}
		button.again {
			margin-top: 15px;
			padding: 3px 30px 6px;
		}
		button:hover, 
		button:focus, 
		button:active, 
		a.join:hover, 
		a.join:focus, 
		a.join:active {
			color: #95c11f;
			background-color: #fff;
		}

	/* start and end image */
		.start-image, 
		.end-image {
			height: 220px;
			position: relative;
		}
		.start-image img, 
		.end-image img {
			height: 100%;
			width: auto;
			margin: 0 auto;
			display: block;
		}
		img.mr_e {
			position: absolute;
			top: 20px;
			left: 50%;
		}

	/* highscore */
		.punktestand {
			color: #95c11f;
			font-size: 175%;
		}
		.highscore {
			font-size: 100%;
			color: inherit;
		}

	/* end text */
		._5_punkte {
			display: none;
		}


/*----- grass at bottom ---------------------------------------------------*/

	.grass-bottom {
		position: absolute;
		z-index: 9999;
		top: unset;
		bottom: 0;
		left: 0;
		right: 0;
		height: 68px;
		width: 100%;
		display: flex;
		justify-content: center;
		overflow: hidden;
	}
	.grass-bottom img {
		height: 100%;
		width: auto;
	}


/*----- grass at bottom ---------------------------------------------------*/

	.counter-wrapper {
		position: fixed;
		top: 0;
		left: unset;
		right: 0;
		height: 50px;
		width: 50px;
		background-color: #95c11f;
		display: flex;
		justify-content: center;
		align-items: center;
		display: none;
	}
	.counter-wrapper .counter {
		color: #fff;
		text-align: center;
		font-size: 150%;
	}


/*----- game-wrapper ---------------------------------------------------*/

	.game-wrapper {
		position: absolute;
		overflow: hidden;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		transition: left .5s linear;
		background-color: #fff;
		z-index: 20;
	}

	/*----- progress bar -----*/

		.progress-bar {
			height: 90px;
		}
		.progress-wrapper {
			width: 300px;
			margin: 0 auto;
			position: relative;
		}
		.progress-bar img {
			width: 100%;
			height: auto;
			display: block;
			margin: 0 auto;
		}
		.progress-bar .progress-line {
			height: 7px;
			width: 142px;
			position: absolute;
			top: 70%;
			left: 11%;
			transform: skewX(25deg);
			border: 1px solid #666;
			border-bottom-color: #aaa;
			border-right-color: #aaa;
		}
		.progress-bar .progress-line .bgimg {
			background-image: linear-gradient(to right, #f80802, #aa9718, #94c11f);
			background-image: url(img/Energizer-Balken.jpg);
			background-size: 142px;
			height: 5px;
			width: 142px;
		}
		.progress-bar .progress-line .bgimg.animate_progress {
			animation-duration: 5.5s;
			animation-iteration-count: infinite;
			animation-timing-function: linear;
			animation-name: progress_animation;
		}

		@keyframes progress_animation{
			0% { width: 142px; }
			100% { width: 0px; }
		}


	/*----- drop elements -----*/

		.drag-elements {
			position: relative;
			z-index: 11;
			height: calc(50% - 45px);
			min-height: 210px;
			max-height: 350px;
		}

		.drag-elements .drag_element {
			width: 100px;
			height: auto;
			position: absolute;
		}

		.drag_element img {
			width: 100%;
			height: auto;
			cursor: move;
		}
		.drag_element img.drag-disabled {
			filter: saturate(0);
			opacity: .7;
			cursor: not-allowed;
		}

		/* drop 1 */
			.drag_1 {
				top: 8%;
				left: 5%;
			}

		/* drop 2 */
			.drag_2 {
				top: 0%;
				left: 50%;
				margin-left: -50px;
			}

		/* drop 3 */
			.drag_3 {
				top: 8%;
				left: unset;
				right: 5%;
			}

		/* drop 4 */
			.drag_4 {
				top: 51%;
				left: 8%;
			}

		/* drop 5 */
			.drag_5 {
				top: 45%;
				left: 50%;
				margin-left: -42px;
			}

		/* drop 6 */
			.drag_6 {
				top: 51%;
				left: unset;
				right: 4%;
			}


	/*----- slides -----*/

		/* container */
			.slides {
				position: absolute;
				z-index: 10;
				top: unset;
				bottom: 30px;
				width: 100%;
				height: calc(50% - 75px);
				min-height: 210px;
				max-height: 350px;
				overflow: hidden;
			}

		/* feedback answer true or false */
			.feedback_answer {
				display: none;
				position: absolute;
				top: 10px;
				bottom: 50px;
				left: 15px;
				right: 15px;
				width: calc(100% - 30px);
				height: calc(100% - 60px);
			}
			.feedback_answer .text {
				font-size: 16px;
				text-align: center;
				transform: skewy(-15deg);
				line-height: 1.2;
				clear: both;
				padding: 3px;
				background-color: rgba(255,255,255,.8);
				display: none;
				position: absolute;
				top: unset;
				bottom: 0;
				left: 0;
			}
			.feedback_answer.true_answer .text {
				color: #95c11f;
			}
			.feedback_answer.false_answer .text {
				color: #ff0000;
			}

		/* single slides */
			.slides > .slide {
				height: 100%;
				max-height: 100%;
				width: 100%;
				max-width: 100%;
				position: absolute;
				left: 100%;
				transition: left .5s linear;
			}
			/*.slides > .slide:first-child {
				left: 0;
			}*/
			.slides > .slide > .name {
				text-align: center;
				font-size: 18px;
			}
			.slides > .slide > img {
				height: 100%;
				width: auto;
				display: block;
				margin: 0 auto;
			}
			/* answer image */
			.slides img.answer {
				width: 58px;
				height: auto;
				position: absolute;
				top: 50%;
				left: 50%;
				margin-top: -75px;
				margin-left: -75px;
			}

		/* dropped image on slide */
			.slide img.original.drag_image {
				width: 100px;
				height: auto;
				position: absolute;
				top: 50%;
				left: 50%;
				margin-top: -50px;
				margin-left: -50px;
				animation-delay: .5s;
				animation-duration: .4s;
				animation-iteration-count: 1;
				animation-timing-function: linear;
			}

			@keyframes false{
				0% { transform: rotate(0deg); }
				25% { transform: rotate(15deg); }
				75% { transform: rotate(-15deg); }
				100% { transform: rotate(0deg); }
			}






