#mobile-menu-bar {
    display: flex;
    width: calc(100% - 0px);
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 100;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background-color: #fff!important;
}

#mobile-menu-bar > a {
    width: 20%;
    text-align: center;
    padding: 1em 0;
}

#mobile-menu-bar #icon {
    display: block;
    line-height: 1;
    position: relative;
}

#mobile-menu-bar #icon svg {
    width: 30px;
    height: 30px;
}

#mobile-menu-bar #cart #count {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 12px;
}

@media screen and (min-width: 993px) {
    #mobile-menu-bar { display: none; }
}