.bottomNavigation {
    width: 100%;
    height: auto;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
    position: sticky;
    bottom: 0;
    z-index: 200;
    display: none;
}

.innerBNav {
    width: 100%;
    max-width: 570px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    padding: 5px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.oneBNav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    color: black;
    gap: 5px;
    border-radius: 0.7rem;
    padding: 5px 0;
}

.oneBNav>img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.oneBNav>p {
    font-family: var(--font2);
    font-size: 80%;
    text-transform: capitalize;
    font-weight: 500;
}

@media only screen and (max-width: 576px) {
    .bottomNavigation {
        display: block;
    }
}