*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 300;
	background: #FFFFFF;
}

a {
	text-decoration: none;
	color: #00A0D9;
}

a:hover {
	color: #008bbb;
}

.fas {
	font-size: 16px;
}

h1 {
	font-size: 20px;
	font-weight: 300;
	margin: 0;
	margin-bottom: 16px;
	text-align: center;
}

b {
	font-weight: 500;
}

button, .button {
	background: #00A0D9;
	border: 0;
	outline: none;
	height: 28px;
	min-width: 28px;
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 300;
	display: inline-block;
	padding: 0 8px;
	border-radius: 4px;
}

button:hover, .button:hover {
	background: #008bbb;
	cursor: pointer;
	color: #FFFFFF;
}

button.small, .button.small {
	height: 24px;
	padding: 0 4px;
	min-width: 24px;
}

.button, a.button {
	line-height: 28px;
}

.button.small, a.button.small {
	line-height: 24px;
}

button.disabled, a.button.disabled {
	background: #999999;
}

button.disabled:hover, a.button.disabled:hover {
	cursor: default;
}

button.red, .button.red {
	background: #dc3545;
}

button.yellow, .button.yellow{
	background: #ffc107;
	color: #000;
}

.pagination {
	text-align: center;
	margin-bottom: 8px;
}

.pagination .button {
	width: 28px;
	height: 28px;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.scan {
	width: 100%;
	height: auto;
}

.rotate-90 {
	transform: rotate(90deg);
}

.rotate-180 {
	transform: rotate(180deg);
}

.rotate-270 {
	transform: rotate(270deg);
}

.hinweis {
	padding: 8px 4px;
	background: #F8D7DA;
	color: #721c24;
	margin-bottom: 8px;
}

#loading {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 2000;
}

#loading img {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -32px;
	margin-left: -32px;
}

#nav {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	height: 48px;
	background: #274055;
	z-index: 1;
	box-shadow: 0 0 8px #000000;
}

#nav .logo {
	height: 48px;
	width: 141px;
	margin-left: 8px;
	background-image: url('../img/scholz.png');
	background-position: left center;
	background-repeat: no-repeat;
	float: left;
}

#nav a, #nav .user {
	display: inline-block;
	color: #FFFFFF;
	padding: 0 16px;
	float: left;
	text-align: center;
	line-height: 48px;
}

#nav a:hover {
	background: #324A5E;
}

#nav a.active {
	background: #3D5466;
}

#nav #menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
}

#nav .right {
	float: right;
}

#content {
	position: fixed;
	left: 0;
	top: 48px;
	right: 0;
	bottom: 0;
	padding: 8px;
	overflow-y: auto;
}

#content.noscroll {
	overflow: hidden;
}

#login {
	border: 1px solid #DDDDDD;
	width: 320px;
	padding: 16px;
	margin: 0 auto;
	margin-top: 64px;
}

table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 8px;
	border-radius: 2px;
}

th {
	text-align: left;
	font-weight: 400;
	background: #5C6F7F;
	color: #FFFFFF;
	position: sticky;
	top: -9px;
}

th a, th a:hover {
	display: block;
	color: #FFFFFF;
}

th, td {
	padding: 4px;
	vertical-align: middle;
	white-space: nowrap;
}

tbody tr {
	
}

tbody tr:nth-child(even) {
	background-color: #EEEEEE;
}

td.highlight {
	background: #CCCCCC;
	background: rgba(0, 0, 0, 0.1)
}

tbody tr:hover {
	background: #DDDDDD;
}

form {
	margin: 0;
}

input, select, textarea {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 300;
	outline: none;
	border: 1px solid #AAA;
	width: 100%;
	border-radius: 4px;
}

input:hover, select:hover, textarea:hover {
	border: 1px solid #CCCCCC;
}

input:focus, select:focus, textarea:focus {
	border: 1px solid #00A0D9;
}

input, select {
	height: 28px;
	padding: 0 4px;
}

textarea {
	padding: 4px;
	min-height: 200px;
	resize: none;
	display: block;
}

input[type=file] {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

input[type=file] + label {
	
}

input[type=file]:focus + label, input[type=file] + label:hover {

}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000000;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2;
	overflow: auto;
}

.modal-content {
	width: 100%;
	max-width: 862px;
	background: #FFFFFF;
	margin: 32px auto;
	padding: 8px;
	position: relative;
	overflow: auto;
	border-radius: 2px;
}

.modal-head {
	text-align: right;
	margin-bottom: 8px;
}

.modal-body {
	
}

.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	color: #666666;
	line-height: 32px;
	text-align: center;
	width: 32px;
	height: 32px;
	border-radius: 2px;
}

.modal-close:hover {
	color: #00A0D9;
}

.snackbar {
	display: none;
	position: fixed;
	top: 0;
	left: 50%;
	margin-left: -200px;
	background: green;
	width: 400px;
	color: #FFFFFF;
	padding: 32px 16px;
	z-index: 3;
	text-align: center;
}

.panel {
	padding: 8px;
	border: 1px solid #DDDDDD;
}

.message-left, .message-right {
	border-radius: 4px;
	padding: 16px;
	margin-bottom: 16px;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
	position: relative;
}

.message-left {
	background: #EEE;
	margin-right: 128px;
}

.message-right {
	background: #E1FEC6;
	margin-left: 128px;
}

.message-left .from, .message-right .from {
	margin-bottom: 8px;
}

.message-left .datum, .message-right .datum {
	position: absolute;
	top: 16px;
	right: 16px;
}

@media only screen and (max-width: 600px) {
	#nav a, #nav .user {
		display: none;
		background: #274055;
		float: none;
	}
	
	#nav .right {
		float: none;
	}
	
	#nav #menu {
		display: block;
	}
	
	#nav .logo {
		width: 100%;
		float: none;
		background-position: center center;
	}
	
	#nav.responsive a {
		display: block;
	}
	
	input, select, textarea, .select2 {
		margin-bottom: 8px;
	}
}

.zurück {
	position: absolute;
	top: 0;
	right: 20px;
	color: #666666;
	line-height: 32px;
	text-align: center;
	width: 32px;
	height: 32px;
	
}

.abrechungPdf {
	width: 100%;
	height: 80vh;
	border: none;
}

.deaktiviert {
	background: #96c0cf;
	cursor: no-drop;
}

.deaktiviert:hover {
	background: #96c0cf;
}

#ende {
	display: inline-block;
	color: #FFFFFF;
	padding: 0 16px;
	float: left;
	text-align: center;
	line-height: 48px;
}