ul.footer_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.footer_item {
    display: flex;
    flex-flow: column;
    height: 100%;
    width: 100%;
}

.footer_icon_img {
    width: 1.75rem;
    height: 1.75rem;
    color: #777;
    filter: contrast(.2);
}

li.footer_item.left, li.footer_item.right , li.footer_item.center  {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100%;
    gap:.125rem;
}
span.footer_text {
    font-size: .75rem;
}

.footer_item.active {
    scale: 1.05;
    color: var(--skin__alt_primary);
    filter: drop-shadow(2px 4px 6px black);
}


