* {
	margin: 0;
	padding: 0;
}

.menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 250px;
	height: 100vh;
	position: fixed;
	overflow: hidden;
	background-color: #141414;
	box-sizing: border-box;
	border-right: 2px solid #dd9361;
	z-index: 6;
}
.menu ul {
	width: 100%;
}
.menu ul:first-child {
	height: 100vh;
	overflow-y: scroll;
}
.menu ul:first-child::-webkit-scrollbar {
	width: 3px;
}
.menu ul:first-child::-webkit-scrollbar-track {
	background: #2b2a2a;
}
.menu ul:first-child::-webkit-scrollbar-thumb {
	background: #2b2a2a;
}
.menu ul:first-child::-webkit-scrollbar-thumb:hover {
	background: #2b2a2a;
}

.menu ul a {
	text-decoration: none;
}
.menu ul li {
	width: 100%;
	box-sizing: border-box;
	padding: 25px 25px;
	color: #b3b2b2;
	font-weight: 400;
	font-size: 20px;
	transition: 150ms;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu ul li img {
	width: 30px;
}
.menu ul li:hover {
	background-color: #2b2a2a;
	cursor: pointer;
	transition: 150ms;
}
.menu ul ul {
	font-weight: 300;
	font-size: 20px;
}
.menu ul ul li {
	font-weight: 300;
	font-size: 20px;
	padding: 15px 0px;
	padding-left: 50px;
	color: #b3b2b2;
}
.sub-menu {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 150ms ease-in-out;
}
.sub-menu.active {
	max-height: 1000px; /* Stelle sicher, dass dies größer ist als die maximale Höhe deines Inhalts */
}
.sub-menu-arrow {
	transform: rotate(0deg);
	transition: 150ms;
}
.sub-menu-arrow.active {
	transform: rotate(180deg);
	transition: 150ms;
}

.menu-toggle {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 20px;
	width: 30px;
	padding: 0;
	display: none;
	z-index: 8;
}

.bar {
	height: 4px;
	background-color: #fff;
	width: 100%;
	transition: all 0.3s ease;
}
.menu-toggle.open .bar:nth-child(1) {
	transform: rotate(45deg);
	position: relative;
	top: 8px;
}

.menu-toggle.open .bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
	transform: rotate(-45deg);
	position: relative;
	top: -8px;
}
.menu-cover {
	display: none;
}
.menu-cover.active {
	display: none;
}

@media (max-width: 1200px) {
	.menu {
		transform: translateX(-100%);
		transition: 350ms;
	}
	.menu.active {
		transform: translateX(0%);
		transition: 350ms;
		z-index: 6;
	}
	.menu-toggle {
		display: flex;
	}
	.menu-toggle {
		top: calc(0.5 * 100px);
		transform: translateY(-50%);
		position: fixed;
	}

	.menu ul:first-child {
		margin-top: 70px;
		height: calc(100vh - 70px);
	}
	.menu-cover.active {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #00000093;
		z-index: 5;
		position: fixed;
		display: block;
	}
}
@media (max-width: 700px) {
	.menu-toggle {
		top: calc(0.5 * 80px);
		transform: translateY(-50%);
		position: fixed;
	}
}
@media (max-width: 350px) {
	.menu {
		width: 100%;
	}
}
