/* stylelint-disable */

:root {
  /* Background — matches the site's cream palette */
  --colorAppBackground: #f8f4ea;
  --colorNeutral000: #f8f4ea;
  --colorNeutral100: #f0e9d9;
  --colorNeutral200: #e4dcc9;

  /* Primary brand colors */
  --colorPrimary900: #ca3051;
  --colorPrimary600: #b0294a;

  /* Typography */
  --fontFamily:
    "Work Sans", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", sans-serif;

  /* Layout */
  --widthMaxJobBoard: 900px;
  --borderRadiusContainer: 10px;
  --borderRadiusControl: 8px;
  --borderRadiusButton: 9999px;
}

/* Hide non-essential chrome to leave a clean roles list */
.ashby-job-board-heading,
.ashby-job-board-heading-count,
.ashby-job-board-bottom-description-container,
.ashby-department-heading,
.ashby-department-heading-level,
.ashby-job-posting-brief-department-heading,
.ashby-job-posting-brief-department-heading-level {
  display: none !important;
}

/* Collapse the top description without removing it from the DOM, so search */
/* engines can still index it and any internal anchors keep working. */
.ashby-job-board-top-description-container {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* Job posting briefing card — sits between cream and muted, hover lifts to muted */
.ashby-job-posting-brief {
  background-color: #f4eee0 !important;
  margin-bottom: 8px;
  transition: background-color 150ms ease !important;
}
.ashby-job-posting-brief:hover {
  background-color: #f0e9d9 !important;
}

/* Application autofill input's base layer element */
.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 */
.ashby-application-form-autofill-input-drag-layer {
}

/* Application autofill input form's alert element */
.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 */
.ashby-application-form-autofill-input-pending-layer {
}

/* Application autofill input's root element */
.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 {
}

/* 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 */
.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 */
.ashby-application-form-section-container {
}

/* The header for an application form section */
.ashby-application-form-section-header {
}

/* The description for an application form section */
.ashby-application-form-section-header-description {
}

/* The title for an application form section */
.ashby-application-form-section-header-title {
}

/* The application submission button */
.ashby-application-form-submit-button {
}

/* Apply CTAs — matches the site's yellow LinkChip */
.ashby-application-button,
.ashby-apply-button,
.ashby-apply-now-button,
.ashby-job-posting-apply-button,
.ashby-job-posting-apply-now-button,
.ashby-job-posting-page-apply-button,
.ashby-job-posting-overview-apply-button,
.ashby-job-posting-right-pane-apply-button {
  background-color: #fafa64 !important;
  color: #37171a !important;
  border: none !important;
  border-radius: 5rem !important;
  padding: 1.5rem 2rem !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}
.ashby-application-button:hover,
.ashby-apply-button:hover,
.ashby-apply-now-button:hover,
.ashby-job-posting-apply-button:hover,
.ashby-job-posting-apply-now-button:hover,
.ashby-job-posting-page-apply-button:hover,
.ashby-job-posting-overview-apply-button:hover,
.ashby-job-posting-right-pane-apply-button:hover {
  background-color: #e6e650 !important;
}
/* Hide the paper-plane / send icon Ashby renders next to the button label */
.ashby-application-button svg,
.ashby-application-button img,
.ashby-apply-button svg,
.ashby-apply-button img,
.ashby-apply-now-button svg,
.ashby-apply-now-button img,
.ashby-job-posting-apply-button svg,
.ashby-job-posting-apply-button img,
.ashby-job-posting-apply-now-button svg,
.ashby-job-posting-apply-now-button img,
.ashby-job-posting-page-apply-button svg,
.ashby-job-posting-page-apply-button img,
.ashby-job-posting-overview-apply-button svg,
.ashby-job-posting-overview-apply-button img,
.ashby-job-posting-right-pane-apply-button svg,
.ashby-job-posting-right-pane-apply-button img {
  display: none !important;
}

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

/* The text message consent description */
.ashby-application-form-texting-consent-description {
}

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

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

/* The button to navigate back to all jobs */
.ashby-job-board-back-to-all-jobs-button {
  transition: background-color 150ms ease !important;
}
.ashby-job-board-back-to-all-jobs-button:hover {
  background-color: #f0e9d9 !important;
  color: inherit !important;
  opacity: 1 !important;
}
.ashby-job-board-back-to-all-jobs-button:hover svg,
.ashby-job-board-back-to-all-jobs-button:hover svg * {
  color: inherit !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

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

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

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

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

/* The container of the job posting details pane */
.ashby-job-posting-brief {
}

/* The heading of a department name */
.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 */
.ashby-job-posting-brief-details {
}

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

/* 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 */
.ashby-job-posting-left-pane {
}

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

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

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

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

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