:root {
    --white: #FFFFFF;
    --black-primary: #222222;
    --blue-primary: #313FA0;
    --navbar-bg: #F2F3F5;
}

.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navbar-bg);
    padding: 10px 0 8px;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.navbar__wrapper {
    width: 100%;
}

.navbar__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar__item {
    flex: 1;
    position: relative;
    text-align: center;
}

.navbar__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--black-primary);
}

.navbar__icon {
    width: 28px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar__title {
    font-size: 11px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.link--absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.navbar__item:active .navbar__inner,
.navbar__item.is-active .navbar__inner {
    color: var(--blue-primary);
}