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

	h1 {
		display: block;
		font-size: 30px;
		color: #000000;
		border-radius: 7px;
		font-weight: 400;
	}

	h1 i,
	h2 i,
	h3 i,
	h4 i {
		font-style: inherit;
		font-size: inherit;
	}

	h2 {
		font-size: 23px;
		margin: 25px 0 15px 0;
	}

	h3 {
		font-size: 20px;
		margin: 30px 0 10px 0;
	}

/* Listen
----------*/

	.tree {
		margin: 0;
		padding: 0;
	}

	.tree h1 {
		display: inline-block;
		font-size: 25px;
		margin: 50px 0 20px 0;
		color: #FFFFFF;
		background-color: #7d3780;
		border-radius: 7px;
		padding: 5px 15px 3px 15px;
		font-weight: 400;
	}

	.tree li {
		list-style-type: none;
	}

/* Links
---------*/

	a {
		color: #000000;
	}

	p a {
		background-color: #f2f2f2;
		border-radius: 3px;
		padding: 2px 5px;
		margin: 0 3px;
		border: 1px solid #DDDDDD;
	}

/* Absätze
-----------*/

	p {
		margin: 0 0 20px 0;
	}

/* Todoliste
-------------*/

	.task {
		display: block;
		background-color: #F2F2F2;
		border-radius: 5px;
		padding: 20px 70px 1px 20px;
		margin-bottom: 30px;
		position: relative;
	}

	.task-content {
		margin-left: 50px;
	}

	.task strong {
		font-weight: 600;
	}

	.task:hover {
		background-color: #F3F3F3;
		outline: 1px dashed #AAAAAA;
		cursor: pointer;
	}

	.question {
		display: block;
		position: relative;
		background-color: #f5f5f5;
		border-radius: 7px;
		padding: 10px 20px;
	}

/* Logo
--------*/

	#logo {
		display: inline-block;
		font-size: 25px;
		font-weight: bold;
		height: 50px;
		width: 350px;
		line-height: 40px;
		color: #343434;
		padding: 17px 20px;
	}

	#logo img {
		height: 32px;
		vertical-align: sub;
	}

	#logo span {
		color: #333333
	}



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

	#nav_header {
		background-color: rgba(255,255,255,0.4);
		padding-bottom: 1px;
	}

/* Item
--------*/

	.menu-item {
		position: relative;
		height: 36px;
		overflow: hidden;
		white-space: nowrap;
	}

	.menu-item:after {
		content: '';
		clear: both;
		display: table;
	}

	.menu-item:hover {
		background-color: rgba(0,0,0,0.05);
	}

	.menu-item.active {
		background-color: #199DDB;

	}

	.menu-item.active * {
		color: #FFFFFF !important;
	}

	.menu-item,
	.menu-item *:focus {
		outline: none;
	}

	.menu-item-text {
		display: block;
		padding: 0;
		margin: 0 25px 0 35px;
		overflow: hidden;
		height: 35px;
		line-height: 35px;
	}

		.level2 .menu-item-text {
			margin-left: 65px;
			font-size: 15px;
		}

		.level3 .menu-item-text {
			margin-left: 95px;
			font-size: 14px;
		}

	.menu-item-check {
		position: absolute;
		top: 5px;
		right: 10px;
		margin: 5px;
	}

		.menu-item-check img {
			width: 16px;
			height: auto;
		}

	/* Toggler
	-----------*/

		.menu-item-toggler {
			position: absolute;
			height: 36px;
			top: 0;
			left: 0;
			width: 30px;
			background-size: 16px auto;
			background-repeat: no-repeat;
			background-position: 10px center;
			cursor: default;
		}

		.level2 .menu-item-toggler {
			left: 30px;
		}

		.menu-item-toggler.closed {
			background-image: url('/project/sg/scope/www/pub/img/icon/chevron-right.svg');
			cursor: pointer;
		}

		.menu-item-toggler.open {
			background-image: url('/project/sg/scope/www/pub/img/icon/chevron-down.svg');
			cursor: pointer;
		}



