@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600&display=swap');

:root {
    /*
    We recommend you change these values to match your brand.
    The light color has an opacity of .1, do not modify that
    */
    --primary-brand-color: #4745D5;
    --light-primary-brand-color: #f6f6fd;

    /* We recommend not changing these colors */
    --full-page-background-color: #FFF;
    --application-background-color: #FFF;
    --footer-color: #FFF;
    --main-text-color: #1F2D43;
    --sub-header-color: #1F2D43;
    --link-color: #4745D5;
    --link-color-hover: #3937aa;
    --field-border-color: #E1E1E1;
    --location-color: #344257;
}

body {
    background-color: var(--full-page-background-color);
    font-family: "Roboto", "Nunito Sans", 'sans-serif';
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--main-text-color);
}
a {
    color: var(--link-color);
}
a:hover {
    color: var(--link-color-hover);
}

body #wrapper {
    background-color: white;
    min-height: 100vh;
    /*max-width: 800px;*/
    max-width: none;
    padding: 0;
    margin: 0;
}
#wrapper > h1 {
    display: none;
}
#wrapper > h1 + #content {
    display: none;
}

/* Select Boxes */
#main .select2-choice {
    height: 50px;
}

#main .select2-chosen {
    line-height: 50px;
}

#main .select2-arrow {
    padding-top: 10px;
    padding-right: 10px;
}

#main .filter-label {
    color: var(--sub-header-color);
    font-size: 12px;
    font-weight: 600;
    display: none;
}

#main .location {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: var(--location-color);
}


#main > h1:not(.app-title) {
    display: none;
}

#board_title {
    display: none;
    margin: 0 0 16px 0;
    font-size: 22px;
    line-height: 36px;
    font-weight: 400;
}

section {
    margin-top: 16px;
}

section > h3 {
    margin-top: 32px;
}

#logo {
    display: none;
}

body #content {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--main-text-color);
}
body #content p {
    margin-bottom: 24px;
}
body #content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    color: var(--main-text-color);
}

#main section h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 24px;
    color: var(--primary-brand-color);
}

#main section .location {
    display: block;
    margin-top: -46px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

#main section .opening br {
    display: none;
}

section .opening a {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: var(--main-text-color);
    outline: none !important;
}

section .opening a {
    /* We want to increase the click area and background area of links to jobs,
    so we combine padding and negative margin */
    display: block;
    min-height: 38px;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 48px;
    margin-left: -16px;
    padding-left: 16px;
    padding-top: 12px;
    margin-top: -12px;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

section .opening a:hover {
    background-color: var(--light-primary-brand-color);
    border-radius: 3px;
    color: var(--primary-brand-color);
    text-decoration: none;
}

body #footer {
    border: none;
    background-color: var(--footer-color);
    height: 60px;
    margin-top: -80px;
    padding-top: 10px;
    padding-bottom: 10px;
}

body #footer .privacy-policy {
    line-height: 19px;
}

body #footer img {
    width: 90px;
}

h3#filter-count {
    margin-top: 48px;
    margin-bottom: 0;
}

/* Job Post Page */
div#main div#app_body {
    padding-left: 0 !important;
    padding-right: 0;
}

div#app_body #header {
    display: flex;
    flex-direction: column;
}

div#app_body #header #apply_button {
    order: 3;
    margin-top: 37px
}

div#app_body #header .company-name {
    display: none;
}

div#app_body #header > a {
    order: 1;
}

div#app_body #header .app-title {
    order: 2;
}

div#app_body #header .location {
    order: 4;
    margin-top: 2px;
}

div#main #application_form h2.heading {
    color: var(--main-text-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

div#app_body .app-title {
    font-weight: 400;
    font-size: 28px;
}

div#app_body div#header #apply_button {
    top: auto;
    background-color: var(--primary-brand-color);
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 600;
}

div#submit_buttons {
    text-align: left;
}
div#submit_buttons input#submit_app {
    padding: 15px 24px;
    background: #4745D5;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    height: 50px;
    color: #fff;
    outline: none !important;
    font-family: "Roboto", "Nunito Sans", 'sans-serif';
}
div#submit_buttons input#submit_app:hover {
    background: #3937AA;
}

