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