/* stylelint-disable */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap");
/* These variables can be used to control values throughout the job board. */
:root {
  /*  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: #1e293b !important;
  --colorNeutral100: #f8fafc !important;

  /*  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: #0071ff !important;

  /*  The max width of the job board container */
  --widthMaxJobBoard: 766px !important;

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

  /*  Container border radius */
  --borderRadiusContainer: 16px !important;

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

  /*  Button border radius */
  --borderRadiusButton: 10px !important;

  /*  Font families */
  --fontFamily: "Lato", "-apple-system", "BlinkMacSystemFont", "Segoe UI",
    "Helvetica", "Arial", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  --colorAppBackground: #ffffff !important;
}

/* 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 {
}

/* 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 {
  margin: 0px 16px;
}

/* 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 {
}

/* 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 {
}

/* The application submission button. Will have loading and hover states that should be tested. */
.ashby-application-form-submit-button {
  margin: 0px 16px 16px 16px;
  width: stretch;
  padding: 16px 29px;
  background-color: #0071ff;
  border-color: #0071ff;
  color: #ffffff;
  box-shadow: 0 8px 20px 0 rgba(8, 120, 255, 0.18);
}

.ashby-application-form-submit-button:hover,
.ashby-application-form-submit-button:active {
  background-color: #005ed3;
  border-color: #005ed3;
  color: #ffffff;
}

/* 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 {
  margin: 32px 0px 16px 0px;
}

/* The heading of a single team. */
.ashby-department-heading-level {
  color: #5b6772;
  font-size: 14px;
  font-weight: 700;
}

/* The button which allows users to navigate from an individual posting back to the list of all job postings. */
.ashby-job-board-back-to-all-jobs-button {
  padding: 16px;
  background-color: transparent;
  border-color: transparent;
  color: #0071ff;
  box-shadow: none;
}

.ashby-job-board-back-to-all-jobs-button:hover,
.ashby-job-board-back-to-all-jobs-button:active {
  background-color: #005ed3;
  border-color: #005ed3;
  color: #ffffff;
}

/* A select box element for filtering the job board. */
.ashby-job-board-filter {
  border-color: #e2e8f0;
  min-height: 48px;
  box-shadow: 0 2px 4px 0 rgba(31, 47, 84, 0.08);
}

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

/* The heading of the entire job board. */
.ashby-job-board-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0px 16px 0px;
  max-width: 100vw;
}

/* The count of job postings on the job board. */
.ashby-job-board-heading-count {
  color: #0071ff;
}

/* The 'Reset filters' label element in the job board. The reset filters label element in the job board. */
.ashby-job-board-reset-filters-label {
  padding: 7px;
}

/* The container of the job posting details pane. */
.ashby-job-posting-brief {
  margin-bottom: 0px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* The heading of a department name. Departments group teams. */
.ashby-job-posting-brief-department-heading {
  margin: 32px 0px 16px 0px;
}

/* The heading of a single team. */
.ashby-job-posting-brief-department-heading-level {
  color: #5b6772;
  font-size: 14px;
  font-weight: 700;
}

/* The container for the details of the job posting, in the details pane. */
.ashby-job-posting-brief-details {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

/* The container for the list of job post briefings. */
.ashby-job-posting-brief-list {
  padding: 0px;
}

/* The title of the job posting in the details pane. */
.ashby-job-posting-brief-title {
  color: #1e293b;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

/* The main header on the job posting page */
.ashby-job-posting-header {
  margin: 32px 0px 16px 0px;
  max-width: 100vw;
}

/* The heading of a job post */
.ashby-job-posting-heading {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

/* The left pane of the job posting, with the job posting details */
.ashby-job-posting-left-pane {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

/* The right pane of the job posting, containing the tabs, overview, and application form */
.ashby-job-posting-right-pane {
  margin-top: 32px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

/* The application tab in the right pane of the job posting */
.ashby-job-posting-right-pane-application-tab {
  transition: all 0.3s ease;
}

/* The overview tab in the right pane of the job posting */
.ashby-job-posting-right-pane-overview-tab {
  transition: all 0.3s ease;
}

/* The tabs slider in the right pane of the job posting */
.ashby-job-posting-right-pane-tab-slider {
  box-shadow: none;
  transition: all 0.3s ease;
}

/* A container for any surveys specified for this application form. */
.ashby-survey-form-container {
  box-shadow: none;
}

.ashby-application-form-container,
.ashby-application-form-autofill-pane,
.ashby-application-form-success-container,
.ashby-application-form-failure-container,
.ashby-application-form-blocked-application-container {
  box-shadow: none;
}

@media (max-width: 600px) {
  .ashby-job-board-heading {
    font-size: 18px;
    font-weight: 700;
  }

  .ashby-job-posting-brief-title {
    font-size: 16px;
  }

  /* The heading of a job post */
  .ashby-job-posting-heading {
    font-size: 18px;
  }

  .ashby-job-posting-brief {
    padding: 24px 16px;
  }

  .ashby-job-posting-left-pane {
    padding: 24px 16px;
  }
}
