/* Jobs Search Page */


.jobs-results {
    background: #F5F5F5;
    padding: 20px 0 40px;
    margin-bottom: 20px;
}

.jobs-results .col-12>div {
    display: flex;
    flex-wrap: wrap;
}

.jobs-results-header {
    font-size: 24px;
    font-weight: bold;
    color: #093B34;
    width: 100%;
    flex: 0 0 auto;
    line-height: 30px;
    margin-bottom: 20px;
}


/* Job Block */

.job-block {
    margin: 0px 15px 50px;
    flex: 0 0 auto;
    width: 350px;
    height: 320px;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    padding: 10px;
    position: relative;
    border-radius: 5px;
}

.job-block>a:last-child {
    flex: 0 0 auto;
    width: 140px;
    background: #ce6c2f;
    color: #fff;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: -21px;
    left: calc(50% - 70px);
}

.jb-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    height: 52px;
    color: #093B34 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jb-info {
    display: flex;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #E3E0E0;
    border-width: 1px 0;
}

.jb-info>div {
    font-size: 14px;
    font-weight: bold;
    align-items: center;
    line-height: 30px;
    margin-right: 10px;
    width: 0;
    flex: 1;
    color: #006D5B;
    background: transparent no-repeat left 10px center;
    border-right: 1px solid #E3E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jb-info>div:before {
    content: '';
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background: transparent no-repeat center;
}

.jb-info>div:first-child:before {
    background-image: url(../images/location.svg);
}

.jb-info>div:nth-child(2):before {
    background-image: url(../images/tick.svg);
}

.jb-info>div:nth-child(2) {
    border: 0;
    padding-right: 0;
}

.jb-excerpt {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    max-height: 150px;
    width: 100%;
    overflow: hidden;
}

.jb-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.jb-actions>a {
    width: 30px;
    height: 20px;
    background: url(../images/linkedin-blue.png) no-repeat center;
}

.jb-actions>a:nth-child(2) {
    background-image: url(../images/phone-small.svg);
    width: 20px;
}

.jb-actions>a:not(:last-child) {
    border-right: 1px solid #DADADB;
}


/* Job Details */

.job-header {
    background: #F3F3F3;
}

.job-header a {
    line-height: 50px;
    display: block;
    font-size: 12px;
    color: #006D5B !important;
}

.job-details {
    margin-bottom: 20px;
}

.job-category {
    font-size: 12px;
    line-height: 20px;
    padding: 20px 0 0px;
}

.job-category a {
    color: #bbbdc1;
    text-decoration: underline;
}

.job-title {
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #EFEAEA;
}

.job-title h1 {
    font-size: 36px;
    line-height: 40px;
    margin: 10px 0 0;
    font-weight: bold;
}

.job-title p {
    color: #006D5B;
    font-size: 12px;
}

.job-info {
    background: #F3F3F3;
    display: inline-flex;
    margin-bottom: 10px;
    padding: 10px;
}

.job-info>div {
    padding: 0px 20px 0px 10px;
    font-size: 14px;
    font-weight: bold;
    align-items: center;
    line-height: 30px;
    margin-right: 10px;
    color: #006D5B;
    background: transparent no-repeat left 10px center;
    border-right: 1px solid #E3E0E0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.job-info>div:before {
    content: '';
    width: 25px;
    height: 25px;
    margin-right: 5px;
    background: transparent no-repeat center;
}

.job-info>div:first-child:before {
    background-image: url(../images/location.svg);
}

.job-info>div:nth-child(2):before {
    background-image: url(../images/tick.svg);
}

.job-info>div:nth-child(2) {
    border: 0;
    padding-right: 0;
}

