:root {
	/* --color: #324628;
	--colorSecond: #26351e; */
	--color: #444;
	--colorSecond: #222;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: #eee;
}
::-webkit-scrollbar-thumb {
	background-color: var(--color);
	border-radius: 20px;
	border: 2px solid #eee;
}
* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
	font-family: arial, sans-serif;
}
body {
	background-color: #fff;
}
i.icon {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	margin-right: 10px;
	width: 32px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}
i.icon[data-name="address"] {
	background-image: url('../img/icon/adresse.png');
}
i.icon[data-name="telefon"] {
	background-image: url('../img/icon/telefon.png');
}
i.icon[data-name="email"] {
	background-image: url('../img/icon/email.png');
}
i.icon[data-name="birthday"] {
	background-image: url('../img/icon/geburtstag.png');
}
i.icon[data-name="xing"] {
	background-image: url('../img/icon/xing.png');
}
#navigation_mobile {
	display: none;
}
#navigation {
	position: fixed;
	top: 0;
	left: 0;
	padding: 20px;
	width: 300px;
	height: 100%;
	background-color: var(--color);
	color: #fff;
	z-index: 9;
}
	#navigation a {
		color: #fff;
	}
	#navigation .picture {
		margin: auto;
		width: 200px;
		height: 200px;
		background-image: url('../img/foto_michi.jpg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		border-radius: 50%;
	}
	#navigation #name {
		margin: 20px 0;
		font-size: 24px;
		text-align: center;
	}
	#navigation .nav_headline {
		margin-bottom: 20px;
		padding: 10px;
		font-size: 16px;
		font-weight: bold;
		border-bottom: 1px solid #fff;
	}
	#navigation #address, #navigation #telefon, #navigation #email, #navigation #birthday, #navigation #xing {
		position: relative;
		margin-bottom: 20px;
		padding: 10px 10px 10px 42px;
		line-height: 24px;
		font-size: 16px;
	}
#content {
	position: fixed;
	top: 0;
	left: 300px;
	padding: 50px 50px 50px 100px;
	width: calc(100% - 300px);
	height: 100%;
	background-color: #eee;
	overflow-y: auto;
	z-index: 7;
}
	#content #switch {
		position: fixed;
		top: 0;
		left: 300px;
		width: 50px;
		height: 100%;
		background-color: var(--colorSecond);
		overflow: hidden;
		color: #fff;
		z-index: 8;
	}
		#content #switch a {
			display: block;
			padding: 20px;
			cursor: pointer;
			font-size: 20px;
			word-break: break-all;
			text-align: center;
			transition: all .3s ease-in-out;
		}
		#content #switch a:hover, #content #switch a.active {
			background-color: var(--color);
		}
	#content .card {
		margin: 50px auto 0 auto;
		padding: 50px;
		max-width: 1000px;
		min-height: 100%;
		line-height: 24px;
		background-color: #fff;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	}
	#content .card[data-href="bewerbung"] {
		margin: 0 auto;
	}
		#content .card #bewerbung_head {
			margin-bottom: 50px;
		}
		#content .card #bewerbung_date {
			margin-bottom: 50px;
			text-align: right;
		}
		#content .card .headline {
			margin-bottom: 50px;
		}
			#content .card .headline h1, #content .card .headline h2 {
				color: var(--color);
			}
			#content .card h3 {
				color: var(--color);
				font-weight: normal;
			}
		#content .card .cv_item {
			padding: 20px;
		}
		#content .card .cv_item:after {
			content: "";
			display: block;
			height: 0;
			clear: both;
		}
			#content .card .cv_item .cv_item_left {
				float: left;
				margin-right: 25px;
				width: 150px;
			}
			#content .card .cv_item .cv_item_right {
				float: left;
				width: calc(100% - 175px);
			}
			#content .card .cv_item ul {
				padding-left: 25px;
			}
		#content .card .append_item {
			display: inline-block;
			width: 300px;
			max-width: 100%;
		}
			#content .card .append_item img {
				width: 100%;
				height: auto;
			}
@media all and (max-width:1920px) {
	#content {
		padding: 25px 25px 25px 75px;
	}
		#content .card {
			margin: 25px auto 0 auto;
		}
}
@media all and (max-width:1000px) {
	#navigation_mobile {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		padding: 10px;
		height: 52px;
		line-height: 32px;
		background-color: var(--color);
		color: #fff;
		cursor: pointer;
		z-index: 10;
	}
	#navigation_mobile::after {
		content: "";
		display: block;
		height: 0;
		clear: both;
	}
		#navigation_mobile .picture {
			float: left;
			margin-right: 10px;
			width: 32px;
			height: 32px;
			background-image: url('../img/foto_michi.jpg');
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
			border-radius: 50%;
		}
	#navigation {
		left: -300px;
		overflow-y: auto;
	}
	#content {
		left: 0;
		padding: 77px 25px 25px 75px;
		width: 100%;
	}
		#content #switch {
			left: 0;
			overflow-y: auto;
		}
		#content .card {
			padding: 20px;
		}
			#content .card .headline h1 {
				word-wrap: break-word;
			}
			#content .card img {
				max-width: 100%;
			}
}
@media all and (max-width:600px) {
	#content .card .cv_item .cv_item_left {
		float: none;
		margin-bottom: 10px;
		width: 100%;
		border-bottom: 1px dashed #444;
	}
	#content .card .cv_item .cv_item_right {
		float: none;
		width: 100%;
	}
}