.switch_tabs_new{
    margin-bottom: 20px;
}
.switch_tabs_new > *{
    box-sizing: border-box;
}
.switch_tabs_new > .tabs_container.fix_tab_container{
    display: none;
    position: fixed;
    z-index: 9999;
}


.switch_tabs_new > .tabs_container{
    display: grid;
    margin-bottom: 10px;
}
.switch_tabs_new > .tabs_container > li{
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 1px 1px rgb(255 255 255 / 30%) inset;
    padding: 7px 2px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(129, 129, 129, 0.3);
    border-bottom: 2px solid #37434f;
    border-radius: 0px;
    background: #f6f6f6;
    color: #a3a3a3;
    line-height: inherit;
    word-break: break-all;
}

.switch_tabs_new > .tabs_container > li[data-check="1"]{
    background: #6495ed;
    color: #ffffff;
    transition: .5s;
}
.switch_tabs_new > .tabs_container > li > *{
    margin: 0 auto;
    display: block;
}
.switch_tabs_new > .tabs_container > li:has(.icon_dom) > .text_dom{
    margin-top: 3px;
}

.switch_tabs_new > .doms_container > *:not(:first-child){
    display: none;
}

/* Style 1 */
.switch_tabs_new[data-disp_style="1"] > .tabs_container{
    gap: 5px;
    border: 2px solid #e2e2e2;
    border-radius: 3px;
    background: #f9f9f9;
    padding: 5px;
}
.switch_tabs_new[data-disp_style="1"] > .tabs_container > li{
    opacity: 0.5;
    filter: grayscale(0.5);

    padding: 4px 4px 0;
    border-bottom-width: 3px;
    background: #ffffff;
    color: #000000;
    font-size: 10px;
    font-weight: normal;
    border-radius: 5px 5px 0px 0px;
}
.switch_tabs_new[data-disp_style="1"] > .tabs_container > li[data-check="1"]{
    opacity: 1;
    filter: none;
}
.switch_tabs_new[data-disp_style="1"] > .tabs_container > li > .icon_dom{
    border: 5px solid #fff;
    box-shadow: 0 0 1px 1px #acacac;
    border-radius: 2px;
    width: fit-content;
}
.switch_tabs_new[data-disp_style="1"] > .tabs_container > li > .text_dom{

}
