@media (max-width: 1200px) {
  .sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 55px;
    width: 72px;
    background-color: white;
    z-index: 101;
    padding-top: 5px;
  }
  
  .sidebar-link {
    height: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s;
  }
  
  .sidebar-link:hover {
    background-color: rgb(235, 235, 235);
  }
  
  .sidebar-link img {
    height: 24px;
    margin-bottom: 4px;
  }
  
  .sidebar div {
    font-size: 10px;
  }
  
}


@media (min-width: 1200.1px) {
  .sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 55px;
    width: 205px;
    background-color: white;
    z-index: 101;
    padding-top: 9px;
  }

  .sidebar-link {
    height: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.15s;
  }

  .sidebar-link:hover {
    background-color: rgb(235, 235, 235);
  }
  
  .sidebar-link img {
    height: 24px;
    margin-right: 25px;
    margin-left: 25px;
  }

  .sidebar div {
    font-size: 14px;
  }
}