/* CSS Document */
html, body, .boxConnexion { width: 100%; height: 100%; }
.boxConnection {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Menu */
.menu {
	height: 48px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.menu > span {
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.5s;
	height: 100%;
}
.menu span:hover {
	background-color: lightgray;
	color: black;
}
.menu h2 {
	margin-left: 0.5rem;
	margin-bottom: 0rem;
}
.menu i {
	font-size: 24px;
}

/* Liste des groupes */
.groupList {
	position: fixed;
	top: 48px;
	left: 0px;
	z-index: 1;
	height: calc(100% - 48px);
	background-color: #343a40;
	width: 100%;
	overflow: auto;
}

.FondMenu {
	position: absolute;
	width: 100%;
	height: 100%;
}
