.tabs-container {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    /* border-bottom: 2px solid rgba(0, 0, 0, 0.08); */
    width: 100%;
    height: 50px;
    margin-bottom: 32px;
}
.tabs-container .tab {
    position: relative;
    white-space: nowrap;
    color: #425457;
    padding: 0 16px 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}
.tabs-container .tab.active {
    color: #242E30;
}
.tabs-container .tab.active::after {
    display: block;
    content: "";
    background-color: #FB6100;
    border-radius: 2px 2px 0 0;
    height: 4px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}