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

	header {
		position: fixed;
		height: 70px;
		top: 0;
		width: 100%;
		z-index: 1;
		border-bottom: 1px solid #DDDDDD;
		background-color: rgba(255,255,255,0.9);
	}

	header > div {
		display: block;
		float: left;
		height: 70px;
		position: relative;
	}

/* Headerlogo
--------------*/

	.header-logo a {
		display: block;
		height: 70px;
		position: relative;
	}

	.header-logo img {
		height: 40px;
		position: relative;
		top: 48%;
		transform: translateY(-50%);
		margin-right: 4px;
		margin-left: 30px;
		max-width: 185px;
	}

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

	.header-title {
		display: block;
		float: left;
		height: 70px;
		min-width: 200px;
		position: relative;
		padding-left: 25px;
		margin-right: 20px;
		line-height: 70px;
		overflow: hidden;
		white-space: nowrap;
	}

	.header-title a {
		color: inherit;
		font-weight: 600;
		font-size: 22px;
		margin-right: 3px;
	}

	.header-title-icon {
		opacity: 0.2;
	}

	.header-title-icon:hover {
		opacity: 1;
	}

	.header-title-icon img {
		vertical-align: sub;
		position: relative;
		margin-left: 5px;
		height: 24px;
		width: auto;
		visibility: hidden;
		float: right;
		top: 24px;
		display: inline-block;
	}

	header:hover .header-title-icon img {
		visibility: visible;
	}

/* Suche
---------*/

	.header-search {
		display: block;
		float: left;
		height: 70px;
		position: relative;
		opacity: 1;
	}

	.header-search form {
		margin-top: 15px;
		position: relative;
	}

	.header-search:focus,
	.header-search:hover {
		opacity: 1;
	}

	.header-search-container {
		display: inline-block;
	}

	.header-search-container:before {
		content: '';
		position: absolute;
		top: 8px;
		left: 15px;
		display: block;
		width: 22px;
		height: 22px;
	}

	.header-search input {
		display: block;
		width: 500px;
		border: 1px solid #DDDDDD;
		padding: 8px 15px 7px 45px;
		border-radius: 24px;
		font-size: 16px;
	}

	.header-search input:focus {
		outline: none;
	}

	.header-search-counter {
		position: absolute;
		top: 11px;
		right: 20px;
		font-size: 13px;
		opacity: 0.7;
		z-index: 2;
		font-style: italic;
	}

/* Icon
--------*/

	.header-search-icon {
		position: absolute;
		top: 9px;
		left: 13px;
		width: 20px;
		height: 20px;
		opacity: 0.6;
	}

/* Suchergebnisse
------------------*/

	.header-searchresults {
		line-height: 70px;
		opacity: 0.8;
		padding-left: 15px;
	}

/* Buttons im Header
---------------------*/

	.header-buttons-left,
	.header-buttons-right {
		padding-top: 15px;
		padding-right: 25px;
	}

	.header-buttons-right {
		float: right;
	}

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

	.header-buttons-left a,
	.header-buttons-right a {
		display: inline-block;
		height: 32px;
		line-height: 35px;
		margin-left: 15px;
		float: left;
		position: relative;
		top: 3px;
		border-right: 1px solid #DDD;
		padding-right: 20px;
	}

	.header-buttons-right a:last-of-type {
		border-right: none;
		padding-right: 0;
	}

	.header-buttons-left a:hover,
	.header-buttons-right a:hover {
		opacity: 0.8;
	}

	.header-buttons-left img,
	.header-buttons-right img {
		display: inline-block;
		height: 32px;
		width: 32px;
		position: relative;
		vertical-align: sub;
	}

	.header-buttons-left span,
	.header-buttons-right span {
		vertical-align: top;
		color: #454545;
		position: relative;
		top: -2px;
	}

	.header-buttons-right a.active {
		background-color: #178498;
		border-radius: 5px;
	}



