.tabbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 8px;

    height: fit-content;
    width: 100%;
    position: fixed;
    bottom: 0;
    /* width: fit-content; */
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, .12);

    margin: 0;
    padding: 4px 4px 32px;
    /* border-radius: 32px; */
}

.tabbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;

    /* min-width: 64px; */
    height: fit-content;
    /* border-radius: 28px; */
    padding: 8px;

    /* background-color: #dde6ea; */

    transition: all 0.2s;
}

.tabbar-item__label {
    /* display: none; */
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #99A2AD;
}

.tabbar-item.active .tabbar-item__label {
    /* display: block; */
    color: #2975CC;
}

.tabbar-item.active svg * {
    stroke: #2975CC;
}