.tabelv2-button-container{
    display: block;
    margin: 0px 0px;
}
  .tab-row-container {
      font-family: 'Albert Sans', sans-serif;
      color: var(--fw-white-450);
      display: flex;
      flex-direction: row;
      gap: 0;
      text-transform: uppercase;
      font-size: 12px;
      border-bottom: 1px solid var(--fw-white-200);
      margin: 0px 0px;
      height: 50px;
      overflow-y: scroll;
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
  }

.tab-element {
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 3px 5px 3px;
    min-width: 130px;
    cursor: pointer;
    transition: border-bottom 0.2s ease;
    background: var(--fw-white-050);
    color: var(--fw-white-500);
    flex: 1;
    border-bottom: 3px solid transparent;
    font-size: 0.75rem;
    line-height: 0.8rem;
}

@media screen and (min-width: 616px) {
    .tab-element {
        font-size: 0.7rem;
        line-height: 1.0rem;
    }
}

@media screen and (min-width: 768px) {
    .tab-element {
        font-size: 0.77rem;
        line-height: 1.2rem;
    }
}
@media screen and (min-width: 1006px) {
    .tab-element {
        font-size: 0.80rem;
        line-height: 1.2rem;
    }
}


/* .tab-element:last-child {
} */

.tab-element:not(.tab-selected):hover {
    border-bottom: 3px solid var(--fw-white-350);
}
/* .tab-element i {
    color: var(--fw-white-200);
} */

.tab-element span {
    transition: all 0.2s ease;
    font-weight: bold;
    /* color: var(--fw-white-450); */
    /* white-space: nowrap; */
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-element:hover span {
    /* color: var(--fw-black-350); */
    color: var(--fw-black-400);
}

.tab-selected {
    /* color: var(--fw-black-450); */
    border-bottom: 3px solid var(--primary-300);
}

.tab-selected i,
.tab-selected span {
    color: var(--fw-black-400);
}
