.left-menu li:last-child {
  margin-bottom: 0;
}
.left-menu li a {
  background: #eeeeee;
  color: #333;
  font-weight: 500;
 /* text-transform: uppercase;*/
  display: block;
  margin-bottom: 5px;
  line-height: 40px;
  position: relative;
  padding: 0 20px;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
}
.left-menu li:hover a,
.left-menu li.active a {
  background: #1c94d1;
  color: #fff;
}
.left-menu li a:hover:before,
.left-menu li a.active:before {
  opacity: 1;
}
.left-menu li:hover a:after,
.left-menu li.active a:after {
  color: inherit;
}
.left-menu li a:after {
  content: '\f101';
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  right: 20px;
  line-height: 40px;
  color: #333;
  font-weight: normal;
}
.left-menu li a:before {
  content: '\f0da';
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  left: -1px;
  color: #FFFFFF;
  font-size: 19px;
  line-height: 40px;
  opacity: 0;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
}