<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.job--list {
	display: flex;
    flex-direction: column;
}
ul.job--list {
	margin: 0;
	list-style: none;
}
.job--list li {
	list-style-type: none;
}
.job--item {
	border-top: dotted 1px #999;
	padding: 15px 0;
	display: flex;
}
.job--title {
	font-weight: 600;
	font-size: 20px;
	padding-bottom: 0.5em;
}
.job--details--wrapper {
	flex: 8 1 0;
    width: 0;
    display: flex;
    flex-direction: column;	
    justify-content: center;
}
@media screen and (max-width: 767px) {
	.job--details--wrapper {
		flex: 3 1 0;
	}
}
.job--image {
    flex: 1 1 0;
    width: 0;
    object-fit: contain;
    margin-right: 1em;
    align-self: flex-start;
}
#jobForm .job--filter {
	display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
	row-gap: 10px;
    margin-bottom: 50px;
}

#jobForm .form__field button {
    font-size: 18px;
    padding: 5px;
    font-family: 'BrauerNeue', sans-serif;
    border: 1px solid #dadada;
    margin-bottom: 6px;
    width: 100%;
    background-color: #fff;	
}

#jobForm .form__field button.submit {
    background-color: #000;
    color: #fff;	
}

#jobForm input[type='text'], #jobForm input[type='number'],
	#jobForm select, #jobForm option, #jobForm textarea {
	font-size: 18px;
	padding: 5px;
	font-family: 'BrauerNeue', sans-serif;
	border: 1px solid #dadada;
	margin-bottom: 6px;
	width: 100%;
}

#jobForm [type='submit'] {
	float: none;
}

#jobForm  label {
    float: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

#jobForm .pagination {
	text-align: center;
}

#jobForm .pagination div, #jobForm .pagination button {
	display: inline-block;
	background-color: transparent;
    border: none;
    font-family: BrauerNeue, Open Sans, Arial, sans-serif;
    font-size: 20px;
    line-height: 36px;
	vertical-align: bottom;
    padding-inline: 6px;
    padding-block: 1px;

}
#jobForm .pagination button.next, #jobForm .pagination button.previous {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(../../views.swe/images/sys/bg/arrow-next.jpg);
    margin: 0 20px;
}

#jobForm .pagination div.is--active {
    font-size: 22px;
    font-weight: bold;
}

#jobForm .pagination button.previous {
	background: url(../../views.swe/images/sys/bg/arrow-prev.jpg);
}

.no-display, .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}</pre></body></html>