.tab-btn-wrapper{
    display: flex;
    align-items: center;
    gap: 1em;
}

.tab-label{
    font-size: 16px;
    display: block;
    width: fit-content;
    min-width: fit-content!important;
    padding: 12px 0;
    cursor: pointer;
    transition: .3s;
}


.tab {
    display: none;
}

.tab-label-active {
    color: red;
    color:rgb(37 46 87);
}
.tab-label span {
    height: 2px;
    display: block;
    width: 0%;
}

.tab-label-active span {
    transition: .3s;
    display: block;
    height: 2px;
    background:rgb(37 46 87);;
    width: 100%;
}