#sidebar {
	grid-area: sidebar;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#sidebar-buttons {
	list-style-type: none;
	display: flex;
	flex-flow: column nowrap;
	justify-content: start;
	margin: 0;
	padding: 16px 8px 16px 16px;
	width: 100%;
	height: calc(100vh - 56px);
}

.sidebar-button {
	margin: 0;
	padding: 0;
}

.sidebar-button a {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	margin: 0;
	padding: 8px;
	font-family: dinpro-medium;
	font-size: 1.2rem;
	color: var(--green);
	text-decoration: none;
	border-radius: 28px;
}

.sidebar-button-active a {
	color: var(--white);
	background: var(--green);
	box-shadow: var(--elevation);
}

.sidebar-button a i {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 8px;
	padding: 0;
	width: 24px;
	height: 24px;
}

.sidebar-button a span {
	margin: 8px;
	padding: 0;
}

@media (width <= 980px) {
	#sidebar-buttons {
		justify-content: center;
	}
	.sidebar-button a span {
		display: none;
	}
}