.side_nav{
    position: fixed;
    right: -200px;
    bottom: 40px;
    z-index: 9;
    transition: all 1s ease;
  }
  .side_icon{
      border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.5s;
    margin-bottom: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  .side_icon svg{
      width:26px;
      height: 26px;
  }
  .side_icon svg path{
    transition: all 0.5s;
  }
  .side_icon:hover svg path{
    fill: #f00000;
  }
