.tabs {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(0deg, var(--cbg) 1rem, var(--clight) 0%);
    border: var(--border);
    border-radius: 5px;
    padding-bottom: 0.5em;
}

.tabs>label {
    order: 1;
    /*Put the labels first*/
    display: block;
    cursor: pointer;
    padding: .5rem .8rem;
    margin: .5rem 0 -1px;
    border-radius: 5px 5px 0 0;
    color: var(--clink);
    background: var(--clight);
}

.tabs>label:first-of-type {
    margin-left: 1rem;
}

.tabs .tab {
    order: 99;
    /*Put the tabs last*/
    flex-grow: 1;
    width: 100%;
    display: none;
    z-index: 10;
    padding: 0 1rem;
    background: var(--cbg);
    border-top: var(--border);
}

.tabs input[type="radio"]:not(:checked)+label:hover {
    filter: brightness(90%);
}

.tabs input[type="radio"] {
    display: none;
}

.tabs input[type="radio"]:checked+label {
    border: var(--border);
    border-bottom: 0px;
    background: var(--cbg);
    z-index: 11;
}

.tabs input[type="radio"]:checked+label+.tab {
    display: block;
}

@media (max-width: 45em) {

    .tabs .tab,
    .tabs label {
        order: initial;
    }

    .tabs label {
        width: 100%;
        margin: 0 0 -1px !important;
    }
}