/* Theme Variables */
:root {
  /* Typography */
  --font-family-body: "Heebo", Helvetica, Arial, sans-serif;
  --font-family-heading: "Heebo", Helvetica, Arial, sans-serif;

  --font-size-h1: 40px;
  --font-size-h2: 34px;
  --font-size-h3: 30px;
  --font-size-h4: 26px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
  --font-size-paragraph: 16px;

  /* Colors */
  --primary-color: #b31d36;
  --secondary-color: #ffffff;
  --dark-color: #000000;
  --light-color: #ffffff;
  --input-border-color: #ced4da;
  --input-bg-color: #ffffff;

  /* Other variables */
  --border-radius: 5px;

  /* Border Radius & Padding */
  --btn-border-radius: 4px;
  --input-border-radius: 4px;
  --input-padding: 10px 28px;

  /* Primary Button */
  --primary-btn-bg: #b31d36;
  --primary-btn-color: #ffffff;
  --primary-btn-border-color: #b31d36;

  /* Primary Button Hover */
  --primary-btn-bg-hover: #1b1c1e;
  --primary-btn-color-hover: #ffffff;
  --primary-btn-border-color-hover: #1b1c1e;

  /* Secondary Button */
  --secondary-btn-bg: #ffffff;
  --secondary-btn-color: #b31d36;
  --secondary-btn-border-color: #b31d36;

  /* Secondary Button Hover */
  --secondary-btn-bg-hover: #1b1c1e;
  --secondary-btn-color-hover: #ffffff;
  --secondary-btn-border-color-hover: #1b1c1e;

  /* Button One */
  --button-one-bg: #2D2F32;
  --button-one-color: #ffffff;
  --button-one-border-color: #2D2F32;

  /* Button One Hover */
  --button-one-bg-hover: #ffffff;
  --button-one-color-hover: #2D2F32;
  --button-one-border-color-hover: #2D2F32;

  /* Button Two */
  --button-two-bg: #B31D36;
  --button-two-color: #ffffff;
  --button-two-border-color: #B31D36;

  /* Button Two Hover */
  --button-two-bg-hover: #1b1c1e;
  --button-two-color-hover: #ffffff;
  --button-two-border-color-hover: #1b1c1e;

  /* Button Three */
  --button-three-bg: #ffffff;
  --button-three-color: #B31D36;
  --button-three-border-color: #B31D36;

  /* Button Three Hover */
  --button-three-bg-hover: #1b1c1e;
  --button-three-color-hover: #ffffff;
  --button-three-border-color-hover: #1b1c1e;

  /* Button Four */
  --button-four-bg: #ffffff00;
  --button-four-color: #222222;
  --button-four-border-color: #ffffff;

  /* Button Four Hover */
  --button-four-bg-hover: #ffffff00;
  --button-four-color-hover: #222222;
  --button-four-border-color-hover: #ffffff;

  /* Cards */
  --card-background-color: #ffffff;
  --card-border-color: #c9c9c9;
  --card-padding: 30px 30px;
  --card-border-radius: 10px;
  --card-box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.2);

  /* Navbar */
  --navbar-background: #2d2f32;
  --navbar-color: #444444;

  /* Footer */
  --footer-background: #202123;
  --footer-color: #ffffff;

  /* Layout Settings */
  --card-columns: 100%;
  --filter-columns: 25%;

  /* Spacing */
  --bs-spacer-0: 0;
  --bs-spacer-1: 0.25rem;
  --bs-spacer-2: 0.5rem;
  --bs-spacer-3: 1rem;
  --bs-spacer-4: 1.5rem;
  --bs-spacer-5: 3rem;
  --bs-spacer-6: 6rem;

  --motion-duration: .6s;
  --motion-ease: cubic-bezier(.2,.7,.3,1);
}

/** Base Theme **/

body {
  background: #f9f9f9;
  color: var(--dark-color);
  line-height: 1.5;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--font-size-paragraph);
  overflow-x: hidden;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  letter-spacing: normal;
}
.h1, h1 {
  font-size: var(--font-size-h1);
}
.h2, h2 {
  font-size: var(--font-size-h2);
}
.h3, h3 {
  font-size: var(--font-size-h3);
}
.h4, h4 {
  font-size: var(--font-size-h4);
}
.h5, h5 {
  font-size: var(--font-size-h5);
}
.h6, h6 {
  font-size: var(--font-size-h6);
}

@media (max-width: 768px) {
  .h1, h1 {
    font-size: calc(var(--font-size-h1) * 0.9);
  }
  .h2, h2 {
    font-size: calc(var(--font-size-h2) * 0.9);
  }
  .h3, h3 {
    font-size: calc(var(--font-size-h3) * 0.9);
  }
  .h4, h4 {
    font-size: calc(var(--font-size-h4) * 0.9);
  }
}
@media (max-width: 576px) {
  .h1, h1 {
    font-size: calc(var(--font-size-h1) * 0.8);
  }
  .h2, h2 {
    font-size: calc(var(--font-size-h2) * 0.8);
  }
  .h3, h3 {
    font-size: calc(var(--font-size-h3) * 0.8);
  }
  .h4, h4 {
    font-size: calc(var(--font-size-h4) * 0.8);
  }
}
.hero-h1 h1 {
  font-size: 56px;
}
.hero-h2 h2 {
  font-size: 46px;
}
@media (max-width: 576px) {
  .hero-h1 h1 {
    font-size: calc(var(--font-size-h1)* 0.8);
  }
  .hero-h2 h2 {
    font-size: calc(var(--font-size-h2)* 0.7);
  }
  .hero-h1 .container-fluid h1,
    .hero-h2 .container-fluid h2,
    .hero-h1 .container-fluid p,
    .hero-h2 .container-fluid p {
    padding-left: 15px;
    padding-right: 15px;
  }
}
a, a:visited {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
  /*word-break: break-word;*/
}
a:not(.tile-link, .nav-link, .job a, .dropdown-item, .navbar-brand, [href="/me/settings/edit"]):hover {
    background-color: var(--dark-color);
  color: var(--secondary-color);
  text-decoration: none;
}

/* Buttons */

.btn, button, a.button {
  font-weight: 600;
  font-family: inherit;
  line-height: 1.5;
  padding: var(--input-padding);
  transition:
    background-color var(--motion-duration) var(--motion-ease),
    color var(--motion-duration) var(--motion-ease),
    border-color var(--motion-duration) var(--motion-ease),
    box-shadow var(--motion-duration) var(--motion-ease);
  border-radius: var(--btn-border-radius) !important;
  font-size: 15px;
  text-transform: inherit;
  text-decoration:none !important;
}
.btn-primary {
  background: var(--primary-btn-bg);
  color: var(--primary-btn-color);
  border: 1px solid var(--primary-btn-border-color);
}
.btn-primary:visited, .btn-primary:active, .btn-primary:focus {
  background: var(--primary-btn-bg);
  color: var(--primary-btn-color);
  border: 1px solid var(--primary-btn-border-color);
}
.btn-primary:hover, .btn-primary:first-child:active, .btn-primary:focus-visible {
  background: var(--primary-btn-bg-hover);
  color: var(--primary-btn-color-hover);
  border: 1px solid var(--primary-btn-border-color-hover);
}
.btn-success {
  background: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
  border: 1px solid var(--secondary-btn-border-color);
}
.btn-success:visited, .btn-success:active, .btn-success:focus, .btn:first-child:active {
  background: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
  border: 1px solid var(--secondary-btn-border-color);
}
.btn-success:hover {
  background: var(--secondary-btn-bg-hover);
  color: var(--secondary-btn-color-hover);
  border: 1px solid var(--secondary-btn-border-color-hover);
}
.btn-info, .btn-danger {
  background: var(--primary-btn-bg);
  color: var(--primary-btn-color);
  border: 1px solid var(--primary-btn-border-color);
}
.btn-info:hover, .btn-info:visited, .btn-info:active, .btn-info:focus,
  .btn-danger:hover, .btn-danger:visited, .btn-danger:active, .btn-danger:focus {
  background: var(--primary-btn-bg-hover);
  color: var(--primary-btn-color-hover);
  border: 1px solid var(--primary-btn-border-color-hover);
}
.candidate-favourite:hover, .view-favourites:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .candidate-favourite, .view-favourites {
    margin-bottom: 5px;
  }
}

