.fixed-page-nav {
    position: fixed;
    bottom: 40px;
    left: 0;
    width: 100%;
    max-width: 100%!important;
    display: flex;
    justify-content: center;
    z-index: 9999;
}

.fixed-page-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: var(--wp--preset--color--black);
    border-radius: var(--wp--custom--border-radius--medium);
    overflow: hidden;
}

.fixed-page-nav ul li {
    margin: 0;
    padding: 0;
}

.fixed-page-nav ul li a {
    padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--medium);
    display: block;
    border-right: 1px solid rgb(0 0 0 / 10%);
    color: var(--wp--preset--color--white);
    text-decoration: none;
    text-transform: capitalize;
}

.fixed-page-nav ul li:last-child a {
    border: 0;
}

.fixed-page-nav ul li a:hover {
    background: var(--wp--preset--color--primary);
}

a.fixed-menu-link.active {
    background-color: var(--wp--preset--color--primary);
}


@media screen and (max-width: 800px) {

.fixed-page-nav {
    display: none;
}
}
