@charset "UTF-8";
/* CSS Document */

header {
	
}

.logo-wrapper {
	-webkit-box-flex:0;
	    -ms-flex:0 0 auto;
	        flex:0 0 auto;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex; /* ist ein flex-container */
	-ms-flex-direction: row;
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	        flex-direction:row;
	-ms-flex-pack: center;
	-webkit-box-pack:center;
	        justify-content:center;
	-ms-flex-align:center;
	-webkit-box-align:center;
	        align-items:center;
	-ms-flex-wrap: wrap;
	flex-wrap:wrap;
}

.logo-wrapper .logo {
	text-align:center;
	-webkit-box-flex:0;
	    -ms-flex:0 0 240px;
	        flex:0 0 240px;
	height:200px;
	background-image:url(../common/logo.svg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:100% auto;
	font-size:0.8em;
}

.logo-wrapper span {
	-webkit-box-flex:0;
	    -ms-flex:0 0 0px;
	        flex:0 0 0px;
	background-color:rgba(153,255,0,1);		
}

.burger {
	-webkit-box-flex:0;
	    -ms-flex:0 0 40px;
	        flex:0 0 40px;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex;
	height:60px;
	background-color:#efefef;
	background-image:url(../common/burger-icon.svg);
	background-repeat:no-repeat;
	background-size:20px auto;
	background-position:center;	
}

.hauptnav {
	padding:0;
	-webkit-box-flex:1;
	    -ms-flex:1 1 0px;
	        flex:1 1 0px;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex; /* ist ein flex-container fuer die list-items */
	-ms-flex-direction: column;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	        flex-direction:column; /* nur mobil */
	/*height:60px;*/
	-ms-flex-pack: center;
	-webkit-box-pack:center;
	        justify-content:center;	
	-ms-flex-align:center;
	-webkit-box-align:center;
	        align-items:center;
	-ms-flex-wrap: wrap;
	flex-wrap:wrap;
	-ms-flex-order:1;	
	-webkit-box-ordinal-group:2;	
	        order:1;
}

.hauptnav li {
	-webkit-box-flex:1;
	    -ms-flex:1 1 0px;
	        flex:1 1 0px;
	width:100%;
	text-transform:none;
	letter-spacing:0.0em;
}

.hauptnav li:first-child {
	/*align-self:flex-start;*/
}

.hauptnav li a {
	font-family: Verdana, Geneva, sans-serif !important;
	font-weight:300;
	font-size:16px;
	display:block;
	padding:20px;
	text-decoration:none;
	color:#555555;
	border-bottom:1px solid #dcdcdc;
	text-align:center;
	width:100%; /* nur mobil */
	-webkit-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
}

.hauptnav li a:hover {
	background-color:#6f0c33; /*weinrot-violett */	
	color:#fff;
}

.hauptnav li.current-menu-item a, .hauptnav li.current_page_parent a {
	background-color:#6f0c33; /*weinrot-violett */	
	color:#fff;
}

.extranav {
	padding:0;
	-webkit-box-flex:1;
	    -ms-flex:1 1 0px;
	        flex:1 1 0px;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex; /* ist ein flex-container */
	-ms-flex-direction: row;
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	        flex-direction:row;
	-ms-flex-pack: start;
	-webkit-box-pack:start;
	        justify-content:flex-start;
	-ms-flex-align:start;
	-webkit-box-align:start;
	        align-items:flex-start;
	-ms-flex-order:2;
	-webkit-box-ordinal-group:3;
	        order:2;
}

.extranav li {
	-webkit-box-flex:0;
	    -ms-flex:0 0 auto;
	        flex:0 0 auto;
}

.extranav li a {
	display:block;
	padding:10px;
	background-color:#efefef;
	color:#000;	
	font-size:0.8em;
}

/* sub-nav */
.subnav {
	padding:0;
	width:100%;
	height:auto;
	overflow:hidden;
	position:relative;
	margin:0 auto;
	z-index:0;	
}

.subnav li {
	width:100%;
	display:inline-block;
	list-style:none;
	margin:0;
}

.subnav li a {
	width:100%;
	height:auto;
	font-size:12px;
	text-decoration:none;
	font-weight:300;
	padding:20px;
	display:block;
	font-size:12px;
	color:#333333;
	background-color:#efefef;
	border-bottom:solid 1px #efefef;
}

.subnav li a:hover {
	background-color:#6f0c33; /*weinrot-violett */
	border-bottom:solid 1px #ccc;
	color:#fff;
}

.current_page_parent .subnav li a {
	color:#555;
	border:none;
	background-color:#efefef;
}

.subnav li.active a {
	margin-top:0;
	-webkit-box-shadow:none;
	        box-shadow:none;
	color:#000;
	font-weight:300;
	background-color:#fff;
}

.current_page_parent .subnav li.current_page_item a {
	color:#000;
	background-color:#fff;
}

/* contentnav */
.contentnav {
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex;
	-ms-flex-direction: column;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	        flex-direction:column;
	-ms-flex-pack: start;
	-webkit-box-pack:start;
	        justify-content:flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap:wrap;	
}

.contentnav li {
	-webkit-box-flex:1;
	    -ms-flex:1 1 auto;
	        flex:1 1 auto;
	margin:0 1px	
}

.contentnav li:first-child {
	margin:0 1px 0 0;	
}

.contentnav li:last-child {
	margin:0 0 0 1px;	
}

.contentnav li a {
	display:block;
	padding:20px;
	text-decoration:none;
	color:#000;
	text-align:center;
	background-color:#efefef;
	-webkit-transition:all 0.4s;
	-o-transition:all 0.4s;
	transition:all 0.4s;
}

.contentnav li a:hover {
	background-color:#fff;
}

.contentnav li .current-item {
	background-color:#fff;
}

/* footer */
footer {
	/*display: -ms-flexbox;
	display:-webkit-box;
	display:flex;
	-ms-flex-direction: column;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	        flex-direction:column;*/
}

.footernav {
	padding:0;
	-webkit-box-flex:1;
	    -ms-flex:1 1 0px;
	        flex:1 1 0px;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex; /* ist ein flex-container */
	-ms-flex-direction: column;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	        flex-direction:column;
	-ms-flex-pack: start;
	-webkit-box-pack:start;
	        justify-content:flex-start;
}

.footernav li {
	-webkit-box-flex:1;
	    -ms-flex:1 1 0px;
	        flex:1 1 0px;
}

.footernav li a {
	padding:20px;
	display:block;
	color:#555;
	background-color:transparent;
	text-align:center;
	font-size:0.8em;
	-webkit-transition:all 0.4s;
	-o-transition:all 0.4s;
	transition:all 0.4s;
}

.footernav li a:hover {
	text-decoration:none;
	color:#000;
	background-color:transparent;
}

/* absender im footer*/
.footer-absender-box {
	-webkit-box-flex:1;
	    -ms-flex:1 1 0px;
	        flex:1 1 0px;	
}

.footer-absender-box * {
	text-align:center;
	font-size:0.9em;
	color:#555;		
}

/* footer-logo-wrapper  */
.footer-logo-wrapper {
	-webkit-box-flex:1;
	    -ms-flex:1 1 0px;
	        flex:1 1 0px;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex;
	-ms-flex-pack: center;
	-webkit-box-pack:center;
	        justify-content:center;
}

.footer-logo {
	-webkit-box-flex:0;
	    -ms-flex:0 0 40px;
	        flex:0 0 40px;
	height:40px;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex; /* ist ein flex-container */
	-ms-flex-direction: column;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	        flex-direction:column;
	-ms-flex-pack: end;
	-webkit-box-pack:end;
	        justify-content:flex-end;
	-ms-flex-align:center;
	-webkit-box-align:center;
	        align-items:center;
	background-image:url(../common/footer-logo.png);
	background-repeat:no-repeat;
	background-size:100% auto;
	background-position:center;
}

.footer-logo span {
	-webkit-box-flex:0;
	    -ms-flex:0 0 auto;
	        flex:0 0 auto;
	height:auto;
	display: -ms-flexbox;
	display:-webkit-box;
	display:flex;
	font-size:0.8em;
	color:#000;	
}

@media screen and ( min-width:600px ) {
	.logo-wrapper .logo {
		flex:0 0 320px;
	}
	
	.hauptnav li {
		-webkit-box-flex:0;
		    -ms-flex:0 0 auto;
		        flex:0 0 auto;	
	}
	
	/* contentnav */
	.contentnav {
		-ms-flex-direction: row;
		-webkit-box-orient:horizontal;
		-webkit-box-direction:normal;
		        flex-direction:row;	
		-ms-flex-pack: center;
		-webkit-box-pack:center;
		        justify-content:center;
	}
	
	.contentnav li {
		-webkit-box-flex:0;
		    -ms-flex:0 1 auto;
		        flex:0 1 auto;	
	}
	
	.contentnav li a {
		padding:20px 40px;
	}
	
	.footernav {
		-webkit-box-orient:horizontal;
		-webkit-box-direction:normal;
		    -ms-flex-direction:row;
		        flex-direction:row;
	}
	
	/* footernav */
	.footernav {
		-ms-flex-pack: center;
		-webkit-box-pack:center;
		        justify-content:center;	
	}
	
	.footernav li {
		-webkit-box-flex:0;
		    -ms-flex:0 1 auto;
		        flex:0 1 auto;
	}
}

@media screen and ( min-width:900px ) {
	header {
		-webkit-box-flex:1;
			-ms-flex:1 1 0px;
				flex:1 1 0px;
		display: -ms-flexbox;
		display:-webkit-box;
		display:flex; /* ist ein flex-container für logo-wrapper, hauptnav und extranav */
		-ms-flex-direction: row;
		-webkit-box-orient:horizontal;
		-webkit-box-direction:normal;
				flex-direction:row;
		-ms-flex-pack: start;
		-webkit-box-pack:start;
				justify-content:flex-start;
	}
	
	.burger {
		display:none;	
	}
	
	.hauptnav {
		margin-bottom:8px;	
	}
	
	.hauptnav li {
		display: -ms-flexbox;
		display:-webkit-box;
		display:flex;
		width:auto;
		-ms-flex-direction: row;
		-webkit-box-orient:horizontal;
		-webkit-box-direction:normal;
		        flex-direction:row;
		-ms-flex-wrap: wrap;
		flex-wrap:wrap;	
		-ms-flex-item-align:end;
		align-self:flex-end;
		position:relative;
		height:60px;
		margin-left:1px;
	}
	
	
	.hauptnav li a {
		background-color:transparent;
		border-left:none;
		transition:none;
		border:1px solid rgba(111,12,51,0);
	}
	
	.hauptnav li a:hover {
		background-color:transparent;
		color:#000;
		border:1px solid rgba(111,12,51,0.4); /*weinrot-violett 40% */
	}
	
	.hauptnav li.current-menu-item a, .hauptnav li.current_page_parent a {
		background-color:transparent;
		color:#000;
		border:1px solid rgba(111,12,51,0.4); /*weinrot-violett 40% */
	}
	
	.extranav {
		-ms-flex-pack: end;
		-webkit-box-pack:end;
		        justify-content:flex-end;	
	}
	
	/* subnav */	
	.subnav {
		width:240px;
		display:none; /* nur per mouseover */
		z-index:2000;
		position:absolute;
		left:-1px;
		top:60px;
		/* shadow */
		-webkit-box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.25);
		        box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.25);	
		border-collapse: separate;
		z-index:10;
		transition:all 0.4s;
	}
	
	.subnav li {
		height:auto !important;	
	}
	
	/* mouse over */
	.hauptnav li:hover .subnav {
		display:block;
	}
	
	.hauptnav .subnav:hover {
		display:block;
	}
	
	.subnav li a {
		background-color:#efefef;
	}
	
	.current_page_parent .subnav li a {
		color:#333333;
		background-color:#efefef;
		border-bottom:solid 1px #efefef;
	}
	
	.subnav li a, .current-menu-item .subnav li a {
		color:#fff;
		background-color:#6f0c33; /*weinrot-violett */
		/* inset shadow */
		-webkit-box-shadow: inset 0px -31px 74px -68px rgba(0,0,0,0.54);
-moz-box-shadow: inset 0px -31px 74px -68px rgba(0,0,0,0.54);
box-shadow: inset 0px -31px 74px -68px rgba(0,0,0,0.54);
		border:none;
		transition:all 0.4s;
		text-align:left;	
	}
	
	.subnav li a:hover, .current-menu-item .subnav li a:hover {
		color:#555;
		background-color:#fff;
		border:none;	
	}
	
	.current_page_parent .subnav li a {
		color:#fff;
		border:none;
		background-color:#6f0c33; /*weinrot-violett */
	}
	
	.current_page_parent .subnav li a:hover {
		color:#555;
		border:none;
		background-color:#fff; 
	}
	
	.current_page_parent .subnav li.current_page_item a {
		color:#000000;
		border:none;
		background-color:#fff;
	}
	
	/* vertikal */
	.vertikal header {
		display:block;
		width:30%;
	}
	
	.vertikal header .burger {
		-webkit-box-flex:0;
		    -ms-flex:0 0 40px;
		        flex:0 0 40px;	
	}
	
	.vertikal .hauptnav li {
		display:block;
		float:left;
		width:100%;
	}
	
	.vertikal .hauptnav li a {
		text-align:right;
	}
	
	/*vertikal subnav */	
	.vertikal .subnav {
		width:180px;
		display:none; /* nur per mouseover */
		z-index:2000;
		position:absolute;
		top:0; right:-180px;
	}
	
	.vertikal .subnav li a {
		
	}
	
	/* vertikal fixed */
	.vertikal.fixed header {
		position:fixed;
		top:0;
		left:0;
		display:block;
		width:30%;
		height:100%;
	}
	
	.vertikal.fixed header .logo-wrapper {
		width:100%;	
	}
	
	.vertikal.fixed .content-wrapper {
		display:block;
		width:70%;
		margin:0 0 0 30%;
	}
	
	.vertikal.fixed header .hauptnav li {
		display:block;
		float:left;
		width:100%;
	}
	
	.vertikal.fixed header .hauptnav li a {
		width:100%;
	}
	
	/* horizontal */
	.horizontal header {
		-ms-flex-direction: column;
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		        flex-direction:column;	
	}
	
	.horizontal .logo-wrapper {
		-ms-flex-order:1;
		-webkit-box-ordinal-group:2;
		        order:1;
	}
	
	.burger {
		-ms-flex-order:2;
		-webkit-box-ordinal-group:3;
		        order:2;
	}
	
	.horizontal .hauptnav {
		-webkit-box-orient:horizontal;
		-webkit-box-direction:normal;
		    -ms-flex-direction:row;
		        flex-direction:row;
		-ms-flex-pack: center;
		-webkit-box-pack:center;
		        justify-content:center;
		-webkit-box-pack:space-evenly;
		    -ms-flex-pack:space-evenly;
		        justify-content:space-evenly;/* erzeugt gleich grosse zwischenraeume und seitenabstaende*/
		-ms-flex-order:4;
		-webkit-box-ordinal-group:5;
		        order:4;
	}
	
	.horizontal .extranav {
		-ms-flex-order:3;
		-webkit-box-ordinal-group:4;
		        order:3;
	}
	
	.horizontal .hauptnav li {
		width:auto;
		-webkit-box-flex:1;
		    -ms-flex:1 1 auto;
		        flex:1 1 auto;
	}
	
	.horizontal .hauptnav li a {
		
	}
	
	/* horizontal fixed */
	.horizontal.fixed header {
		position:fixed;
		top:0; left:0;
		width:100%;
	}
	
	.horizontal.fixed .logo-wrapper  {
		-webkit-box-flex:0;
		    -ms-flex:0 0 auto;
		        flex:0 0 auto;
	}
	
	.horizontal.fixed .logo-wrapper span {
		display:none;	
	}
	
	.horizontal.fixed .logo-wrapper .logo {
		-webkit-box-flex:0;
		    -ms-flex:0 0 150px;
		        flex:0 0 150px;
		height:100px;
	}
	
	.horizontal.fixed .hauptnav {
		-webkit-box-flex:4;
		    -ms-flex:4 1 0px;
		        flex:4 1 0px;
		-ms-flex-pack: center;
		-webkit-box-pack:center;
		        justify-content:center;	
	}
	
	.horizontal.fixed .extranav {
		-webkit-box-flex:1;
		    -ms-flex:1 1 0px;
		        flex:1 1 0px;	
	}
	
	/* horizontal logo left */
	.horizontal.logo-left header {
		-ms-flex-direction: row;
		-webkit-box-orient:horizontal;
		-webkit-box-direction:normal;
		        flex-direction:row;	
	} 
	
	.horizontal.logo-left .logo-wrapper {
		-webkit-box-flex:0;
		    -ms-flex:0 0 360px;
		        flex:0 0 360px;	
	}
	
	.horizontal.logo-left .logo-wrapper .logo {
		-webkit-box-flex:0;
		    -ms-flex:0 0 320px;
		        flex:0 0 320px;	
		height:240px;
	}
	
	.horizontal.logo-left .burger {
		-ms-flex-order:2;
		-webkit-box-ordinal-group:3;
		        order:2;
		-ms-flex-item-align:end;
		align-self:flex-end;
	}
	
	.horizontal.logo-left .hauptnav {
		-webkit-box-flex:4;
		    -ms-flex:4 1 0px;
		        flex:4 1 0px;
		-ms-flex-pack: center;
		-webkit-box-pack:center;
		        justify-content:center;	
		-ms-flex-order:3;
		-webkit-box-ordinal-group:4;
		        order:3;
		-ms-flex-align:end;
		-webkit-box-align:end;
		        align-items:flex-end;	
	}
	
	.horizontal.logo-left .extranav {
		-webkit-box-flex:1;
		    -ms-flex:1 1 0px;
		        flex:1 1 0px;
		-ms-flex-order:4;
		-webkit-box-ordinal-group:5;
		        order:4;	
	}

}

@media screen and ( min-width:1200px ) {
	/* horizontal */
	.horizontal .hauptnav li {
		-webkit-box-flex:1;
		    -ms-flex:1 1 auto;
		        flex:1 1 auto;
	}
	
	.horizontal.logo-left .hauptnav {
		-ms-flex-pack: end;
		justify-content:flex-end;	
	}
	
	.horizontal.logo-left .hauptnav li {
		flex:0 1 auto;	
	}
	
}

@media screen and ( min-width:1600px ) {
	/* vertikal */
	.vertikal header {
		width:25%;
	}

	
	/* vertikal fixed */
	.vertikal.fixed header {
		width:25%;
	}
	
	.vertikal.fixed .content-wrapper {
		width:75%;
		margin:0 0 0 25%;
	}
	
	
	
	/* horizontal logo left */
	.horizontal.logo-left .hauptnav {
		-webkit-box-flex:5;
		    -ms-flex:5 1 0px;
		        flex:5 1 0px;	
	}

}

@media screen and ( min-width:1800px ) {
	/* vertikal fixed */
	.vertikal.fixed header {

	}

}

@media screen and ( min-width:2400px ) {
	
}