.left-menu{
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.left-menu li{
    display: flex;
    margin-bottom: 1px;
    width: 100%;
}

.left-menu li a{
    display: flex;
    font-size: 14px;
    width: 100%;
    color: #50bdf6;
    text-decoration: none;
    text-transform: uppercase;
    justify-content: flex-start;
    align-items: center;
    background: #323639;
    font-weight: 400;
    padding: 10px 25px;
}


.left-menu li a:hover, .left-menu li.active a{
    background: #ffa200;
    color: #323639;
}

.left-menu li .leftIco svg{
    width: 55px;
    height: 55px;
    padding-right: 20px;
    padding-top: 6px;
}

.left-menu li .leftIco svg path{
    fill: #ffa200;
}

.left-menu li a:hover .leftIco svg path, .left-menu li.active a .leftIco svg path{
    fill: #323639;
}