/* Scoped styles for the mobile bottom menu */
.mobile-bottom-menu {
    display: none; /* hidden by default, shown on small screens */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -1px 6px rgba(0,0,0,0.06);
    z-index: 1100;
    align-items: center;
    justify-content: space-around;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}
.mobile-bottom-menu .mbm-btn {
    background: transparent;
    border: none;
    padding: 6px 10px;
    color: #333;
    font: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
}
.mobile-bottom-menu .mbm-btn:active {
    opacity: 0.7;
}
.mobile-bottom-menu .mbm-icon {
    font-size: 18px;
    line-height: 1;
}
.mobile-bottom-menu .mbm-icon .bi {
    font-size: 16px; /* slightly larger for bootstrap icons */
}
.mobile-bottom-menu .mbm-label {
    font-size: 11px;
    margin-top: 2px;
}
/* =========================================================
   Tablet Styles (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {

    .container {

    }

    .header {

    }

    .nav {

    }

    .main {

    }

    .footer {

    }

}


/* =========================================================
   Mobile Styles (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {

    body {
        font-size: 12px !important;
        padding-bottom: 64px !important;
    }
    /*
    Input Fields
    */
    .g-2 .form-group label {
        left: 1.5rem !important;
        font-size: 12px !important;
    }

    .form-group .input-addon {
        right: 18px !important;
    }

    .form-group .form-control {
        font-size: 12px !important;
    }

    .btn {
        font-size: 12px !important;
    }

    /*
    Login pages
    */
    .sign-bg img {
        max-height: 100px;
        margin-left: 15px !important;
        margin-top: 20px !important;
    }

    .iq-navbar-header, .iq-header-img {
        max-height: 140px !important
    }

    .iq-container h3 {
        font-size: 18px !important;
    }

    .iq-container p {
        font-size: 11px !important;
    }

    .iq-banner:not(.hide) + .content-inner {
        margin-top: -1.9rem !important;
    }

    .table th, .table td {
        font-size: 10px !important;
    }

    .card .card-header .card-title {
        font-size: 16px !important;
    }

    .container {

    }

    .header {

    }

    .nav {

    }

    .logo-title .app-name {
        font-size: 12px !important;
    }

    .logo-title .app-subtitle{
        font-size: 8px !important;
        letter-spacing: 0.42rem
    }

    #sidebar-menu .static-item {
        margin-bottom: 0 !important;
        font-size: .78rem !important;
        font-family: "Montserrat Bold", Lato, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    }

    #sidebar-menu .nav-item .nav-link .item-name {
        font-size: .73rem !important;
    }

    .sidebar-list .iq-main-menu {
        padding-bottom: 100px !important;
    }

    .main {

    }

    #filter-panel{
        max-width: 300px !important;
    }

    .footer {

    }

    .footer .footer-body {
        padding: 10px 15px !important;
        font-size: 11px !important;
        text-align: center !important;
    }

    .mobile-bottom-menu { display: flex; }
}


/* =========================================================
   Small Mobile (≤ 480px)
   ========================================================= */
@media (max-width: 480px) {

    .container {

    }

    .header {

    }

    .nav {

    }

    .main {

    }

    .footer {

    }

}