.sidebar {
  position: fixed;
  left: 0;
  bottom: 0;
  top: 56px;
  background-color: white;
  width: 72px;
  z-index: 200;
  padding-top: 4px;
  overflow-y: auto;
}
.sidebar-link {
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  border-radius: 8px;
  margin: 2px 4px;
  transition: background-color 0.15s;
}
.sidebar-link:hover {
  background-color: #f2f2f2;
}
.sidebar-link img {
  height: 24px;
  margin-bottom: 4px;
}
.sidebar-link div {
  font-size: 10px;
  text-align: center;
}
@media (min-width: 1200.1px) {
  .sidebar {
    width: 240px;
    padding-top: 12px;
  }
  .sidebar-link {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    padding: 10px 24px;
    border-radius: 8px;
  }
  .sidebar-link:hover {
    background-color: #f2f2f2;
  }
  .sidebar-link img {
    height: 24px;
    margin-right: 24px;
    margin-bottom: 0;
  }
  .sidebar-link div {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .sidebar {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-top: 0;
    border-top: 1px solid #DEDEDE;
    border-right: none;
    background-color: white;
  }
  .sidebar-link {
    flex: 1;
    height: 100%;
    margin: 0;
    border-radius: 0;
    padding: 6px 0;
    justify-content: center;
  }
  .sidebar-link img {
    height: 22px;
    margin-bottom: 3px;
    margin-right: 0 !important;
  }
  .sidebar-link div {
    font-size: 9px;
  }
}
