#sidebar {
    position: relative;
    top: 0;
    left: 0;
    width: 23%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }

  #sidebar:hover {
    width: 230px;
  }

  #sidebar a {
    color: #fff;
    text-decoration: none;
  }

  #sidebar>div {
    /* display: flex;*/
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
  }

  #sidebar>div:hover {
    background: #444;
  }

  #sidebar>div i {
    color: #fff;
    font-size: 20px;
    margin: 5px;
    padding: 5px;
  }

  #sidebar>div>span {
    /* display: none; */
    margin: 5px;
    padding: 5px;
  }

  #sidebar:hover>div>span {
    display: inline-block;
  }

  #profile-content {
    width: 100%;
    height: 800px;
    border: none;
    position: flex;
    margin-left: 50px;
    overflow: scroll;
    margin-bottom: 30px;
  }
  canvas {width: 100%; height: auto; }

  .blue {background: #1e1051; border-left: #d83217 10px solid;}
.orange {background:#d83217; border-left: #1e1051 10px solid;}