html, body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}
header {
    background: #0d5a53;
    padding: 6px 6px 5px 13px;
}
header img {
    height: 100px;
    max-width: 100%;
}
h1 {
    font-weight: 300;
    color: #0d5a53;
    font-size: 46px;
}
.jobs-wrapper, .job-details-wrapper {
    padding: 20px 30px;
}
.job a, h2 {
    text-decoration: none;
    color: #0d5a53;
}

.btn-view {
    background: #0d5a53;
    color: #fff !important;
    padding: 10px 20px;
    font-weight: 500;
    display: table;
    margin: 20px 0;
    text-decoration: none;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    margin-bottom: 10px;
}
ul li strong {
    min-width: 140px;
    display: block;
}
.job {
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}

.jobs-table {
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.jobs-table thead {
    background: #085a53;
    color: #fff;
}
.jobs-table thead th {
    text-align: left;
    padding: 15px 20px;
}
.jobs-table tbody tr td {
    text-align: left;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
}
.jobs-table tbody tr td a {
    text-decoration: none;
}
.form-wrapper input, .form-wrapper select {
    width: 100%;
    max-width: 30vw;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
    font-size: 18px;
}
.form-wrapper select {
    max-width: 33vw;
}
.form-wrapper .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 50%;
}
.grouping {
    display: flex;
}
.form-wrapper .form-group label {
    font-weight: bold;
}
.thank-you {
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 50px;
    flex-direction: column;
}
.thank-you .head {
    font-size: 46px;
    color: #085a53;
    font-weight: 300;
}
.thank-you .body {
    font-size: 28px;
    color: #085a53;
    text-align: center;
    margin-top: 20px;
    padding: 0 40px;
}
.goback {
    font-size: 20px;
    margin-top: 40px;
    color: #085a53;
}
.goback a {
    /*text-decoration: none;*/
    color: inherit;
}

.arrow {
    display: inline-block;
    margin: 0px 6px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #9d9d9d;
    border-left: 2px solid #9d9d9d;
}
.arrow {
 transform: rotate(135deg);
}
.breadcrumb {
    margin: 30px 30px 0;
}
.breadcrumb a {
    text-decoration: none;
    color: #085a53;
}

.filters-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.filters-wrapper select {
    padding: 5px 10px;
    font-size: 15px;
    margin: 15px 0 15px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.desc ul li {
    list-style-type: disc;
    list-style-position: inside;
    display: list-item;
}
.desc ol li {
    list-style-type: decimal;
    display: list-item;
}

