/* stylelint-disable */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400&display=swap");

/* These variables can be used to control values throughout the job board. */
:root {
  --color-white: #ffffff;
  --color-blue-50: #b0d8ff;
  --color-blue-600: #002454;
  --color-blue-700: #001433;
  --color-blue-800: #010a17;
  --color-green-50: #f2ffe5;
  --color-green-100: #dfeed1;
  --color-green-200: #c8d5bb;
  --color-green-300: #859973;
  --color-green-400: #607251;
  --color-green-500: #516441;
  --color-green-700: #213610;

  /*  Darker primary color
    WARNING - This can be set in the Ashby admin under theme settings!
    If you modify, you should make sure your colors work with the settings there. */
  --colorPrimary900: var(--color-green-700);

  --colorNeutral800: var(--color-green-700);
  --colorNeutral700: var(--color-green-400);
  --colorNeutral200: var(--color-green-200);

  /*  Lighter primary color
    WARNING - This can be set in the Ashby admin under theme settings!
    If you modify, you should make sure your colors work with the settings there. */
  --colorPrimary600: var(--color-green-400);

  /*  The max width of the job board container */
  --widthMaxJobBoard: 1440px;
  --widthMaxContent: 1440px;

  /*  The max width of the application form section */
  /* --widthMaxJobBoard: 800px; */

  /*  Container border radius */
  --borderRadiusContainer: 2px;

  /*  Border radius of control elements (e.g. input boxes) */
  --borderRadiusControl: 2px;

  /*  Button border radius */
  --borderRadiusButton: 2px;

  /*  Font families */
  --fontFamily: "Inter", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", "Apple Color Emoji",
    "Segoe UI Emoji", sans-serif;
  --fontFamilyMono: "Geist Mono", "Courier New", Courier, monospace;

  --colorAppBackground: var(--color-green-50);
}

body {
  color: var(--color-green-700);
  background-color: var(--color-green-50);
}

/* Application autofill input's base layer element. This contains standard copy, a CTA button, and potential validation alerts. */
.ashby-application-form-autofill-input-base-layer {
  background-color: transparent;
}

.ashby-application-form-input-yesno-option[aria-pressed="true"] {
  background-color: var(--color-green-700);
  color: var(--color-white);
}
.ashby-application-form-input-yesno-option[aria-pressed="false"] {
  background-color: var(--color-green-200);
  color: var(--color-green-700);
}

.ashby-job-board-back-to-all-jobs-button,
.ashby-application-form-autofill-input-base-layer button,
.ashby-application-form-container button,
.ashby-application-form-input-file button,
.ashby-job-posting-description-container button,
.ashby-application-form-submit-button {
  color: var(--color-white);
  background-color: var(--color-green-700);
  box-shadow: none;
  border: 0;
}

