/* hidden fields onload */
#accordion_template .dimmer {
    display: none;
}

.list_body .lb_containers {
    display: none;
    border-top: 1px solid;
}

#accordion_template {
    position: relative;
}

#accordion_template .dimmer {
    z-index: 5;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(255 255 255 / 40%);
}

#accordion_template .tabs {
    display: inline-flex;
}

#accordion_template .tabs .tab_menu {
    text-align: center;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

#accordion_template .tabs .tab_menu.tab_active {
    border-radius: 5px 5px 0 0;
    border: 1px solid;
    border-bottom: 0;
}

#accordion_template .tab_refund.tab_active {
    background-color: rgb(185, 161, 216);
}

#accordion_template .tab_refund.tab_active::after {
    content: '';
    border: 1px solid rgb(185, 161, 216);
    width: 100%;
    height: 26%;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: rgb(185, 161, 216);
}

#accordion_template .tab_pending.tab_active {
    background-color: #eeeeee;
}

#accordion_template .tab_pending.tab_active::after {
    content: '';
    border: 1px solid #eeeeee;
    width: 100%;
    height: 26%;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #eeeeee;
}

#accordion_template .tab_completed.tab_active {
    background-color: rgb(164, 164, 164);
}

#accordion_template .tab_completed.tab_active::after {
    content: '';
    border: 1px solid rgb(164, 164, 164);
    width: 100%;
    height: 26%;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: rgb(164, 164, 164);
}

.list_body .active_lb_container {
    display: block !important;
}