/*
Floating Mobile Menu*/
.sf-floating-bar,
.sf-floating-bar .sf-button,
.sf-floating-bar .sf-button .cart-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.sf-floating-bar {
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90%;
    padding: 4px;
    border-radius: 20px 20px 0 0;
    background-color: #eaeaea;
    box-shadow: 0 8px 8px -4px rgba(0, 0, 0, 0.15), 0 20px 24px -4px rgba(0, 0, 0, 0.08);
}

.sf-floating-bar .sf-button {
    position: relative;
    width: auto;
    height: 56px;
    font-size: 12px;
    color: #3c3c3c;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0 8px;
    text-decoration: none;
}

.sf-floating-bar .sf-button .cart-badge {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 18px;
    height: 18px;
    font-size: 11px;
    background-color: #5d5d5d;
    color: #fff;
    border-radius: 100%;
}

.sf-floating-bar .sf-button:before {
    content: attr(data-menu);
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2a3733;
    color: #dedede;
    font-size: 11px;
    padding: 1px 50%;
    opacity: 0;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 4px;
}

.sf-floating-bar .sf-button:hover {
    color: #dc1a1a;
}

.sf-floating-bar .sf-button:hover .cart-badge {
    top: -4px;
}

.sf-floating-bar .sf-button:hover:before {
    opacity: 1;
    bottom: 5px;
}

.sf-floating-bar .sf-button,
.sf-floating-bar .sf-button:before,
.sf-floating-bar .sf-button .cart-badge,
.sf-floating-bar .sf-button i {
    transition: all .3s ease-in-out;
}
