body {
	overflow: hidden;
	width: 500px;
	height: 950px;
	background-position: center;
	display: grid;
	align-items: center;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
ul,
ol {
	list-style-type: none;
	padding-left: 0;
}
.container {
	margin-left: 20px;
	position: absolute;
	width: 0px;
}
.container .navigation {
	position: relative;
	width: 80px;
	height: 420px;
	background: #4d4d4d;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: 0.5s;
}
.container .navigation.active {
	width: 300px;
}
.container .navigation ul {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.container .navigation ul li {
	position: relative;
	list-style: none;
	width: 100%;
}
.container .navigation ul li:hover {
	background: rgb(104, 104, 104);
}
.container .navigation ul li a {
	position: relative;
	display: block;
	width: 100%;
	display: flex;
	text-decoration: none;
	color: #02ce24;
	font-weight: 500;
}
.container .navigation ul li a .icon {
	position: relative;
	display: block;
	min-width: 80px;
	height: 60px;
	line-height: 60px;
	text-align: center;
}
.container .navigation ul li a .icon .fa-solid {
	font-size: 24px;
}
.container .navigation ul li a .title {
	position: relative;
	display: block;
	height: 60px;
	line-height: 60px;
	white-space: nowrap;
}
.toggle {
	position: absolute;
	right: -20px;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	background: #4d4d4d;
	cursor: pointer;
	border: 5px solid rgba(0, 0, 0, 0.973);
	border-radius: 50%;
}
.toggle::before {
	content: '\f054';
	font-family: fontAwesome;
	position: absolute;
	width: 100%;
	height: 100%;
	line-height: 30px;
	text-align: center;
	font-size: 16px;
	color: #02ce24;
}
.toggle.active::before {
	content: '\f053';
}

#c {
	display: block;
	width: 100%;
	height: 100%;
}
#stats {
	position: absolute;
	left: 100px;
	top: 0;
}
