* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


body,html {
	/* background: #F7F7F7; */
	background: #EEEEEE;
	color: #000000;
	font-family: Arial, sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
}

h1 {
	margin: 0;
	line-height: 32px;
	font-size: 1.4rem;
	font-weight: normal;
	margin-bottom: 10px;
}

h2 {
	margin: 0;
	line-height: 24px;
	font-size: 1.3rem;
	font-weight: normal;
	margin-bottom: 4px;
}

img {
	vertical-align: middle;
}

xmp {
	display: inline;
}

/* GRID */

.container {
	width: 100%;
	max-width: 1200px;
	padding: 4px;
	margin: 0 auto;
}

.row:before, .row:after {
	content: "";
	display: table;
	clear: both;
}
/*
.row [class*='col-']:first-child {
	padding-left: 0;
}

.row [class*='col-']:last-child {
	padding-right: 0;
}
*/
[class*='col-'] {
	float: left;
	min-height: 1px; 
	width: 16.66%;
	padding-right: 8px;
}

[class*='col-']:last-child {
	padding-right: 0;
}

.col-1{
	width: 16.66%; 
}
.col-2{
	width: 33.33%; 
}
.col-3{
	width: 50%;
}
.col-4{
	width: 66.66%;
}
.col-5{
	width: 83.33%;
}
.col-6{
	width: 100%;
}

/* TABLES */

table, .table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

th {
	text-align: left;
	border: 0;
	font-weight: normal;
	
}

th, td {
	padding: 4px;
	vertical-align: middle;
}

.table th {
	font-weight: bold;
}

.table tr, th {
	border-bottom: 1px solid #EEEEEE;
}

.table>tbody>tr:last-child,.table>thead>tr {
	border: 0;
}

.table.hover tbody tr:hover {
	background: #F7F7F7;
}

.table.hover.table-striped tbody tr:hover {
	background: #EEE;
}

tr.stripes {
	background: url(../img/stripes.png) repeat;
}

tr.grey {
	background: #F7F7F7;
}

tr.warning {
	background: #FDF5CB;
}

tr.error {
	background: #F8DBE4;
}

tr:hover {
    background-color: #f0f0f0;
}

.table-striped tbody tr:nth-child(odd) {
	background-color: #F7F7F7;
}

.table-top th, .table-top td {
	vertical-align: top;
}

.table.print th, .table.print td {
	padding: 2px;
}

/* BUTTONS */

.button {
	font-family: inherit;
	font-size: inherit;
	color: #FFFFFF;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	background: #2f77d1;
	border: 0;
	outline: none;
	cursor: pointer;
	height: 32px;
	line-height: 32px;
	padding: 0 8px;
	border-radius: 2px;
	font-weight: normal;
	white-space: nowrap;
}

.button:hover {
	background: #2f99ce;
	color: #FFFFFF;
}

.button.active {
	background: #2f99ce;
}

.button.grey {
	background: #FFFFFF;
	color: #333333;
	border: 1px solid #CCCCCC;
}

.button.grey:hover {
	background: #DDDDDD;
}

.button.grey.active, .button.grey.active:hover {
	background: #DDDDDD;
	border: 1px solid #CCCCCC;
}

.button.red {
	background: #EE3800;
	color: #FFFFFF;
	border: 1px solid #EE3800;
}

.button.red:hover {
	background: #FF3B00;
	color: #FFFFFF;
}

.button.green {
	background: #5cb85c;
	color: #FFFFFF;
	border: 1px solid #4c9b4c;
}

.button.green:hover {
	background: #66cc66;
	color: #FFFFFF;
}

.button.small {
	padding: 0 5px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	margin: 0;
}

.button.icon {
	padding: 0 2px;
	height: 24px;
	line-height: 24px;
	width: 24px;
}

.button-group {
	display: inline-block;
	vertical-align: bottom;
}

.button-group .button {
	float: left;
	border-radius: 0;
	border-right: 1px solid #1E61B2;
}

.button-group .button:first-child {
	border-radius: 2px 0 0 2px;
}

.button-group .button:last-child {
	border-radius: 0 2px 2px 0;
	border: 0;
}

/* LINKS */

a {
	text-decoration: none;
	color: #2f77d1;
	font-weight: normal;
}

a:hover {
	color: #2f99ce;
}

a.green {
	color: #18cf69;
}

a.green:hover {
	color: #23fc81;
}

a.red {
	color: #de4636;
}

a.red:hover {
	color: #ff5444;
}

/* PANELS */

.panel {
	margin-bottom: 8px;
	background: #FFFFFF;
	border-radius: 4px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.2);
}

.panel-header {
	padding: 8px;
	font-weight: bold;
	overflow: auto;
	border-bottom: 1px solid #EEEEEE;
}

.panel-body {
	padding: 8px;
	overflow: hidden;
}

