.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    will-change: transform;
    transform: translateZ(0);
    display: flex;
    height: 50px;
    box-shadow: 0 -2px 5px -2px #333;
    background-color: yellowgreen;
  }

  .mobile-bottom-nav__item {
    flex-grow: 1;
    text-align: center;
    font-size: 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-bottom-nav__item--active {
    color: red;
  }

  .mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
  }

  .mobile-bottom-nav__item-content img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .mobile-bottom-nav {
    display: none;
  }

  @media (max-width: 480px) {
    .mobile-bottom-nav {
      display: flex;
    }
  }