.app-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 366px;
    height: 62px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 20;
}

.app-bottom-nav__item {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 4px;
    text-decoration: none;
}

.app-bottom-nav__item img {
    width: 20px;
    height: 20px;
    display: block;
}

.app-bottom-nav__item span {
    font-size: 10px;
    line-height: 12px;
    color: #7c8493;
}

.app-bottom-nav__item--active span {
    color: #1f64e5;
}

