.beon_wfv_tab_wrapper{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    /* align-items: center; */
    flex-direction: column;
    margin-bottom: 25px;
    margin-top: 65px;
    max-width: 1200px;
}
.beon_wfv_tabcontent .unitslider-wrapper{
    position: relative;

}
.beon-tab-wrapper-title{
    font-family: var(--e-global-typography-8aa47aa-font-family), Sans-serif;
    font-size: var(--e-global-typography-8aa47aa-font-size);
    font-weight: var(--e-global-typography-8aa47aa-font-weight);
    line-height: var(--e-global-typography-8aa47aa-line-height);
    color: var(--e-global-color-f42df9a);
    padding: 0px 0px 0px 0px;
}
.beon_wfv_tab {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    width: 80%;
    scroll-behavior: smooth;
    cursor: grab;
    /* flex-wrap: wrap; */
    /* justify-content: end; */

    /* Hide scrollbar */
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;     /* Firefox */
}
.beon_wfv_tab::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
}
/* .beon_wfv_tab::before {
    content: "";
    flex: 1 0 auto;  
} */
button.beon_wfv_tablinks {
    flex: 0 0 auto;
    height: 40px;
    font: 500 14px var(--beon-font-family);
    padding: 12px 15px;
    color: var(--beon-primary-text-color);
    background-color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--beon-border-color);
}
button.beon_wfv_tablinks:hover {
    color: var(--beon-primary-text-color);
    background-color: var(--beon-primary-color-light);    
    border-color: var(--beon-primary-color-light);
}
button.beon_wfv_tablinks.active {
    color: var(--beon-primary-text-color);
    background-color: var(--beon-primary-color-light);   
    border-color: var(--beon-primary-color-light); 
    cursor: grabbing;
}

@media only screen and (max-width: 1400px) { 
    .beon_wfv_tab {
        margin-bottom: 5px;
    }
    .beon_wfv_tabcontent {
        position: relative;
        padding-top: 1px;
    }
    button.beon_wfv_tablinks {
        height: 34px;
        font: 600 14px var(--beon-font-family);
        padding: 10px 12px;

    }
}
@media only screen and (max-width: 1300px){
    .beon_wfv_tab_wrapper{
        padding-right: 30px;
    }
}
@media only screen and (max-width:1024px) {
    .beon_wfv_tab_wrapper{
        flex-direction: column-reverse;
        align-items: start;
    }
    .beon_wfv_tab::before{
        display: none;
    }
    .beon_wfv_tab{
        justify-content: start;
        /* margin-left: -50px; */
        width: 100%;
    }
}
@media only screen and (max-width:767px) {
    .beon_wfv_tab{
        margin-left: 0;
    }
    .beon_wfv_tab_wrapper{
        /* align-items: center; */
        padding: 0;
        margin-bottom: 30px;
    }
    .beon-tab-wrapper-title{
        padding: 0;
    }
}