.label {
  background: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
  border: 1px solid var(--secondary-btn-bg);
  padding: 4px 12px;
  font-size: 13px !important;
  margin-bottom: 4px;
  display: inline-block;
  border-radius: var(--btn-border-radius);
}
/* Custom buttons */
a.button.button1 {
  background: var(--button-one-bg);
  color: var(--button-one-color);
  border: 1px solid var(--button-one-border-color);
}
a.button.button1:hover {
  background: var(--button-one-bg-hover);
  color: var(--button-one-color-hover);
  border: 1px solid var(--button-one-border-color-hover);
}
a.button.button2 {
  background: var(--button-two-bg);
  color: var(--button-two-color);
  border: 1px solid var(--button-two-border-color);
}
a.button.button2:hover {
  background: var(--button-two-bg-hover);
  color: var(--button-two-color-hover);
  border: 1px solid var(--button-two-border-color-hover);
}
a.button.button3 {
  background: var(--button-three-bg);
  color: var(--button-three-color);
  border: 1px solid var(--button-three-border-color);
}
a.button.button3:hover {
  background: var(--button-three-bg-hover);
  color: var(--button-three-color-hover);
  border: 1px solid var(--button-three-border-color-hover);
}
a.button.button4 {
  background: var(--button-four-bg);
  color: var(--button-four-color);
  border: 0px solid var(--button-four-border-color);
  padding: 0;
}
a.button.button4::after {
  content: "\F135";
  color: var(--primary-color);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  margin-left: 1px;
}
a.button.button4:hover {
  background:var(--button-four-bg-hover);
  color:var(--button-four-color-hover);
  border: 0px solid var(--button-four-border-color);
  padding: 0;
}
/* Forms */
.call-to-action .form-control {
  border: 1px solid var(--input-border-color);
  background: var(--input-bg-color);
  padding: 10px 14px;
  border-radius: var(--input-border-radius) !important;
}

.input-group input,
  .input-group-btn button {
  height: auto !important;
  padding: var(--input-padding) !important;
}

.form-control,
  .job-search-control input {
  background-color: var(--input-bg-color);
}

.job-search-control .form-control {
  border-radius: var(--input-border-radius) !important;
}

.job-search-control .near-me-control {
  margin-left: 0;
}

.job-search-control .input-group-btn {
  margin-left: 15px !important;
}

@media (max-width: 576px) {
  .job-search-control .form-control,
    .job-search-control .input-group-btn,
    .job-search-control .input-group-btn .btn,
    .job-search-control .btn,
    .job-search-control .col-2 {
    width: 100%;
  }

  .job-search-control .input-group-btn {
    margin: 5px 0 !important;
  }
}

.job-search-control .easy-autocomplete {
  background: transparent;
}

.call-to-action-form input,
  .call-to-action-form select {
  background: var(--input-bg-color);
}

.form-call-to-action input[type=file].form-control {
  padding: 6px 10px;
}

.selectize-control.multi .selectize-input > div {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: var(--btn-border-radius);
  padding: 10px 14px;
}

.selectize-dropdown-content .option.active {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.selectize-dropdown .option {
  color: var(--primary-color);
}

.selectize-input {
  border-radius: var(--input-border-radius) !important;
}

.cta-left-align .block-call-to-action form {
  margin: 0 auto 0 0;
}

.cta-right-align .block-call-to-action form {
  margin: 0 0 0 auto;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 26px;
}

/* Cards */
.card {
  border: 1px solid var(--card-border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--card-box-shadow);
  margin-bottom: 6px;
  background: var(--card-background-color);
  padding: var(--card-padding);
  transition:
    transform var(--motion-duration) var(--motion-ease),
    box-shadow var(--motion-duration) var(--motion-ease),
    border-color var(--motion-duration) var(--motion-ease);
}

.card-title {
  line-height: 1.1;
}

.card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.2);
}

.card .page-block h3 {
  transition: color var(--motion-duration) var(--motion-ease);
}

.card:hover,
  .card:focus-within {
  border: 1px solid #626262;
}

