@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: #00cc66;
    --light-primary-brand-color: #41e87f;

    /* We recommend not changing these colors */
    --full-page-background-color: #FAFAFA;
    --application-background-color: #FFF;
    --footer-color: #F3F3F3;
    --main-text-color: #222222;
    --sub-header-color: #666;
    --link-color: #071C59;
    --field-border-color: #E1E1E1;
    --primary-green: #00cc66;
    --primary-green-dark: #00a742;
    --primary-green-light: #41e87f;
    --primary-blue: #3AB6E0;
    --primary-blue-dark:#34A4CA;
    --primary-blue-light:#61C5E6;
    --slate: #27373C;
    --slate-light: #3D4B50;
    --slate-dark:#1F2C30;
    --navy:#071C59;
    --purple:#7829EA;
    --purple-dark:#6C25D3;
    --purple-light:#863eec;
    --pink:#FF4D86;
    --pink-dark:#e64579;
    --pink-light:#FF719E;
    --bg-tint-one:#ededed;
    --bg-tint-two:#f7f7f7;
    --white:#ffffff;
    --black:#000000;
    --dark:#0d1f25;
}

body {
    background-color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size:20px;
    line-height: 1.5;
}

body #wrapper {
    background-color: var(--white);
    min-height: 100vh;
    max-width: 100%;
    padding: 0;
}

body #wrapper h1:first-of-type {
    display:none;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    color:var(--black);
    margin:0 0 0.35em 0;
    font-weight:700;
}
  
@media (max-width:500px){
    h1 {
      font-size:36px;
    }
}
  
h1 {
    font-size:42px;
    line-height: 1.2;
}

h2 {
    font-size:32px;
    line-height:1.3;
}

h3 {
    font-size:26px;
    line-height:1.3;
}
  
h4 {
    font-size:22px;
    line-height:1.5;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color:var(--black);
    text-decoration:none;
} 
  
h1 a:hover, h1 a:focus, 
h2 a:hover, h2 a:focus, 
h3 a:hover, h3 a:focus, 
h4 a:hover, h4 a:focus, 
h5 a:hover, h5 a:focus, 
h6 a:hover, h6 a:focus {
    text-decoration: underline;
}

p {
    font-size:20px;
    line-height:1.5;
}

p + p {
    margin-top:24px;
}

a {
    color:var(--slate);
    text-decoration:underline;
}

li {
    margin-bottom:12px;
}

ul li::marker {
    color: var(--primary-green);
}
  
@media (min-width:1200px){
    html, body {
        font-size:20px;
    }

    h1 {
        font-size:48px;
    }

    h2 {
        font-size:36px;
    }

    h3 {
        font-size:28px;
    }
}

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

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

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

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

#main .location {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    color: var(--sub-header-color);
}

/* Job Board Page */
#main > h1:not(.app-title) {
    /* Hide the company name in favor of a Logo that includes it */
    display: none;
}

#board_title {
    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: inline-block;
}

body #content {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

#main section h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

#main section .location {
    display: block;
    margin-top: -24px;
}

#main section .opening {
    padding-top: 10px;
    margin-bottom: 10px;
}

section .opening a {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--slate);
    text-decoration: underline;
}

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;
    height: 44px;
    width: 100%;
    margin-bottom: -20px;
    padding-bottom: 0;
    margin-left: -20px;
    padding-left: 20px;
    padding-top: 12px;
    margin-top: -12px;
    position: relative;
    z-index: 1;
}

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

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: 30px;
    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-weight: 400;
}

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 input#submit_app {
    background-color: var(--primary-brand-color);
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: "Nunito Sans", 'sans-serif';
    font-weight: 600;
}

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: 12px;
    font-weight: 400;
    text-align: left;
}

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);
    font-size: 14px;
}

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;
}

/*--------------------------------------------- overrides----------------------------------------*/
#board_title, .level-0 h3, .level-2 h5, .level-3 h6 {
    display:none!important;
}

.child {
    margin-left: 0;
}

#wrapper[style] {
    padding:0!important;
}

#wrapper #main {
    padding-left:20px!important;
    padding-right:20px!important;
    padding-top:20px!important;
}

section .opening a {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
}

section .opening a:hover {
    background-color: transparent;
    border-radius: 0;
    color: var(--black);
}

.accessible .filter-container {
    margin-bottom: 48px;
}

#main section .location {
    display: block;
    margin-top: -18px;
}

#main .location {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--black);
}

.level-1 {
    margin-bottom:48px;
}

.accessible .level-0 h4 {
    font-family: 'Archivo', sans-serif;
    color:var(--primary-green);
    background:var(--slate);
    border-radius:10px;
    padding:20px;
    margin:0 0 0.35em 0;
    font-weight:700;
    font-size:26px;
    line-height:1.3;
    font-weight: normal;
}

@media (min-width:1200px){
    .accessible .level-0 h4 {
        font-size:28px;
    }
}

div#application div.field label {
    color: var(--black);
    display: block;
    float: none;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

div#application div.field input[type=text] {
    border: solid 1px #cccccc;
    height: 25px;
    padding-left: 12px;
    width: calc(100% - 22px);
    padding:10px;
}

#main_fields div.field {
    clear: both;
    overflow: auto;
    line-height: 50px;
    margin-bottom: 15px;
}

div.link-container a {
    color: var(--slate);
    font-size: 20px;
    border-radius:10px;
    padding:5px 20px;
    background:var(--primary-green);
    text-decoration: none;
    margin-right:12px;
}

#custom_fields div.field textarea {
    border: solid 1px #cccccc;
    width: calc(100% - 22px);
    padding:10px;
}

div#application div.field textarea {
    border: solid 1px #cccccc;
    width: calc(100% - 22px);
    padding:10px;
}

div#application div.field input[type='checkbox'] + label {
    font-size: 20px;
}

div#submit_buttons input#submit_app {
    background-color: var(--primary-brand-color);
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: "Nunito Sans", 'sans-serif';
    font-weight: 600;
}


div#submit_buttons input#submit_app, div#submit_buttons input#submit_app:visited,
div#submit_buttons input#submit_app:active, div#submit_buttons input#submit_app:link {
  padding:15px 30px;
  background:var(--primary-green)!important;
  color:var(--black)!important;
  text-decoration: none;
  border-radius:10px;
  transition: all 500ms ease;
  font-size:20px;
  font-weight:400;
}

div#submit_buttons input#submit_app:hover, div#submit_buttons input#submit_app:focus {
    cursor:pointer;
    background:var(--primary-green-light);
}

div#app_body #header a {
    display: none;
}

div#app_body #header h1.app-title {
    display:block!important;
}

section .opening a {
    height:auto!important;
    margin-bottom:6px!important;
}

body.page-template-page-current-job-openings #wrapper[style] {
    padding:20px!important;
}