aside.left nav {
	margin-top: var(--margin);
	margin-right: var(--margin-s);
	overflow-x: hidden;
	height: calc(100vh - 156px);
	overflow-y: auto;
}
html.mini aside.left nav {
	margin: var(--margin) 0;
}
aside.left nav ul {
	height: 100%;
}
aside.left nav ul li {
	position: relative;
	margin-bottom: 5px;
}
aside.left nav ul a {
	display: grid;
	grid-template-columns: 32px 1fr;
	grid-gap: 10px;
	padding: 6px 0;
	width: 100%;
	padding: 8px var(--margin);
	border-radius: var(--border-radius);
}
html.mini aside.left nav ul a {
	display: block;
	padding: 8px 16px;
}
aside.left .image {
	text-align: center;
	position: relative;
}
aside.left nav ul img {
	width: 26px;
	height: 26px;
	object-fit: contain;
	opacity: 0.5;
	position: absolute;
	left: 0px;
}
html.mini aside.left nav ul img {
	display: block;
	position: relative;
}
aside.left nav ul li.active a img {
	opacity: 1;
}
aside.left nav ul a:hover img {
	opacity: 1;
}
html.dark aside.left nav ul img {
	filter: invert(1)
}
aside.left nav ul i {
	font-size: 31px;
}
aside.left nav ul .name {
	font-weight: 600;
	display: block;
	font-weight: 500;
	line-height: 27px;
	font-size: 20px;
}
html.mini aside.left nav ul .name {
	display: none;
	position: absolute;
	left: 59px;
	background: white;
	white-space: nowrap;
	top: 2px;
	padding-right: 5px;
	line-height: 34px;
	-webkit-border-top-right-radius: var(--border-radius);
	-webkit-border-bottom-right-radius: var(--border-radius);
	-moz-border-radius-topright: var(--border-radius);
	-moz-border-radius-bottomright: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	font-size: 18px;
	border: var(--border);
	border-left: unset;
}
html.dark.mini aside.left nav ul .name {
	background: black;
}
html.mini aside.left nav ul a:hover .name {
	display: block;
}
aside.left nav ul a:hover .name {
	color: var(--color);
}
aside.left nav ul li.active a {
	background: #f3f3f3;
	color: black !important;
}
html.dark aside.left nav ul li.active a {
	background: #212121;
}
aside.left nav ul .name span {
	color: silver;
	font-size: 15px;
	font-weight: 400;
}
aside.left nav ul li.active a .name {
	color: var(--color) !important;
}
aside.left nav ul li.active a .name span {
	color: var(--color);
	opacity: 0.7;
}
@media all and (max-width: 1140px) {
	aside.left nav ul .name {
		font-size: 18px;
		line-height: 25px;
	}
}
@media all and (max-width: 960px) {
	aside.left nav {
		margin: 0 !important;
		text-align: center;
		height: calc(100vh - 174px);
	}
	aside.left nav ul a {
		display: block !important;
		padding: 8px 0px !important;
		text-align: center;
		border-radius: unset;
	}
	aside.left nav ul img {
		display: inline-block !important;
		position: relative !important;
	}
	aside.left nav ul .name {
		display: none !important;
	}
}
@media all and (max-width: 720px) {
	aside.left nav {
		margin-top: 10px !important;
		height: calc(100vh - 154px);
	}
}
@media all and (max-width: 540px) {
	aside.left nav {
		background: rgba(255, 255, 255, 0.8);
		position: fixed;
		left: 0;
		right: 0;
		width: 100%;
		top: 50px;
		height: calc(100dvh - 60px);
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
		display: none;
	}
	html.dark aside.left nav {
		background: rgba(0, 0, 0, 0.8);
	}
	html.mobile-menu aside.left nav {
		display: block;
	}
	aside.left nav ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		height: unset;
		margin: var(--margin);
		grid-gap: var(--margin);
		position: fixed;
		text-align: left;
		width: unset;
		left: var(--margin);
		right: var(--margin);
		bottom: unset;
		top: calc(50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		margin: auto;
		padding: var(--margin);
	}
	aside.left nav ul li {
		margin: unset;
	}
	aside.left nav ul a {
		background: unset !important;
		border: var(--border);
		border-radius: var(--border-radius);
		background: var(--background) !important;
		padding: 14px 0 !important;
	}
	aside.left nav ul .name {
		left: unset !important;
		top: unset !important;
		padding: 0 !important;
		border-radius: unset !important;
		border: unset !important;
		line-height: 18px !important;
		font-size: 18px !important;
		margin-top: 4px;
	}
	html.mini aside.left nav ul .name {
		display: block !important;
		position: relative;
	}
}