.card:hover .page-block h3,
  .card:focus-within .page-block h3 {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Accessibility */


:where(a, button, .btn):focus-visible{
  outline: 2px solid color-mix(in oklch, var(--primary-btn-bg), white 20%);
  outline-offset: 3px;
}

/** Navigation **/

.navbar {
  background: var(--navbar-background);
}

.nav-item {
  margin: 0;
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.nav-link {
  color: var(--navbar-color) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 18px 20px !important;
  border-top: 3px solid var(--light-color);
}

.nav-item .dropdown-item {
  font-size: 15px !important;
}

.nav-link:visited {
  color: var(--navbar-color) !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item.active,
  .dropdown-item:active {
  color: var(--dark-color);
  background-color: #ececec;
}

.navbar-toggler {
  border-radius: 5px !important;
}

.navbar-brand-logo {
  width: 100%;
  max-width: 75px;
}

@media (max-width: 991.98px) {
  header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (max-width: 767px) {
  .nav-link {
    padding: 10px 8px !important;
  }

  .navbar-nav .nav-item:first-child {
    margin-top: 20px;
  }
}

/** Footer **/

.footer-brand-logo {
  width: 100%;
  max-width: 75px;
}

@media (max-width: 576px) {
  .footer-brand-logo {
    max-width: 75px;
  }
}
footer {
  background: var(--footer-background);
}
footer * {
  color: var(--footer-color);
}
footer a {
  color: var(--footer-color);
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
  padding: 0.1875rem 0 0.125rem;
  word-break: break-word;
}
footer a:visited,
  footer a:active {
  color: var(--footer-color) !important;
  opacity: 0.85;
}

footer a:hover,
  footer a:visited:hover,
  footer a:active:hover {
  background-color: var(--light-color) !important;
  color: var(--dark-color) !important;
  text-decoration: none;
  padding: 0.1875rem 0 0.25rem;
  opacity: 1;
}
.social a {
  font-size: 16px;
  text-decoration:none;
}
.site-footer-feedback {
  background: #383C3F;
  padding: 34px;
}

/** Layout Utilities **/

.no-gutters .col-md-12 {
  padding: 0px;
}
/* Alignment and responsive layout */
.my-auto .col-md-6, .my-auto .col-md-8, .my-auto .col-md-4 {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-auto .col-md-6, .mt-auto .col-md-8, .mt-auto .col-md-4 {
  margin-top: auto !important;
}
.mb-auto .col-md-6, .mb-auto .col-md-8, .mb-auto .col-md-4 {
  margin-bottom: auto !important;
}


@media (max-width: 767px) {
  .reverse-columns .row.page-row-border {
    display: flex;
    flex-direction: column;
  }
  .reverse-columns .row.page-row-border > [class*="col-"]:first-child {
    order: 2;
  }
  .reverse-columns .row.page-row-border > [class*="col-"]:last-child {
    order: 1;
  }
}

@media (max-width: 768px) {
  .row>.col-md-2, .row>.col-md-3, .row>.col-md-4, .row>.col-md-6, .row>.col-md-8 {
    padding-bottom: 1.5rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (min-width: 576px) {
  .hero-section .block-image-text * {
    width: 540px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .hero-section .block-image-text * {
    width: 720px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .hero-section .block-image-text * {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .hero-section .block-image-text * {
    width: 1140px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1400px) {
  .hero-section .block-image-text * {
    width: 1320px;
    margin-right: auto;
    margin-left: auto;
  }
}
/* Rounded image helpers */
.rounded-0 .image-uncropped-full-width,
  .rounded-0 .block-image-cover {
  border-radius: 0 !important;
}

.rounded-1 .image-uncropped-full-width,
  .rounded-1 .block-image-cover {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 .image-uncropped-full-width,
  .rounded-2 .block-image-cover {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 .image-uncropped-full-width,
  .rounded-3 .block-image-cover {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 .image-uncropped-full-width,
  .rounded-4 .block-image-cover {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 .image-uncropped-full-width,
  .rounded-5 .block-image-cover {
  border-radius: var(--bs-border-radius-xxl) !important;
}
/* Negative spacing utilities */

.mt-n1 {
  margin-top: calc(var(--bs-spacer-1) * -1) !important;
}
.mt-n2 {
  margin-top: calc(var(--bs-spacer-2) * -1) !important;
}
.mt-n3 {
  margin-top: calc(var(--bs-spacer-3) * -1) !important;
}
.mt-n4 {
  margin-top: calc(var(--bs-spacer-4) * -1) !important;
}
.mt-n5 {
  margin-top: calc(var(--bs-spacer-5) * -1) !important;
}
.mt-n6 {
  margin-top: calc(var(--bs-spacer-6) * -1) !important;
}
.me-n1 {
  margin-right: calc(var(--bs-spacer-1) * -1) !important;
}
.me-n2 {
  margin-right: calc(var(--bs-spacer-2) * -1) !important;
}
.me-n3 {
  margin-right: calc(var(--bs-spacer-3) * -1) !important;
}
.me-n4 {
  margin-right: calc(var(--bs-spacer-4) * -1) !important;
}
.me-n5 {
  margin-right: calc(var(--bs-spacer-5) * -1) !important;
}
.me-n6 {
  margin-right: calc(var(--bs-spacer-6) * -1) !important;
}
.mb-n1 {
  margin-bottom: calc(var(--bs-spacer-1) * -1) !important;
}
.mb-n2 {
  margin-bottom: calc(var(--bs-spacer-2) * -1) !important;
}
.mb-n3 {
  margin-bottom: calc(var(--bs-spacer-3) * -1) !important;
}
.mb-n4 {
  margin-bottom: calc(var(--bs-spacer-4) * -1) !important;
}
.mb-n5 {
  margin-bottom: calc(var(--bs-spacer-5) * -1) !important;
}
.mb-n6 {
  margin-bottom: calc(var(--bs-spacer-6) * -1) !important;
}
.ms-n1 {
  margin-left: calc(var(--bs-spacer-1) * -1) !important;
}
.ms-n2 {
  margin-left: calc(var(--bs-spacer-2) * -1) !important;
}
.ms-n3 {
  margin-left: calc(var(--bs-spacer-3) * -1) !important;
}
.ms-n4 {
  margin-left: calc(var(--bs-spacer-4) * -1) !important;
}
.ms-n5 {
  margin-left: calc(var(--bs-spacer-5) * -1) !important;
}
.ms-n6 {
  margin-left: calc(var(--bs-spacer-6) * -1) !important;
}
/* Mobile spacing utilities */

@media (max-width: 767.98px) {
  .p-t-m-0 { padding-top: 0 !important; }
  .p-t-m-5 { padding-top: 5px !important; }
  .p-t-m-10 { padding-top: 10px !important; }
  .p-t-m-15 { padding-top: 15px !important; }
  .p-t-m-20 { padding-top: 20px !important; }
  .p-t-m-25 { padding-top: 25px !important; }
  .p-t-m-30 { padding-top: 30px !important; }
  .p-t-m-35 { padding-top: 35px !important; }
  .p-t-m-40 { padding-top: 40px !important; }
  .p-t-m-45 { padding-top: 45px !important; }
  .p-t-m-50 { padding-top: 50px !important; }
  .p-t-m-55 { padding-top: 55px !important; }
  .p-t-m-60 { padding-top: 60px !important; }
  .p-t-m-65 { padding-top: 65px !important; }
  .p-t-m-70 { padding-top: 70px !important; }
  .p-t-m-75 { padding-top: 75px !important; }
  .p-t-m-80 { padding-top: 80px !important; }
  .p-t-m-85 { padding-top: 85px !important; }
  .p-t-m-90 { padding-top: 90px !important; }
  .p-t-m-95 { padding-top: 95px !important; }
  .p-t-m-100 { padding-top: 100px !important; }

  .p-b-m-0 { padding-bottom: 0 !important; }
  .p-b-m-5 { padding-bottom: 5px !important; }
  .p-b-m-10 { padding-bottom: 10px !important; }
  .p-b-m-15 { padding-bottom: 15px !important; }
  .p-b-m-20 { padding-bottom: 20px !important; }
  .p-b-m-25 { padding-bottom: 25px !important; }
  .p-b-m-30 { padding-bottom: 30px !important; }
  .p-b-m-35 { padding-bottom: 35px !important; }
  .p-b-m-40 { padding-bottom: 40px !important; }
  .p-b-m-45 { padding-bottom: 45px !important; }
  .p-b-m-50 { padding-bottom: 50px !important; }
  .p-b-m-55 { padding-bottom: 55px !important; }
  .p-b-m-60 { padding-bottom: 60px !important; }
  .p-b-m-65 { padding-bottom: 65px !important; }
  .p-b-m-70 { padding-bottom: 70px !important; }
  .p-b-m-75 { padding-bottom: 75px !important; }
  .p-b-m-80 { padding-bottom: 80px !important; }
  .p-b-m-85 { padding-bottom: 85px !important; }
  .p-b-m-90 { padding-bottom: 90px !important; }
  .p-b-m-95 { padding-bottom: 95px !important; }
  .p-b-m-100 { padding-bottom: 100px !important; }
}
/* Width utilities */
.w-sm-25 { width: 25% !important; }
.w-sm-50 { width: 50% !important; }
.w-sm-75 { width: 75% !important; }
.w-sm-100 { width: 100% !important; }
.w-sm-auto { width: auto !important; }

@media (min-width: 768px) {
  .w-md-25 { width: 25% !important; }
  .w-md-50 { width: 50% !important; }
  .w-md-75 { width: 65% !important; }
  .w-md-100 { width: 100% !important; }
  .w-md-auto { width: auto !important; }
}

@media (min-width: 992px) {
  .w-lg-25 { width: 25% !important; }
  .w-lg-50 { width: 50% !important; }
  .w-lg-75 { width: 75% !important; }
  .w-lg-100 { width: 100% !important; }
  .w-lg-auto { width: auto !important; }
}

@media (min-width: 1200px) {
  .w-xl-25 { width: 25% !important; }
  .w-xl-50 { width: 50% !important; }
  .w-xl-75 { width: 75% !important; }
  .w-xl-100 { width: 100% !important; }
  .w-xl-auto { width: auto !important; }
}
/* Height utilities */
.vh-25 .block-image-cover {
  height: 25vh;
  max-height: 25vh;
  object-fit: cover;
}
.vh-50 .block-image-cover {
  height: 50vh;
  max-height: 50vh;
  object-fit: cover;
}
.vh-75 .block-image-cover {
  height: 75vh;
  max-height: 75vh;
  object-fit: cover;
}
.vh-100 .block-image-cover {
  height: 100vh;
  max-height: 100vh;
  object-fit: cover;
}
/* Hero image positioning */

.img-top .block-image-cover {
  background-position: 50% 15% !important;
}
.img-bottom .block-image-cover {
  background-position: 50% 75% !important;
}
.page.editing .page-row .block-wrapper {
  display: block !important;
}
/* Custom mobile queries */
@media (max-width: 767.98px) {
  .logo-text {
    font-size:16px !important;
  }
  .page-row .container-fluid .block-image {
    margin-left: -12px;
    margin-right: -12px;
  }

  .hero-content .page-row-border > .col-md-6:first-child {
    display: flex;
    flex-direction: column;
  }

  .hero-content .page-row-border > .col-md-6:first-child > .block-wrapper:has(.block-job-search-form) {
    order: -1;
  }

  .hero-content .block-job-search-form {
    padding-bottom: var(--bs-spacer-4);
  }
}

/* White text panels for image and colour backgrounds */
.text-wrapper-white .block-image-text {
  box-sizing: border-box;
  width: calc(100% - var(--bs-gutter-x, 1.5rem));
  max-width: 100%;
  margin-inline: auto;
}

@media (min-width: 576px) {
  .text-wrapper-white .block-image-text {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .text-wrapper-white .block-image-text {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .text-wrapper-white .block-image-text {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .text-wrapper-white .block-image-text {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .text-wrapper-white .block-image-text {
    max-width: 1320px;
  }
}

.text-wrapper-white
  :is(h1, h2, h3, h4, h5, h6, p):not(blockquote *):not(:has(q, cite, a, button, .btn, .button)) {
  display: table;
  width: fit-content;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding: var(--bs-spacer-1) var(--bs-spacer-2);
  background-color: var(--light-color);
  color: var(--dark-color);
  margin-bottom: 10px;
}

/** Content Blocks **/

/* Theme specific hooks */

.list-item-check li, .list-item-circle-check li {
  list-style: none;
}
.list-item-check li::before {
  content: "\f00c";
  color: #000;
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  margin-right: 8px;
}
.list-item-circle-check li::before {
  content: "\f058";
  color: #000;
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  margin-right: 8px;
}
.eyebrow h5 {
  background: #b31d36;
  display: inline-block;
  padding: 5px 8px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid #b31d36;
  color: #ffffff;
  margin-bottom: 44px;
}
.section-one-background {
  background-color: #f1f6fb;
  background-image: url(https://cdn.prod.website-files.com/656d63a5a8c1cffefeee75a0/656eb9324bc9f3abbb604420_pattern-1.png);
  background-position: 0 0;
  background-size: auto;
}
.benefit-card img {
  width: 100%;
  max-width: 90px !important;
  height: auto;
}
.curved-hero-banner {
  position: relative;
  padding: 165px 0 250px;
  color: #fff;
  background: none;
  overflow: visible;
}
.curved-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.25)),
    url('#')
    center/cover no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V80 Q50,98 0,80 Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V80 Q50,98 0,80 Z'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.curved-hero-banner > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .curved-hero-banner {
    padding: 180px 0 200px;
  }
  .curved-hero-banner::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V84 Q50,96 0,84 Z'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V84 Q50,96 0,84 Z'/></svg>");
  }
}
.crest img {
  width: 100%;
  height: auto;
  max-width: 160px;
}
/** Custom Career Site CSS **/

.hero-banner {
  position: relative;
  /*overflow: hidden;*/
  background-color: var(--button-one-bg);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  pointer-events: none;
  background: url("https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/92e86c12f41531d78e7e744c1d0c541b/images/files/2c1af847b67b92780eb2c81d5aba9d3c/medium/130640-2-twa-helispirit-scenic-tours-kununurra-large-2880x1620.jpg?1781519886") center / cover no-repeat;
}

.hero-banner > .page-row-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .hero-banner::after {
    content: none;
  }
}
.hero-section .job-search-control {
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 6px;
}
.background-one {
  background:url("https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/92e86c12f41531d78e7e744c1d0c541b/images/files/e9244e500544fcc1c289288014fa5f05/medium/DD02_WAJob_Banner_1200x400_03.png?1782364671");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.background-two {
  background:url(link);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.background-three {
  background:url(link);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.background-four {
  background:url(link);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.background-five {
  background:url(link);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Carousel */
.carousel-caption {
  position: relative;
  right: 0 !important;
  bottom: 1.25rem;
  left: 0 !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 60% 60%;
  border-radius: 2rem;
  background-color: #FFF;
  padding: 2rem;
}
.carousel-item-caption-header {
  text-shadow: none !important;
}
.carousel-item-caption-detail * {
  text-shadow: none !important;
}
@media (min-width: 768px) {
  .carousel-control-prev, .carousel-control-next {
    width: 3%;
  }
}
.carousel-item-block.col-6 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .carousel-item-block.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Team Member Quote */

.team-member-bio {
  text-align: left !important;
}
.team-member-image {
  margin-bottom: 10px;
}
.team-member-bio .name {
  font-size: 17px;
  font-weight: 600;
}
.team-member-bio .title {

}
.team-member-bio .bio {

}
.team-member-bio .social-links i {
  margin-right: 8px !important;
}

/* Blogs */
.posts-cards .posts-cards-cols {
  display: flex;
  flex-wrap: wrap;
  gap: inherit;
}
.posts-card {
  flex: 0 calc(33.33% - 2rem);
  margin: 1rem;
  background:#ffffff;
}
.posts-cards .posts-card {
  border-radius: 10px;
}
.posts-cards .posts-card-body {
  height: auto;
  padding: 20px 0px;
  background: rgba(236 236 236 / 0%);
}
.posts-cards .posts-card .card-title {
  font-size: 18px;
  font-weight: 600;
}
.posts-cards .posts-card-link {
  color: #202e49 !important;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  text-decoration: underline;
}
.badge.post-tag {
  background: #202e49 !important;
  padding: 6px 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.posts-card-body .post-tags {
  display: none;
}
.posts-cards .posts-card-footer {
  padding: 10px 30px;
  background: none;
}
.posts-card-image {
  transition: transform 0.3s ease;
  border-radius: 8px;
}
@media only screen and (max-width: 768px) {
  .posts-cards .posts-cards-cols {
    flex-direction: column;
  }
}

/* FAQs Accordion */
.accordion-item:first-of-type {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.accordion-item {
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 0px;
  overflow: hidden;
}
.accordion-button:not(.collapsed) {
  color: #333;
  background-color: #ffffff;
  box-shadow: unset;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: unset;
}
.accordion-button {
  font-size: 16px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.accordion-body {
  padding: 20px;
  background-color: #ffffff;
}

/* Tiles */
/* Shared tile layout CSS */
.tile-layout-one .card,
  .tile-layout-two .card,
  .tile-layout-three .card,
  .tile-layout-four .card,
  .tile-layout-five .card {
  overflow: hidden;
  padding:0;
}

.tile-layout-one img.card-img-top,
  .tile-layout-two img.card-img-top,
  .tile-layout-three img.card-img-top,
  .tile-layout-four img.card-img-top,
  .tile-layout-five img.card-img-top {
  display: block;
  width: 100%;
}

.tile-layout-one .card-body,
  .tile-layout-two .card-body,
  .tile-layout-four .card-body,
  .tile-layout-five .card-body {
  text-align: center;
}

.tile-layout-one .card-title a,
  .tile-layout-two .card-title a,
  .tile-layout-three .card-title a {
  color: var(--light-color);
}

/* Tile layout one */
.tile-layout-one img.card-img-top {
  object-position: 100% 33%;
  transition: transform 0.3s ease-in-out;
}

.tile-layout-one .card-body {
  background-color: var(--primary-color);
  transition: background-color 0.2s ease;
  z-index: 999;
}

.tile-layout-one .card-title,
  .tile-layout-one .card-text p {
  color: var(--light-color);
  margin-bottom: 0;
}

.tile-layout-one .card:hover img.card-img-top {
  transform: scale(1.1);
}

.tile-layout-one .card:hover .card-body {
  background-color: var(--primary-color);
}

/* Tile layout two */
.tile-layout-two .card {
  position: relative;
  transition: box-shadow 0.3s ease;
}

.tile-layout-two img.card-img-top {
  transition: transform 0.2s ease-in-out;
}

.tile-layout-two .card-body {
  background-color: var(--primary-color);
  bottom: -5px;
  position: absolute;
  transition: background-color 0.2s ease, bottom 0.2s ease-out;
  width: 100%;
}

.tile-layout-two .card-title,
  .tile-layout-two .card-text p {
  color: var(--light-color);
  margin-bottom: 0;
}

.tile-layout-two .card:hover .card-body {
  background-color: rgba(179, 29, 54, 0.7);
  bottom: 0;
}

/* Tile layout three */
.tile-layout-three .tiles {
  grid-gap: 1.5rem !important;
}

.tile-layout-three .tiles .card {
  background: #E3E3E3;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  margin-bottom: 0;
  padding: 0;
}

.tile-layout-three .tiles .card:hover,
  .tile-layout-three .tiles .card:focus-within {
  border: none;
  box-shadow: none;
}

.tile-layout-three img.card-img-top {
  display: none !important;
}

.tile-layout-three .tiles .card-body {
  height: 100%;
  padding: 30px;
}

.tile-layout-three .tiles .tile-link,
  .tile-layout-three .tiles .tile-link:visited {
  align-items: flex-start;
  color: #242424;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-decoration: none;
}

.tile-layout-three .tiles .tile-link:hover,
  .tile-layout-three .tiles .tile-link:focus-visible {
  color: #242424;
  text-decoration: none;
}

.tile-layout-three .tiles .tile-link::after {
  content: none;
}

.tile-layout-three .tiles .card .card-body .tile-link::after,
  .tile-layout-three .tiles .card:not(:has(.card-body .tile-link)) > .tile-link::after {
  color: #3a3a3a;
  content: "Explore jobs\00a0\2192";
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 30px;
}

.tile-layout-three .tiles .card-title {
  font-size: 22px;
  line-height: 1.25;
}

.tile-layout-three .tiles .card-text p {
  color: #66625e;
}
/* Tile layout four */
.tile-layout-four .tiles,
  .tile-layout-four .gallery-posts {
  grid-gap: 0.3rem;
}

.tile-layout-four .card {
  --bs-card-border-radius: 0;
  --bs-card-inner-border-radius: 0;
  border: none;
}

.tile-layout-four img.card-img-top {
  transition: transform 0.2s ease-in-out;
}

.tile-layout-four .card-body {
  padding: 0 1rem;
  position: absolute;
  top: 35%;
  width: 100%;
  z-index: 3;
}

.tile-layout-four .card-subtitle,
  .tile-layout-four .card-text {
  display: none;
}

.tile-layout-four .card-title,
  .tile-layout-four .card-subtitle,
  .tile-layout-four .card-text p {
  color: var(--light-color);
}

.tile-layout-four .card:hover img.card-img-top {
  transform: scale(1.08);
}

.tile-layout-four .card:hover .card-subtitle,
  .tile-layout-four .card:hover .card-text {
  display: inherit;
}

.tile-layout-four .card:hover:before {
  background-color: rgba(179, 29, 54, 0.7);
}

.tile-layout-four .card:before {
  background-color: rgba(137, 137, 137, 0.15);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .2s ease;
  z-index: 2;
}

.tile-layout-four .card:nth-child(1) img {
  height: 300px;
}

/* Tile layout five */
.tile-layout-five .tiles,
  .tile-layout-five .gallery-posts {
  grid-gap: 0.3rem;
}

.tile-layout-five .card {
  --bs-card-border-radius: 0;
  --bs-card-inner-border-radius: 0;

  transition: 0.5s all ease-in-out;
}

.tile-layout-five img.card-img-top {
  transition: transform 0.2s ease-in-out;
}

.tile-layout-five .card-body {
  padding: 0 1rem;
  text-transform: uppercase;
  z-index: 3;
}

.tile-layout-five .card-title {
  background-color: var(--primary-color);
  color: var(--light-color);
  left: 0;
  padding: 14px;
  position: absolute;
  text-align: left;
  top: 20px;
  width: 50%;
}

.tile-layout-five .card-text {
  background-color: rgba(108, 117, 125, 0.5);
  border-radius: 3px;
  bottom: 10px;
  display: none;
  left: 50%;
  margin: 0 auto;
  padding: 10px;
  position: absolute;
  text-align: center;
  transform: translate(-50%, 0%);
  width: 100px;
}

.tile-layout-five .card-text p {
  color: var(--light-color);
  margin: 0;
}

.tile-layout-five .card-title:after {
  color: var(--light-color);
  content: '\f105';
  display: inline-block;
  font-family: 'Font Awesome 7 Free';
  margin-left: 6px;
}

.tile-layout-five .card:hover .card-title {
  background-color: rgba(179, 29, 54, 0.7);
  color: var(--light-color);
}

.tile-layout-five .card:hover .card-title:after {
  color: var(--light-color);
}

.tile-layout-five .card:hover .card-text {
  background-color:  var(--primary-color);
  display: inherit;
}

/** Job Search Page **/

.easy-autocomplete-container .eac-category {
  color: var(--dark-color) !important;
}
.easy-autocomplete-container .eac-item * {
  color: var(--dark-color) !important;
}
.eac-item a:hover {
  background-color: transparent !important;
  color: inherit;
  text-decoration: none;
}
/* Search table and filters */
.job-search-results-table .job-search-results-title a {
  color:var(--primary-color);
}
.job-search-filter-header {
  font-size: 20px !important;
}
.block-job-search-results .job-search-results table, .block-job-search-results .job-search-results .table-counts {
  font-size: inherit !important;
}
.table>:not(caption)>*>* {
  padding: 0.7rem 0.5rem;
}

/* Display the left-hand job filters in the requested order. */
.block-job-search-results .job-search-side-filters .job-search-filter-groups > section {
  display: flex;
  flex-direction: column;
}



.block-job-search-results .job-search-filter-departments {
  order: 1;
}
.block-job-search-results .job-search-filter-dropdown-field-8-values {
  order: 2;
}

.block-job-search-results .job-search-filter-employment-types {
  order: 3;
}

.block-job-search-results .job-search-filter-dropdown-field-1-values {
  order: 4;
}

.block-job-search-results .job-search-filter-dropdown-field-5-values {
  order: 5;
}

.block-job-search-results .job-search-filter-dropdown-field-6-values {
  order: 6;
}

.block-job-search-results .job-search-filter-neighbourhoods {
  order: 7;
}

/* Generic search cards */
@media (min-width: 992px) {
  .job-search-results-card-col {
    flex: 0 0 var(--card-columns);
    max-width: var(--card-columns);
  }
}
@media (min-width: 768px) {
  .job-search-results-dropdown-filter-col {
    flex: 0 0 var(--filter-columns);
    max-width: var(--filter-columns);
  }
}
.job-search-results-card {
  border: 1px solid #ececec;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
  margin-bottom: 6px;
  background: var(--card-background-color);
}
.job-search-results-card-title a {
  color: #000000;
  font-size: 22px;
}
.job-search-results-summary {
  font-size: 16px;
}
.job-search-results-card-body {
  padding: 0px;
}
.job-search-results-footer {
  background: var(--card-background-color);
  border-top: 0px;
  padding: 10px 0px;
}
.job-search-results-footer a {
  background: var(--card-background-color);
  color: var(--primary-color);
}
.job-component-details {
  padding-top: 8px;
}
.block-job-search-results .job-search-results .job-search-filter-groups {
  width: 100%;
}

.job-search-filter-groups {
  background-color: var(--light-color) !important;
}

.job-search-control input {
  border-radius: var(--input-border-radius) !important;
  border: 1px solid var(--input-border-color);
}
.job-search-dropdown-filters select {
  padding: 10px 10px;
  margin-bottom: 6px;
  border-radius: var(--input-border-radius);
  border: 1px solid var(--input-border-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  color: var(--dark-color);
  background-color: var(--light-color);
}
.badge {
  background-color: var(--primary-color) !important;
  border-radius: var(--border-radius);
  color: var(--light-color);
}
.page-item.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--light-color);
  word-break: normal !important;
}
.page-link {
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .pagination li.page-item {
    display: none;
  }
  .pagination li.prev,
    .pagination li.next {
    display: inline-block;
  }
  .pagination li.active {
    display: inline-block;
  }
  .pagination li.page-item:has(+ .active) {
    display: inline-block;
  }
  .pagination li.active + li.page-item {
    display: inline-block;
  }
}
.job-search-results .job-search-collapse {
  font-size: 16px !important;
}
.job-search-results .job-search-collapse:after {
  content: "\F64D";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 600 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  margin-left: 2px;
}
@media (max-width: 767px) {
  .job-search-control input {
    margin-bottom: 8px;
  }
}
/* Jobs list content block */
.job {
  background: transparent;
  padding: 0px;
}
.job .job-title {
  margin-bottom: 10px;
  color:var(--primary-color);
}
.job-summary {
  padding-top: 12px;
  color: #444444 !important;
}
.block-jobs .job {
  margin-bottom: 16px;
}
.job-list-cards .jobs-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
}

.job-list-cards .job {
  position: relative;
  width: auto;
  margin: 0 !important;
  padding: 0;
  display: flex;
  border: 1px solid #8d9399;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.job-list-cards .job:hover,
  .job-list-cards .job:focus-within {
  border-color: #596067;
  box-shadow: 0 16px 32px rgba(36, 36, 36, 0.08);
}

.job-list-cards .job > a, .job-list-cards .job > a:visited {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 22px;
  padding-right: 6.5rem;
  color: #242424;
  text-decoration: none;
}

.job-list-cards .job > a:hover,
  .job-list-cards .job > a:focus-visible {
  color: #242424;
  text-decoration: none;
}
.job-list-cards .job .job-field {
  display: block;
  color: #6e6e6e;
  font-size: 15px;
  margin: 0;
}

.job-list-cards .job > a:hover .job-title,
  .job-list-cards .job > a:focus-visible .job-title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}
.job-list-cards .job .job-department {
  order: 1;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.job-list-cards .job .job-title {
  order: 2;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.job-list-cards .job .job-city {
  order: 3;
}
.job-list-cards .job .job-requisition-identifier {
  order: 5;
}
.job-list-cards .job .job-state {
  order: 6;
}
.job-list-cards .job .job-country {
  order: 7;
}
.job-list-cards .job .job-location {
  order: 8;
}
.job-list-cards .job .job-category {
  order: 10;
}
.job-list-cards .job .job-level,
  .job-list-cards .job .job-levels {
  order: 11;
}
.job-list-cards .job .job-Division {
  order: 12;
}
.job-list-cards .job .job-ANZSCO {
  order: 13;
}
.job-list-cards .job .job-OSCA {
  order: 14;
}
.job-list-cards .job .job-DOHSection51 {
  order: 15;
}
.job-list-cards .job .job-Branch {
  order: 16;
}
.job-list-cards .job .job-work-type {
  order: 17;
}
.job-list-cards .job .job-FTE {
  order: 18;
}
.job-list-cards .job .job-Classification {
  order: 19;
}
.job-list-cards .job .job-occupation {
  order: 20;
}
.job-list-cards .job .job-location::before {
  content: "\f3c5";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  flex: 0 0 auto;
  margin-right: var(--bs-spacer-2);
  vertical-align: baseline;
}
.job-list-cards .job .job-employment-type {
  order: 4;
  display: block;
  align-self: stretch;
  width: 100%;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 5px;
}

.job-list-cards .job .job-employment-type .job-component-label {
  margin-right: 0.5rem;
}
.job-list-cards .job .job_spacer {
  display: none;
}

.job-list-cards .job:has(.job-salary-band) .job_spacer {
  display: block;
  order: 98;
  flex: 0 0 var(--bs-spacer-2);
}

.job-list-cards .job .job-salary-band {
  order: 99;
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 700;
}

.job-list-cards .job .job-salary-band::before {
  content: "$";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.job-list-cards .job .job-salary-band .job-component-label {
  margin-right: 0.35rem;
}

.salary-extra-text {
  font-size: calc(1em - 1px);
}

.job-list-cards .job-summary {
  padding: 12px 22px 22px 22px;
  color: #444444 !important;
}
@media (max-width: 991.98px) {
  .job-list-cards .jobs-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .job-list-cards .job > a,
    .job-list-cards .job > a:visited {
    padding: 20px;
  }

  .job-list-cards .job .job-salary-band {
    font-size: 1.15rem;
  }
}

.job-list-cards .job > .job-favourited:not(.label) {
  display: none;
}

.job-list-cards .job > .job-favourited.label {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--bs-spacer-1);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .job-list-cards .job > .job-favourited.label {
    top: 1.25rem;
    right: 1.25rem;
  }
}

.job-search-filter .badge {
  width: 100%;
  max-width: 34px;
}
input.job-search-results-filter[type="checkbox"] {
  accent-color: var(--primary-btn-bg);
}
/* Keep job advert attachments, helper note, video, and description in semantic source order. */
.block-job-description .job-position-description-document,
.block-job-description .pdf-reader-note,
.block-job-description .job-video-top,
.block-job-description .job-description {
  order: 30;
}

.block-job-description .pdf-reader-note {
  width: 100%;
  margin: 0 0 var(--bs-spacer-3);
}
/* Job search results cards */
.block-job-search-results .job-search-results-card-col {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 24px;
}

.block-job-search-results .job-search-results-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  height: 100%;
  margin-bottom: 0;
  border: 1px solid #8d9399;
  border-radius: 0;
  box-shadow: none;
}

.job-search-results-card-col .card {
  padding: 0;
}

.block-job-search-results .job-search-results-card:hover,
  .block-job-search-results .job-search-results-card:focus-within {
  border-color: #596067;
  box-shadow: 0 16px 32px rgba(36, 36, 36, 0.08);
}

.block-job-search-results .job-search-results-card-body {
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 210px;
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 20px 156px 20px 20px;
}

.block-job-search-results .job-search-results-card-title {
  order: 2;
  margin: 0 0 8px;
}

.block-job-search-results .job-search-results-card-title a {
  color: #242424;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.block-job-search-results .job-search-results-card-title a:hover,
  .block-job-search-results .job-search-results-card-title a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.block-job-search-results .job-component-details {
  display: contents;
  padding-top: 0;
}

.block-job-search-results .job-component-details .job-component-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.block-job-search-results .job-component-details > .job-component-list {
  order: 5;
}

.block-job-search-results .job-component-details > .job-component-list-department {
  order: 1;
}

.block-job-search-results .job-component-details > .job-component-list-location {
  order: 3;
}

.block-job-search-results .job-component-details > .job-component-list-employment_type {
  order: 4;
}

.block-job-search-results .job-component-list:has(.job-component-dropdown-field-5) {
  order: 6;
}

.block-job-search-results .job-component-list:has(.job-component-dropdown-field-5) ul {
  display: flex;
  flex-direction: column;
}

.block-job-search-results .job-component-department {
  position: static;
  color: var(--primary-color) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.block-job-search-results .job-component-department i,
  .block-job-search-results .job-component-dropdown-field-5 i {
  display: none;
}

.block-job-search-results .job-component-icon-and-text {
  display: block;
  margin-bottom: 10px;
  color: #6e6e6e;
  font-size: 15px;
  line-height: 1.4;
}

.block-job-search-results
  .job-component-icon-and-text:not(.job-component-department):not(.job-component-dropdown-field-5) {
  padding-left: calc(1.25rem + var(--bs-spacer-2));
}

.block-job-search-results
  .job-component-icon-and-text:not(.job-component-department):not(.job-component-dropdown-field-5)
  > i {
  display: inline-block;
  width: 1.25rem;
  margin-right: var(--bs-spacer-2);
  margin-left: calc(-1.25rem - var(--bs-spacer-2));
  text-align: center;
  vertical-align: baseline;
}

.block-job-search-results .job-component-label {
  flex: 0 0 auto;
  margin-right: 0.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.block-job-search-results .job-component-value {
  min-width: 0;
  overflow-wrap: break-word;
}

.block-job-search-results .job-component-icon-and-text.collapse:not(.show) {
  display: none;
}

.block-job-search-results .job-search-results-summary {
  margin: 10px 0 0;
  max-width: 620px;
  color: #1c1c1c;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.block-job-search-results .job-component-dropdown-field-5 {
  position: static;
  order: 99;
  display: block;
  margin-top: 6px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.block-job-search-results .job-component-dropdown-field-5::before {
  content: "$";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.block-job-search-results
  .job-component-dropdown-field-5
  .job-component-label {
  margin-right: 0.35rem;
}

.block-job-search-results .job-search-results-footer {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  margin: 20px 20px 0 0;
  padding: 0;
  border-top: 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.block-job-search-results .job-search-results-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 12px 18px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  color: #242424;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.block-job-search-results .job-search-results-footer a i {
  display: none;
}

.block-job-search-results .job-search-results-footer a:hover,
  .block-job-search-results .job-search-results-footer a:focus-visible {
  background: #fff5f1;
  color: #242424;
  text-decoration: none;
}

@media (max-width: 767px) {
  .block-job-search-results .job-search-results-card {
    grid-template-columns: 1fr;
  }

  .block-job-search-results .job-search-results-card-body {
    min-height: 0;
    padding: 20px;
  }

  .block-job-search-results .job-search-results-footer {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin: 0 20px 20px;
  }

  .block-job-search-results .job-search-results-footer a {
    min-width: 0;
  }
}

/* Order the preferred job details on search-result cards. */
.block-job-search-results .job-component-details > .job-component-list {
  order: 9;
}

.block-job-search-results .job-component-details > .job-component-list-department {
  order: 1;
}

.block-job-search-results .job-component-details > .job-component-list:not([class*="job-component-list-"]),
.block-job-search-results .job-component-details > .job-component-list:not([class*="job-component-list-"]) > ul {
  display: contents;
}

.block-job-search-results .job-component-details > .job-component-list:not([class*="job-component-list-"]) > ul > .job-component-icon-and-text:not(.job-component-dropdown-field-5) {
  order: 9;
}

.block-job-search-results .job-component-list:has(.job-component-dropdown-field-7),
.block-job-search-results .job-component-dropdown-field-7 {
  order: 3;
}

.block-job-search-results .job-component-list-employment_type {
  order: 4;
}

.block-job-search-results .job-component-list:has(.job-component-closing-at),
.block-job-search-results .job-component-list:has(.job-component-closing-on),
.block-job-search-results .job-component-closing-at,
.block-job-search-results .job-component-closing-on {
  order: 5;
}

.block-job-search-results .job-component-list:has(.job-component-dropdown-field-2),
.block-job-search-results .job-component-dropdown-field-2 {
  order: 6;
}

.block-job-search-results .job-component-list:has(.job-component-dropdown-field-1),
.block-job-search-results .job-component-dropdown-field-1 {
  order: 7;
}

.block-job-search-results .job-component-list:has(.job-component-string-field-4),
.block-job-search-results .job-component-string-field-4 {
  order: 8;
}

.eac-item span, .eac-item span b {
  font-weight: 400 !important;
}

/** Job Advert Page **/

.job-description a:not(.btn) {
  text-decoration: underline;
  font-weight: 400;
}
/* Side panels */

.side-panel {
  box-shadow: var(--card-box-shadow);
  padding: 40px 25px;
  margin-bottom: 20px;
  border-radius: 6px;
}
.side-panel .job-title {
  font-size: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}
.side-panel .job-field {
  color: #484848;
  font-size: 14px;
  font-weight: 600;
}
.side-panel h3 {
  font-size: 21px;
}
.side-panel .job-summary {
  margin-top: 2px;
  padding-top: 2px;
}
/* Advert shell */
.row-card .page-row-container {
  background: #ffffff !important;
  padding: 30px 44px;
  border-radius: 4px;
}
.job-details-top-section p .editor-placeholder {
  background: #e3e3e3;
  padding: 4px 10px;
  border-radius: 6px;
  margin: 2px 8px;
}

.job-details-top-section p .editor-placeholder:first-child {
  margin-left: 0;
}
.apply-now-wrapper {
  background: #cdcdcd;
  padding: 20px 40px;
}
/* Document buttons */
.job-position-description-document button,
  .job-position-description-document a.button,
  .job-position-description-document .btn {
  background-color: transparent !important;
  color: var(--primary-btn-bg) !important;
  border: 2px solid var(--primary-btn-bg) !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  text-align:left;
}

.job-position-description-document button:hover,
  .job-position-description-document a.button:hover,
  .job-position-description-document .btn:hover {
  background-color: var(--primary-btn-bg) !important;
  color: #ffffff !important;
}
/* Advert summary */
.block-job-description .page-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.block-job-description .job-title {
  order: 2;
  max-width: 980px;
  margin: 0 0 var(--bs-spacer-3);
  color: var(--dark-color);
  font-size: var(--font-size-h1) !important;
  font-weight: 800;
  line-height: 1.15;
}

.block-job-description .job-component-details,
  .block-job-description .job-component-list,
  .block-job-description .job-component-list > ul {
  display: contents;
}

.block-job-description .job-component-list:has(> p .more),
  .block-job-description .job-component-list:has(> p .less) {
  order: 10;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 980px;
}

.block-job-description .job-component-list:has(> p .more) > p,
  .block-job-description .job-component-list:has(> p .less) > p {
  order: 100;
  margin: calc(var(--bs-spacer-1) * -1) 0 var(--bs-spacer-3);
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-department),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-department) {
  order: 1;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-requisition-identifier),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-requisition-identifier) {
  order: 3;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-7),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-7) {
  order: 4;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-employment-type),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-employment-type) {
  order: 5;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-location),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-location) {
  order: 6;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-closing-at),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-closing-at),
  .block-job-description .job-component-list:has(> p .more):has(.job-component-closing-on),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-closing-on) {
  order: 7;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-3),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-3) {
  order: 8;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-8),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-8),
  .block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-9),
  .block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-9) {
  order: 9;
}

.block-job-description .job-component-icon-and-text {
  order: 10;
  display: flex;
  align-items: baseline;
  width: 100%;
  max-width: 980px;
  margin: 0 0 var(--bs-spacer-3);
  color: var(--dark-color);
  font-size: var(--font-size-paragraph);
  line-height: 1.45;
}

.block-job-description .job-component-icon-and-text > i {
  flex: 0 0 1.25rem;
  width: 1.25rem;
  margin-right: var(--bs-spacer-1);
  color: var(--dark-color);
  font-size: 0.9em;
  text-align: center;
}

.block-job-description .job-component-label {
  flex: 0 0 auto;
  margin-right: 0.35rem;
  font-weight: 600;
  white-space: nowrap;
}

.block-job-description .job-component-value {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--navbar-color);
  text-align: left;
  overflow-wrap: break-word;
}

.block-job-description .job-component-department {
  order: 1;
  margin-bottom: var(--bs-spacer-2);
  font-size: var(--font-size-h5);
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary-color) !important;
}

.block-job-description .job-component-department > i,
  .block-job-description .job-component-department > .job-component-label {
  display: none;
}

.block-job-description .job-component-department .job-component-value {
  color: var(--dark-color);
  font-weight: 800;
}

.block-job-description .job-component-requisition-identifier {
  order: 3;
  margin-bottom: var(--bs-spacer-3);
  font-size: var(--font-size-h5);
  font-weight: 800;
}

.block-job-description .job-component-requisition-identifier > i {
  display: none;
}

.block-job-description .job-component-requisition-identifier .job-component-label,
  .block-job-description .job-component-requisition-identifier .job-component-value {
  color: var(--dark-color);
  font-weight: 800;
}

.block-job-description .job-component-dropdown-field-7 {
  order: 4;
}

.block-job-description .job-component-employment-type {
  order: 5;
}

.block-job-description .job-component-location {
  order: 6;
}

.block-job-description .job-component-closing-on {
  order: 7;
}

.block-job-description .job-component-dropdown-field-3 {
  order: 8;
}

.block-job-description .job-component-dropdown-field-8,
  .block-job-description .job-component-dropdown-field-9 {
  order: 9;
}

.block-job-description .job-component-icon-and-text:not(.job-component-requisition-identifier):not(.job-component-department) {
  display: block;
}

.block-job-description .job-component-list .job-component-icon-and-text.collapse:not(.show) {
  display: none;
}

.block-job-description .salary-super-note-wrapper {
  order: 19;
  width: 100%;
  max-width: 980px;
  margin: 0 0 var(--bs-spacer-3);
}

.block-job-description .salary-super-note {
  margin: 0 0 var(--bs-spacer-2);
  color: var(--dark-color);
  font-size: var(--font-size-paragraph);
  line-height: 1.45;
}

.block-job-description .salary-super-note-rule {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--input-border-color);
  opacity: 1;
}

.block-job-description turbo-frame,
  .block-job-description .job-description-controls {
  order: 20;
}

.block-job-description .job-description {
  margin-top: var(--bs-spacer-3);
}

@media (max-width: 767.98px) {
  .block-job-description .job-title {
    font-size: calc(var(--font-size-h1) * 0.8) !important;
  }

  .block-job-description .job-component-icon-and-text {
    align-items: flex-start;
  }

  .block-job-description .job-component-icon-and-text > i {
    margin-top: 0.25rem;
  }

  .block-job-description
    .job-component-icon-and-text:not(.job-component-requisition-identifier):not(.job-component-department) {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    column-gap: var(--bs-spacer-1);
    row-gap: calc(var(--bs-spacer-1) / 2);
    margin-bottom: var(--bs-spacer-3);
  }

  .block-job-description
    .job-component-icon-and-text:not(.job-component-requisition-identifier):not(.job-component-department)
    > i {
    grid-column: 1;
    grid-row: 1;
    margin-right: 0;
  }

  .block-job-description
    .job-component-icon-and-text:not(.job-component-requisition-identifier):not(.job-component-department)
    .job-component-label {
    grid-column: 2;
    grid-row: 1;
    margin-right: 0;
  }

  .block-job-description
    .job-component-icon-and-text:not(.job-component-requisition-identifier):not(.job-component-department)
    .job-component-value {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
  }

  .block-job-description
    .job-component-icon-and-text:not(.job-component-requisition-identifier):not(.job-component-department):not(:has(.job-component-label))
    .job-component-value {
    grid-row: 1;
  }

  .block-job-description
    .job-component-list-location
    .job-component-location:not(:first-child)
    > i {
    visibility: hidden;
  }
}

/* Keep multi-value job advert attributes inline without replacing the platform collapse toggle. */
@media (min-width: 768px) {
  .block-job-description .page-block {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: var(--bs-spacer-3);
  }

  .block-job-description .job-title,
  .block-job-description .job-component-department,
  .block-job-description .salary-super-note-wrapper,
  .block-job-description turbo-frame,
  .block-job-description .job-description-controls,
  .block-job-description .job-position-description-document,
  .block-job-description .pdf-reader-note,
  .block-job-description .job-description {
    flex: 0 0 100%;
    width: 100%;
  }

  .block-job-description .job-component-list:has(> p .more),
  .block-job-description .job-component-list:has(> p .less) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: var(--bs-spacer-3);
    row-gap: 0;
  }

  .block-job-description .job-component-list:has(> p .more) > p,
  .block-job-description .job-component-list:has(> p .less) > p {
    flex: 0 0 100%;
    width: 100%;
  }

  .block-job-description .job-component-icon-and-text:not(.job-component-department):not(.collapse):not(.collapsing),
  .block-job-description .job-component-icon-and-text.collapse.show:not(.job-component-department) {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    max-width: 980px;
    margin: 0 0 var(--bs-spacer-3);
  }

  .block-job-description .job-component-list:has(> p .more) .job-component-icon-and-text:not(.job-component-department):not(.collapse):not(.collapsing),
  .block-job-description .job-component-list:has(> p .more) .job-component-icon-and-text.collapse.show:not(.job-component-department),
  .block-job-description .job-component-list:has(> p .less) .job-component-icon-and-text:not(.job-component-department):not(.collapse):not(.collapsing),
  .block-job-description .job-component-list:has(> p .less) .job-component-icon-and-text.collapse.show:not(.job-component-department) {
    display: inline-flex;
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
    margin: 0 var(--bs-spacer-3) var(--bs-spacer-2) 0;
  }

  .block-job-description .job-component-list .job-component-icon-and-text.collapse:not(.show) {
    display: none;
  }
}
.block-job-description .job-video-top {
    position: relative;
    height: auto;
    width: 100%;
}

/* Order the preferred job details on advert pages. */
.block-job-description .job-component-requisition-identifier,
.block-job-description .job-component-location,
.block-job-description .job-component-dropdown-field-3,
.block-job-description .job-component-dropdown-field-8,
.block-job-description .job-component-dropdown-field-9 {
  order: 10;
}

.block-job-description .job-component-dropdown-field-7 {
  order: 3;
}

.block-job-description .job-component-employment-type {
  order: 4;
}
/*order change for FTE starts*/

/*.block-job-description .job-component-closing-at,
.block-job-description .job-component-closing-on {
  order: 5;
}

.block-job-description .job-component-dropdown-field-2 {
  order: 6;
}

.block-job-description .job-component-dropdown-field-1 {
  order: 7;
}

.block-job-description .job-component-string-field-4 {
  order: 8;
}*/

li.job-component-icon-and-text.job-component-string-field-2 {
  order: 5;
}

.block-job-description .job-component-closing-at,
.block-job-description .job-component-closing-on {
  order: 6;
}

.block-job-description .job-component-dropdown-field-2 {
  order: 7;
}

.block-job-description .job-component-dropdown-field-1 {
  order: 8;
}

.block-job-description .job-component-string-field-4 {
  order: 9;
}
/*order change for FTE Ends*/
.block-job-description .job-component-list:has(> p .more):has(.job-component-requisition-identifier),
.block-job-description .job-component-list:has(> p .less):has(.job-component-requisition-identifier),
.block-job-description .job-component-list:has(> p .more):has(.job-component-location),
.block-job-description .job-component-list:has(> p .less):has(.job-component-location),
.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-3),
.block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-3),
.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-8),
.block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-8),
.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-9),
.block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-9) {
  order: 10;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-7),
.block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-7) {
  order: 3;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-employment-type),
.block-job-description .job-component-list:has(> p .less):has(.job-component-employment-type) {
  order: 4;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-closing-at),
.block-job-description .job-component-list:has(> p .less):has(.job-component-closing-at),
.block-job-description .job-component-list:has(> p .more):has(.job-component-closing-on),
.block-job-description .job-component-list:has(> p .less):has(.job-component-closing-on) {
  order: 5;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-2),
.block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-2) {
  order: 6;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-dropdown-field-1),
.block-job-description .job-component-list:has(> p .less):has(.job-component-dropdown-field-1) {
  order: 7;
}

.block-job-description .job-component-list:has(> p .more):has(.job-component-string-field-4),
.block-job-description .job-component-list:has(> p .less):has(.job-component-string-field-4) {
  order: 8;
}

/** Shared Job Components **/

/* Keep employment types on one row and defer extra values to Show More when available. */
.block-job-search-results .job-component-list-employment_type > ul,
.block-job-description .job-component-list-employment_type > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: var(--bs-spacer-2);
}

.block-job-description .job-component-list-employment_type > ul {
  order: 4;
  width: 100%;
  max-width: 980px;
}

.block-job-search-results .job-component-list-employment_type > ul > .job-component-employment-type {
  display: block;
  width: auto;
}

.block-job-description .job-component-list-employment_type > ul > .job-component-employment-type {
  display: inline-flex;
  width: auto;
}

.block-job-search-results .job-component-list-employment_type:has(> p .more) > ul > .job-component-employment-type:nth-child(n + 2),
.block-job-description .job-component-list-employment_type:has(> p .more) > ul > .job-component-employment-type:nth-child(n + 2) {
  display: none;
}

.block-job-search-results .job-component-list-employment_type:has(> p .less.show) > ul > .job-component-employment-type {
  display: block;
}

.block-job-description .job-component-list-employment_type:has(> p .less.show) > ul > .job-component-employment-type {
  display: inline-flex;
}

/** Candidate Settings **/

.candidate-settings-panel {
  background-color: #f9f9f9;
  padding: 30px 42px;
}
.candidate-settings {
  background: #f0f0f0;
  margin: 10px 0px;
  padding: 50px;
}
.candidate-settings-panel i {
  color: var(--dark-color);
}
.candidate-settings-panel h3 {
  font-size: 22px;
}
.exit-call-to-action-modal .modal-content {
  border-radius: 8px;
}
.candidate-settings-panel .candidate-phone-number {
  display: none;
}
.block-candidate-settings .row > [class*="col-md-"]:has(> .candidate-settings-panel) {
  flex: 0 0 100%;
  max-width: 100%;
}

.block-candidate-settings .candidate-settings-panel {
  width: 100%;
  border-bottom: 1px solid #b1b1b1;
}
.candidate-settings-panel i, .title-panel .accordion-toggle:after {
  font-size: 16px;
}
/* Favourites */
.candidate-settings-favourite-source > .row {
  margin-bottom: 0 !important;
  padding: var(--bs-spacer-4);
  border-bottom: 1px solid var(--input-border-color);
}

.candidate-settings-favourite-source > .row strong {
  display: block;
}

.candidate-settings-favourite-source > .row strong + a {
  display: inline-block;
  margin-top: var(--bs-spacer-1);
}

.candidate-settings-favourite-source:nth-of-type(odd) > .row {
  background-color: var(--light-color);
}

.candidate-settings-favourite-source:nth-of-type(even) > .row {
  background-color: color-mix(in srgb, var(--dark-color) 5%, var(--light-color));
}

/* Job alerts */
.candidate-settings-panel .candidate-settings-job-alert {
  margin-bottom: 0;
  padding: var(--bs-spacer-4);
  padding-right: calc(var(--bs-spacer-5) + var(--bs-spacer-3));
  border-bottom: 1px solid var(--input-border-color);
}

.candidate-settings-job-alert:nth-of-type(odd) {
  background-color: var(--light-color);
}

.candidate-settings-job-alert:nth-of-type(even) {
  background-color: color-mix(in srgb, var(--dark-color) 5%, var(--light-color));
}

.candidate-settings-job-alert:nth-of-type(odd) .label {
  background-color: color-mix(in srgb, var(--dark-color) 8%, var(--light-color));
  border-color: color-mix(in srgb, var(--dark-color) 8%, var(--light-color));
}

.candidate-settings-job-alert:nth-of-type(even) .label {
  background-color: var(--light-color);
  border-color: var(--light-color);
}

.candidate-settings-job-alert .candidate-settings-job-alert-delete {
  top: var(--bs-spacer-4);
  right: var(--bs-spacer-4);
}

.candidate-settings-panel [id^="job_alerts_title_"] .button_to .btn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.candidate-settings-panel [id^="job_alerts_title_"] .button_to .btn:hover,
  .candidate-settings-panel [id^="job_alerts_title_"] .button_to .btn:focus-visible {
  background: transparent;
  color: var(--primary-btn-bg-hover);
  text-decoration-thickness: 2px;
}

.candidate-settings-panel [id^="job_alerts_title_"] .button_to .btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

/** Cookie Consent **/

.offcanvas.offcanvas-bottom, .offcanvas.offcanvas-top {
  height: fit-content !important;
}
.consent-modal .image-wrapper {
  width: 100%;
  text-align: left;
}
.consent-reject, .reject-performance-cookies {
  background: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
  border: 1px solid var(--secondary-btn-border-color);
}
.consent-agree, .consent-confirm {
  background: var(--primary-btn-bg);
  color: var(--primary-btn-color);
  border: 1px solid var(--primary-btn-border-color);
}
.consent-reject:hover,
  .reject-performance-cookies:hover,
  .consent-reject:focus,
  .reject-performance-cookies:focus,
  .consent-reject:active,
  .reject-performance-cookies:active,
  .consent-reject:disabled,
  .reject-performance-cookies:disabled {
  background: var(--secondary-btn-bg-hover);
  color: var(--secondary-btn-color-hover);
  border: 1px solid var(--secondary-btn-border-color-hover);
}
.consent-agree:hover,
  .consent-confirm:hover,
  .consent-agree:focus,
  .consent-confirm:focus,
  .consent-agree:active,
  .consent-confirm:active,
  .consent-agree:disabled,
  .consent-confirm:disabled {
  background: var(--primary-btn-bg-hover);
  color: var(--primary-btn-color-hover);
  border: 1px solid var(--primary-btn-border-color-hover);
}
@media (max-width: 767.98px) {
  #cookie_consent_description {
    font-size: 15px;
  }
  #implied_consent_footer {
    height: auto;
  }
}
.cookie-description * {
  color: var(--dark-color);
}

/** Jobs List Card Labels **/

.job-list-cards .job .job-component-label {
  flex: 0 0 auto;
  min-width: max-content;
  margin-right: 0.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.job-list-cards .job .job-component-value {
  min-width: 0;
  overflow-wrap: break-word;
}
a.dropdown-item:visited {
    color: inherit;
}

/* Home page banner */
.hero {
  padding: 3rem !important;
  --font-size-h1: 56px;
  --font-size-h2: 24px;
}

@media (max-width: 767.98px) {
  .hero {
    padding: 1rem !important;
  }
}

