@media (max-width: 1124px) {
  .sidebar {
    position: fixed;
    left: 0px;
    bottom: 0px;
    top:55px;
    background-color: white;
    width: 72px;
    z-index: 200;
    padding-top: 5px;
  }
  
  .sidebar-link {
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .sidebar-link:hover {
    background-color: rgb(235, 235, 235); 
    cursor: pointer;
  }
  
  .sidebar-link img {
    height: 24px;
    margin-bottom: 4px;
  }
  
  .sidebar-link div {
    font-size: 10px;
  }
}

@media (min-width: 1125px) {
  .sidebar {
    position: fixed;
    left: 0px;
    bottom: 0px;
    top:55px;
    background-color: white;
    width: 240px;
    z-index: 200;
    padding-top: 13px;
  }
  
  .sidebar-link {
    display: flex;
    align-items: center;
    padding: 8px 24px;
  }
  
  .sidebar-link:hover {
    background-color: rgb(235, 235, 235); 
    cursor: pointer;
  }
  
  .sidebar-link img {
    height: 24px;
    margin-right: 24px;
  }
  
  .sidebar-link div {
    font-size: 14px;
  }
}