.panel-body.small {
	padding: 4px 8px;
}

.panel-footer {
	padding: 4px;
	border-top: 1px solid #EEEEEE;
}

.panel table tbody tr {
	vertical-align: top;
}

.panel td, .panel th {
	padding: 4px;
}

.panel th {
	font-weight: 700;
}

.panel-body td {
	padding: 4px;
}

/*
.panel {
	border: 1px solid #DDDDDD;
	border-bottom: 0;
	margin-bottom: 10px;
}

.panel-header {
	background: #EEEEEE;
	padding: 5px 10px;
	border-bottom: 1px solid #DDDDDD;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}

.panel-body {
	padding: 10px;
	border-bottom: 1px solid #DDDDDD;
	overflow: hidden;
}

.panel-body.small {
	padding: 2px 10px;
}

.panel-footer {
	padding: 5px 10px;
	border-bottom: 1px solid #DDDDDD;
}
*/

/* FORMS */

label {
	height: 28px;
	line-height: 28px;
	display: block;
	cursor: pointer;
}

.form-left {
	float: left;
}

.form-right {
	overflow: hidden;
}

.form-left label {
	margin-bottom: 10px;
	margin-right: 20px;
}

.form-right input, .form-right select {
	margin-bottom: 10px;
}

label input, label select {
	margin-top: 2px;
}

input[type="text"], input[type="password"], textarea, select {
	font-family: inherit;
	width: 100%;
	padding: 4px;
	border: 1px solid #CCCCCC;
	font-size: inherit;
}

textarea {
	resize: vertical;
	min-height: 80px;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	outline: 0;
	border: 1px solid #666666;
}

input[type="checkbox"] {
	vertical-align: bottom;
	height: 28px;
	margin: 0;
}

input[type="checkbox"]:hover {
	cursor: pointer;
}

input[type="text"], input[type="password"], select {
	height: 28px;
}

input.small, select.small {
	padding: 0 2px;
	height: 22px;
}

input:disabled {
	background: #F7F7F7;
}

input[type="submit"]:disabled, button[type="submit"]:disabled {
	background: #CCCCCC;
	color: #333333;
}

input[type="radio"] {
	margin-top: -1px;
	vertical-align: middle;
}

/* LABELS */

.label {
	font-size: 11px;
	background: #999999;
	padding: 2px 4px;
	color: #FFFFFF;
}

.label-blue {
	background: #337AB7;
}

.label-orange {
	background: #f0ad4e;
}

.label-red {
	background: #D9534F;
}

.label-light-blue {
	background: #5BC0DE;
}

/* LISTS */

ul {
	margin: 0;
	padding-left: 20px;
}

/* NAVBAR */

nav {
	width: 100%;
	height: 50px;
	background: #3D454D;
	position: fixed;
    top: 0;
	box-shadow: 0 2px 4px -1px rgba(0,0,0,0.5);
	z-index: 1000;
}

nav ul {
	height: 50px;
	list-style-type: none;
    margin: 0;
    padding: 0;
	float: left;
}

nav ul.right {
	float: right;
}

nav li {
	display: inline;
    float: left;
}

nav a {
    color: #DDDDDD;
    text-align: center;
    padding: 0 10px;
    text-decoration: none;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: #3D454D;
	border-right: 1px solid #353B41;
}

nav ul.right a {
	border-left: 1px solid #353B41;
}

nav a:hover, nav a:active {
    background: #353B41;
	color: #FFFFFF;
}

nav .logo {
	height: 50px;
	width: 153px;
	margin-left: 10px;
	background-image: url("../img/logo.png");
	background-position: left center;
	background-repeat: no-repeat;
	float: left;
	border-right: 1px solid #353B41;
}

nav .toggle {
	width: 50px;
	height: 50px;
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	border-left: 1px solid #353B41;
}

/* MODAL */

.modal {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
	z-index: 1001;
}

.modal-content {
	position: relative;
	background: #FFFFFF;
	margin: 50px auto;
	width: 600px;
}

.modal-close-button {
	position: absolute;
	right: 10px;
	top: 10px;
}

.noscroll {
	overflow: hidden;
}

/* CONTENT */

#content {
	padding: 8px;
	margin-top: 50px;
	margin-bottom: 32px;
}

#login {
	max-width: 300px;
	margin: 0 auto;
	margin-top: 60px;
	padding: 8px;
}

.table:not(.table-kalender-tag) .clickable:hover {
	cursor: pointer;
	background: #EEE;
}

.table-striped .clickable:hover {
	background: #EEEEEE;
}

/* HELPER */

.small-text {
	font-size: 12px;
	color: #999999;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.left {
	float: left;
}

.right {
	float: right;
}

div.error {
	background: #F8DBE4;
	color: #D11149;
	padding: 10px;
	border-left: 4px solid #D11149;
	margin: 0;
}

