<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (min-width: 700px) {
    div.JobList {
        float: left;
        width: 70%;
        margin-left: -70%;
    }
}

ul.JobList,
.JobList ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.content__col .JobList__item {
    float: left;
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.JobList__item.last {
    border-bottom: 0;
}

.JobList__link {
    position: relative;
    display: block;
    padding: 1em 3em 1em 1em;
    border: 1px solid transparent;
    text-decoration: none;
    transition: .2s border ease-out;
}

.JobList__link:hover {
    text-decoration: none;
    border-color: #7e459a;
}

.JobList__title {
    margin-bottom: 5px;
    color: #ff6b00;
    transition: .2s color ease-out;
}

.JobList__link:hover .JobList__title {
    color: #7e459a;
}

.JobList__info {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .9em;
    color: #999;
}

/**
 * Definition lists
 */

dt,
dd {
    float: left;
}

dd {
    margin: 0 1em 0 5px;
}

.JobList__infoItem {
    display: inline-block;
}

.icon-arrow-right-old:before {
    position: absolute;
    top: 40%;
    right: 1em;
}

/**
 * No results
 */

.no-results {
    padding: 2em;
    border-radius: 0.1em;
    font-size: 1.6em;
    text-align: center;
    color: #999;
}

.JobResults__list {
    position: relative;
}

/**
 More results
 */

.JobList__noticeMore {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto -.5em;
    padding: 0 1em;
    text-align: center;
    color: #333;
    background: rgba(255,255,255,.7);
    box-shadow: 0 -18px 10px rgba(255,255,255,.7);
    font-weight: bold;
}

/**
 * Updating...
 */

.JobResults__list--updating .JobList {
    opacity: .5;
    pointer-events: none;
}

.JobResults__list--updating:after {
    content: url(spinner.svg);
    position: absolute;
    top: 2em;
    right: 0;
    left: 0;
    width: 50px;
    margin: auto;
    height: 50px;
    padding: 5px;
    background: #fff;
    box-shadow: 0 1px 3px -1px #000;
    border-radius: 100%;
}

@media screen and (min-width: 820px) {
    .JobResults__list--updating:after {
        top: 30vh;
    }
}</pre></body></html>