/* CSS Document */
.cart-icon {
    position: relative;
}

.notification-count {
    display: inline-block;
    background: #28a745;
    color: #fff !important;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 4px;
    margin-left: -7px;
    vertical-align: super;
}
.cart-mobile-icon {
    position: relative;
}

.cart-count-mobile {
    position: absolute;
    top: 2px;
    right: 22%;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 0 4px;
}
#mobileBottomBar {
    display: none;
}

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

    body {
        padding-bottom: 70px;
    }

    #mobileBottomBar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 62px;
        background: #111;
        z-index: 99999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
    }

    #mobileBottomBar a {
        flex: 1;
        color: #fff;
        text-align: center;
        font-size: 0.75em;
        padding-top: 15px;
        text-decoration: none;
        border: 0;
    }

    #mobileBottomBar i {
        display: block;
        font-size: 1.35em;
        margin-bottom: 2px;
    }

    #mobileBottomBar span {
        display: block;
        line-height: 1.2em;
    }
}

@media screen and (min-width: 737px) {
    #mobileBottomBar {
        display: none !important;
    }
}

