nav{
position: relative;
z-index: 222;
overflow: visible;
}

.list-container {
	position: fixed;
	bottom: 20px;
	right: 40px;
	display: flex;
	align-items: center;
	font-style: bold;
	z-index: 223;
}

.list-container.active .more-button-list {
	opacity: 1;
	transform: translate(-40px, -20px) scale(1);
}
.list-container.active .more-button-list-item {
	animation: fadeInItem 0.6s 0.2s forwards;
}
.list-container.active .more-button-list-item:nth-child(2) {
	animation-delay: 0.25s;
}
.list-container.active .more-button-list-item:nth-child(3) {
	animation-delay: 0.3s;
}
.list-container.active .more-button-list-item:nth-child(4) {
	animation-delay: 0.4s;
}
.list-container.active .more-button-list-item:nth-child(5) {
	animation-delay: 0.5s;
}
.list-container.active .more-button-list-item:nth-child(6) {
	animation-delay: 0.6s;
}
.list-container.active .more-button-list-item:nth-child(7) {
	animation-delay: 0.7s;
}
.list-container.active .more-button {
	animation: onePulse 0.6s forwards linear;
}
.list-container.active .menu-icon-wrapper {
	transform: rotate(-45deg);
}
.list-container.active .menu-icon-line.first {
	transform: rotate(-90deg) translateX(1px);
}
.list-container.active .menu-icon-line.last {
	transform: rotate(-90deg) translateX(-1px);
}
.more-button {
	background-color: #000;
	box-shadow: 0px 0px 0px 4px rgba(207, 207, 207, 0.8);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: 0.2s ease-in;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: fixed;
	z-index: 23;
	bottom: 20px;
	right: 40px;
}
.more-button:hover, .more-button:focus {
	box-shadow: 0px 0px 0px 8px rgba(200, 200, 200, 0.7);
	background-color: #000;
}
.more-button:focus {
	outline: 0;
}
.more-button-list {
	background-color: #000000;
	border-radius: 28px;
	list-style-type: none;
	width: 30vw;
	min-width: 350px;
	box-shadow: 0px 0px 4px 4px rgba(150, 157, 249, 0.16);
	padding: 2rem;
	position: fixed;
	bottom: 0;
	right: 0;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0);
	transform-origin: bottom right;
	transition: all 0.3s ease 0.1s;
	z-index: 22;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.more-button.active + .more-button-list {
	right: 0;
}

.more-button-list li {
	opacity: 0;
	
}
.more-button-list-item {
	display: flex;
	align-items: center;
	color: #ffffff;
	margin-left: -10px;
	padding: 1rem;
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	transition: 0.2s ease-in;
	transform: translatex(-10px);
	width: 100%;
}
.more-button-list-item:hover {
	color: rgba(207, 207, 207, 0.8);
}
.more-button-list-item:after {
	content: "";
	position: absolute;
	height: 1px;
	width: calc(100% - 24px);
	left: 12px;
	bottom: 0;
	background-color: rgba(132, 160, 244, 0.1);
	transform-origin: bottom right;

}
.more-button-list-item:last-child:after {
	display: none;
}
.more-button-list-item svg {
	width: 2rem;
	height: 2rem;
	color: #ffffff;
}
.more-button-list-item span {
	display: inline-block;
	line-height: 20px;
	font-size: calc(12px + (24 - 12) * ((90vw - 400px) / (800 - 400)));
	margin-left: 8px;
}
.more-button-list-item a {
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: center;
	gap: 1rem;
	
}
.menu-icon-wrapper {
	border-radius: 2px;
	width: 20px;
	height: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	transition: transform 330ms ease-out;
}
.menu-icon-line {
	background-color: #fff;
	border-radius: 2px;
	width: 100%;
	height: 2px;
}
.menu-icon-line.half {
	width: 50%;
}
.menu-icon-line.first {
	transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
	transform-origin: right;
}
.menu-icon-line.last {
	align-self: flex-end;
	transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
	transform-origin: left;
}
.more-button.active .menu-icon-line:first-child {
	transform: translateY(0.5rem) rotate(45deg);
}
.more-button.active .menu-icon-line:nth-child(2) {
	opacity: 0;
}
.more-button.active .menu-icon-line:last-child {
	transform: translateY(-0.5rem) rotate(-45deg);
}
@keyframes onePulse {
	0% {
		box-shadow: 0px 0px 0px 0px rgba(200, 200, 200, 0.3);
   }
	50% {
		box-shadow: 0px 0px 0px 12px rgba(207, 207, 207, 0.1);
   }
	100% {
		box-shadow: 0px 0px 0px 4px rgba(200, 200, 200, 0.3);
   }
}
@keyframes fadeInItem {
	100% {
		transform: translatex(0px);
		opacity: 1;
   }
}

/* Blur-Effekt für die Seite */
body.menu-open::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(10px);
	z-index: 21;
	pointer-events: none;
	transition: all 0.3s ease 0.1s;
}


@media (max-width: 1024px) {
	.more-button-list-item {
	  justify-content: flex-end; /* rechtsbündig ausrichten */
	  flex-direction: row-reverse; /* Icon rechts vom Text */
	}
	.more-button-list-item span {
	  width: 80%;          /* span füllt die gesamte Breite */
      text-align: right;    /* Text rechtsbündig im span */
	}
  }