#bottom-navigation {
  height: 64px;
  /* width: 100%; */
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #2C2D2E;
  display: flex;
  justify-content: stretch;
  z-index: 50;
  font-size: 11px;
}

#bottom-navigation span.opener,
#bottom-navigation span.opener2,
#bottom-navigation .link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 5px;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
}

#bottom-navigation>* {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  color: white;
  text-decoration: none;
  text-align: center;
  background: #2c2d2e;

}

#bottom-navigation #middle-icon>* {
  height: 90px;
  position: absolute;
}

#bottom-navigation #middle-ellipse {
  z-index: -1;
  bottom: 10px;
}

#bottom-navigation #middle-icon {
  z-index: 2;
  white-space: nowrap;
}

#bottom-navigation .popup {
  background: #fff;
  position: fixed;
  width: calc(100%);
  height: calc(100% - (64px * 2));
  left: 0;
  bottom: 64px;
  transition: transform 0.3s ease-out;
  transform: translateY(calc(100%));
  z-index: -2;
}

#bottom-navigation .expanded .popup {
  transform: translateY(0);
}