.section-tabbar {
    max-width: 100%;
    margin: 0 auto;
    min-height: auto;
    width: 100%;
}

.tabbar-tabs-wrap {
    border-bottom: 1px solid #ccc;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.tabbar-tabs-wrap::-webkit-scrollbar {
    height: 6px;
}

.tabbar-tabs-wrap {
    overflow: hidden;
}

.tabbar-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE / Edge */
}

.tabbar-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari / Opera */
}

.tabbar-tabs {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tabbar-tab-item {
    position: relative;
    flex: 0 0 auto;
}

.tabbar-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 0px 40px;
    color: #666666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: 0;
    outline: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.tabbar-tab i {
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.tabbar-tab:hover {
    color: #ea5329;
    text-decoration: none;
}

.tabbar-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background .2s ease;
}

.tabbar-tab.active {
    color: #000;
}

.tabbar-tab.active::after {
    background: #000;
}

.tabbar-content {
    padding: 24px 0px 0;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 12px;
    font-size: 28px;
    color: #333;
}

.tab-panel p {
    margin: 0;
    font-size: 18px;
    color: #666;
}

@media (max-width: 991.98px) {

    .tabbar-content {
        padding: 24px 0;
    }

    .tab-panel h3 {
        font-size: 22px;
    }

    .tab-panel p {
        font-size: 16px;
    }

    .tabbar-tab {
        font-size: 16px;
        gap: 8px;
        min-height: 64px;
        padding: 0px 24px;
    }
}

@media (max-width: 575.98px) {
    .tabbar-tab {
        font-size: 16px;
        gap: 8px;
        min-height: 64px;
        padding: 0px 20px;
    }

    .tabbar-tab i {
        font-size: 18px;
    }

    .tabbar-tab::after {
        height: 2px;
    }

    .tabbar-content {
        padding: 24px 0;
    }


}