div#app_body {
    max-width: none;
    padding-right: 20px;
}

div#content {
    padding-bottom: 16px;
}

div#application hr:nth-last-of-type(1) {
    display: none;
}

div#application {
    background-color: var(--application-background-color);
    border-top: 1px solid var(--field-border-color);
    padding-left: 0;
    padding-right: 0;
    max-width: none;
}

div#main_fields, div#custom_fields {
    font-weight: 400;
    line-height: 26px;
}

div#application div.field label {
    color: var(--sub-header-color);
    display: block;
    float: none;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 8px;
}

div#application div.field label span.asterisk {
    font-size: 12px;
}

div#application #main_fields div.field textarea {
    margin-left: 0;
}

div#application div.field input[type=text] {
    border: solid 1px var(--field-border-color);
    height: 25px;
    padding-left: 12px;
    width: 455px;
}

@media (max-width: 640px) {
    div#application div.field input[type=text] {
        width: 100%;
    }
}

div#application div.field input[placeholder="MM"] {
    padding-left: 10px;
}

div#application div.field input[placeholder="YYYY"] {
    padding-left: 7px;
}

div#application legend {
    float: none;
}

div.link-container a {
    color: var(--link-color);
}
div.link-container a:hover {
    color: var(--link-color-hover);
}

div#application a#add_education {
    margin-left: 0;
}

div#field {
    margin-bottom: 10px;
}

#main_fields div.field div.field-error-msg {
    padding-left: 0;
}

div.field div.msg-container {
    padding-top: 5px;
}

#application .field .select2-container {
    margin-top: 0;
}

div#application div.field a.locate-me {
    display: block;
}

div#application div.field textarea {
    border-color: var(--field-border-color);
    width: 455px;
}

@media (max-width: 640px) {
    div#application div.field textarea {
        width: 100%;
    }
}

div#application div.field div.select2-container {
    width: 455px !important;
}

@media (max-width: 640px) {
    div#application div.field div.select2-container {
        width: 100% !important;
    }
}

div.s3-upload-form {
    display: none;
}

/* Confirmation Page */
#main #view-more {
    text-align: left;
    padding-top: 0;
}

#main strong > a {
    color: var(--link-color);
    font-weight: 400;
}

#main .select2-container .select2-choice {
    border-radius: 25px;
    padding-left: 24px;
}
#main .select2-dropdown-open .select2-choice {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select2-drop {
    border-radius: 0 0 25px 25px;
}
.select2-results li:last-child {
    border-radius: 0 0 20px 20px;
}
.select2-results .select2-result-label {
    padding: 5px 13px 6px;
}
.select2-results .select2-highlighted {
    background: var(--primary-brand-color);
}
.select2-drop-active {
    border: 1px solid #ccc;
}
.accessible .select2-container-active .select2-choice,
.accessible .select2-container-active .select2-choices {
    border-color: #ccc;
}

#main_fields div.field input[type="text"]:focus,
#main_fields div.field textarea:focus,
#main_fields div.field .text-field:focus,
#main_fields #custom_fields div.field
.select2-container-multi:focus,
#custom_fields #main_fields div.field .select2-container-multi:focus,
#custom_fields div.field input[type="text"]:focus,
#custom_fields div.field textarea:focus,
#custom_fields div.field .text-field:focus,
#custom_fields div.field .select2-container-multi:focus,
#demographic_questions div.field input[type="text"]:focus,
#demographic_questions div.field textarea:focus,
#demographic_questions div.field .text-field:focus,
#demographic_questions #custom_fields div.field .select2-container-multi:focus,
#custom_fields #demographic_questions div.field .select2-container-multi:focus,
#eeoc_fields div.field input[type="text"]:focus,
#eeoc_fields div.field textarea:focus,
#eeoc_fields div.field .text-field:focus,
#eeoc_fields #custom_fields div.field .select2-container-multi:focus,
#custom_fields #eeoc_fields div.field .select2-container-multi:focus {
    border-color: #4745D5;
    outline: none;
}
.accessible #content {
    line-height: 24px;
}