﻿.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 63px;
    box-shadow: 0 -4.5px 24px 0 rgba(10,41,113,0.07);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    z-index: 1000;
    border-top: 2.5px solid #0a297116;
    padding: 0 8px;
    font-family: "Vazir", Arial, sans-serif;
    user-select: none;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6d7b92;
    text-decoration: none;
    font-size: 13.2px;
    height: 100%;
    padding: 0;
    transition: color 0.14s, transform 0.13s cubic-bezier(.5, .1, .51, .89);
    position: relative;
    cursor: pointer;
}

    .bottom-nav-item i {
        font-size: 22px;
        margin-bottom: 1.5px;
        margin-top: 3px;
        color: inherit;
        transition: color 0.16s, background 0.16s, transform 0.13s;
        border-radius: 50%;
        padding: 4.5px;
        background: none;
        display: block;
    }

    .bottom-nav-item span {
        font-size: 12.3px;
        font-weight: 500;
        margin-top: 1px;
        letter-spacing: -0.4px;
        color: inherit;
        transition: color 0.14s;
        line-height: 1.1;
    }

    .bottom-nav-item.active,
    .bottom-nav-item:hover {
        color: #0a2971;
    }

        .bottom-nav-item.active i,
        .bottom-nav-item:hover i {
            background: rgba(10,41,113,0.12);
            color: #0a2971;
            box-shadow: 0 2px 9px 0 rgba(10,41,113,0.07);
            transform: scale(1);
        }

    .bottom-nav-item:active {
        transform: scale(0.95);
    }

@media (min-width: 767px) {
    .bottom-nav {
        display: none;
    }
}
