.warpper {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.tabs {
    display: flex;
    justify-content: flex-start;
}

.tab {
    cursor: pointer;
    padding: 5px 20px;
    margin: 0px 2px;
    background: rgb(var(--color-primary-0));
    display: inline-block;
    color: #fff;
    font-weight: lighter;
    border-radius: 3px 3px 0px 0px;
    /*box-shadow: 0 0.5rem 0.8rem #00000080;*/
}

.panels {
    background: #fff;
    box-shadow: 0 1rem 1rem #00000080;
    min-height: 200px;
    width: 100%;
    /* max-width: 500px; */
    border-radius: 3px;
    overflow: hidden;
    padding: 0px 20px 20px 20px;
}

.panel {
    display: none;
    animation: fadein 0.8s;
}

.filter_form {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.date_Picker {
    margin-left: 5px;
    margin-right: 15px;
    height: fit-content;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.panel-title {
    font-size: unset !important;
    font-weight: bold;
    padding-bottom: 10px;
    padding-top: 20px;
}

.button {
    margin: 10px;
    padding: 5px;
    width: fit-content;
    border-radius: 5px;
    color: #fff;
    background-color: rgb(var(--color-secondary-3));
    cursor: pointer;
}

.Tabsradio {
    display: none;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel,
#four:checked~.panels #four-panel,
#five:checked~.panels #five-panel,
#six:checked~.panels #six-panel{
    display: block;
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab,
#four:checked~.tabs #four-tab,
#five:checked~.tabs #five-tab,
#six:checked~.tabs #six-tab{
    background: #fff;
    color: #000;
    font-weight: bold;
    border-top: 3px solid rgb(var(--color-primary-0));
}