
/* Header
----------*/

	header {
		display: block;
		text-align: center;
		border-bottom: 1px solid #DDDDDD;
		font-weight: bold;
		background-color: #F7F7F8;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 2;
		height: 50px;
		line-height: 50px;
		display: block;
	}

	.header-title {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.header-left,
	.header-right {
		position: absolute;
		top: 0;
		z-index: 2;
	}
	.header-left {
		left: 0;
	}
	.header-right {
		right: 0;
	}

	.header-spacer {
		height: 50px;
	}

	.header-left,
	.header-right {
		line-height: 50px;
	}

	.header-left:after,
	.header-right:after {
		content: '';
		clear: both;
		display: table;
	}

	.header-left a {
		float: left;
		width: 50px;
		height: 50px;
		text-align: center;
	}
	.header-right a {
		float: left;
		width: 50px;
		height: 50px;
		text-align: center;
	}

	.header-left img,
	.header-right img {
		display: block;
		height: 24px;
		width: auto;
		margin: 13px auto;
	}

/* Hauptinhalt
---------------*/

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

/* Block-Titel
---------------*/

	.block-title {
		padding: 35px 15px 10px 15px;
		overflow: hidden;
		font-weight: 600;
		border-bottom: 1px solid #C7C7C7;
	}

/* Liste
---------*/

	.webui-list {

	}

	.webui-list ul {
		margin: 0;
		padding: 0;
	}

	.webui-list ul li {
		position: relative;
		display: block;
		border-bottom: 1px solid #C7C7C7;
	}

	.webui-list ul li a {
		display: block;
		background-color: #FFFFFF;
		padding: 12px 20px;
	}

	/* Icons
	----------*/

		.webui-list-icon {
			float: left;
			margin-right: 10px;
			padding: 14px 0 0 20px;
		}

		.webui-list-icon img {
			display: block;
			height: 16px;
		}

	/* Rechter Bereich
	-------------------*/

		.webui-list-right {
			position: absolute;
			top: 0;
			right: 0;
		}

		.webui-list-right span {
			display: block;
			padding: 12px 10px;
		}

		.webui-list-right img {
			height: 16px;
			margin: 14px 10px 0 0;
		}

/* Spacer
----------*/

	.spacer-20 {
		height: 20px;
	}

/* Buttons
-----------*/

	.btn-container {
		padding: 10px 0;
	}

	.btn {
		display: block;
		background-color: #007AFF;
		border: none;
		color: #FFFFFF;
		padding: 12px 10px;
		width: 100%;
		border-radius: 10px;
		text-align: center;
		text-transform: uppercase;
		cursor: pointer;
	}

	.btn:hover {
		opacity: 0.8;
	}

/* Felder
----------*/

	.webui-form {
		padding: 20px;
	}

	.webui-field {
		margin-bottom: 20px;
	}

	.webui-field-label {
		display: block;
		font-size: 13px;
		font-weight: 300;
		padding-bottom: 5px;
		color: #999999;
	}

	.webui-field-input input[type="text"],
	.webui-field-input input[type="password"],
	.webui-field-input input[type="date"],
	.webui-field-input select {
		display: block;
		width: 100%;
		padding: 10px 15px;
		border: none;
		background-color: #FFFFFF;
		vertical-align: middle;
		min-height: 40px;
	}

	input[type='date'],
	input[type='submit'],
	select {
	   -webkit-appearance: none;
	   -moz-appearance: none;
	   appearance: none;
	}

/* Tabelle
-----------*/

	.webui-table {
		width: calc(100% - 40px);
		background-color: #FFFFFF;
		border-collapse: collapse;
		margin: 20px;
		text-align: left;
	}

	.webui-table td,
	.webui-table th {
		border-bottom: 1px solid #C7C7C7;
		padding: 15px 15px;
	}

	.webui-table img {
		display: block;
	}

	.webui-table .bgr {
		background-color: #f7f7f7;
	}

/* Bild
--------*/

	.webui-image {
		margin: 20px 20px 0 20px;
	}

	.webui-image img {
		display: block;
		border-radius: 5px;
	}

/* Text
--------*/

	.webui-text {
		display: block;
		margin: 20px 20px 0 20px;
		font-weight: 200;
	}

/* Card
--------*/

	.webui-card {
		display: block;
		box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
		background-color: #FFFFFF;
		border-radius: 5px;
		margin: 20px 20px 0 20px;
	}

	.webui-card-header {
		position: relative;
		padding: 10px 16px;
		border-bottom: 1px solid #DDDDDD;
	}

	.webui-card-content {
		position: relative;
		padding: 16px;
	}

	.webui-card-content h2 {
		margin: 0;
		padding: 0;
	}

	.webui-card-footer {
		border-top: 1px solid #DDDDDD;
		padding: 10px 16px;
		font-weight: 200;
	}