.left-menu{
	display: inline-block;
	width: var(--left-menu-width);
	height: 100%;
	background-color: var(--left-menu-bg-color);
	
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.06);
}

.left-menu-entry{
	width: 100%;
	height: var(--left-menu-width);		/* In order to be a square */
	position: relative;
	padding: 14px;
	background-color: transparent;
	border-bottom: 1px solid rgba(43,43,43,1);

	font-size: 11px;
	line-height: 15px;
	color: rgba(185,184,184,1);
	text-align: center;
	letter-spacing: 0;
	
	cursor: pointer;
}

.left-menu-entry.top{
	color: white;
	cursor: default;
}

.left-menu-entry.top p{
	font-family: 'Work Sans', sans-serif;
	font-size: 12px;
	letter-spacing: -0.6px;
	color: rgba(112,107,107,1);
	margin: 0px;
	line-height: 14px;
}

.left-menu-entry.top span{
	font-size: 8px;
	color: rgba(184,184,184,1);
	margin: 0px;
	line-height: 9px;
	letter-spacing: 0;
}


.left-menu-entry.active{
	background-color: rgba(34,32,32,1);
}


.left-menu-entry .active-bar{
	width: 4px;
	height: 55px;
	display: none;
	position: absolute;
	left: 0px;
	top: 17px;
	background-color: rgba(49,129,238,1);
}

.left-menu-entry.active .active-bar{
	display: inline-block;
}


.left-menu-entry i{
	height: 23px;
	width: auto;
	margin-top: 10px;
	margin-bottom: 8px;
	color: #DBDBDB;
}

.left-menu-entry.active i{
	color: rgba(49,129,238,1) !important;
}


/********************* RESPONSIVE *********************/
@media screen and (max-width: 812px) {
    .left-menu {
        display: none;
    }
}