@import "../../styles/lavenes.scss";

.nav-bar {
    width: 100%;
    height: $navbar-height;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px) saturate(180%);
    box-sizing: border-box;
    padding-inline: $view-padding-horizontal;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    &__item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        gap: 6px;
        position: relative;

        &__icon {
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #222222;

            &.active {
                color: #fff;
            }
        }

        &__name {
            display: none;
            font-size: 15px;

            &.active {
                font-weight: 500;
                display: block;
                color: #fff;
            }
        }

        &__backdrop-active {
            width: 100%;
            height: 100%;
            background: #222222;
            position: absolute;
            border-radius: 25px;
            z-index: -1;
        }
    }
}