/* =========================================================
BOTTOM MENU (APP STYLE)
========================================================= */

.bottom-menu
{
    position: fixed;

    bottom: 0;

    left: 0;

    right: 0;

    height: 65px;

    background: #0b1220;

    border-top: 1px solid rgba(255,255,255,.08);

    display: flex;

    justify-content: space-around;

    align-items: center;

    z-index: 9999;

    padding: 6px 10px;
}


/* =========================================================
ITEMS
========================================================= */

.bottom-item
{
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: rgba(255,255,255,.6);

    font-size: 11px;

    gap: 4px;

    min-width: 50px;

    transition: .2s ease;

    background: transparent;

    border: none;

    cursor: pointer;
}

.bottom-item i
{
    font-size: 18px;
}


/* ACTIVE / HOVER */

.bottom-item:hover
{
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
MORE BUTTON
========================================================= */

.bottom-more-btn.active i
{
    transform: rotate(45deg);
}


/* =========================================================
MORE MENU
========================================================= */

.bottom-more-menu
{
    position: fixed;

    right: 16px;

    bottom: 80px;

    width: 230px;

    background: #111827;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    padding: 12px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    z-index: 9998;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .25s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);
}


/* OPEN */

.bottom-more-menu.active
{
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
LINKS
========================================================= */

.bottom-more-link
{
    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #fff;

    font-size: 14px;

    padding: 12px 14px;

    border-radius: 12px;

    transition: .2s ease;
}

.bottom-more-link:hover
{
    background: rgba(255,255,255,.06);
}


.bottom-more-link i
{
    width: 18px;

    text-align: center;
}


/* =========================================================
HIDE ON DESKTOP
========================================================= */

@media (min-width: 992px)
{
    .bottom-menu
    {
        display: none;
    }

    .bottom-more-menu
    {
        display: none;
    }

    body
    {
        padding-bottom: 0;
    }
}