/* stylelint-disable */

/* These variables can be used to control values throughout the job board. */
:root {
  /* The max width of the job board container */
  --widthMaxJobBoard: 1000px;

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

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

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

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

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

  --colorAppBackground: #f1f0ed;
  --colorBrandYellow: #000000;
  --colorTextMain: #000000;
  --colorBorder: #d1d1ce;
  --colorNeutral100: #ffffff;
  --colorNeutral300: #888888;
  --colorNeutral500: #666666;
  --colorNeutral600: #898989;
  --colorNeutral700: #000000;
  --colorNeutral800: #000000;
  --colorPrimary500A: rgb(57 57 57 / 13%);
  --colorNeutralShadow: rgba(0, 0, 0, 0);
}

/* 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 {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}

/* Application autofill input's description. */
.ashby-application-form-autofill-input-description {
  color: #666;
  font-size: 14px;
}

/* 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 {
  border: 2px dashed var(--colorBorder);
  border-radius: var(--borderRadiusContainer);
}

/* Application autofill input's title. */
.ashby-application-form-autofill-input-title {
  font-weight: 600;
}

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

/* Container element for application autofill input form. */
.ashby-application-form-autofill-pane {
  margin-bottom: 12px;
}

/* A container for the application form. */
.ashby-application-form-autofill-pane,
.ashby-application-form-container {
  background: #fff;
  padding: 32px;
  border-radius: var(--borderRadiusContainer) !important;
}

@media (max-width: 768px) {
  .ashby-application-form-autofill-pane {
    margin-top: 0 !important;
    border-radius: 0 0 16px 16px !important;
  }
  .ashby-application-form-autofill-pane,
  .ashby-application-form-container {
    padding: 16px !important;
  }
}
/* 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 {
  margin-bottom: 20px;
}

/* The description of each question on an application form. Will only show if a description is specified. */
.ashby-application-form-question-description {
  font-size: 13px;
  color: #777;
}

/* The title of each question on an application form. */
.ashby-application-form-question-title {
  font-weight: 500;
  margin-bottom: 8px;
}

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

/* The header for an application form section, possibly containing a title and description. */
.ashby-application-form-section-header {
  margin-bottom: 24px;
}

/* 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 {
  font-size: 20px;
  font-weight: 600;
  color: #000 !important;
}

/* The application submission button. Will have loading and hover states that should be tested. */
.ashby-application-form-submit-button {
  background-color: #fdc300 !important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  padding: 24px !important;
  border-radius: var(--borderRadiusButton) !important;
  border: none !important;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: none !important;
  margin-top: 12px !important;
  font-size: 18px !important;
}

.ashby-application-form-submit-button svg path {
  fill: #000 !important;
}

/* 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 {
  font-size: 22px;
  margin-top: 40px;
  font-weight: 600;
}

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

/* 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 {
  text-decoration: none;
  color: #666;
  font-weight: 500;
}

/* A select box element for filtering the job board. */
.ashby-job-board-filter {
  border: 1px solid var(--colorBorder) !important;
  border-radius: var(--borderRadiusControl) !important;
  padding: 14px 20px !important;
  background-color: #fff !important;
}

/* The 'Filters' label element in the job board. */
.ashby-job-board-filters-label {
  font-weight: 600;
  font-size: 14px !important;
}

/* The heading of the entire job board. */
.ashby-job-board-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* The count of job postings on the job board. */
.ashby-job-board-heading-count {
  font-weight: 400;
  opacity: 0.6;
}

/* The 'Reset filters' label element in the job board. The reset filters label element in the job board. */
.ashby-job-board-reset-filters-label {
  color: #777777;
  cursor: pointer;
  background: none !important;
}

/* The container of the job posting details pane. */
.ashby-job-posting-brief {
  /* This adds some space between posting briefings. */
  margin-bottom: 12px;
  background: #fff;
  padding: 24px;
  border-radius: var(--borderRadiusContainer);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.ashby-job-posting-brief:hover {
  border-color: var(--colorBrandYellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 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 {
  font-size: 14px;
  color: #666;
}

/* 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 {
  font-size: 18px;
  font-weight: 600;
  color: var(--colorTextMain);
}

/* The main header on the job posting page */
.ashby-job-posting-header {
  margin-bottom: 32px;
}

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

/* The left pane of the job posting, with the job posting details */
.ashby-job-posting-left-pane {
  border-radius: 16px !important;
  overflow: hidden !important;
  margin-left: 0 !important;
}
@media (min-width: 768px) {
  .ashby-job-posting-left-pane {
    margin-right: 12px !important;
    height: fit-content;
    position: sticky;
    top: 101px;
    left: 0;
  }
}

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

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

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

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