@charset "utf-8";

nav {
  	max-width: 1070px;
	width: 100%;
	height: 3.0rem;
	min-height: ;
	margin: 0 auto 0 auto;
	float: ;
	text-transform: uppercase;
	cursor: pointer;
	background-color: #fff;
	/* background: rgba(255, 255, 255, 0.7); */  /* Black background with 0.5 opacity */

}

/* Start navigation -----------------------------------------------------------------------------------
von > http://www.olivergast.de/blog/2015/05/22/css-ein-horizontales-dropdown-menue-responsive-gestalten/ 
*/
nav ul {
	margin: 0;
	padding: 0;
	}

nav a {
	font-size: 1.1rem;
	display: block;
	color: #c5c9c7;
	text-decoration: none;
	}

nav ul li {
	position: relative;
	float: left;
	color: #fff;
	list-style: none;
	transition: 1.0s;
	}

nav ul li a {
	padding: 0.7rem 1.4rem;
	}

nav ul > li.submenu > a:after {
	position: relative;
	float: right;
	content: '';
	margin-left: 10px;
	margin-top: 5px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #FFF;
	border-bottom: 5px solid transparent;
}

nav li a:hover {
	background: ;
	color: #44a12a;
	transition: 0.2s;

}

nav li a:active {
	background-color: #; /* farbe bei click */
	color: #FFF;
}

			/* für submenue - löschen, wenn nicht verwendet
			nav ul ul {
				position: absolute;
				top: -9999px;
				left: -9999px;
				background: #333;
				box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
				z-index: 1;
			}

			nav ul ul li {
				float: none;
				width: 200px;
				border-bottom: 1px solid #555;
			}

			nav ul ul li a {
				padding: 10px 20px;
			}

			nav ul ul li:last-child {
				border-bottom: none;
			}

			nav ul li:hover > ul {
			  top: 100%;
			  left: 0;
			}

			nav ul ul li:hover > ul {
			  top: 0;
			  left: 200px;
			}
			*/

nav span {
	color: #000;
}

input#responsive-nav, label.responsive-nav-label {
	display: none;
	}
/* End design navigation -------------------------------------------------------*/


/* Start responsive navigation - deklarationen -------------------------------------------------------*/
@media screen and (max-width: 800px) {
 

	nav {height: auto;
		min-height: 3.0rem;
	}
	
	label.responsive-nav-label {
		position: relative;
		display: block;
		padding: 1.0rem 1.5rem 0.5rem 1.0rem;
		font-size: 1.4rem;
		background: #fff;
		cursor: pointer;
		color: #000;
	}
	
	label.responsive-nav-label span {
		padding: 0rem 1.5rem 0.5rem 0rem;
	}
	
	nav {
		position: absolute;
		top: -9999px;
		padding: 1.0rem;
	}
	
	input#responsive-nav[type=checkbox]:checked ~ nav {
		position: relative;
		top: 0;
	}
	
	nav a:after {
		display: none;
	}
	
	nav li {
		float: none !important;
		width: 100% !important;
		border-bottom: none !important; 
	}
   
	nav li a {
		font-size: 1.0rem;
		/* margin-bottom: 10px !important; Abstand deaktiviert */
		padding:  0.1rem 1.5rem 0.5rem 1.5rem!important; 
		background: #fff;
	}
 
	nav ul li:hover {
		background: none;
	}
	
	nav ul ul {
		position: relative !important;
		width: 100%;
		left: 0 !important;
		top: 0 !important;
		background: none !important;
		box-shadow: none;
	}
	
	 nav ul ul li {
		padding-left: 1.0rem;
	}
	
	
nav ul li a:hover {
		background: ;
}

	
}
/* End responsive navigation - deklarationen -------------------------------------------------------*/
