.hibob-careers__jobs {
    list-style: none;
    padding: 0;
}

.hibob-careers__job, .hibob-careers__department {
    visibility: visible;
    opacity: 1;
    max-height: 99999px;
    transition: all 0.1s;
}

.hibob-careers__job.fade-out, .hibob-careers__department.fade-out {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

body.careers section.vacancy-open .comeet-outer-wrapper .comeet-list .comeet-positions-list.hibob-careers__jobs {
    margin-left: 0;
}

.hibob-careers__department-title {
    margin-top: 0;
}

.hibob-careers__department {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 20px;
}

.hibob-careers__department-list {
    flex-grow: 1;
}

.hibob-careers__job .hibob-careers__job-link {
    text-decoration: none;
    display: block;
}

.hibob-careers__job .hibob-careers__job-link :is(.hibob-careers__position-meta, .hibob-careers__position-title) {
    display: block;
}

.hibob-careers__no-jobs {
    font-size: 15px;
    padding: 50px 0;
    border-top: 1px solid #d0cfcf;
}

.hibob-careers__filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    padding: 15px 0;
}

.hibob-careers__filter {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    position: relative;
}

.hibob-careers__filter .current-choice {
    font-weight: bold;
    cursor: pointer;
}

.hibob-careers__filter .current-choice .count {
    display: none;
}

.hibob-careers__filter .current-choice:hover {
    color: #9c2443;
}

.hibob-careers__filter:not(.hibob-careers__count) .count:before {
    content: '(';
}

.hibob-careers__filter:not(.hibob-careers__count) .count:after {
    content: ')';
}

.hibob-careers__filter .hibob-careers__filter-list {
    position: absolute;
    top: 100%;
    left: 0;
    translate: 0;
    min-width: 260px;
    visibility: hidden;
    z-index: 1;
    list-style: none;
    padding: 30px 25px;
    margin: 0;
    background: #fffdfb;
    white-space: nowrap;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s;
}

.hibob-careers__filter.open-filter .hibob-careers__filter-list {
    visibility: visible;
    opacity: 1;
}

.hibob-careers__filter .hibob-careers__filter-list .filter-option {
    cursor: pointer;
}

.hibob-careers__filter .hibob-careers__filter-list .filter-option:is(:hover, .option-current){
    color: #9c2443;
    font-weight: bold;
}

.hibob-careers__filter .hibob-careers__filter-list .filter-option:not(:last-child) {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .hibob-careers__department {
        flex-direction: row;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .hibob-careers__department-title-wrapper {
        max-width: 320px;
        width: 100%;
    }

    .hibob-careers__filters {
        flex-direction: row;
        gap: 50px;
    }

    .hibob-careers__filter.hibob-careers__count {
        margin-left: auto;
    }

    .hibob-careers__filter .hibob-careers__filter-list {
        left: 50%;
        translate: -50% 0;
    }
}