.tapbar{
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: var(--bg1);
    border-top: 2px solid var(--bg2);


    z-index: 111;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tapbar-button{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0.6;
    width: 100%;
}

.tapbar-button.is-active{
    opacity: 1;
    color: var(--prime-100, #0f172a);
}

.tapbar-button.is-active span{
    font-weight: 700;
}

.tapbar-button img{
    width: var(--spacer-6);
    height: var(--spacer-6);
    object-fit: contain;
}


@media screen and (min-width: 700px) {
    .tapbar {
        display: none;
    }
}
