@charset "utf-8";
nav .menu_left {
    display: none;
    
    float: left;
    height: 20px;
    width: 300px;
}

.toggle,
#nav_wg,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
    background: var(--hg_nav);
	background: linear-gradient(to top, var(--hg_menue) 25%, var(--hg_menue_verlauf) 75%);
    background-repeat: no-repeat;
    float: right;
    background-repeat: no-repeat;
    width: var(--nav_weite);
    margin-top: var(--nav_top);
    margin-right:  var(--nav_right);

}

.menu {
    float: var(--nav_menue);
			z-index:1005;
}

.menu li a {
    color: var(--vg_menue);
}

nav .top_symbole {
    float: right;
    margin-top: 10px;
    margin-right: 10px;
}

#logo {
    display: block;
    padding: 0 30px;
    float: left;
    font-size: 20px;
    line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;

}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
    background: var(--hg_menue);
    background: linear-gradient(to top, var(--hg_menue) 25%, var(--hg_menue_verlauf) 75%);
    background-repeat: no-repeat;
}

nav ul li ul li {
	border-top: solid 1px var(--vg_rahmen);
    background: var(--hg_menue);
    background-repeat: no-repeat;
	margin-left:10px;
}

nav ul li ul li ul {
    margin-top: -35px;

}

/* Styling the links */
nav a {
    display: block;
    padding: 10px 20px;
    color: var(--vg_menue);
    text-decoration: none;
}

nav ul li ul li:hover {
    background: var(--hg_hover_menue);
    background-repeat: no-repeat;
}

/* Background color change on Hover */
nav ul li a:hover {
    background: var(--hg_menue);
    background: linear-gradient(to top, var(--hg_menue) 25%, var(--hg_hover_menue) 75%);
    background-repeat: no-repeat;
}
nav ul li ul li  a:hover {
    background: var(--hg_hover_menue);
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 37px;
		
		
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 210px;
    float: none;
    display: list-item;
    position: relative;
	
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 200px;
}


/* Change ' +' in order to change the Dropdown symbol */
li>a:after {
    content: ' \25BE';
}
ul li ul li>a:after {
    content: '  \25BA';
}
li>a:only-child:after {
    content: '';
}

/* Media Queries
--------------------------------------------- */