.jobmap .counter-info {
    display: block;
    text-decoration: none;
    color: var(--color__black);
    margin: 1rem 0;
}

.jobmap .counter-info span {
    color: var(--color__primary);
    margin-left: 3px;
}

.jobmap {
    background: var(--color__body);
}

.jobmap #jobmap {
    z-index: 1;
    max-width: 100%;
    margin: 2rem 0;
}

.jobmap .filter .select-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.jobmap .filter .select-fields > * {
    flex: 0 1 calc(100% / 3 - 10px);
    margin-bottom: 1rem;
    height: 45px;
}

@media only screen and (max-width: 540px) {
    .jobmap .filter .select-fields > * {
        flex: 100%;
    }
}

.jobmap-listing .hidden {
    display: none !important;
}

.jobmap-listing .loadmore-button {
    display: block;
    max-width: max-content;
    margin-top: 1em;
}
.jobmap-listing .jobabo-button {
    margin-top: 1em;
}

.leaflet-marker-icon.marker-cluster {
    background-color: rgba(227, 6, 19, 0.4);
    color: #ffffff;
}

.leaflet-marker-icon.marker-cluster > div {
    background-color: rgba(227, 6, 19, 0.6);
    color: #ffffff;
}

.jobmap select {
    font-size: 1em;
}
.jobmap input {
    font-size: 1em;
    border: 0;
    padding: 0 10px;
}

.jobmap-listing {
    margin-top: 1em;
}

.jobmap-listing .job.filtered {
    background-color: var(--color__body);
}

.jobmap-listing .job {
    padding: 0;
    display: flex;
    border-top: 1px solid var(--color__secondary);
    align-items: stretch;
    position: relative;
}
.jobmap-listing .job .job_info {
    padding: var(--spaces-ms) 0;
}
.jobmap-listing .job .job_details {
    margin: 0;
}

.jobmap-listing .job a.button.apply {
    border-radius: 0;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jobmap-listing .job a.button.apply:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.jobmap-listing .job .job_info,
.jobmap-listing .job .job_city {
    display: block;
    color: var(--color__grey-dark);
    font-size: 0.9rem;
    margin-bottom: 0;
    z-index: 2;
}
.jobmap-listing .job .job_title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--color__black);
    font-style: normal;
    text-decoration: none;
    z-index: 2;
}
@media only screen and (max-width: 768px) {
    .jobmap-listing .job .job_title {
        font-size: 18px;
    }
}
.jobmap-listing .job .job_title .name {
    font-weight: 700;
    color: var(--color__primary);
    font-size: 1.2rem;
}
.jobmap-listing .job .job_title .mwd {
    font-weight: 700;
    font-size: 1.2rem;
}

.jobmap .leaflet-marker-icon:not(.marker-cluster) {
    display: block;
}

.jobmap details {
    border: 1px solid #767676;
    border-radius: 3px;
    display: inline-flex;
    flex-direction: column;
    padding: 3px 6px;
}

.jobmap details summary::marker {
    display: none;
    font-size: 0;
}

.jobmap details summary::after {
    content: "\25BC" / "";
    display: inline-block;
    font-size: 0.6rem;
    height: 1rem;
    line-height: 1rem;
    margin-left: 0.5rem;
    position: relative;
    transition: transform 0.25s;
}

.jobmap details[open] summary {
    margin-bottom: 1rem;
}

.jobmap details[open] summary::after {
    top: -0.15rem;
    transform: rotate(180deg);
}
