/* Left menu*/
ul.left-menu
{
	margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ddd;
	list-style: none;
}

ul.left-menu .item { 
	font-size: 1em;
    line-height: 1.4667em;
	margin: 0;
	position: relative;
    display: block;
	border-top: 1px solid #eff1f5;
}
ul.left-menu .item a {
	color: var(--grey);
    padding: 18px 23px;
	display: block;
	position: relative;
}

ul.left-menu .item a.selected { 
	background: var(--color-theme-hover);
	color: var(--white);
}

ul.left-menu .item a:focus,
ul.left-menu .item a:hover,
ul.left-menu .item a:active {
	text-decoration: none;
}

ul.left-menu .item a:hover {
}
ul.left-menu .item a:hover:before {
    background-color: var(--color-theme-hover);
    bottom: 5px;
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    top: 5px;
    width: 2px;
}