a.job-apply,
.job-consultant>a {
    display: flex;
    background: #ce6c2f;
    color: #fff !important;
    line-height: 50px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

a.job-apply:after {
    content: '';
    border: 2px solid #fff;
    border-width: 2px 2px 0 0;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    margin-left: 10px;
}

a.job-apply.active:after {
    transform: rotate(135deg);
}

.job-description {
    margin: 20px 0 50px;
}

.job-description .header {
    color: #707070;
    font-size: 16px;
    font-weight: bold;
    display: block;
    line-height: 30px;
    margin-bottom: 10px;
}

.job-apply-box {
    position: relative;
}

.job-details .job-search-box form {
    display: none;
}


/* Job Application Form */

.job-application-form {
    margin: 10px 0;
    border-radius: 5px;
    overflow: hidden;
    background: #EEF2F1;
    padding: 0 10px 20px;
}

.job-application-form .apply-header {
    color: #fff;
    background: #006D5B;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    height: 50px;
    margin: 0 -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.job-application-form>div {
    margin: 0 auto 20px;
    position: relative;
}

.job-application-form>div>label {
    display: block;
    color: #252626;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.job-application-form>div>input:not([type=checkbox]):not([type=file]):not([type=submit]),
.job-application-form>div>textarea {
    width: 100%;
    display: block;
    padding: 0 5px 0 45px;
    border: 1px solid #e4e5e6;
    color: #413f3f;
    font-family: inherit;
    height: 45px;
    font-size: 14px;
    border-radius: 5px;
}

.job-application-form>div>span {
    position: absolute;
    left: 1px;
    width: 43px;
    height: 43px;
    background: url(../images/person.svg) no-repeat center;
    margin: 1px 0;
    border-right: 1px solid #EEEBEB;
}

.job-application-form>div>span.email-logo {
    background-image: url(../images/email.svg);
}

.job-application-form>div>span.phone-logo {
    background-image: url(../images/phone.svg);
}

.job-application-form>div>span.linkedIn-logo {
    background-image: url(../images/linkedin.svg);
}

.job-application-form>div>textarea {
    height: 90px;
    padding: 5px;
    line-height: 20px;
    resize: none;
}

.file-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #EBE7E7;
    padding: 0px 10px;
    height: 45px;
    display: flex;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
}

.checkbox-container input {
    margin: 4px 10px 0 0;
}

.job-application-form .checkbox-container label {
    font-weight: normal;
    color: #252626;
    font-size: 12px;
    line-height: 16px;
}

.job-application-form>div>input[type=submit] {
    border-radius: 3px;
    line-height: 44px;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    background: #ce6c2f;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: block;
    width: 100%;
}

.job-upload-form {
    display: none;
}

.apply-loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.apply-loader.hidden {
    display: none;
}

.apply-loader:after {
    content: '';
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 10px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Featured Job */

.featured-job {
    background: #006D5B;
    padding: 20px 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.fjob {
    display: flex;
    flex-direction: column;
}

.fjob>div:first-child {
    font-size: 28px;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
}

.fjob>div:first-child:after {
    content: '';
    display: block;
    height: 2px;
    width: 60px;
    background: #fff;
    margin-bottom: 20px;
}

.fjob>div:nth-child(2) {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.fj-title {
    display: flex;
    align-items: center;
    height: 50px;
}

.fj-title>div:first-child {
    font-size: 24px;
    font-weight: bold;
    color: #093B34;
    line-height: 26px;
    width: 0;
    flex: auto;
}

.fj-info {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.fj-info>div {
    padding: 0px 20px 0px 0px;
    font-size: 14px;
    font-weight: bold;
    align-items: center;
    line-height: 30px;
    margin-right: 10px;
    color: #006D5B;
    background: transparent no-repeat left 10px center;
    border-right: 1px solid #E3E0E0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fj-info>div:before {
    content: '';
    width: 25px;
    height: 25px;
    margin-right: 5px;
    background: transparent no-repeat center;
}

.fj-info>div:first-child:before {
    background-image: url(../images/location.svg);
}

.fj-info>div:nth-child(2):before {
    background-image: url(../images/tick.svg);
}

.fj-info>div:nth-child(2) {
    border: 0;
    padding-right: 0;
}

.fj-excerpt {
    margin: 10px 0 40px;
    font-size: 14px;
    line-height: 24px;
    width: 100%;
}

.fjob>div:nth-child(2) a {
    flex: 0 0 auto;
    width: 160px;
    background: #ce6c2f;
    color: #fff;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: -21px;
    left: 30px;
    border-radius: 5px;
}

.fjob>a {
    color: #fff !important;
    text-decoration: underline;
    margin: 10px 0 10px auto;
}

@media (min-width: 1200px) {
    .job-block:nth-child(3n) {
        margin-right: 0;
    }
    .job-block:nth-child(3n + 1) {
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .job-block {
        width: calc(50% - 30px);
    }
    .job-block:nth-child(2n) {
        margin-right: 0;
    }
    .job-block:nth-child(2n + 1) {
        margin-left: 0;
    }
    .applyButton {
        border-radius: 3px;
        line-height: 49px;
        padding: 0 20px;
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: bold;
        color: #fff !important;
        background: #ce6c2f;
        border: 0;
        outline: 0;
        cursor: pointer;
        display: block;
        width: 140px;
        margin: 0 10px 0 0;
    }
    .job-title {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }
    .job-title h1,
    .job-title p {
        width: 100%;
        flex: 0 0 auto;
    }
    .job-info {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .job-block {
        width: 100%;
        margin: 0 0 60px !important;
        height: auto;
    }
    .jb-excerpt {
        margin-bottom: 20px;
    }
    .job-info {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        display: flex;
    }
    .job-info>div {
        padding: 0;
        justify-content: center;
        width: 0;
        flex: auto;
    }
    .applyButton {
        display: block;
        border-radius: 3px;
        line-height: 44px;
        padding: 0 20px;
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: bold;
        color: #fff !important;
        background: #ce6c2f;
        border: 0;
        outline: 0;
        cursor: pointer;
        display: block;
        width: 140px;
        margin: 10px 0;
    }
    .job-title {
        border: 0;
    }
    .featured-job {
        width: 100%;
        border-radius: 5px;
        margin: 20px 0;
        position: static;
    }
    .fjob>div:first-child {
        font-size: 24px;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .fjob>div:nth-child(2) {
        margin-bottom: 30px;
    }
    .fjob>div:nth-child(2)>.fj-title {
        flex-direction: column;
        height: auto;
    }
    .fjob>div:nth-child(2)>.fj-title>div {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .fj-info>div {
        padding: 0;
        justify-content: center;
        width: 0;
        flex: auto;
    }
    .fjob>div:nth-child(2) a {
        left: calc(50% - 70px);
        width: 140px;
    }
    .fjob>a {
        margin: 10px auto;
    }
}