.sidebar {
  background-color: white;
  position: fixed;
  top: 100px;
  right: 0;
  bottom: 0;

  /* display: flex;
  flex-direction: column; */

  width: 70px;
  box-shadow: -2px 5px 5px rgb(223, 223, 223);

  z-index: 101;
  transition: 0.15s;
}

.sidebar-button-icons {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
}

.icons-label {
  position: absolute;
  bottom: 0;

  font-size: 10px;
  font-weight: bold;
}

.icon-img {
  width: 100%;
}

.sidebar-button-icons:hover {
  background: rgb(255, 186, 179);

  transition: 0.15s;
}

.icons-label {
  pointer-events: none;
}
