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