.sidebar {
    height: 100%;
    width: 80px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: 0.2s ease;
    overflow: hidden;
    padding-top: 60px;
    white-space: nowrap;
  }
  .sidebar-profile{
    pointer-events: none;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    vertical-align: middle;
    transition: 0.2s linear 0.1s;
  }
  .sidebar-profile img{
    border-radius: 30px;
  }
  .profile-info{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
  }
  .profile-text{
    color: #1f1f1f;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 14px;
  }
  .sidebar-links{
    padding-top: 40px;
  }
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
  }
  
  .sidebar a:hover {
    color: #000;
  }
  .sidebar:hover .sidebar-profile{
    transform: scale(2);
  }
  #main .sidebar {
    position: fixed;
    top: 0;
    right: 25px;
    z-index: 990;
    font-size: 36px;
    box-shadow: 1px 1px 5px #000;
  }
  
 .sidebar .mdi{
    margin-left: -5px;
    margin-right: 30px;
  }
  
  #right-sidebar {
    margin-left: 85px;
    margin-right: 20px;
    transition: margin-left 0.2s;
  }
  
  @media screen and (max-width: 600px) {
    .sidebar {
      display: none;
    }
  }
  @media (orientation: landscape) and (max-width: 900px) {
    .sidebar {
      display: none;
    }
  }