/* Page-Content
----------------*/

	.page-content {
		background-color: rgba(255,255,255,0.8);
		padding: 0 30px 20px 30px;
		width: 1100px;
		margin: 0 auto;
		background-color: #FFFFFF;
	}

	@media screen and (max-width: 1100px) {
		.page-content {
			width: 100%;
		}
	}

/* Button
----------*/

	#toolbar {
		position: absolute;
		top: 20px;
		right: 20px;
	}


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

	footer {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #F9F9FB;
		min-height: 100px;
		-webkit-box-shadow: 0px 0px 16px -8px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 0px 16px -8px rgba(0,0,0,0.75);
		box-shadow: 0px 0px 16px -8px rgba(0,0,0,0.75);
		padding-top: 10px;
	}

	footer label {
		display: block;
		font-size: 12px;
		color: #AAAAAA;
		padding-bottom: 0;
	}

	footer textarea {
		display: block;
		width: 100%;
		border: 1px solid #DDDDDD;
		color: #333333;
		resize: none;
		padding: 10px;
	}

/* Sortable Platzhalter
------------------------*/

	.placeholder {
		display: block;
		height: 30px;
		border: 2px dashed #999999;
	}

/* Check-Symbol
----------------*/

	.check-0,
	.check-1,
	.check-2 {
		float: left;
		height: 28px;
		width: 28px;
		background-color: #EEEEEE;
		background-color: rgba(255,255,255,1);
		border-radius: 100%;
		cursor: pointer;
		position: relative;
		top: -4px;
	}

	.check-0 {
		background-image: url('../img/help.svg');
		background-repeat: no-repeat;
		background-size: 55% auto;
		background-position: 7px center;
	}

	.check-1 {
		background-color: #7AB51F;
		background-image: url('../img/white/check.svg');
		background-repeat: no-repeat;
		background-size: 60% auto;
		background-position: 6px 6px;
	}

	.check-2 {
		background-color: #ED2657;
		background-image: url('../img/white/exclamation.svg');
		background-repeat: no-repeat;
		background-size: 16px auto;
		background-position: center center;
	}


/* Brotkrumenpfad
------------------*/

	.breadcrumb {
		margin: 0;
		padding: 30px 0 10px 0;
	}

	.breadcrumb li {
		display: inline-block;
		list-style-type: none;
	}

	.breadcrumb li a {
		display: inline-block;
		font-size: 15px;
		color: #888888;
		padding: 0 5px 0 0;
	}

	.breadcrumb li a:after {
		content: ">";
		display: inline-block;
		padding-left: 5px;
	}

	.breadcrumb li:last-of-type a:after {
		content: "";
	}

/* Panel
---------*/

	.panel {
		display: block;
		background-color: #F2F2F2;
		padding: 10px 20px;
		position: relative;
		border-radius: 10px;
	}

	.panel h1 {
		display: block;
		font-size: 25px;
		margin: 0 !important;
		border-radius: 0;
		padding-top: 6px;
	}

	.panel h2 {
		font-size: 20px;
		margin: 10px 0 10px 0;
		font-weight: 400;
	}

	.panel strong {
		font-weight: 600;
	}

	.panel:hover {
		background-color: #f9f9f9;
	}

/* Box
-------*/

	.box {
		display: block;
		background-color: #F2F2F2;
		padding: 20px;
		position: relative;
		margin-bottom: 20px;
		border-radius: 10px;
	}

	.box h1,
	.box h2,
	.box h3 {
		display: block;
		color: #000000;
		margin: 0;
	}



/* Trenner
-----------*/

	hr.seperator {
		height: 5px;
		border: none;
		margin-bottom: 30px;
		border-top: 2px dashed #DDDDDD;
	}

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

	.main-content {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 300px;
		overflow-y: auto;
		background-color: #FFFFFF;
	}

