.mobile-nav-holder, .mobile-nav-more-holder{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    height: 65px;
    border-top: 1px solid rgb(221, 221, 221);
    background-color: white;
    width: 100%;
    justify-content: center;
}

.mobile-nav-more-holder{
    z-index: 9999;
    top: 0;
    bottom: 0;
    height: auto;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    pointer-events: auto;
    background-color: white;
    border-top: none;
    padding-bottom: 85px;
}

.mobile-order-notification{
    top: -3px;
    right: -5px;
}

.mobile-campaign-notification{
    top: -3px;
    right: -12px;
}

.nav-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: gray;
    text-decoration: none;
}

.nav-item-selected{
    color: var(--black);
}

.nav-item-selected .nav-img{
    fill: var(--black);
}

.nav-item-selected .nav-img-stroke{
    stroke: var(--black);
}

.nav-txt{
    font-size: 10px;
    margin-top: 8px;
}

.nav-img-holder{
    position: relative;
}

.nav-img{
    display: block;
    height: 24px;
    width: 24px;
    fill: rgb(176, 176, 176);
}

.nav-img-stroke{
    stroke: rgb(176, 176, 176);
    stroke-width: 2.5px;
}

.mobile-nav-more-holder .nav-item{
    background-color: white;
    box-shadow: var(--darkBoxShadow);
    border-radius: 8px;
    margin-top: 20px;
    padding: 25px 18px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    width: 80%;
}

.mobile-nav-more-holder .nav-item .nav-txt{
    margin-top: 0;
    margin-left: 16px;
    font-size: 16px;
    color: var(--black);
    flex: 1;
}

.mobile-nav-more-holder .nav-item .nav-arrow{
    width: 25px;
    height: 25px;
    fill: #888;
}

.mobile-nav-more-holder .nav-item-close{
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.nav-item-hide-main{
    display: none;
}

body.mobile-nav-overlay-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

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