.ashby-application-form-input-yesno,
.ashby-job-board-back-to-all-jobs-button,
.ashby-application-form-autofill-input-base-layer button,
.ashby-application-form-input-file button,
.ashby-job-posting-description-container button,
.ashby-application-form-submit-button {
  font-family: var(--fontFamilyMono);
  font-size: 0.875rem;
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.77px;

  justify-content: space-between;
  align-items: center;
  padding: 32px 8px 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.ashby-job-board-back-to-all-jobs-button:hover,
.ashby-application-form-autofill-input-base-layer button:hover,
.ashby-application-form-container button:hover,
.ashby-application-form-input-file button:hover,
.ashby-job-posting-description-container button:hover,
.ashby-application-form-submit-button:hover {
  box-shadow: none;
}

/* Application autofill input's description. */
.ashby-application-form-autofill-input-description {
}

/* Application autofill input's drag state overlay element. Can style [data-state] which can be 'active' or 'hidden'. */
.ashby-application-form-autofill-input-drag-layer {
}

/* Application autofill input form's alert element. Can style [data-highlight] which can be 'negative' or 'positive'. */
.ashby-application-form-autofill-input-form-alert {
}

/* Application autofill input's magic sparkles icon. */
.ashby-application-form-autofill-input-icon {
}

/* Application autofill input's pending state overlay element. Can style [data-state] which can be 'active' or 'hidden'.
.ashby-application-form-autofill-input-pending-layer {}

/* Application autofill input's root element. Can style [data-state] which can be 'pending', 'drag', or 'default'. */
.ashby-application-form-autofill-input-root {
}

/* Application autofill input's title. */
.ashby-application-form-autofill-input-title {
}

/* Container element for application autofill input form. */
.ashby-application-form-autofill-pane {
}

/* The resume uploader to auto-fill the application form */
.ashby-application-form-autofill-uploader {
}

/* A container for displaying the custom message to the user */
.ashby-application-form-blocked-application-container {
}

/* A container for the application form. */
.ashby-application-form-container,
.ashby-application-form-input-file {
  background-color: transparent;
}

/* A container for the failure message */
.ashby-application-form-failure-container {
}

/* A container for the label and input on an application form. */
.ashby-application-form-field-entry {
}

/* The description of each question on an application form. Will only show if a description is specified. */
.ashby-application-form-question-description {
}

/* The title of each question on an application form. */
.ashby-application-form-question-title {
}

/* A single section on the Ashby application form. All questions will be wrapped in sections, though the default section may not have a title. */
.ashby-application-form-section-container {
}

/* The header for an application form section, possibly containing a title and description. */
.ashby-application-form-section-header {
}

/* The description for an application form section. May not exist if no description was specified. */
.ashby-application-form-section-header-description {
}

/* The title for an application form section. May not exist for the default section. */
.ashby-application-form-section-header-title {
}

/* A container for the success message */
.ashby-application-form-success-container {
}

/* The text message consent description. Displayed below phone number fields. Will only show if texting is enabled. */
.ashby-application-form-texting-consent-description {
}

/* The heading of a department, which can have many teams under it. */
.ashby-department-heading {
}

/* The heading of a single team. */
.ashby-department-heading-level {
}

/* A select box element for filtering the job board. */
.ashby-job-board-filter {
}

/* The 'Filters' label element in the job board. */
.ashby-job-board-filters-label {
}

/* The heading of the entire job board. */
.ashby-job-board-heading {
}

/* The count of job postings on the job board. */
.ashby-job-board-heading-count {
}

/* The 'Reset filters' label element in the job board. The reset filters label element in the job board. */
.ashby-job-board-reset-filters-label {
}

/* The container of the job posting details pane. */
.ashby-job-posting-brief {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ashby-application-form-autofill-pane,
.ashby-application-form-autofill-input-root {
  background-color: transparent;
}

.ashby-job-posting-brief,
.ashby-job-posting-brief:hover,
.ashby-job-posting-brief:active {
  background-color: transparent;
}

/* The heading of a department name. Departments group teams. */
.ashby-job-posting-brief-department-heading {
}

/* The heading of a single team. */
.ashby-job-posting-brief-department-heading-level {
}

/* The container for the details of the job posting, in the details pane. */
.ashby-job-posting-brief-details {
  margin: 0;
  font-family: var(--font-family);
  letter-spacing: -0.13px;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

/* The container for the list of job post briefings. */
.ashby-job-posting-brief-list {
}

/* The title of the job posting in the details pane. */
.ashby-job-posting-brief-title {
  color: #607251;
  font-family: var(--font-family);
  letter-spacing: -0.13px;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

/* The main header on the job posting page */
.ashby-job-posting-header {
}

/* The heading of a job post */
.ashby-job-posting-heading {
}

/* The left pane of the job posting, with the job posting details */
.ashby-job-posting-left-pane {
  background-color: transparent;
}

.ashby-job-posting-description-container {
  background-color: transparent;
}

/* The right pane of the job posting, containing the tabs, overview, and application form */
.ashby-job-posting-right-pane {
  background-color: transparent;
}

/* The application tab in the right pane of the job posting */
.ashby-job-posting-right-pane-application-tab {
}

/* The overview tab in the right pane of the job posting */
.ashby-job-posting-right-pane-overview-tab {
}

.ashby-application-form-input-text,
.ashby-application-form-input-textarea,
.ashby-application-form-input-autocomplete {
  border: none;
  border-bottom: 1px solid var(--color-green-200);
  border-radius: 0;
  padding: 8px 4px;
  color: var(--color-green-500);
  font-size: 14px;
  outline: none;
}

.ashby-application-form-input-text:hover,
.ashby-application-form-input-text:focus,
.ashby-application-form-input-text:focus-within,
.ashby-application-form-input-textarea:hover,
.ashby-application-form-input-textarea:focus,
.ashby-application-form-input-textarea:focus-within,
.ashby-application-form-input-autocomplete:hover,
.ashby-application-form-input-autocomplete:focus,
.ashby-application-form-input-autocomplete:focus-within {
  border-bottom: 1px solid var(--color-green-500) !important;
  outline: none !important;
}

/* The tabs slider in the right pane of the job posting */
.ashby-job-posting-right-pane-tab-slider {
  display: none;
}

/* A container for any surveys specified for this application form. */
.ashby-survey-form-container {
}

.ashby-job-posting-right-pane nav {
  margin-bottom: 16px;
}

.ashby-job-posting-right-pane nav a:hover {
  border-bottom: none;
}

.ashby-job-posting-right-pane nav a[aria-selected="true"] {
  color: var(--color-green-700);
  border-bottom: 1px solid var(--color-green-700);
}

.ashby-job-posting-right-pane nav a[aria-selected="false"] {
  color: var(--color-green-200);
  border-bottom: 1px solid transparent;
}
