.fullscreen-menu {
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff; /* Hintergrundfarbe anpassen */
	z-index: 1000; /* Stelle sicher, dass es über allem liegt */
	display: none; /* Anfangs versteckt */
	overflow-y: auto; /* Für lange Menüs */
}

.li-main {
	padding-left: 20px;
}

.megamenu h3 {
	font-size: 1.1em; /* Kleinere Schriftgrösse */
	color: #222; /* Gedämpftere Farbe */
	margin-bottom: 0.5em; /* Weniger Abstand nach unten */

}

.fullscreen-menu ul {
	list-style: none;
	padding: 0;
	margin-bottom: 1.2em; /* Abstand, falls zwei Themen nacheinander in der Spalte sind */
}

.fullscreen-menu ul li {
	padding: 5px 20px;
	border-bottom: 1px solid #eee; /* Trennlinien */
}

.fullscreen-menu ul li a {
	display: block;
	/*font-size: 1.2em;
	color: #333; /* Textfarbe */
	text-decoration: none;
}

/* Megamenü-spezifische Stile (Beispiel) */
.megamenu {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
}

/* Standardmässig 25% Breite für Desktop */
.megamenu .col {
	width: 20%;
	padding: 10px;
}

/* Burger-Button */
/* wird im internen CSS gesteuert */

.noshow {
	display: block;
	border-bottom: none !important;
}

/* Media Query für kleinere Bildschirme (z.B. Smartphones) */
@media (max-width: 768px) {
	.megamenu {
		flex-direction: column; /* Stapelt die Spalten untereinander */
	}
	.noshow {
		display: none; /* blendet Zeugs aus auf Mobiles */
	}

	.megamenu .col {
		width: 100%; /* Nimmt die volle Breite ein */
	}
}

#headersearch {
	position: absolute;
	top: 43px;
	right: 175px;
	font-size: 0.9em;
	cursor: pointer;
	color: #222;
	z-index: 999;
	padding-right: 25px;
	border-right: 1px solid #b9b9b9;
}

#searchicon {
	display:none;
}

#menu-txt {
	display:inline;
	font-size: 18px !important;
	font-weight: 400;
	text-transform: uppercase;
	vertical-align: 5px;
}

#burger-icon {
	cursor: pointer;
	color: #0099cc;
	vertical-align: middle;
}

.burger-btn {
	position: absolute;
	top: 23px;
	right: 50px;
	font-size: 3em;
	cursor: pointer;
	color: #0099cc;
}

#close-icon {
	display: none; /* Anfänglich ausblenden */
}

@media (max-width: 670px) {

	#headersearch {
		top: 46px;
		right: 102px;
		cursor: pointer;
		color: #0099cc;
		padding-right: 20px;
		border-right: 2px solid #b9b9b9;
	}
	
	#menu-txt {
		display:none !important;
	}
	
	#topsearch {
		display: none;
	}
	
	#searchicon {
		display: block;
	}
}	