/* Mobile bottom navigation */
.footernavbar {
    z-index: 1050;
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.footernavbar .selectors {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.footernavbar .mobile-tab {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 60px;
    padding: 6px 4px;
    border: 0;
    border-radius: 0;
    background-color: #fff !important;
    color: #5f6368 !important;
    text-align: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.footernavbar .mobile-tab .selector-holderss {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    line-height: 1.2;
}

.footernavbar .mobile-tab i {
    font-size: 20px;
    line-height: 1;
}

.footernavbar .mobile-tab span {
    font-size: 12px;
    line-height: 1.2;
}

.footernavbar .mobile-tab.button-active,
.footernavbar .mobile-tab:hover,
.footernavbar .mobile-tab:focus-visible {
    color: #ef6c26 !important;
}

.footernavbar .mobile-tab:focus-visible {
    outline: 2px solid #ef6c26;
    outline-offset: -2px;
}

@media (max-width: 991.98px) {
    .footernavbar:not([style*="height: auto"]) {
        height: calc(60px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
    }
}

@media (min-width: 992px) {
    .footernavbar {
        display: none;
    }
}
