.wrapper {
  display:flex;
  flex-direction: row;
  
  overflow: hidden;
  margin-top:20px;
  height:95%;
}

.left-side {
  display: flex;
  flex-direction: column;
  
}

.left-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.left-side ul li {
  padding:10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
/*  font-family: 'Raleway', Arial, sans-serif;*/
  font-family:'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size:1.2rem;
  cursor: pointer;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.left-side ul li:hover {
  color: #F05F40;
}

.left-side ul li.active {
  color: #333333;
}

.left-side-border {
  width: 1px;
  margin-left: 20px;
  background-color: rgba(255, 255, 255, 0.2);
}
.left-side-border .border-line {
  width: 5px;
  height: 54px;
  background-color: #F05F40;
  margin-left: -2px;
/*  margin-top: 35px;*/
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}