.sidebar {
	position: fixed;
	background-color: #212121;
	width: 250px;
	top: 0px;
	left: 0px;
	min-height: 100vh;
	overflow: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	color: white;
	font-size: 16px;
	z-index: 10;
}

.sidebar nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

#iconBurger {
	width: 20px;
	height: 20px;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0px;
	overflow: hidden;
	position: relative;
	transition: var(--Transition);
	cursor: pointer;
}
#iconBurger.cross {
	justify-content: center;
	transition: var(--Transition);
}
.burger div {
	width: 200%;
	height: 3px;
	background-color: white;
}
.burger .haut {
	transition: var(--Transition);
	position: absolute;
	top: 0px;
}
.burger .milieu {
	transition: var(--Transition);
	position: absolute;
	top: calc(10px - 1.5px);
}
.burger .bas {
	transition: var(--Transition);
	position: absolute;
	bottom: 0px;
}
.cross .haut {
	transform: rotate(45deg);
	position: absolute;
	transition: var(--Transition);
	top: calc(10px - 1.5px);
}
.cross .milieu {
	opacity: 0;
	transition: var(--Transition);
}
.cross .bas {
	transform: rotate(-45deg);
	position: absolute;
	transition: var(--Transition);
	top: calc(10px - 1.5px);
}

.sidebar ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.sidebar h3 {
	text-align: center;
	width: 100%;
}

.sidebar #menu a {
	color: white;
	border-bottom: solid 1px transparent;
	transition: var(--Transition);
	position: relative;
}

.sidebar #menu a::after {
	content: '';
	background-color: white;
	height: 1px;
	width: 0%;
	position: absolute;
	bottom: 0px;
	left: 0px;
	transition: var(--Transition);
}
.sidebar #menu a:hover::after, .sidebar #menu a.active::after {
	width: 100%;
}

.sidebar nav img {
	width: 100%;
}

.sidebar #menu {
	width: 100%;
	transition: var(--Transition);
}
.sidebar #menu .list:not(:last-child) {
	margin-bottom: 10px;
}

.sidebar #menu .list .list-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 14px;
	position: relative;
	padding-bottom: 10px;
}

.sidebar #menu .list .list-header::after {
	content: '';
	background-color: white;
	height: 1px;
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
	opacity: 0.4;
}

.sidebar #menu .list .list-header i {
	transition: var(--Transition);
}

.sidebar #menu .list.open .list-header i {
	transform: rotate(180deg);
}

.sidebar #menu .list:not(.open) .sublist {
	max-height: 0px;
	padding: 0px 10px;
}

.sidebar #menu .list .sublist {
	max-height: 500px;
	overflow: hidden;
	margin-top: 10px;
	padding: 10px;
	transition: var(--Transition);
	line-height: 20px;
}

.sidebar #menu .list .sublist .sublist-element:not(:last-child) {
	margin-bottom: 10px;
}

.sidebar footer {
	position: absolute;
	width: 100%;
	bottom: 0px;
	left: 0px;
}

.sidebar footer .row {
	padding: 0px;
}

@media screen and (max-width: 900px) {
	.sidebar {
		width: 100%;
		min-height: 0px;
	}
	.sidebar #menu:not(.open) {
		min-height: 0vh;
		max-height: 0vh;
	}
	.sidebar #menu.open {
		min-height: 100vh;
		max-height: 100vh;
	}
	.sidebar nav img {
		height: 20px;
		width: unset;
	}
	#iconBurger {
		display: flex;
	}
}