hr {
    margin-bottom: .5em
}

.toggle_s {
    position: relative;
    display: inline-block;
    width: 3em;
}

label.toggle_s {
    min-width: 3em;
}

.toggle_s input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(204, 204, 204);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.3em;
    width: 1.3em;
    left: .11em;
    bottom: .13em;
    background-color: rgb(255, 255, 255);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #9fc40c;
}

input:focus+.slider {
    box-shadow: 0 0 1px #9fc40c;
}

input:checked+.slider:before {
    transform: translateX(112%);
}

.filter_type_head {
    display: flex;
    justify-content: space-between;
}

.filter_type_head>.ft {
    display: flex;
    justify-content: space-between;
    width: 25%
}

#filterPanel {
    overflow: auto;
}

label {
    width: fit-content;
    min-width: 32%;
    margin-right: 9%;
    padding: 0 0;
}

label>div {
    padding: .1em .5em;
    display: inline-block;
}

.browse_schedule>a {
    width: 50%;
    text-align: center;
    border-radius: 5em;
    padding: .2em .8em;
}

.browse_schedule>.active {
    background-color: #3a5069;
    color: #fff;
}

.browse_schedule>a:hover {
    background-color: #3a506977;
    color: #fff;
}

.browse_schedule {
    width: 90%;
    margin: 0 auto .5em;
    padding: .3em;
    border-radius: 5em;
    gap: 1em;
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
}