.job-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 0;
    list-style: none;
	padding-left: 0;
}

.job-card {
    width: 100%;
    margin: 0 0 40px 0;
    border-radius: 30px;
    padding-top: 30px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
    color: #888;
    background: white;
    font-family: "Open Sans", Sans-serif;
    text-align: center;
}

.job-filters-container {
    text-align: center;
}

.job-filters {
    display: inline-flex;
    flex-direction: column;
    margin: 0 auto 30px;
    padding: 10px;
    border: 2px solid white;
    border-radius: 30px;
}

.job-filter-container {
    position: relative;
    margin-bottom: 10px;
    border-radius: 20px;
    background: white;
    overflow: hidden;
}

.job-filter-container:last-of-type {
    margin-bottom: 0;
}

.job-filter-container::after {
    content: "\f063";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 10px;
    height: 25px;
    transform: translateY(-50%);
    color: #bfd12f;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    pointer-events: none;
}

.job-filter-container__q::after {
    content: "";
}

/* FORM FIELD INPUTS */
.job-filter {
    appearance: none !important;
    border: none !important;
    padding: 14px 30px 10px 15px !important;
    background: white !important;
}

.job-filter-container__q .job-filter {
    width: 100% !important;
    padding-right: 15px !important;
    border: none !important;
}

/* BUTTON */
.job-button {
    margin: 0px 0 0 0 !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 5px 10px !important;
    background: #006da5 !important;
    color: white !important;
    font-weight: bold !important;
}

/* NO RESULTS */
.job-no-results {
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 10px;
    padding: 25px 25px 30px;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

.job-no-results a {
    color: #006da5;
}

/* CONNECT BUTTON */
a.connect-btn {
    display: inline-block;
    background: #BFD12F;
    color: #005994;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
}

.pagination {
    display: flex;
    justify-content: center!important;
    align-items: center;
    margin: 20px 0 0 0;
    color: white;
    text-align: center;
    font-weight: 700;
}

.pagination-page {
    position: relative;
    top: -1px;
    border-radius: 15px;
    padding: 0 20px 2px;
    background: #bfd12f;
    line-height: 30px;
}

.pagination-prev,
.pagination-next {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 30px;
}

.pagination-prev::after,
.pagination-next::after {
    position: absolute;
    left: 50%;
    top: -14px;
    content: "\f061";
    color: #006da5;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px;
    transform: translateX(-50%);
    pointer-events: none;
}

.pagination-prev::after {
    content: "\f060";
}

.pagination-prev a,
.pagination-next a {
    display: block;
    text-indent: -999px;
    overflow: hidden;
}

/* BREAKPOINTS */
@media only screen and (min-width: 640px) {
    .job-filters {
        flex-direction: row;
    }

    .job-filter-container {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .job-filter-container:last-of-type {
        margin-right: 0;
    }

    .job-filter-container__q .job-filter {
        width: 200px !important;
    }

    .job-button {
        margin-left: 10px !important;
    }

    .job-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .job-grid--two .job-card,
    .job-grid--three .job-card {
        width: calc((100% - 40px) / 2);
        margin-right: 40px;
    }

    .job-grid--two .job-card:nth-of-type(2n),
    .job-grid--three .job-card:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 1024px) {
    .job-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .job-grid--two .job-card {
        width: calc((100% - 40px) / 2);
        margin-right: 40px;
    }

    .job-grid--two .job-card:nth-of-type(2n) {
        margin-right: 0;
    }

    .job-grid--three .job-card {
        width: calc((100% - 40px * 2) / 3);
        margin-right: 40px;
    }

    .job-grid--three .job-card:nth-of-type(2n) {
        margin-right: 40px;
    }

    .job-grid--three .job-card:nth-of-type(3n) {
        margin-right: 0;
    }
}

/* CARD STYLES */
.job-card__title {
    margin: 0;
    padding-top: 0;
	padding-bottom: 20px;
    color: #2d6ca2;
    font-size: 18px!important;
    font-weight: 800;
}

.job-card__benefits {
    font-size: 22px;
    font-weight: 400;
    list-style: none;
	padding-left: 0;
}

.job-card__benefits li {
    padding: 0 0 15px 0;
    font-size: 16px;
}

.job-card__benefits i {
    color: #c2cf45;
}

.job-card__description {
    margin: 0 0 40px 0;
    font-size: 16px;
    color: #747474;
}

.job-card__cta {
    display: inline-flex;
    align-items: center;
    border-radius: 11px;
    padding: 10px 20px;
    color: white !important;
    background: #2d6ca2;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.2s ease-in-out;
    min-width: 170px;
	margin-top: 20px;
}

.job-card__cta i {
    margin-right: 10px;
    color: #c2cf45;
    font-size: 27px;
    transition: all 0.2s ease-in-out;
}

.job-card__cta:hover {
    color: #2d6ca2 !important;
    background: #c2cf45;
}

.job-card__cta:hover i {
    color: #2d6ca2;
}

.job-card__cta-text {
    line-height: 1.0;
}

.job--no-roles {
    color: white;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}

/* SEARCH BOX */
.job-search-box {
    position: relative;
    z-index: 2000;
    font-family: "Open Sans";
}

.job-search-box .job-filters {
    display: flex;
    width: 100%;
    border-width: 0;
    border-radius: 70px;
    background-color: rgba(255, 255, 255, 0.3);
}

.job-search-box .job-filters .job-filter-container {
    flex-grow: 1;
    border-radius: 50px;
}

.job-search-box .job-filter {
    height: 100%;
    padding: 15px 25px !important;
}

.job-search-box .job-filters .job-filter-container select {
    line-height: 19px;
}

.job-search-box .job-button {
    position: relative;
    padding: 5px 50px 5px 20px !important;
    border-radius: 40px !important;
}

/* BUTTON HOVER */
.job-search-box .job-button:hover {
    color: #006da5 !important;
    background: #bfd12f !important;
}

.job-search-box .job-button::after {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "\f061";
    color: #bfd12f;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 26px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s;
}

.job-search-box .job-button:hover::after {
    color: white !important;
}

@media only screen and (max-width: 639px) {
    .job-search-box .job-filters {
        border-radius: 20px;
        padding: 15px 10px;
    }
    
    .job-search-box .job-filters .job-filter-container {
        flex-grow: 0;
    }
    
    .job-search-box .job-button {
        padding: 10px 50px 10px 20px !important;
    }
}

@media only screen and (min-width: 640px) {
    .job-filter-container__q .job-filter {
        width: 100% !important;
    }
}

/* GREEN VARIANT */
.job-search-box.color-green .job-button {
    color: #006da5 !important;
    background: #bfd12f !important;
}

.job-search-box.color-green .job-button::after {
    color: white !important;
}

.job-search-box.color-green .job-button:hover {
    color: white !important;
    background: #006da5 !important;
}

.job-search-box.color-green .job-button:hover::after {
    color: #bfd12f !important;
}

/* SQUARE VARIANT */
.job-search-box.variant-square .job-filters {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.job-search-box.variant-square .job-filters .job-filter-container,
.job-search-box.variant-square .job-button {
    border-radius: 7px;
}

.job-search-box.variant-square .job-filter {
    padding: 20px 25px !important;
}
.job-filter:focus,
.job-search-box .job-filter:focus,
.job-filter-container select:focus {
    outline: none !important;
    box-shadow: none !important;
}
