/* stylelint-disable */

:root {
  /* DTR Brand */
  --colorAppBackground: #000000;

  /* Primary brand colours */
  --colorPrimary600: #D3F513;
  --colorPrimary900: #A8C40F;

  /* Layout */
  --widthMaxContent: 1000px;
  --widthMaxJobBoard: 900px;
  --widthMaxSubscriptionPreferences: 600px;

  /* Radius */
  --borderRadiusContainer: 10px;
  --borderRadiusControl: 8px;
  --borderRadiusButton: 8px;

  /* Font */
  --fontFamily: "Whitney SSm", "-apple-system", "BlinkMacSystemFont",
    "Segoe UI", "Helvetica", "Arial", sans-serif;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html,
body {
  background: #000000 !important;
  color: #ffffff !important;
}

body {
  font-family: var(--fontFamily);
}

a {
  color: #D3F513 !important;
}

a:hover {
  color: #ffffff !important;
}


/* =========================================================
   JOB BOARD
   ========================================================= */

.ashby-job-board-heading,
.ashby-department-heading,
.ashby-department-heading-level,
.ashby-job-posting-heading,
.ashby-job-posting-brief-title,
.ashby-job-posting-brief-department-heading,
.ashby-job-posting-brief-department-heading-level {
  color: #ffffff !important;
}

.ashby-job-board-heading-count {
  color: #D3F513 !important;
}

.ashby-job-posting-brief {
  background: #111111 !important;
  border: 1px solid #292929 !important;
  border-radius: 10px;
  padding: 18px;
  transition: 0.2s ease;
}

.ashby-job-posting-brief:hover {
  border-color: #D3F513 !important;
  background: #161616 !important;
}

.ashby-job-posting-brief-title {
  color: #ffffff !important;
}

.ashby-job-posting-brief-details {
  color: #bdbdbd !important;
}


/* =========================================================
   FILTERS
   ========================================================= */

.ashby-job-board-filter {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #444444 !important;
}

.ashby-job-board-filter:focus {
  border-color: #D3F513 !important;
  outline: none !important;
}

.ashby-job-board-filters-label {
  color: #ffffff !important;
}

.ashby-job-board-reset-filters-label {
  color: #D3F513 !important;
}


/* =========================================================
   JOB PAGE
   ========================================================= */

.ashby-job-posting-header,
.ashby-job-posting-description-container,
.ashby-job-posting-left-pane,
.ashby-job-posting-right-pane {
  background: #000000 !important;
  color: #ffffff !important;
}

.ashby-job-posting-description {
  color: #e8e8e8 !important;
}

.ashby-job-posting-description h1,
.ashby-job-posting-description h2,
.ashby-job-posting-description h3,
.ashby-job-posting-description h4,
.ashby-job-posting-description strong {
  color: #ffffff !important;
}

.ashby-job-posting-description a {
  color: #D3F513 !important;
}

.ashby-job-board-back-to-all-jobs-button {
  color: #D3F513 !important;
}


/* =========================================================
   TABS
   ========================================================= */

.ashby-job-posting-right-pane-application-tab,
.ashby-job-posting-right-pane-overview-tab {
  color: #ffffff !important;
}

.ashby-job-posting-right-pane-tab-slider {
  background: #D3F513 !important;
}


/* =========================================================
   APPLICATION FORM
   ========================================================= */

.ashby-application-form-container,
.ashby-application-form-section-container,
.ashby-survey-form-container {
  background: #000000 !important;
  color: #ffffff !important;
}

.ashby-application-form-question-title,
.ashby-application-form-section-header-title {
  color: #ffffff !important;
}

.ashby-application-form-question-description,
.ashby-application-form-section-header-description,
.ashby-application-form-texting-consent-description {
  color: #bdbdbd !important;
}


/* Text inputs */

.ashby-application-form-input-text,
.ashby-application-form-input-textarea,
.ashby-application-form-input-dropdown,
.ashby-application-form-input-dropdown-select,
.ashby-application-form-input-date {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #444444 !important;
}

.ashby-application-form-input-text:focus,
.ashby-application-form-input-textarea:focus,
.ashby-application-form-input-dropdown:focus,
.ashby-application-form-input-date:focus {
  border-color: #D3F513 !important;
  outline: none !important;
}

input::placeholder,
textarea::placeholder {
  color: #777777 !important;
}


/* =========================================================
   FILE UPLOAD
   ========================================================= */

.ashby-application-form-input-file-dropzone {
  background: #111111 !important;
  border: 1px dashed #555555 !important;
  color: #ffffff !important;
}

.ashby-application-form-input-file-dropzone:hover {
  border-color: #D3F513 !important;
}

.ashby-application-form-input-file-dropzone-upload {
  color: #D3F513 !important;
}

.ashby-application-form-input-file-item {
  background: #161616 !important;
  color: #ffffff !important;
}


/* =========================================================
   CHECKBOX / RADIO / YES-NO
   ========================================================= */

.ashby-application-form-input-checkbox-group-option,
.ashby-application-form-input-radio-group-option,
.ashby-application-form-input-yesno-option {
  color: #ffffff !important;
}

.ashby-application-form-input-checkbox-group-option[data-checked],
.ashby-application-form-input-radio-group-option[data-checked],
.ashby-application-form-input-yesno-option[aria-pressed="true"] {
  border-color: #D3F513 !important;
}


/* =========================================================
   AUTOCOMPLETE / DROPDOWNS
   ========================================================= */

.ashby-application-form-input-autocomplete-popup {
  background: #111111 !important;
  border: 1px solid #333333 !important;
  color: #ffffff !important;
}

.ashby-application-form-input-autocomplete-popup-result {
  color: #ffffff !important;
}

.ashby-application-form-input-autocomplete-popup-result[aria-selected="true"] {
  background: #D3F513 !important;
  color: #000000 !important;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.ashby-application-form-submit-button {
  background: #D3F513 !important;
  color: #000000 !important;
  border: 1px solid #D3F513 !important;
  font-weight: 700 !important;
}

.ashby-application-form-submit-button:hover {
  background: #A8C40F !important;
  border-color: #A8C40F !important;
  color: #000000 !important;
}


/* =========================================================
   SUCCESS / FAILURE STATES
   ========================================================= */

.ashby-application-form-success-container {
  background: #111111 !important;
  border: 1px solid #D3F513 !important;
  color: #ffffff !important;
}

.ashby-application-form-failure-container {
  background: #111111 !important;
  color: #ffffff !important;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
  background: #D3F513;
  color: #000000;
}