
/* Main
--------*/

	main {
		position: absolute;
		top: 50px;
		right: 0;
		bottom: 0;
		left: 0;
		overflow-y: auto;
	}

/* Überschriften
-----------------*/

	h2 {
		font-size: 20px;
		padding: 20px 20px 0 15px;
	}

/* Footer
----------*/

	footer {
		border-top: 1px solid #DDDDDD;
		height: 46px;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
		display: none;
	}

		footer a {
			display: block;
			position: relative;
			height: 46px;
			width: 100%;
			border-right: 1px solid #DDDDDD;
			background: linear-gradient(to bottom, #FFFFFF 5%, #f6f6f6 100%);
		}

		footer a span {
			display: block;
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			background-repeat: no-repeat;
			background-size: 30px auto;
			background-position: center center;
		}

		footer a:last-of-type {
			border-right: none;
		}

		footer img {
			display: block;
			margin: 8px auto;
			height: 30px;
			opacity: 0.8;
		}

/* Page-Wrapper
----------------*/

	#page_wrapper {
		max-width: 450px;
	}

/* Progress
------------*/

	.progress {
		position: relative;
		border-radius: 7px;
		background-color: #FFFFFF;
		width: 100%;
		height: 50px;
		-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.07);
		-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.07);
		box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.07);
		background-color: #5ab44b;
	}

	.progress .marker {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 3;
		display: none;
	}

	.progress .marker span {
		display: block;
		width: 10%;
		border-right: 1px solid #f2f2f2;
		float: left;
		height: 100%;
	}

	.progress .marker span:last-of-type {
		border-right: none;
	}

	.progress-content {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 32;
		background-color: #d2d2d2;
		background-color: #f8344a;
		border-radius: 7px;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		border-right: 1px solid #FFFFFF;
		color: #FFFFFF;
		font-weight: bold;
		font-size: 13px;
		line-height: 50px;
		text-align: left;
		overflow: hidden;
	}

	.progress-content span {
		padding-left: 10px;
		padding-right: 10px;
	}

	.progress-info {
		padding-top: 5px;
		text-align: center;
		opacity: 0.5;
	}

	.progress-total {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		color: #FFFFFF;
		font-weight: bold;
		font-size: 13px;
		line-height: 50px;
		padding-left: 10px;
		padding-right: 10px;
		text-align: right;
	}
