#jfilter  {
    display: flex;

    background: #FFFFFF;
    border: 1px solid #B09F6B;
    color: #545751;
    border-radius: 12px;

    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

    padding: 12px 20px;
    margin: 10px 0 20px;

}



ul.job_types {
    display: flex;
}
@media all and (max-width: 599px) {
    #jfilter {
        flex-direction: column;

    }
    ul.job_types {
        justify-content: space-between;
    }
}

#search_recruitment {
    /*margin-right: 20px;*/ order: 10;
}


li.no_job_listings_found,
.showing_jobs {
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    align-content: center;
}

.showing_jobs span + a {
    margin-left: auto;
}

.showing_jobs span {
    padding-right: 1em;
}

.showing_jobs a.rss_link {
    display: none !important;
}

.showing_jobs a.alert {
    margin-left: 1em; /*pointer-events: none !important;*/
}

.showing_jobs a {
    border: 1px solid #B09F6B;
    background: #B09F6B;
    color: #FFFFFF;
    font-weight: 700;
    transition: all 0.2s ease;
    padding: 0.5em 1em;
    border-radius: 12px;
}

.showing_jobs a:hover {
    background: #4B4E49;
}

.showing_jobs a.alert {
    display: none;
}

.hasalerts .showing_jobs a.alert {
    display: block;
}

form.job_filters #jfilter label span,
form.job_filters ul.job_types li label span {
    transition: all .2s ease; cursor: pointer;
    display: inline-block;
    color: #3b4a3f;
    background: #fff;
    padding: 0.5em 1em;
    border-radius: 300px;
    border-radius: 12px;
    position: relative;

    background: #CCF3F4;

}
form.job_filters #jfilter ul.job_types li label span { background: #F4EFDE;}

form.job_filters #jfilter label input:checked ~ span,
form.job_filters ul.job_types li label input:checked ~ span {
    background: #00B2B9;
    padding-right: calc(1em + 16px);
    color: white;
}

form.job_filters #jfilter ul.job_types li label input:checked ~ span { background: #4B4E49;}


form.job_filters ul.job_types li label input:checked ~ span { background: #4B4E49; }




form.job_filters #jfilter label span::after,
form.job_filters ul.job_types li label span::after {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 6px;
    border: 3px solid #FFF;
    border-top: none;
    border-right: none;
    right: calc(1em - 4px);
    top: calc(50% - 3px);
    transform: rotate(-45deg) translateY(-50%);
    opacity: 0;
}
form.job_filters #jfilter label input:checked ~ span::after,
form.job_filters ul.job_types li label input:checked ~ span::after {
    opacity: 1;
}


div#jfilter {


}

form.job_filters div#jfilter ul.job_types {
    flex: 1;
}