/* Footer Styling */
#footer-outside-container,
#receipt-footer-outside-container {
    background-color: #fff !important;
    color: #222 !important
}

#footer {
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-top: 1px solid #eee
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px 0;
    flex-wrap: wrap
}

.footer-icons img {
    margin: 0 2px;
    vertical-align: middle
}

.footer-nav {
    background-color: transparent !important;
    text-align: center;
    margin: 5px 0 0 0;
    height: auto !important;
    display: block !important
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 13px;
    flex-wrap: wrap
}

.footer-nav a {
    color: #222 !important;
    text-decoration: none;
    font-weight: 400;
    transition: color .2s
}

.footer-nav a:hover {
    color: #0070f3;
    text-decoration: underline
}

.footer-nav .bold {
    font-weight: 700
}

.footer-copyright {
    text-align: center;
    color: #888;
    font-size: 12px;
    margin: 16px 0 0 0
}

.footer-pipe {
    color: #bbb;
    font-size: 14px;
    margin: 0 4px;
    user-select: none
}

.footer-promo {
    height: auto !important;
    display: none
}

@media(min-width:1188px) {

    .footer-nav,
    .footer-nav a {
        position: relative !important;
        z-index: 9999 !important;
        pointer-events: auto !important
    }
}

#footer-mobile {
    display: none;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    padding: 5px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    z-index: 100;
    box-sizing: border-box
}

#footer-mobile .footer-nav {
    margin: 0;
    width: 100%
}

#footer-mobile .footer-nav ul {
    font-size: 11px;
    gap: 3px;
    justify-content: center;
    flex-wrap: wrap
}

#footer-mobile .footer-nav a {
    font-size: 11px;
    padding: 2px 4px
}

#footer-mobile .footer-pipe {
    font-size: 11px;
    margin: 0 3px
}

@media only screen and (max-width:991px) {
    #footer {
        display: none !important
    }
    
    #footer-mobile {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1)
    }
}

