.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    will-change: transform;
    transform: translateZ(0);
    display: none;
    height: 6vh;
    box-shadow: 0 -2px 5px -2px #333;
    background:var(--black-color);
    color: white;
    font-size: 2rem;
}

a.mobile-bottom-nav__item-content{
    color: white;
}

.mobile-bottom-nav__item {
    flex-grow: 1;
    text-align: center;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-bottom-nav__item--active {
    color: red;
}

.mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 1024px) {
    .mobile-bottom-nav{
        display: flex;
    }
}
