/* Gestion du spinner de chargement */
.load-spinner {
    background: url('../img/spinner.gif') no-repeat center center !important;
    background-size: 20px 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* Gestion de la navbar */
.navbar > ul {
	margin: 1rem 0.5rem;
	display: inline-flex
}
.navbar > ul > li {
	list-style: none;
	margin: 0rem 1rem
}
.navbar > ul > li > a {
	text-decoration: none;
	color: hsl(0, 0%, 65%);
	font-weight: bold
}
.navbar > ul > li > a:hover {
  cursor: pointer;
}
.navbar > ul > li > a:not(.active):hover {
	color: hsl(0, 0%, 25%)
}
.navbar > ul > li > a.active {
	color: hsl(0, 0%, 25%);
	border-bottom: 2px solid hsl(0, 0%, 25%)
}
