.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    background: var(--lightest);
    font-size: 0.8rem;
    box-sizing: border-box;
    padding: 0 0.8rem;
}
@supports not (gap: 1rem) {
    .footer__column {
        padding-bottom: 1rem; 
    }
}
.toolbar--bottom {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 100;
    box-shadow: var(--shadow--light);
}

.toolbar__item {
    color: var(--dark);
    padding: 1.4em;
}

.toolbar__icon--main {
    font-size: 1.14rem;
    display: flex;
}