.bottom-navigation-button {
  display: flex;
  flex: 1;
  min-width: 45px;
  max-width: 64px;
  height: 45px;
  margin: 0 8px;
  transition: color 420ms ease;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgba(var(--navbar-bottom-icon-color));
  cursor: pointer;
  outline: none;
  position: relative;
}

.bottom-navigation-button md-icon {
  transition: color 420ms ease, transform 420ms ease;
  color: rgba(var(--navbar-bottom-icon-color));
  margin: 4px 0 0 0;
}

.bottom-navigation-button span {
  font-size: 8pt;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* overflow: hidden; */
  text-align: center;
  position: absolute;
  bottom: -4px;
}

.bottom-navigation-button.is-active, .bottom-navigation-button:hover {
  color: rgba(var(--primary-color));
}

.bottom-navigation-button.is-active md-icon, .bottom-navigation-button:hover md-icon {
  color: rgba(var(--primary-color));
}

.bottom-navigation-button i {
  position: absolute;
  top: 6px;
  right: 0;
  min-width: 18px;
  min-height: 18px;
  border-radius: 50%;
  background-color: rgba(var(--notifcation-indicator-color));
  color: rgba(var(--font-color-invert));
  font-style: normal;
  font-size: 9px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
