.Content { display: block; }
.Inhalt { min-height: 500px; margin: 1px; padding: 4px 1%; background-color: var(--bg-inhalt); }
.Suche { padding: 0; border: 0; background-color: var(--color-suche-bg); color: var(--color-suche);}
.Desktop, .Mobile { max-height: var(--navbar-height) }
NAV a { padding: 0; }
NAV a:hover { background-color: transparent; }

.Navi{
    height: var(--navbar-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--navi-bg);
}

.Navi ul{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}
.Navi li{
    height: 100%;
    width: var(--navi-width);
    text-align: center;
    position: relative;
	border-bottom: 1px solid transparent;
}
.Navi li:hover{
    border-bottom: 1px solid var(--navi-a-focus-border);
}
.Navi ul a{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
	color: var(--navi-a);
	background-color: var(--navi-a-bg);
}
.Navi ul a:hover{
	color: var(--navi-a-focus);
	background-color: var(--navi-a-focus-bg);
}

nav .dropdown{
    height: min-content;
    width: var(--navi-sub-width);
    background: var(--navi-bg);
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: var(--navbar-height);   
}
nav .dropdown li{
    height: 70px;
    width: 100%;
}
nav .dropdown li a{
    justify-content: left;
	text-align: left;
    padding-left: 10px;
	margin-left: -40px;
	width: calc(100% + 40px);
	/* width: calc(100% - 30px); */
}

nav .expandable_li{
	margin: 0 20% 0 0; 
}

.toggle_button{
    width: 30px;
    height: 23px;
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}
.bar{
    height: 4px;
    width: 100%;
    background: var(--navi-bar);
    border-radius: 100px;
    color: transparent;
}


.Navi li:hover .dropdown{
    display: flex;
}
.Navi input[type="checkbox"]{
    display: none;
}


@media(max-width: 850px){


.toggle_button{
    display: flex;
}
.Navi ul{
	display: none;
	width: 80%;
    position: absolute;
    top: var(--navbar-height);
	height: min-content;
    /* 
    background-color: var(--background-navi);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none; */
}
.Navi li{
    height: min-content;
    width: 100%;
}

.Navi li:hover{
    border-bottom: 1px solid transparent);
}

.Navi ul a{
    padding: 30px 0;
}
.expandable_li{
    display: block;
    padding: 0 0 10px 0;
}
.expandable_li label{
    padding: 30px 0;
    cursor: pointer;
    display: block;
}
.expandable_li:hover .dropdown{
    display: none;
}
.expandable_li input[type="checkbox"]:checked ~ .dropdown{
    display: block;
}
nav .dropdown{
    position: static;
    width: 100%;
}
nav .dropdown li{
    padding: 0;
    display: block;
    /* position: static; */
    background: var(--background-navi);
 }
nav .dropdown li a{
	text-align: center;
	margin-left: 0;
	height: min-content;
	width: 80%;
	/* 
	padding: 0;
	width: calc(100% + 40px);
	width: 100%;
	*/
}
#toggle_button:checked ~ ul{
    display: block;
}


}