div.warning {
	background: #FDF5CB;
	color: #BCA109;
	padding: 10px;
	border-left: 4px solid #BCA109;
}

div.success {
	background: #DFEFE9;
	color: #0A8754;
	padding: 10px;
	border-left: 4px solid #0A8754;
	margin: 0;
}

.tooltip {
	display:none;
	position:absolute;
	border:1px solid #333;
	background-color:#161616;
	padding:4px;
	color:#fff;
	font-size:12px;
}

.warning {
	background: #FDF5CB;
}

b {
	font-weight: 700;
}

.nobr { 
	white-space: nowrap;
}

.fixed {
    position: fixed;
    top: 50px;
	left: 0;
	right: 0;
	width: 100%;
	background: #FFFFFF;
	padding: 8px 17px;
	border-bottom: 1px solid #DDDDDD;
	z-index: 998;
}

/* CUSTOM */

.auftrag {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
	padding: 4px;
	font-size: 12px;
	color: #000000;
	margin-bottom: 1px;
}

.auftrag-hover {
	opacity: 0.8;
}

.auftrag-kennzeichnung {
	background: #666666;
}

.auftrag-stadt {
	color: #000000;
	background: #C6D0AE;
}

.auftrag-land {
	color: #000000;
	background: #97E6B8;
}

.auftrag-fern {
	color: #000000;
	background: #95CCC7;
}

.auftrag-uebersee {
	color: #000000;
	background: #e0a270;
}

.auftrag-orchester {
	color: #000000;
	background: #95b3cc;
}

.auftrag-neumoebel {
	color: #000000;
	background: #F1D38D;
}

.auftrag-neumoebel-kueche {
	color: #000000;
	background: #da8def;
}

.auftrag-sonstiges {
	color: #000000;
	background: #FCB7A7;
}

.table-kalender-woche {
	table-layout: fixed;
}

.table-kalender-woche tr {
	border: 0;
}

.table-kalender-woche td {
	border-left: 1px solid #EEEEEE;
	border-right: 1px solid #EEEEEE;
	padding: 0;
}

.table-kalender-woche th {
	text-align: center;
	padding: 4px;
	background: transparent;
	border: 1px solid #DDDDDD;
}

.table-kalender-woche>tbody>tr:last-child {
	border-bottom: 1px solid #DDDDDD;
}

.table-kalender-tag {
	border: 1px solid #EEEEEE;
}

.table-kalender-tag th, .table-kalender-tag td {
	border-bottom: 1px solid #EEEEEE;
}

.table-kalender-tag tbody tr:hover {
	cursor: pointer;
	opacity: 0.9;
}

.table-kalender-tag td {
	vertical-align: top;
}

.table-fernverkehr {
	table-layout: fixed;
}

.table-fernverkehr th {
	text-align: center;
}

.table-fernverkehr th, .table-fernverkehr td {
	border: 1px solid #DDDDDD;
}

.table-fernverkehr td {
	font-size: 12px;
	color: #000000;
	vertical-align: top;
	padding: 0;
}

.table-fernverkehr td div {
	padding: 2px;
}

.table-fernverkehr a {
	font-size: 12px;
	color: #000000;
}

.aufgabe-checkbox, .aufgabe-checkbox:hover {
	color: #333333;
}

.my-toggle-wrapper {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 25px;
}

.my-toggle-wrapper label {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.my-toggle-wrapper input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.my-toggle-slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 25px;
  transition: 0.4s;
}

.my-toggle-slider::before {
  content: "";
  position: absolute;
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

.my-toggle-wrapper input:checked + .my-toggle-slider {
  background-color: #3d454d;
}

.my-toggle-wrapper input:checked + .my-toggle-slider::before {
  transform: translateX(24px);
}

#Deaktiviert_Zeil{
    background-color: #3d454d;
	color: #ffffff;
}

/* MEDIA QUERIES */

@media all and (max-width: 900px){
	body,html { font-size: 12px; }
	.col-1 ,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6 { width: 100%; float: none; text-align: left; }
	nav ul {
        width: 100%;
        display: none;
        height: auto;
    }
	nav li {
        display: block;
        float: none;
        width: 100%;
    }
	nav li a {
		text-align: left;
		width: 100%;
		height: 30px;
		line-height: 30px;
		border-right: 0;
		border-top: 1px solid #353B41;
	}
	nav .toggle { display: block; }
	nav #logo { border: 0; }
	.modal { padding: 10px; }
	.modal-content { width: 100%; margin: 0; }
}


@media print {    
    .no-print, .no-print * {
        display: none !important;
    }
	
	#content {
		margin: 0;
		padding: 0;
	}
	
	.panel-body {
		padding: 0;
	}
	
	body,html {
		background: #FFFFFF;
	}
	
	a {
		color: #000000;
	}
}