/* ==========================================
   FMC NAVIGATION V11
========================================== */

.bottomNav{

    position:fixed;

    left:0;
    right:0;
    bottom:0;

    height:74px;

    display:flex;

    justify-content:space-around;

    align-items:center;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border-top:1px solid rgba(0,0,0,.06);

    box-shadow:
    0 -8px 24px rgba(0,0,0,.08);

    z-index:9999;

}

.bottomNav button{

    flex:1;

    height:100%;

    border:none;

    background:none;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:4px;

    cursor:pointer;

    color:var(--text-soft);

    font-family:'Inter',sans-serif;

    transition:.25s ease;

    position:relative;

}

.bottomNav button:hover{

    color:var(--primary);

}

.bottomNav button.active{

    color:var(--primary);

    font-weight:700;

}

.bottomNav button.active::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:42px;

    height:4px;

    border-radius:0 0 12px 12px;

    background:var(--primary);

}

.bottomNav button .material-symbols-rounded{

    font-size:26px;

    line-height:1;

    transition:.25s ease;

    font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;

}

.bottomNav button.active .material-symbols-rounded{

    transform:translateY(-2px) scale(1.08);

}

.bottomNav button span:not(.material-symbols-rounded){

    font-size:11px;

    margin-top:2px;

    letter-spacing:.2px;

}

@media(max-width:480px){

    .bottomNav{

        height:72px;

    }

    .bottomNav button .material-symbols-rounded{

        font-size:24px;

    }

    .bottomNav button span:not(.material-symbols-rounded){

        font-size:10px;

    }

}

.navEmoji{

    font-size:22px;

    line-height:1;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* ==========================
   NAV EMOJI
========================== */

.navEmoji{

    width:26px;

    height:26px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    line-height:1;

    border-radius:8px;

    transition:.25s;

    filter:
        grayscale(100%)
        brightness(.65);

}

.bottomNav button.active .navEmoji{

    filter:none;

    transform:scale(1.08);

}

.bottomNav button:hover .navEmoji{

    transform:scale(1.05);

}