@media only screen and (max-width: 575px) {
	.sidebar .logo-container{
		width: 65px;
	}

	.sidebar .logo-short{
		display: inline-block;
	}
	.sidebar .logo-full{
		display: none;
	}
}
@media only screen and (min-width: 576px) {
	.sidebar .logo-container{
		width: 255px;
	}
	.sidebar .logo-short{
		display: none;
	}
	.sidebar .logo-full{
		display: inline-block;
	}
}
.sidebar{
	height: 100%;
	width: 255px;
	background-color: #eef1f5;
	position: absolute;
	overflow-x: hidden;
	transition: width .3s;
	white-space: nowrap;
}
.sidebar:not(.shown){
	width: 0;
}
.sidebar:not(.shown) + .content-wrapper{
	margin-left: 0;
}
.sidebar:not(.shown) ~ .footer {
	left: 0;
	width: 100%;
}
.sidebar .logo-container{
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
	height: 58px;
	z-index: 10;
	background-color: #eef1f5;
	transition: box-shadow .1s;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}
.sidebar:not(.shown) .logo-container{
	box-shadow: #959595 0px 1px 3px 0;
}

.sidebar .logo-container>a{
	height: 100%;
	width: 100%;
	display: inline-block;
	text-decoration: none;
}

.sidebar .logo{
	height: 100%;
	display: flex;
	padding: 0;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	letter-spacing: 3px;
	font-weight: bolder;
	background: -webkit-linear-gradient(75deg, #019de0 0%, #0b295f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-left: auto;
	margin-right: auto;
}
.sidebar .logo-container>a:hover .logo{
	color: #0b295f;
}

.sidebar .profil-container {
	margin-top: calc(60px + 2em - 10px);
}

.sidebar .profil-container .profil-link{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: inherit;
	padding: 10px 1.5em;
}

.sidebar .profil-container .profil-link:hover{
	text-decoration: none;
	background-color: #e6eaef;
}


.sidebar .profil-container .profil-pick{
	width: 35px;
	height: 35px;
	border-radius: 50%;
	box-sizing: border-box;
	box-shadow: #BABABA 0px 0 1px 2px;
	object-fit: cover;
}

.sidebar .profil-container .profil-pick-empty{
	border: 3px solid #eef1f5;
}

.sidebar .profil-info-container{
	line-height: 1.3;
	text-align: right;
}
.profil-info-container .username{
	color: inherit;
	font-size: 14px;
}
.profil-info-container .username:hover{
	text-decoration: none;
	color: inherit;
}

.profil-info-container .role{
	color: #afb0b5;
	font-size: 12px;
}

.sidebar .menu-container{
	margin-top: 2em;
}

.sidebar .menu{
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	color: #77787b;
	font-size: 15px;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.sidebar .menu>.menu-element{
	width: 100%;
}
.sidebar .menu>.menu-element + .menu-element{
	margin-top: .5em;
}
.sidebar .menu>.menu-element>.menu-link{
	display: flex;
	align-items: baseline;
	width: 100%;
	color: inherit;
	padding: 1em 1.75em;
	transition: background-color .2s, color .2s;
}

.sidebar .menu>.menu-element>.menu-link:hover{
	color: inherit;
	text-decoration: none;
	background-color: #e6eaef;
}
.sidebar .menu>.menu-element.active>.menu-link{
	background-color: #3B8DC3;
	color: #ffffff;
}

.sidebar .menu .menu-link .icon{
	font-size: 16px;
	width: 15px;
	margin-right: 1.4em;
}


.sidebar .menu .menu-link .help{
	margin-left: auto;
}

.sidebar-footer{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	font-size: 13px;
	font-style: italic;
	width: 100%;
}

.sidebar-footer .footer-num-version{
	color: #888a8d;
	font-size: 11px;
	text-align: center;
}
.sidebar-footer img{
	width: 40px;
	margin-left: 10px;
}
.sidebar-footer .footer-row{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.sidebar-footer .footer-row .footer-col{
	padding: 0 1.5em;
}