.tab-panel {
    padding: 0;
    margin: 0;
    background: transparent;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.tab-panel:after {
    content: "";
    display: block;
    background: #fff2bc;
    height: 7px;
    width: 100%;
    top: 100%;
    position: absolute;
}

.tab-panel * {
    position: relative;
    word-spacing: normal;
}

.tab-panel + h2 {
    border-radius: 0;
}

.tab-panel li {
    margin-right: 5px;
    display: inline-block;
    list-style: none;
    background: var(--secondary-color);
    border-radius: 5px 5px 0 0;
    z-index: 0;
    min-width: 6rem;
    text-align: center;
    font-weight: bold;
}

.tab-panel li a {
    color: inherit;
    display: block;
    padding: 0.5em 0.6em 0.5em 0.8em;
}

.tab-panel li.active {
    color: #fff;
    z-index: 1;
    background: var(--primary-color);
    font-weight: bold;
}

/*.tab-panel li.active a,*/
/*.tab-panel li a:hover {*/
/*color: #ec891d;*/
/*}*/
/*.tab-panel li:after {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    right: -5px;*/
/*    top: 2px;*/
/*    border-radius: 0 5px 0 0 ;*/
/*    transform: rotate(-20deg);*/
/*    height: 110%;*/
/*    width: 10px;*/
/*    background: #eee;*/

/*    z-index: -1;*/
/*}*/
/*.tab-panel li.active:after {*/
/*    background: #ffe594;*/
/*}*/
@media (max-width: 640px) {
    .tab-panel{
        gap: 5px;
    }
    .tab-panel li:first-child {
        /*border-left: 1px solid #ddd;*/
    }

    .tab-panel li {
        flex: 0 1 25%;
        /*border-top: 1px solid #ddd;*/
        /*border-right: 1px solid #ddd;*/
        /*border-radius: 5px 5px 0 0;*/
        box-sizing: border-box;
        margin: 0;
        background: #fff;
        min-width: 5rem;
        background: var(--secondary-color);
    }

    .tab-panel.tab-stripped li {
        border: none
    }

    .tab-panel.tab-auto li {
        flex: 1 1 auto
    }

    .tab-panel.tab-5 li {
        flex: 1 1 20%
    }

    .tab-panel.tab-3 li {
        flex: 1 1 33.33%
    }

    .tab-panel li:after, .tab-panel:after {
        display: none;
    }

    .tab-panel li a {
        text-align: center;
        padding: 5px 0;
    }
}

/* css weekday bar */
.nav-result-weekly {
    display: block;
    /*height: 46px;*/
    /*background: #f3f3f3;*/
    margin: 5px 0px 10px 0px;
    border-radius: 8px;
    border: 1px solid #CE1B14;
    padding: 5px 0;
}

.nav-result-weekly .weekly-list {
    display: flex;
    /*line-height: 49px;*/
    width: 100%;
}

.nav-result-weekly .weekly-list div {
    /* width: auto; */
    flex-grow: 1;
    text-align: center;
}

.nav-result-weekly .weekly-list div a {
    display: block;
    font-weight: bold;
}

/*.nav-result-weekly .weekly-list li.active {*/
/*    background: linear-gradient(to bottom, var(--background-grey) 90%, var(--primary-color) 10%);*/
/*}*/
.nav-result-weekly .weekly-list div.active a {
    color: var(--primary-color);
}