#CircleMenu2 {
	position: relative;
	width: 200px;
	height: 200px;
	/* background: #0f0; */
	display: flex;
	justify-content: center;
	align-items: center;
}
#CircleMenu2 li {
	position: absolute;
	left: 0;
	list-style: none;
	transform-origin: 100px;
	transition: 0.5s;
	transition-delay: calc(0.1s * var(--i));
	transform: rotate(0deg) translateX(80px);
}
#CircleMenu2.active li {
	transform: rotate(calc(360deg / 8 * var(--i)));
}
#CircleMenu2 li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	transform: rotate(calc(360deg / -8 * var(--i)));
	box-shadow: 0 3px 4px rgb(0 0 0 / 15%);
	color: #111;
	transition: 0.5s;
	text-decoration: none;
}
#CircleMenu2 li a:hover {
	color: #ff1252;
}
#CircleMenu2 .toggle {
	position: absolute;
	width: 60px;
	height: 60px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 4px rgb(0 0 0 / 15%);
	font-size: 2em;
	transition: 1.25s;
}
#CircleMenu2.active .toggle {
	transform: rotate(315deg);
}
