/*------------------------------------*\
CANDIDATE AREA STYLES
\*------------------------------------*/
/**
 *  The candidate portal uses 2 main stylesheets
 *  Frame.css and Candidate.css
 *
 *  As the candidate area styles have to be located in the front end we have to create 2 separate sass projects.
 *  Frame.css gets compiled backend and contains all the standard styles for forms and tables.
 *  Candidate.css gets compiled frontend and contains all the branding and styles which make the website unique.
 *
 *  In an ideal world these would be compiled into one stylesheet and variables overwritten to avoid repeated 
 *  code just like in the client/vendor area. Having Frame.css compiled in the backend allows us to embed this 
 *  stylesheet as a webresource which allows us to update these styles for all customers on a version all at once.
 */
/*------------------------------------*\
 * BRANDING VARIABLES
\*------------------------------------*/
/**
 * $is-demo 
 * Remove burboh elements like topbar waves
 * This will also set fonts and background color be more neutral for demoing
 * Must be set to true to change banner images and logo size
 */
/** 
 * $demo-logo-max-width
 * Size of website logo used in the header. 
 * Make this bigger or smaller to make your logo fit nicely.
 */
/** 
 * $demo-banner-url 
 * Enter the urls for banner images below.
 * Recommend using https://unsplash.com/ to find images
 * Find the image you want click the fullscreen button to zoom in on it. Then right click and copy image address
 * For best results use images which are wider than they are tall.
 */
/*------------------------------------*\
 * BASE VARIABLES
 * For branding demos you shouldnt need to touch anything below here 
\*------------------------------------*/
/*------------------------------------*\
 * SPACING
\*------------------------------------*/
/*------------------------------------*\
 * FONTS
\*------------------------------------*/
/*------------------------------------*\
 * MEDIA QUERIES
\*------------------------------------*/
/**
 *  Animations saves having to vendor prefix everything
 */
/**
 *  Breakpoints add breakpoint quick and easy
 *  Must be turn on with the $use-media variable
 */
/*------------------------------------*\
GLOBAL
\*------------------------------------*/
html {
  background: #f1f1f1;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html.offset {
  scroll-padding-bottom: 250px;
}
@media screen and (max-width: 820px) {
  html.offset {
    scroll-padding-bottom: unset;
  }
}

body {
  color: #333;
}
body.scroll-stop {
  overflow: hidden;
}

/*
:focus {
    outline:solid 1px red !important; 
}*/
/*------------------------------------*\
LINKS
\*------------------------------------*/
a {
  color: #0b375f;
}

/*------------------------------------*\
HEADINGS
\*------------------------------------*/
/**
 *  Heading styles
 *  If you need to style a random element like a heading then use the .hN class 
 */
hgroup .hN {
  margin-bottom: 0;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h1, .h1 {
  font-size: 32px;
}

h2, .h2 {
  font-size: 24px;
}

h3, .h3 {
  font-size: 21px;
}

h4, .h4 {
  font-size: 16px;
}

.h2--underline {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 20px;
  text-align: center;
}

/**
 *  Classes for massive text use on hero images
 */
.kilo {
  font-size: 28px;
}
@media screen and (max-width: 510px) {
  .kilo {
    font-size: 20px;
  }
}

.mega {
  font-size: 48px;
}

.giga {
  font-size: 62px;
}

hr {
  border: 0;
  border-bottom: 1px solid #e1e1e1;
}

.text-center {
  text-align: center;
}

/*------------------------------------*\
VERTICAL RHYTHM
\*------------------------------------*/
/**
 *  Vertical Spacing
 *  This is used for maintaining consistent vertical rhythm though website 
 */
h1, h2, h3, h4, h5, h6, hgroup,
.h1, .h2, .h3, .h4, .h5, .h6,
ul, ol, dl,
blockquote, p, address,
table,
figure,
pre,
.media {
  margin-bottom: 24px;
}

.pull-right {
  float: right;
}

.js-menu {
  cursor: pointer;
}

.hideSearch {
  display: none;
}
@media screen and (max-width: 820px) {
  .hideSearch {
    display: block;
  }
}

.skip-link {
  background: #fff;
  color: #000;
  padding: 12px;
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.skip-link:active, .skip-link:focus {
  z-index: 100;
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  white-space: normal;
  width: auto;
}

.posRel {
  position: relative;
}
.posRel .skip-link:active, .posRel .skip-link:focus {
  position: relative;
}

/*
    IFRAME STYLES
    - - - - -
    - - - - -

    Iframes can't have a % or px width/height on the iframe tag, so we need CSS for this.
    frameborder attribute is now also obsolete

    Removing the iframe styles below will result in a FAIL for W3C validation

*/
iframe {
  border: 0;
}

.dfw-iframe-cntr iframe {
  width: 100%;
}

.dfw_iframe {
  width: 100%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.job-alerts-homepage .wrap {
  position: relative;
  z-index: 1;
}

/*------------------------------------*\
HELPER
\*------------------------------------*/
/**
 * Utility classes that get used a lot
 */
/*------------------------------------*\
CLEARFIX
\*------------------------------------*/
/**
 *  clearfix classes used for fixing collapsed divs
 *  use sass @extend to clear divs rather than filling markup with clearfix classes	
 */
.clearfix:after, .paginator:after, .image__list:after, .box:after, .profile-sidenav__item:after, .o-media:after, .header:after, .grid__item:after, .grid:after {
  content: "";
  display: table;
  clear: both;
}

.clearme {
  clear: both;
}

/*------------------------------------*\
LISTS
\*------------------------------------*/
.not-list, .box__list--nobullet {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/*------------------------------------*\
FLOATS
\*------------------------------------*/
.move--left {
  float: left;
}

.move--right {
  float: right;
}

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn't already have a class to which you could apply this
 * styling, e.g. if you need to float '.main-nav' left then add 'float:left;' to
 * that ruleset as opposed to adding the '.float--left' class to the markup.
 *
 * A lot of these classes carry '!important' as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important;
}

.float--left {
  float: left !important;
}

.float--none {
  float: none !important;
}

/**
 * Text alignment
 */
.text--left {
  text-align: left !important;
}

.text--center {
  text-align: center !important;
}

.text--right {
  text-align: right !important;
}

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important;
}

.weight--normal {
  font-weight: 400 !important;
}

.weight--semibold {
  font-weight: 600 !important;
}

/**
 * Add/remove margins
 */
.push {
  margin: 24px !important;
}

.push--top {
  margin-top: 24px !important;
}

.push--right {
  margin-right: 24px !important;
}

.push--bottom {
  margin-bottom: 24px !important;
}

.push--left {
  margin-left: 24px !important;
}

.push--ends {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.push--sides {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.push-half {
  margin: 12px !important;
}

.push-half--top {
  margin-top: 12px !important;
}

.push-half--right {
  margin-right: 12px !important;
}

.push-half--bottom {
  margin-bottom: 12px !important;
}

.push-half--left {
  margin-left: 12px !important;
}

.push-half--ends {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.push-half--sides {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.flush {
  margin: 0 !important;
}

.flush--top {
  margin-top: 0 !important;
}

.flush--right {
  margin-right: 0 !important;
}

.flush--bottom {
  margin-bottom: 0 !important;
}

.flush--left {
  margin-left: 0 !important;
}

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/**
 * Add/remove paddings
 */
.soft {
  padding: 24px !important;
}

.soft--top {
  padding-top: 24px !important;
}

.soft--right {
  padding-right: 24px !important;
}

.soft--bottom {
  padding-bottom: 24px !important;
}

.soft--left {
  padding-left: 24px !important;
}

.soft--ends {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.soft--sides {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.soft-half {
  padding: 12px !important;
}

.soft-half--top {
  padding-top: 12px !important;
}

.soft-half--right {
  padding-right: 12px !important;
}

.soft-half--bottom {
  padding-bottom: 12px !important;
}

.soft-half--left {
  padding-left: 12px !important;
}

.soft-half--ends {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.soft-half--sides {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.hard {
  padding: 0 !important;
}

.hard--top {
  padding-top: 0 !important;
}

.hard--right {
  padding-right: 0 !important;
}

.hard--bottom {
  padding-bottom: 0 !important;
}

.hard--left {
  padding-left: 0 !important;
}

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.text--success {
  color: #1b7e48 !important;
}

.text--danger {
  color: crimson !important;
}

.hidden {
  display: none !important;
}

.relative-me {
  position: relative;
}

/*------------------------------------*\
    MOBILE HIDDEN + DESKTOP HIDDEN
\*------------------------------------*/
.desktop-show {
  display: block;
}
@media screen and (max-width: 820px) {
  .desktop-show {
    display: none;
  }
}

.mobile-hidden {
  display: none;
}
@media screen and (max-width: 820px) {
  .mobile-hidden {
    display: block;
  }
}

.animated {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*------------------------------------*\
TABLES
\*------------------------------------*/
/**
 * Default tables should all use the .table class 
 */
.table {
  border: 0;
}
.table td, .table th {
  border: 0;
  border-bottom: solid 1px #e1e1e1;
}
.table th {
  background-color: #fff;
  color: #333;
  white-space: normal;
  font-weight: normal;
  border-bottom: solid 2px;
  border-color: #e1e1e1;
}
.table th a {
  color: #333;
}
.table tr:nth-of-type(even) {
  background-color: #f1f1f1;
}

/**
 *  CV Icons
 *  These appear in main tables and applicatin forms
 */
.quickview-candidatecv,
.quickview-admincv {
  width: 20px;
  height: 20px;
  display: block;
  background: url(../../images/icons/client/cv-small-quick.png) no-repeat center;
  text-indent: -9999px;
  margin-right: 3px;
}

.quickview-admincv {
  background: url(../../images/icons/client/cv-small-quick.png) no-repeat center;
}

.files-table th {
  background-color: #fff;
  color: #333;
  font-weight: normal;
  border: 0;
  border-bottom: solid 2px #e1e1e1;
}

.files-table tr:nth-of-type(even) {
  background-color: #f1f1f1;
}

.files-table tr:nth-of-type(odd) {
  background-color: transparent;
}

.files-table td {
  border: 0;
  border-bottom: solid 1px #e1e1e1;
}

.files-table td, .files-table th {
  padding: 0.7em;
}

/**
File upload button
*/
.files__icon .icon {
  color: #0b375f;
}
.files__icon .icon:hover {
  color: rgb(5.7075471698, 28.5377358491, 49.2924528302);
}

.dtable {
  display: table;
  width: 100%;
  table-layout: fixed;
  overflow: hidden;
}
.dtable.dtable--right {
  direction: rtl;
}
@media screen and (max-width: 820px) {
  .dtable.dtable--right {
    direction: ltr;
  }
}
.dtable.dtable--right .dtable__cell {
  direction: ltr;
}
.dtable .dtable__row {
  display: table-row;
}
.dtable .dtable__cell {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 820px) {
  .dtable .dtable__cell {
    display: block;
    float: left;
    width: 100%;
  }
}
.dtable .dtable__cell--inline {
  display: inline-block;
}

.dtable__cell--subtle {
  background: #f1f1f1;
}

.dtable__cell--brand {
  background: #0b375f;
  color: #fff;
}

.dtable__content {
  max-width: 624px;
  padding: 48px;
}
.dtable__content h2 {
  font-size: 32px;
}
@media screen and (max-width: 820px) {
  .dtable__content {
    max-width: 100%;
  }
}
.dtable__content.dtable__content--right {
  float: right;
}
@media screen and (max-width: 820px) {
  .dtable__content.dtable__content--right {
    float: left;
  }
}

.dtable__cell--padding {
  padding: 48px;
}

.dtable__cell--image {
  background-image: url(../../images/banners/banner-1.jpg);
  background-size: cover;
  position: relative;
  background-position: center;
  line-height: 0;
}
@media screen and (max-width: 820px) {
  .dtable__cell--image {
    min-height: 350px;
  }
}

.dtable__cell--teams {
  background-image: url(../../images/bgs/teams-1-sm.jpg);
}
@media screen and (min-width: 510px) {
  .dtable__cell--teams {
    background-image: url(../../images/bgs/teams-1-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .dtable__cell--teams {
    background-image: url(../../images/bgs/teams-1.jpg);
  }
}

.dtable__referral {
  min-height: 450px;
}
.dtable__referral .section__title, .dtable__referral .section__text {
  text-align: left;
}
@media screen and (max-width: 820px) {
  .dtable__referral {
    min-height: 0;
  }
  .dtable__referral .dtable__cell--padding {
    padding: 48px 0 0;
    text-align: center;
  }
  .dtable__referral .dtable__cell--padding .section__title, .dtable__referral .dtable__cell--padding .section__text {
    text-align: center;
  }
}

.dtable__cell--referral {
  background-image: url(../../images/bgs/referral-sm.jpg);
  border-radius: 10px;
}
@media screen and (min-width: 510px) {
  .dtable__cell--referral {
    background-image: url(../../images/bgs/referral-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .dtable__cell--referral {
    background-image: url(../../images/bgs/referral.jpg);
  }
}

.table-cookies {
  font-size: 14px;
  table-layout: fixed;
  min-width: 900px;
}
@media screen and (max-width: 50em) {
  .table-cookies th, .table-cookies td {
    white-space: normal;
  }
}

/*------------------------------------*\
FORMS
\*------------------------------------*/
textarea,
select,
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
.its-c-datepicker {
  border-color: #999;
  background-color: #fff;
}
textarea:hover,
select:hover,
input[type=date]:hover,
input[type=datetime]:hover,
input[type=datetime-local]:hover,
input[type=email]:hover,
input[type=month]:hover,
input[type=number]:hover,
input[type=password]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=text]:hover,
input[type=time]:hover,
input[type=url]:hover,
input[type=week]:hover,
.its-c-datepicker:hover {
  border-color: #333;
}

.title {
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  font-size: 21px;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.title h1, .title h2, .title h3, .title h4, .title h5, .title h6 {
  margin: 0;
}

.form .title:first-child {
  margin-top: 0;
}

.section-description {
  background: #fff;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: -9px;
  margin-top: 0.25em;
  padding-top: 1.5em;
  font-weight: normal;
  border-top: solid 1px #e1e1e1;
  font-size: 12px;
}

.label .btn--social {
  margin: 0;
  white-space: nowrap;
  vertical-align: middle;
}

legend,
.label {
  color: #333;
}

.uploadsection label span.uploadsection__socialuploadpromo {
  background: url("../../images/icons/socialpromo.png") no-repeat;
  display: block;
  width: 60px;
  height: 15px;
  margin-top: 2px;
}
@media screen and (max-width: 510px) {
  .uploadsection label span {
    display: inline-block;
  }
  .uploadsection label span.uploadsection__socialuploadpromo {
    float: none;
    display: inline-block;
    margin-top: 0px;
  }
}

.form--sjt .title:first-child {
  margin-top: 1.5em;
}
.form--sjt .row--stacked {
  margin-bottom: 48px;
}

.label {
  max-width: none;
  width: 100%;
  text-align: left;
  font-weight: normal;
  margin-bottom: 6px;
}
.label span + span {
  margin-left: 4px;
}

.content {
  max-width: none;
  width: 100%;
}

.row {
  margin-bottom: 1.5rem;
}

.inputrow {
  margin-bottom: 1.5rem;
  padding: 0;
}
.inputrow .label label,
.inputrow .inputrow .label span {
  margin-top: 0;
}

.row.is-read-only {
  margin-bottom: 0.75rem;
}
.row.is-read-only .label {
  float: left;
  font-weight: bold;
  text-align: left;
  padding-right: 24px;
  width: 30%;
  max-width: 300px;
  margin-bottom: 0;
}
@media screen and (max-width: 510px) {
  .row.is-read-only .label {
    width: 100%;
    max-width: 100%;
  }
}
.row.is-read-only .content {
  float: left;
  width: 70%;
  max-width: 100%;
}
@media screen and (max-width: 510px) {
  .row.is-read-only .content {
    width: 100%;
    max-width: 100%;
  }
}

.row.is-fullwidth {
  margin-bottom: 1.5rem;
}
.row.is-fullwidth p:last-child,
.row.is-fullwidth ul:last-child {
  margin-bottom: 0;
}

.fullwidth,
.fullwidth--landmark {
  margin: 0;
}

.row.sjt {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.candidate-files {
  margin-bottom: 1.5rem;
}

.row.is-read-only + .inputrow {
  margin-top: 1.5rem;
}

.inputrow + .row.is-read-only {
  margin-top: 1.5rem;
}

.row.is-read-only + .row.is-fullwidth {
  margin-top: 1.5rem;
}

@media screen and (max-width: 820px) {
  .label {
    width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 820px) {
  .content {
    width: 100%;
  }
}
.field-description {
  font-size: 12px;
  color: #333;
}

.field-help {
  font-size: 12px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.3);
}

/*UPLOAD FILE POPUP*/
#cloudfilediv .content, #localfilediv .content {
  width: 70%;
}
#cloudfilediv .label, #localfilediv .label {
  width: 30%;
}

.c-complete-questionnaire__table tr:nth-child(even) {
  background: #f1f1f1;
}

.c-complete-questionnaire__table th,
.c-complete-questionnaire__table td {
  border: 1px solid #e1e1e1;
}

.form--dataconsent {
  margin-bottom: 0;
}
.form--dataconsent .row:last-child {
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: #667074;
}

/*------------------------------------*\
BUTTONS
\*------------------------------------*/
/**
 *  Make your buttons look sexy in here
 *  Buttons inherit standard styles and colors from frame backend
 *  overwrite the ones you need in here
 */
.button {
  background-color: #0b375f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #0b375f;
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.button:hover {
  background-color: rgb(9.4122641509, 47.0613207547, 81.2877358491);
  color: #fff;
}
.button:active {
  border-color: rgb(8.3537735849, 41.7688679245, 72.1462264151);
  background-color: rgb(8.3537735849, 41.7688679245, 72.1462264151);
}
.button.is-incomplete {
  white-space: normal;
}
@media screen and (max-width: 820px) {
  .button {
    line-height: 1.5;
    padding: 6px 24px;
  }
}

.button-negative,
.linkbutton {
  border-color: #999;
  background-color: #f1f1f1;
  color: #333;
}
.button-negative:hover,
.linkbutton:hover {
  background-color: rgb(233.35, 233.35, 233.35);
  color: #333;
}
.button-negative:active,
.linkbutton:active {
  background-color: rgb(228.25, 228.25, 228.25);
  border-color: #999;
}

.button--main {
  background-color: #0b375f;
  color: #fff;
  border-color: #0b375f;
}
.button--main:hover {
  background-color: rgb(9.4122641509, 47.0613207547, 81.2877358491);
  color: #fff;
}
.button--main:active {
  border-color: rgb(8.3537735849, 41.7688679245, 72.1462264151);
  background-color: rgb(8.3537735849, 41.7688679245, 72.1462264151);
}

/**
* When a candidate has already applied to a vacancy
*/
.button.disabled,
.button[disabled=true],
.button[disabled=disabled] {
  background: #f1f1f1;
  color: #aaa;
  border-color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}
.button.disabled .icon,
.button[disabled=true] .icon,
.button[disabled=disabled] .icon {
  color: #aaa;
}
.button.disabled:hover, .button.disabled:active,
.button[disabled=true]:hover,
.button[disabled=true]:active,
.button[disabled=disabled]:hover,
.button[disabled=disabled]:active {
  background: #f1f1f1;
  color: #aaa;
  border-color: #ccc;
}

.button--downloads {
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  color: #333;
  margin-bottom: 12px;
}
.button--downloads:active, .button--downloads:hover {
  background-color: #f1f1f1;
  border-color: #e1e1e1;
  color: #333;
}

.button--tight {
  padding-left: 12px;
  padding-right: 12px;
}

.button--stretch {
  width: 100%;
  text-align: center;
}

.button--breath-bottom {
  margin-bottom: 24px;
}

.btn-clear {
  background-color: #fff;
  color: #333;
  text-decoration: underline;
}
.btn-clear:active {
  background-color: #fff;
}

.transparent-button {
  background: transparent;
  border: none;
}

/*USED ON V.DETAILS PAGE*/
.addtojob-container {
  display: block;
}

/**
 *  linkpanels
 *  These appear on dashboards
 */
.linkbuttons {
  float: right;
  width: 160px;
}
@media screen and (max-width: 820px) {
  .linkbuttons {
    display: none;
  }
}

.linkpanel {
  background-color: #0b375f;
  text-decoration: none;
  display: block;
  float: left;
  width: 80px;
  height: 70px;
  padding-top: 45px;
  font-size: 13px;
  text-align: center;
  border: solid 1px #fff;
  color: #fff;
}

.ico__mycvs {
  background-image: url(../../images/icons/mycvs.png);
  background-repeat: no-repeat;
  background-position: center 30%;
}

.ico__coverletters {
  background-image: url(../../images/icons/coverletters.png);
  background-repeat: no-repeat;
  background-position: center 25%;
}

.ico__timesheets {
  background-image: url(../../images/icons/timesheets.png);
  background-repeat: no-repeat;
  background-position: center 30%;
}

.ico__myfiles {
  background-image: url(../../images/icons/myfiles.png);
  background-repeat: no-repeat;
  background-position: center 30%;
}

.btn-settings {
  background: none;
  padding: 0;
  margin: 0;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
  color: #fff;
}

.button-danger {
  color: #fff;
  background: crimson;
}
.button-danger:active, .button-danger:hover {
  background-color: crimson;
}

.button-success {
  color: #fff;
  background: #1b7e48;
}
.button-success:active, .button-success:hover {
  background-color: #1b7e48;
}

/**
* BUTTON GROUPS
*/
.button-group .button {
  margin: 0 12px;
}
.button-group .button:first-of-type {
  margin-left: 0;
}
.button-group .button:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 820px) {
  .button-group .button {
    max-width: 120px;
  }
}
@media screen and (max-width: 510px) {
  .button-group .button {
    margin: 24px 0;
    display: block;
  }
}

.button-group--border-ends {
  border: 1px solid #e1e1e1;
  border-width: 1px 0;
}

/**
 *  Social Registering Buttons
 */
.btn-link {
  background-color: transparent;
  border-color: transparent;
  color: #333;
}

.btn--social {
  position: relative;
  border-radius: 0;
  border: 0;
  padding: 0;
  height: 33px;
  width: 150px;
  max-width: 150px;
  text-decoration: none;
  margin: 0 auto 12px;
  text-align: left;
}
.btn--social:focus {
  outline: none;
}

.btn--social__icon {
  position: relative;
  display: inline-block;
  width: 33px;
  height: 33px;
  margin: 0 !important;
}
.btn--social__icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 33px;
  height: 22px;
  width: 1px;
}

.btn--social__text {
  display: inline-block;
  color: #fff;
  line-height: 33px;
  font-size: 13px;
  position: absolute;
  top: 0;
  left: 42px;
}

.btn--social--mini {
  width: 33px;
  overflow: hidden;
  margin: 0;
  display: inline-block;
}

.btn--social-facebook {
  background-color: rgb(66.1303317536, 99.7559241706, 170.3696682464);
}
.btn--social-facebook .btn--social__icon {
  background: url("../../images/icons/SocialButtons/facebook.png") no-repeat center;
}
.btn--social-facebook .btn--social__icon:after {
  background-color: #3B5998;
}
.btn--social-facebook:active, .btn--social-facebook:hover {
  background-color: rgb(61.8521327014, 93.3023696682, 159.3478672986);
}

.btn--social-google {
  background-color: rgb(224.7370689655, 94.7844827586, 78.7629310345);
}
.btn--social-google .btn--social__icon {
  background: url("../../images/icons/SocialButtons/google.png") no-repeat center;
}
.btn--social-google .btn--social__icon:after {
  background-color: #dd4b39;
}
.btn--social-google:active, .btn--social-google:hover {
  background-color: rgb(222.4948275862, 82.9137931034, 65.7051724138);
}

.btn--social-linkedin {
  background-color: rgb(0, 140.3287292818, 206.5);
}
.btn--social-linkedin .btn--social__icon {
  background: url("../../images/icons/SocialButtons/linkedin.png") no-repeat center;
}
.btn--social-linkedin .btn--social__icon:after {
  background-color: #007bb5;
}
.btn--social-linkedin:active, .btn--social-linkedin:hover {
  background-color: rgb(0, 129.9314917127, 191.2);
}

.button--icon-text .icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  font-size: 21px;
  color: inherit;
}

.save-job {
  cursor: pointer;
}
.save-job .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 21px;
  color: #C70F31;
}
.save-job.button .icon {
  margin-left: 6px;
}

.saved-job-count {
  text-decoration: none;
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  color: #333;
  padding-left: 12px;
  padding-right: 12px;
}
.saved-job-count .icon {
  color: #C70F31 !important;
}

.saved-job-count__number {
  line-height: 1;
}

.application-state {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 10px;
  padding: 2px 6px;
}
.application-state.is-applied {
  background: #1b7e48;
}
.application-state.is-applied .icon {
  font-size: 24px;
  color: #1b7e48;
}
.application-state.is-incomplete {
  background: crimson;
}
.application-state.is-incomplete .icon {
  font-size: 24px;
  color: #fff;
}
.application-state--vacancy-details .icon {
  color: #fff !important;
}
@media screen and (max-width: 820px) {
  .application-state--vacancy-details {
    text-align: center;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .fancybox-button--close:focus {
    outline: 1px solid;
  }
}
.button--plain {
  background: transparent;
  border: unset;
}
.button--plain .icon-menu {
  font-size: 35px;
  color: #0b375f;
}

.my-details {
  display: none;
  width: 100%;
  justify-content: space-between;
  background: #fff;
  color: #000;
  border: solid 1px #e1e1e1;
  margin-bottom: 24px;
  align-items: stretch;
  padding: 0 0 0 24px;
  overflow: hidden;
  line-height: 3;
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  border-radius: 10px;
  font-size: 21px;
}
.my-details:hover {
  background-color: #fff;
  color: unset;
}
.my-details .my-details-icon {
  background: #0b375f;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-details .my-details-icon .icon {
  color: #fff;
}
@media screen and (max-width: 820px) {
  .my-details {
    margin-top: 24px;
    display: flex;
    margin-bottom: 8px;
  }
}

.onboarding-item__header {
  background: #fff;
  border-color: #e1e1e1;
}

.onboarding-item__body {
  border-color: #e1e1e1;
  background: #fff;
}

.onboarding-item__status {
  border-color: #e1e1e1;
}

.onboarding-icon-container {
  border-color: #e1e1e1;
}

/*------------------------------------*\
SEPERATOR
\*------------------------------------*/
.seperator--vertical:before {
  z-index: 1;
  bottom: -70px;
  height: 170px;
  background: #e1e1e1;
  left: calc(50% - 1px);
}

.seperator__text {
  height: 35px;
  width: 35px;
  font-size: 12px;
  padding: 0;
  border-radius: 50%;
  display: block;
  line-height: 35px;
  border: 1px solid #e1e1e1;
  z-index: 2;
  position: relative;
}

/*------------------------------------*\
SEARCH MODULE CONTROL STYLE OVERRIDES
\*------------------------------------*/
/**
 *  search-module(s) inherit standard styles and colors from frame backend
 *  overwrite the ones you need in here
 */
.search-module__link {
  color: #333;
}

/*------------------------------------*\
PROMPT OVERRIDE
\*------------------------------------*/
.its-c-prompt {
  max-width: 600px;
}

/*------------------------------------*\
SPLASH OVERRIDE
\*------------------------------------*/
.its-c-splash--empty .its-c-splash__text {
  color: #667074;
}
.its-c-splash--empty .its-c-splash__icon {
  color: #667074;
}

/*------------------------------------*\
GRIDS
\*------------------------------------*/
/**
 *  Super simple grids, used on dashboard pages
 *
 	<div class="grid">
		<div class="grid__row">
			<div class="grid__item  col-lg-6 ">
				<div class="grid__block">
					Content
				</div>
			</div>        
			<div class="grid__item  col-lg-6 ">
				<div class="grid__block">
					Content
				</div>   
			</div>
		</div>
	</div>
 *
 */
.grid {
  margin-right: auto;
  margin-left: auto;
}

.grid__row {
  margin-left: -12px;
  margin-right: -12px;
}

.grid__item {
  float: left;
  padding-left: 12px;
  padding-right: 12px;
}

.grid__item--right {
  float: right;
}

.grid__item--flush {
  padding-right: 0;
}

.grid__item--noMarginBottom {
  margin-bottom: 0;
}

.grid__item--maxwidth {
  width: 100%;
}

.grid--padding {
  padding: 24px;
}

.grid--padding--breath {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media screen and (max-width: 820px) {
  .grid--padding--breath {
    padding: 24px;
  }
}

.grid--sidePadding {
  padding: 0 24px;
}

.grid--flush .grid__item {
  padding-right: 0;
  margin-bottom: 0;
}

.grid__item--profileOffset {
  position: relative;
  margin-top: -80px;
}
@media screen and (max-width: 820px) {
  .grid__item--profileOffset {
    margin-top: -60px;
  }
}

/*------------------------------------*\
WIDTHS
\*------------------------------------*/
.col-lg-12 {
  width: 100%;
}

.col-lg-11 {
  width: 91.6666666667%;
}

.col-lg-10 {
  width: 83.3333333333%;
}

.col-lg-9 {
  width: 75%;
}

.col-lg-8 {
  width: 66.6666666667%;
}

.col-lg-7 {
  width: 58.3333333333%;
}

.col-lg-6 {
  width: 50%;
}

.col-lg-5 {
  width: 41.6666666667%;
}

.col-lg-4 {
  width: 33.3333333333%;
}

.col-lg-3 {
  width: 25%;
}

.col-lg-2 {
  width: 16.6666666667%;
}

.col-lg-1 {
  width: 8.3333333333%;
}

@media screen and (max-width: 820px) {
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .hidden--md {
    display: none;
  }
}
@media screen and (max-width: 510px) {
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .hidden--sm {
    display: none;
  }
}
/*------------------------------------*\
WIDTHS
\*------------------------------------*/
.col-lg-push-12 {
  margin-right: 100%;
}

.col-lg-push-11 {
  margin-right: 91.6666666667%;
}

.col-lg-push-10 {
  margin-right: 83.3333333333%;
}

.col-lg-push-9 {
  margin-right: 75%;
}

.col-lg-push-8 {
  margin-right: 66.6666666667%;
}

.col-lg-push-7 {
  margin-right: 58.3333333333%;
}

.col-lg-push-6 {
  margin-right: 50%;
}

.col-lg-push-5 {
  margin-right: 41.6666666667%;
}

.col-lg-push-4 {
  margin-right: 33.3333333333%;
}

.col-lg-push-3 {
  margin-right: 25%;
}

.col-lg-push-2 {
  margin-right: 16.6666666667%;
}

.col-lg-push-1 {
  margin-right: 8.3333333333%;
}

@media screen and (max-width: 820px) {
  .col-md-push-12 {
    margin-right: 100%;
  }
  .col-md-push-11 {
    margin-right: 91.6666666667%;
  }
  .col-md-push-10 {
    margin-right: 83.3333333333%;
  }
  .col-md-push-9 {
    margin-right: 75%;
  }
  .col-md-push-8 {
    margin-right: 66.6666666667%;
  }
  .col-md-push-7 {
    margin-right: 58.3333333333%;
  }
  .col-md-push-6 {
    margin-right: 50%;
  }
  .col-md-push-5 {
    margin-right: 41.6666666667%;
  }
  .col-md-push-4 {
    margin-right: 33.3333333333%;
  }
  .col-md-push-3 {
    margin-right: 25%;
  }
  .col-md-push-2 {
    margin-right: 16.6666666667%;
  }
  .col-md-push-1 {
    margin-right: 8.3333333333%;
  }
  .col-md-push-0 {
    margin-right: 0;
  }
}
@media screen and (max-width: 510px) {
  .col-sm-push-12 {
    margin-right: 100%;
  }
  .col-sm-push-11 {
    margin-right: 91.6666666667%;
  }
  .col-sm-push-10 {
    margin-right: 83.3333333333%;
  }
  .col-sm-push-9 {
    margin-right: 75%;
  }
  .col-sm-push-8 {
    margin-right: 66.6666666667%;
  }
  .col-sm-push-7 {
    margin-right: 58.3333333333%;
  }
  .col-sm-push-6 {
    margin-right: 50%;
  }
  .col-sm-push-5 {
    margin-right: 41.6666666667%;
  }
  .col-sm-push-4 {
    margin-right: 33.3333333333%;
  }
  .col-sm-push-3 {
    margin-right: 25%;
  }
  .col-sm-push-2 {
    margin-right: 16.6666666667%;
  }
  .col-sm-push-1 {
    margin-right: 8.3333333333%;
  }
  .col-sm-push-0 {
    margin-right: 0;
  }
}
/*------------------------------------*\
NAVIGATION
\*------------------------------------*/
.navigation-container {
  background: #0b375f;
}

.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.nav--desktop {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 820px) {
  .nav--desktop {
    display: none;
  }
}
.nav--desktop .nav__item {
  height: 56px;
}
.nav--desktop .nav__item.has-subnav {
  position: relative;
  z-index: 10;
}
.nav--desktop .nav__item.internal-vacancy {
  margin-right: 0;
  margin-left: auto;
  float: inline-end;
}
.nav--desktop .nav__item:last-child {
  margin-right: 0;
}
.nav--desktop .nav__item.is-mobile {
  display: none;
}
@media screen and (max-width: 820px) {
  .nav--desktop .nav__item.is-mobile {
    display: block;
  }
}
.nav--desktop .nav__item:hover .nav__link--container {
  background: rgba(0, 0, 0, 0.1);
}
.nav--desktop .nav__link {
  display: block;
  text-decoration: none;
  color: #fff;
  height: 100%;
  line-height: 56px;
  padding: 0 14px;
}
.nav--desktop .nav__link--container {
  padding: 0 13px;
}
.nav--desktop .nav__link--container.is-active {
  background: rgba(0, 0, 0, 0.25);
}
.nav--desktop .nav__link--button {
  background: none;
  border: 0;
}
.nav--desktop .nav__link--button .icon {
  color: #fff;
}
.nav--desktop .nav__subnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav--desktop .nav__subnav-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0;
  background: #0b375f;
}
.nav--desktop .nav__subnav-link {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #fff;
}
.nav--desktop .nav__subnav-link:hover {
  background: rgba(0, 0, 0, 0.1);
}

.nav--mobile {
  display: flex;
  flex-flow: column wrap;
  gap: 7px;
}
.nav--mobile .nav__item {
  display: block;
}
.nav--mobile .nav__item:last-child {
  border-bottom: 0;
}
.nav--mobile .nav__item.button {
  width: max-content;
}
.nav--mobile .reveal-container[data-popover-state=pinned] {
  background: rgba(0, 0, 0, 0.1);
}
.nav--mobile .reveal-container[data-popover-state=pinned] .nav__subnav-body {
  background: rgba(0, 0, 0, 0.1);
}
.nav--mobile .nav__link {
  display: block;
  padding: 16px;
  color: #fff;
  text-decoration: none;
}
.nav--mobile .nav__link.is-active {
  background: rgba(0, 0, 0, 0.1);
}
.nav--mobile .nav__link--button {
  background: none;
  border: 0;
  display: block;
  position: absolute;
  top: 15px;
  right: 10px;
}
.nav--mobile .nav__link--button .icon {
  color: #fff;
}
.nav--mobile .nav__subnav-link {
  display: block;
  padding: 16px;
  color: #fff;
  margin-bottom: 1px;
  text-decoration: none;
}
.nav--mobile .nav__subnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.1);
}
.nav--mobile .nav__subnav-body {
  display: block;
  position: static;
  width: 100%;
  box-shadow: none;
  padding: 0;
}
@media screen and (max-width: 820px) {
  .nav--mobile .nav__link--container {
    position: relative;
  }
}

.nav--mobile.mainNavigationMobile .nav__link--button {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav--desktop.mainNavigationDesktop .nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav--desktop.mainNavigationDesktop .nav__link.is-active {
  background: rgba(0, 0, 0, 0.1);
}
.nav--desktop.mainNavigationDesktop .nav__subnav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav--desktop.nav--contensis .nav__link {
  display: inline-block;
  padding: 0;
}
.nav--desktop.nav--contensis .nav__link:hover {
  background: none;
}
.nav--desktop.nav--contensis .nav__link--button {
  padding: 0;
}

.mobile-menu {
  display: none;
}
@media screen and (max-width: 820px) {
  .mobile-menu {
    display: block;
    margin: 0;
  }
  .mobile-menu .menu-button {
    width: 50px;
    height: 40px;
  }
  .mobile-menu .menu-button .icon.icon-close {
    display: none;
  }
  .mobile-menu .menu-button.nav-active .icon.icon-close {
    display: block;
  }
  .mobile-menu .menu-button.nav-active .icon.icon-menu {
    display: none;
  }
}

.nav-button-list {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 820px) {
  .nav-button-list {
    display: none;
  }
}

.nav-button-list--mobile {
  display: none;
}
@media screen and (max-width: 820px) {
  .nav-button-list--mobile {
    display: block;
  }
}

@media screen and (max-width: 820px) {
  .desktopButtons {
    display: none;
  }
}

.nav-button-list__item {
  display: inline-block;
  margin-left: 3px;
}
.nav-button-list__item .icon {
  font-size: 35px !important;
}

.icon-and-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.icon-and-text .icon-and-text--text {
  font-weight: bold;
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  color: #000;
  display: contents;
  white-space: nowrap;
}

.icon--brand {
  color: #0b375f;
}

.nav-account {
  display: inline-flex;
}
.nav-account .button {
  margin: 0;
}

.logo-nav-block {
  display: flex;
}

.nav-button-list__item {
  display: inline-block;
  margin-left: 3px;
}

.nav-account {
  display: inline-flex;
}
.nav-account .button {
  margin: 0;
}

.reveal-container {
  position: relative;
}
@media screen and (max-width: 510px) {
  .reveal-container {
    position: static;
  }
}

.reveal-body {
  display: none;
  position: absolute;
  min-width: 230px;
  top: 100%;
  right: 0;
  background: #0b375f;
  width: 100%;
  padding: 48px;
}

.dropdown-menu {
  display: none;
  background: #0b375f;
  padding: 16px;
}
@media screen and (min-width: 821px) {
  .dropdown-menu {
    display: none !important;
  }
}

.reveal-body--left {
  right: auto;
  left: 0;
}
@media screen and (max-width: 510px) {
  .reveal-body--left {
    left: 24px;
    right: 24px;
    width: auto;
  }
}

.candidate-nav-menu {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.candidate-nav-menu .saved-job-count {
  padding: 0px;
}

.candidate-nav-menu-widget {
  display: inline-flex;
  gap: 12px;
}
.candidate-nav-menu-widget .saved-job-count {
  padding: 0px;
}

/*------------------------------------*\
PAGE
\*------------------------------------*/
.wrap {
  max-width: 1200px;
  margin: 0 auto 0;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 984px) {
  .wrap {
    max-width: inherit;
    width: 100%;
  }
}

.wrap-small {
  max-width: 700px;
  margin: 0 auto;
}

.wrap-medium {
  max-width: 900px;
  margin: 0 auto;
}

/*------------------------------------*\
PAGE
\*------------------------------------*/
/*------------------------------------*\
HEADER
\*------------------------------------*/
.header {
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
  background: #fff;
  z-index: 10;
}
.header > .wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.header .button-logo-holder {
  display: flex;
  gap: 12px;
}

.header--small {
  font-size: 13px;
  padding: 8px 12px;
}

.header__logo {
  display: block;
  float: left;
  line-height: 0;
}
@media screen and (max-width: 820px) {
  .header__logo {
    float: none;
  }
}
.header__logo .header__logo--img {
  width: 240px;
}
@media screen and (max-width: 820px) {
  .header__logo .header__logo--img {
    width: 160px;
    margin-top: 9px;
  }
}
@media screen and (max-width: 510px) {
  .header__logo .header__logo--img {
    width: 110px;
    margin-top: 16px;
  }
}

/*------------------------------------*\
PAGE
\*------------------------------------*/
/*------------------------------------*\
CONTENT
\*------------------------------------*/
.contentcontainer {
  clear: both;
  margin: 0;
}

.content-zone {
  background: #fff;
  padding: 48px;
  border-radius: 10px;
  border: solid 1px #e1e1e1;
}
@media screen and (max-width: 820px) {
  .content-zone {
    padding: 24px;
    margin-bottom: 24px;
  }
}

.content-zone--small {
  padding: 24px;
}

/*------------------------------------*\
PAGE
\*------------------------------------*/
/*------------------------------------*\
FOOTER
\*------------------------------------*/
.footer {
  clear: both;
  margin: 0;
  color: #fff;
  padding: 24px;
  font-size: 13px;
  transition: padding-bottom 0.66s ease-out;
}
.footer a {
  color: #fff;
}
.footer .footer__links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.footer .footer__links--right {
  float: right;
}
@media screen and (max-width: 820px) {
  .footer .footer__links--right {
    float: left;
  }
}
.footer .footer__links-item {
  float: left;
}
.footer .footer__links-item:after {
  content: "|";
  margin-left: 12px;
  margin-right: 12px;
}
.footer .footer__links-item:last-child:after {
  display: none;
}
@media screen and (max-width: 820px) {
  .footer .footer__links-item {
    float: none;
    margin-bottom: 6px;
  }
  .footer .footer__links-item:after {
    display: none;
  }
}
.footer .footer__img--container {
  float: right;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 820px) {
  .footer .footer__img--container {
    margin-top: 24px;
    float: none;
    flex-direction: column;
  }
}

.container--slider {
  position: relative;
}
@media screen and (max-width: 984px) {
  .container--slider {
    min-height: auto;
    min-height: inherit;
  }
}

.container--search {
  background-color: #0b375f;
}

.container--content {
  background-color: #f1f1f1;
}

.container--footer {
  background-color: #0b375f;
}

.section {
  padding: 72px 0;
}
@media screen and (max-width: 510px) {
  .section {
    padding: 48px 0;
  }
}
.section > :last-child {
  margin-bottom: 0;
}

.section__container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  font-size: 32px;
  line-height: 1;
  text-align: center;
}

.section__text {
  text-align: center;
}

.section__title--alt {
  font-family: "Sansita", Arial, Helvetica, sans-serif;
}

.section--small {
  padding: 24px 0;
}

.section--bordered {
  border-top: 1px solid #e1e1e1;
}

.section--subtle {
  background-color: #f1f1f1;
}

.section--shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section--white {
  background-color: #fff;
}

.section--brand-1 {
  background-color: #0b375f;
}
.section--brand-1 .section__title, .section--brand-1 .section__text {
  color: #fff;
}

.section--brand-2 {
  background-color: #0b375f;
}
.section--brand-2 .section__title {
  color: #fff;
}

.banner {
  background-image: url(../../images/banners/banner-1.jpg);
  background-size: cover;
  position: relative;
  background-position: center;
}

.b1 {
  background-image: url(../../images/banners/banner-1-sm.jpg);
}
@media screen and (min-width: 510px) {
  .b1 {
    background-image: url(../../images/banners/banner-1-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .b1 {
    background-image: url(../../images/banners/banner-1.jpg);
  }
}

.b2 {
  background-image: url(../../images/banners/banner-2-sm.jpg);
}
@media screen and (min-width: 510px) {
  .b2 {
    background-image: url(../../images/banners/banner-2-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .b2 {
    background-image: url(../../images/banners/banner-2.jpg);
  }
}

.b3 {
  background-image: url(../../images/banners/banner-3-sm.jpg);
}
@media screen and (min-width: 510px) {
  .b3 {
    background-image: url(../../images/banners/banner-3-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .b3 {
    background-image: url(../../images/banners/banner-3.jpg);
  }
}

.b4 {
  background-image: url(../../images/banners/banner-4-sm.jpg);
}
@media screen and (min-width: 510px) {
  .b4 {
    background-image: url(../../images/banners/banner-4-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .b4 {
    background-image: url(../../images/banners/banner-4.jpg);
  }
}

.banner--search {
  background-image: url(../../images/banners/banner-search-sm.jpg);
}
@media screen and (min-width: 510px) {
  .banner--search {
    background-image: url(../../images/banners/banner-search-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .banner--search {
    background-image: url(../../images/banners/banner-search.jpg);
  }
}

.banner-function-1 {
  background-image: url(../../images/banners/functions/retail-sm.jpg);
}
@media screen and (min-width: 510px) {
  .banner-function-1 {
    background-image: url(../../images/banners/functions/retail-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .banner-function-1 {
    background-image: url(../../images/banners/functions/retail.jpg);
  }
}

.banner-function-2 {
  background-image: url(../../images/banners/functions/distribution-sm.jpg);
}
@media screen and (min-width: 510px) {
  .banner-function-2 {
    background-image: url(../../images/banners/functions/distribution-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .banner-function-2 {
    background-image: url(../../images/banners/functions/distribution.jpg);
  }
}

.banner-function-3 {
  background-image: url(../../images/banners/functions/support-sm.jpg);
}
@media screen and (min-width: 510px) {
  .banner-function-3 {
    background-image: url(../../images/banners/functions/support-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .banner-function-3 {
    background-image: url(../../images/banners/functions/support.jpg);
  }
}

.banner-function-4 {
  background-image: url(../../images/banners/functions/grads-and-interns-sm.jpg);
}
@media screen and (min-width: 510px) {
  .banner-function-4 {
    background-image: url(../../images/banners/functions/grads-and-interns-md.jpg);
  }
}
@media screen and (min-width: 820px) {
  .banner-function-4 {
    background-image: url(../../images/banners/functions/grads-and-interns.jpg);
  }
}

.vac-d__title {
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 820px) {
  .vac-d__title {
    text-align: center;
  }
}

.vac-d__title-inline {
  margin-bottom: 6px;
  font-size: 21px;
}

.vac-d__box {
  padding: 24px;
  background: #f1f1f1;
  border-radius: 10px;
  margin-bottom: 24px;
  border: solid 1px #e1e1e1;
}

.vac-d__box-list .label {
  margin-bottom: 0;
}
.vac-d__box-list .label .icon {
  margin-bottom: 4px;
}

.vac-d__map {
  border-radius: 10px;
  overflow: hidden;
}
.vac-d__map iframe {
  width: 100%;
}
.vac-d__map .static-map {
  width: 100%;
}

.vac-details__description .title:first-child {
  margin-top: 0;
}

.vac-d__img {
  width: 100%;
}

.vac-d__incompleteapp {
  background: cornsilk;
  padding: 24px;
  border-radius: 10px;
}

.social--icon {
  display: block;
  width: 100%;
}
.social--icon .icon {
  font-size: 32px;
}

.pager-flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .pager-flex {
    flex-wrap: wrap;
  }
}

.pager-flex__view {
  flex: 1 1 0;
  white-space: nowrap;
}

.pager-flex__pager {
  flex: 2 0 auto;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .pager-flex__pager {
    order: 3;
    flex: 2 0 100%;
    margin-top: 24px;
    text-align: left;
  }
}

.pager-flex__sort {
  flex: 1 1 0;
  white-space: nowrap;
  text-align: right;
}

.vsr-embed__refine {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 11;
}

.vsr-job__headings {
  margin-top: 24px;
  color: #333;
  display: table;
  width: 100%;
  vertical-align: middle;
  padding: 0 36px;
  padding-top: 24px;
  background: #fff;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 820px) {
  .vsr-job__headings {
    display: none;
  }
}

.vsr-job__subheadings {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.vsr-job__heading {
  display: table-cell;
  padding: 0 12px 0 0px;
}
.vsr-job__heading.is-save {
  width: 45px;
}
.vsr-job__heading.is-1 {
  width: 300px;
}
@media screen and (max-width: 984px) {
  .vsr-job__heading.is-1 {
    width: 200px;
  }
}
.vsr-job__heading.is-button {
  width: 120px;
}

.vsr-job-big {
  margin-top: 24px;
  background: #fff;
  padding: 48px;
  border-radius: 10px;
  border: solid 1px #e1e1e1;
  position: relative;
}
@media screen and (max-width: 510px) {
  .vsr-job-big {
    padding: 24px;
  }
}

.vsr-job {
  display: table;
  width: 100%;
  vertical-align: middle;
  padding: 12px;
  color: #333;
  position: relative;
}
.vsr-job:nth-child(odd) {
  background: #f1f1f1;
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  .vsr-job {
    padding-bottom: 24px;
  }
}
.vsr-job:item--jobTitle {
  border-top: 0;
}
.vsr-job .vacancy-title {
  font-size: 18px;
}

.vsr-job__title {
  display: table-cell;
  padding-right: 24px;
}
@media screen and (max-width: 820px) {
  .vsr-job__title {
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
}

.vsr-job__list-item {
  display: flex;
  flex: 0 1 50%;
  padding-right: 12px;
}
.vsr-job__list-item > div {
  display: flex;
}
.vsr-job__list-item .label {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.vsr-job__list-item .label .icon {
  margin-bottom: 4px;
}
.vsr-job__list-item .content {
  flex: 1 1 auto;
  margin-bottom: 0;
}
@media screen and (max-width: 510px) {
  .vsr-job__list-item {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 820px) {
  .vsr-job__desc {
    margin-bottom: 24px;
  }
}

.vsr-job__buttons {
  text-align: right;
}

.vsr__logo-container {
  width: 100%;
  height: 60px;
  padding: 12px;
  border: solid 1px #e1e1e1;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 24px;
}
.vsr__logo-container .vsr__logo {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.vsr__no-results {
  text-align: center;
  color: #667074;
}
.vsr__no-results .icon {
  display: block;
  font-size: 5em !important;
  color: #667074;
  margin-bottom: 12px;
}

.vacancies-view-mode {
  margin-right: 12px;
}

.vacancies-view-mode__tab {
  line-height: 1.5;
  padding: 3px;
  border-radius: 50%;
}
.vacancies-view-mode__tab.is-active {
  background: #fff;
}
.vacancies-view-mode__tab.is-active .icon {
  color: #333;
}

@media screen and (max-width: 510px) {
  .vacancies-view-mode__label {
    display: none;
  }
}

.vsr-info-bar {
  margin-bottom: 24px;
  display: flex;
  align-items: top;
}
@media screen and (max-width: 820px) {
  .vsr-info-bar {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
}
.vsr-info-bar__title {
  white-space: nowrap;
  flex: 0 0 0;
  padding-right: 24px;
}
.vsr-info-bar__title h1 {
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .vsr-info-bar__title {
    margin-bottom: 12px;
    flex: 1 1 0;
  }
}
@media screen and (max-width: 510px) {
  .vsr-info-bar__title {
    flex: 1 1 100%;
  }
}

.vsr-info-bar__filter {
  flex: 1 1 auto;
  padding-right: 24px;
}
.vsr-info-bar__filter > div {
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .vsr-info-bar__filter {
    margin-bottom: 12px;
    order: 3;
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 510px) {
  .vsr-info-bar__filter {
    flex: 1 1 100%;
  }
}

.vsr-info-bar__view {
  flex: 0 0 0;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .vsr-info-bar__view {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 510px) {
  .vsr-info-bar__view {
    flex: 1 1 100%;
    order: 3;
  }
  .vsr-info-bar__view .button {
    width: 100%;
  }
}

.share-container {
  border-top: solid 1px #e1e1e1;
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
}
.share-container legend {
  width: 100%;
  text-align: center;
}

/*
    CSS GRID LAYOUT FOR VSR

    ie11 does not support automatic placement of grid items so we have to say which area on the grid to put the jobs
    this is done using the grid template areas stuff.
    autoprefixer will then compile this to have -ms-grid-row and -ms-grid-column properties which 

*/
.vsr-results-grid {
  display: grid;
  margin: -12px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "item1  item2  item3" "item4  item5  item6" "item7  item8  item9" "item10 item11 item12";
}
@media screen and (max-width: 820px) {
  .vsr-results-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "item1  item2" "item3  item4" "item5  item6" "item7  item8" "item9  item10" "item11 item12";
  }
}
@media screen and (max-width: 510px) {
  .vsr-results-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "item1" "item2" "item3" "item4" "item5" "item6" "item7" "item8" "item9" "item10" "item11" "item12";
  }
}
.vsr-results-grid > :nth-child(1) {
  grid-area: item1;
}
.vsr-results-grid > :nth-child(2) {
  grid-area: item2;
}
.vsr-results-grid > :nth-child(3) {
  grid-area: item3;
}
.vsr-results-grid > :nth-child(4) {
  grid-area: item4;
}
.vsr-results-grid > :nth-child(5) {
  grid-area: item5;
}
.vsr-results-grid > :nth-child(6) {
  grid-area: item6;
}
.vsr-results-grid > :nth-child(7) {
  grid-area: item7;
}
.vsr-results-grid > :nth-child(8) {
  grid-area: item8;
}
.vsr-results-grid > :nth-child(9) {
  grid-area: item9;
}
.vsr-results-grid > :nth-child(10) {
  grid-area: item10;
}
.vsr-results-grid > :nth-child(11) {
  grid-area: item11;
}
.vsr-results-grid > :nth-child(12) {
  grid-area: item12;
}

.vsr-grid-job {
  margin: 12px;
  background: #fff;
  padding: 24px;
  border: solid 1px #e1e1e1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vsr-grid-job__logo-container {
  width: 100%;
  height: 60px;
  padding: 12px;
  border: solid 1px #e1e1e1;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 24px;
}
.vsr-grid-job__logo-container .vsr-grid-job__logo {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.vac-d__box-list .content {
  flex: 1 1 auto;
  width: auto;
}
.vac-d__box-list .label {
  flex: 0 0 auto;
  width: auto;
  padding-right: 12px;
  margin-bottom: 0;
}
.vac-d__box-list .item {
  margin-bottom: 3px;
}
.vac-d__box-list .item > div {
  display: flex;
}

.page-vac-results .vsr-job-list .item > div {
  display: flex;
}
.page-vac-results .vsr-job-list .content {
  flex: 1 1 auto;
  width: auto;
}
.page-vac-results .vsr-job-list .item .label {
  display: none;
}
@media screen and (max-width: 820px) {
  .page-vac-results .vsr-job-list .item .label {
    display: block;
    flex: 0 0 auto;
    width: auto;
    padding-right: 12px;
    margin-bottom: 0;
  }
}
.page-vac-results .vsr-job-list {
  background: #fff;
  padding: 12px 24px 24px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 820px) {
  .page-vac-results .vsr-job-list {
    padding: 24px 24px;
    border-radius: 10px;
  }
}
.page-vac-results .vsr-job-list .alreadyadded, .page-vac-results .vsr-job-list .applied {
  display: none;
}

.item--SaveJob {
  width: 40px;
}

.vsr-job__details {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.vsr-job__details .item {
  display: table-cell;
  vertical-align: middle;
  padding: 0 12px 0 0px;
}
.vsr-job__details .item.item--savedjobs {
  width: 45px;
}
@media screen and (max-width: 820px) {
  .vsr-job__details .item.item--savedjobs {
    float: right;
  }
}
.vsr-job__details .item.item--jobTitle {
  width: 300px;
}
@media screen and (max-width: 984px) {
  .vsr-job__details .item.item--jobTitle {
    width: 200px;
  }
}
@media screen and (max-width: 820px) {
  .vsr-job__details .item.item--jobTitle {
    width: calc(100% - 45px);
  }
}
.vsr-job__details .item.item--moreinfo {
  width: 120px;
}
@media screen and (max-width: 820px) {
  .vsr-job__details .item.item--moreinfo {
    width: 100%;
    margin-top: 24px;
  }
}
@media screen and (max-width: 820px) {
  .vsr-job__details .item {
    display: inline-block;
    width: 50%;
  }
}
@media screen and (max-width: 510px) {
  .vsr-job__details .item {
    width: 100%;
  }
}
.vsr-job__details .vsr-job__button {
  display: table-cell;
  width: 1px;
  white-space: nowrap;
}
.vsr-job__details .vsr__title-bar {
  position: relative;
}
.vsr-job__details .job-alerts {
  text-align: center;
  color: #fff;
}
.vsr-job__details .job-alerts__button .button {
  background: transparent;
  border: 1px solid #fff;
}
.vsr-job__details .job-alerts__button .button:hover {
  color: #0b375f;
  background-color: #fff;
}
.vsr-job__details .job-alerts__title {
  font-size: 40px;
}
.vsr-job__details .vsr__results-found {
  margin: 0;
}
@media screen and (max-width: 984px) {
  .vsr-job__details .vsr__results-found {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .vsr-job__details .item--jobTitle {
    padding-bottom: 12px;
  }
}

.contact__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

.contact__container--item {
  flex: 1 1 50%;
}
@media screen and (max-width: 820px) {
  .contact__container--item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.contact__container--map {
  position: relative;
}
@media screen and (max-width: 820px) {
  .contact__container--map {
    min-height: 400px;
  }
}
.contact__container--map iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 820px) {
  .contact__container--map iframe {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
}

.contact__container--content {
  padding: 24px;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .contact__container--content {
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }
}

@media screen and (max-width: 510px) {
  .contact__info {
    text-align: center;
  }
}

.contact__info--button {
  text-decoration: none;
  text-align: left;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}
.contact__info--button .icon {
  color: #fff;
  font-size: 24px;
  margin-right: 24px;
}
@media screen and (max-width: 510px) {
  .contact__info--button .icon {
    margin-right: 0;
  }
}
.contact__info--button:hover {
  background-color: rgb(9.4122641509, 47.0613207547, 81.2877358491);
}
@media screen and (max-width: 510px) {
  .contact__info--button {
    display: inline-block;
  }
}

.contact__info--text {
  line-height: 24px;
}
@media screen and (max-width: 510px) {
  .contact__info--text {
    display: none;
  }
}

/*------------------------------------*\
    $O-MEDIA
\*------------------------------------*/
/*
    NEW MEDIA OBJECT
    OLD ONE NEEDS PHASING OUT AS IT HAS BECOME TOO SPECIFIC
*/
.o-media {
  display: block;
}

.o-media__img {
  float: left;
  margin-right: 24px;
}
.o-media__img > img {
  display: block;
}

.o-media__body {
  overflow: hidden;
  display: block;
}
.o-media__body,
.o-media__body > :last-child {
  margin-bottom: 0;
}

/* Size variants
   ========================================================================== */
/**
 * Modify the amount of space between our image and our text. We also have
 * reversible options for all available sizes.
 */
.o-media--small > .o-media__img {
  margin-right: 12px;
}
.o-media--small.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 12px;
}

/* Reversed media objects
   ========================================================================== */
.o-media--reverse > .o-media__img {
  float: right;
  margin-right: 0;
  margin-left: 24px;
}

/* Gutterless media objects
   ========================================================================== */
.o-media--flush > .o-media__img {
  margin-right: 0;
  margin-left: 0;
}

/*------------------------------------*\
Flex bar
\*------------------------------------*/
/**
 *	
	<div class="flexbar">
	  <div class="flexbar__group  flexbar__group--variable">
		<a class="flexbar__item">
		  <i class="icon">1</i>   
		</a>  
	  </div>

	  <div class="flexbar__group  flexbar__group--variable">
		<a class="flexbar__item">
		  Using the code above on a 200px by 200px box, with the transform applied to a transitioned using a click event, would behave like this:
		</a>  
	  </div>

	  <div class="flexbar__group  flexbar__group--variable">
		<a class="flexbar__item">
		  <i class="icon">1</i>      
		</a> 
		<a class="flexbar__item">
		  <i class="icon">2</i>      
		</a>
		<a class="flexbar__item">
		  <i class="icon">3</i>      
		</a>
	  </div>   
	</div>
 *
 */
/*------------------------------------*\
Standard flexbar styles
\*------------------------------------*/
.flexbar {
  display: table;
  border-spacing: 0px;
  width: 100%;
}

.flexbar__group {
  display: table-cell;
  height: inherit;
  vertical-align: middle;
}

.flexbar__group--variable {
  white-space: normal;
  overflow: hidden;
}

.flexbar__group--fixed {
  width: 1px;
  white-space: nowrap;
}

.flexbar__item {
  display: inline-block;
  margin: 0 12px 0 0;
}

.flexbar__item > .icon {
  padding: 3px;
}

.flexbar__title {
  font-weight: normal;
  margin-bottom: 0;
}

.flexbar__group:last-child > .flexbar__item:last-child {
  margin-right: 0;
}

.island {
  padding: 24px;
}

.island--filled {
  background: #f1f1f1;
}

.island--border {
  border: solid 1px #e1e1e1;
}

.islet {
  padding: 12px;
}

/*------------------------------------*\
Flex bar
\*------------------------------------*/
.tag {
  display: inline-block;
  padding: 3px 6px;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 5px;
}

.tag--jobs {
  padding: 0;
  font-size: 13px;
}

.tag--rounded {
  border-radius: 5px;
}

.tag--suggested {
  color: darkblue;
}

.tag--featured {
  color: green;
}

/*
.tag--jobs {
	position: absolute;
	top:6px;
	right: 15px;    
	text-transform: capitalize;
	padding-left: $candidate-spacing-unit;
	border-radius: 0px 2px 2px 0;

	&:before {
		display: table;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		border-top: 10px solid $color-subtle-1;
		border-right: 10px solid $color-subtle-1;
		border-bottom: 10px solid $color-subtle-1;
	}

	&:after {
		display: table;
		content: "";
		position: absolute;
		left: $candidate-half-spacing-unit;
		top: 7px;
		height: 5px;
		width: 5px;
		background: $color-subtle-1;
		border-radius: 50%;
	}

}


.tag--suggested {
	background: gold;

	&:before {
		border-right: 10px solid gold;
	}

}
.tag--featured {
	background:#FC8E8E;

	&:before {
		border-right: 10px solid #FC8E8E;
	}

}

.tag--latest {
	display:none;
}
*/
.tag--grey {
  color: #fff;
  background: #ccc;
}

.tag--danger {
  color: #fff;
  background: crimson;
}

.tag--success {
  color: #fff;
  background: #1b7e48;
}

.tag-outline--danger {
  border: solid 3px crimson;
  color: #333;
  background: transparent;
  line-height: inherit;
}

.tag-outline--success {
  border: solid 3px #1b7e48;
  color: #333;
  background: transparent;
  line-height: inherit;
}

.tag--latest,
.tag--matched {
  display: none;
}

/*------------------------------------*\
O-FLEXI
\*------------------------------------*/
/*
    If this doesnt do what you want then you use something else.
*/
.o-flexi {
  display: table;
  width: 100%;
}
.o-flexi--distribute {
  table-layout: fixed;
}

.o-flexi__cell {
  display: table-cell;
}
.o-flexi--top > .o-flexi__cell {
  vertical-align: top;
}
.o-flexi--middle > .o-flexi__cell {
  vertical-align: middle;
}
.o-flexi--bottom > .o-flexi__cell {
  vertical-align: bottom;
}

.o-flexi__fixed-cell {
  display: table-cell;
  width: 1px;
  white-space: nowrap;
}
.o-flexi--top > .o-flexi__fixed-cell {
  vertical-align: top;
}
.o-flexi--middle > .o-flexi__fixed-cell {
  vertical-align: middle;
}
.o-flexi--bottom > .o-flexi__fixed-cell {
  vertical-align: bottom;
}

.section--history,
.section--awards {
  overflow: auto;
  white-space: nowrap;
  vertical-align: top;
  -webkit-overflow-scrolling: touch;
}

.history-item {
  display: inline-block;
  width: 400px;
  padding-left: 48px;
  padding-right: 48px;
  white-space: normal;
  position: relative;
  vertical-align: bottom;
  background: url(../../images/timeline/assets/dash.svg) no-repeat bottom left;
  background-size: 100% 2px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .history-item {
    width: 300px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 510px) {
  .history-item {
    width: 180px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.history-item:after {
  content: "";
  display: block;
  height: 90px;
  background: url(../../images/timeline/assets/timeline_largeline.svg) no-repeat bottom center;
  position: relative;
  top: 7px;
}
.history-item:nth-child(odd):after {
  content: "";
  display: block;
  height: 50px;
  background: url(../../images/timeline/assets/timeline_smallline.svg) no-repeat bottom center;
}
.history-item:first-child {
  border-bottom: 0;
  background: url(../../images/timeline/assets/curve.svg) no-repeat bottom left;
  padding-bottom: 130px;
  background-size: 100% 135px;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .history-item:first-child {
    background-size: 100% 101px;
    padding-bottom: 80px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 510px) {
  .history-item:first-child {
    background-size: 100% 71px;
  }
}
.history-item:first-child:after {
  background: transparent;
}

.history-item__image {
  display: block;
  margin-bottom: 24px;
  width: auto;
  max-width: 80%;
  max-height: 150px;
  margin: 0 auto 24px;
}

.history-item--large {
  width: 600px;
}
@media screen and (max-width: 820px) {
  .history-item--large {
    width: 450px;
  }
}
@media screen and (max-width: 510px) {
  .history-item--large {
    width: 320px;
  }
}

.dragcontainer {
  position: relative;
}
.dragcontainer .dragArrow {
  border: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}
.dragcontainer .dragArrow .icon {
  color: #fff;
  font-size: 30px;
  display: block;
}
.dragcontainer .dragArrow--right {
  right: 0;
}
.dragcontainer .dragArrow--left {
  right: 51px;
}

.overlay {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  box-shadow: inset 0px -50px 50px rgba(0, 0, 0, 0.2);
}

.hero {
  color: #fff;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
  padding: 120px 0 96px;
}
@media screen and (max-width: 820px) {
  .hero {
    padding: 72px 0;
  }
}
.hero--left {
  text-align: left;
}
.hero--small {
  padding: 48px 0;
}
.hero--home {
  padding: 240px 0 0;
}

.hero__title {
  font-size: 40px;
  margin-bottom: 0;
  display: block;
}
@media screen and (max-width: 820px) {
  .hero__title {
    font-size: 32px;
  }
}

.hero__subtitle {
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.hero__icon {
  font-size: 40px;
}

.hero__title--alt {
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: normal;
}
@media screen and (max-width: 820px) {
  .hero__title--alt {
    font-size: 40px;
  }
}

.hero--vac-details {
  text-align: left;
}
@media screen and (max-width: 820px) {
  .hero--vac-details {
    text-align: center;
  }
}

@media screen and (max-width: 820px) {
  .hero__button-container {
    margin-top: 24px;
  }
}
.hero__button-container .button-negative {
  border-color: #fff;
}

.title-bar {
  background: #fff;
  padding: 32px 0;
  border-bottom: solid 1px #e1e1e1;
  overflow: hidden;
}
.title-bar h1 {
  margin-bottom: 0;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.title-bar .title-bar__icon {
  font-size: 32px;
}

/*------------------------------------*\
    O-NEWS
\*------------------------------------*/
/*
    Used on news page
*/
.c-news-article {
  padding-top: 48px;
  padding-bottom: 48px;
}
.c-news-article--border-top {
  border-bottom: solid 1px #e1e1e1;
}
.c-news-article:first-child {
  padding-top: 0;
}

.c-news-article__title {
  font-size: 21px;
}

.c-news-article__img {
  width: 100%;
}
@media screen and (max-width: 510px) {
  .c-news-article__img {
    float: none;
    margin: 0 auto 24px;
  }
}

.c-news-article__info {
  margin-bottom: 12px;
  font-size: 20px;
  display: block;
}

.c-testimonial {
  margin-top: 24px;
}

.c-testimonial__image-container {
  display: block;
  position: relative;
}
@media screen and (max-width: 820px) {
  .c-testimonial__image-container {
    margin-bottom: 24px;
  }
}

.c-testimonial__image {
  display: block;
  width: 100%;
  border: solid 6px #fff;
  border-radius: 10px;
}

.c-testimonial__caption {
  position: absolute;
  bottom: 12px;
  left: 0;
  background: #0b375f;
  color: #fff;
  max-width: 70%;
  padding: 12px 24px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 13px;
}
@media screen and (max-width: 984px) {
  .c-testimonial__caption {
    max-width: 90%;
  }
}

/*
    ------------------------------
    ------------------------------
    LOGIN / FORGOT PASSWORD BOX
    ------------------------------
    ------------------------------

    USED ON: 
    --- forgotten-password.aspx
    --- activate-profile.aspx



*/
.c-login-bg {
  background: #f1f1f1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-login-wrapper {
  z-index: 1;
  position: relative;
  margin: 0 auto;
  padding: 96px 24px 48px 24px;
  max-width: 100%;
  width: 430px;
  width: calc(304px + 120px + 48px);
  /*
      WIDTH BREAKDOWN CALCULATION:
          width of captcha(304px) 
          + padding left and right of c-login__content ($candidate-spacing-unit*2.5 * 2)
          + padding left and right of c-login-wrapper ($candidate-spacing-unit * 2)
  */
}
@media screen and (max-width: 510px) {
  .c-login-wrapper .recaptchaControl {
    transform: scale(0.77);
    transform-origin: 0 0;
  }
  .c-login-wrapper {
    width: calc(234px + 120px + 48px);
  }
}

.c-forgotpassword .label, .c-forgotpassword .content {
  width: 100%;
  text-align: left;
  max-width: 100%;
}
.c-forgotpassword .label {
  margin-bottom: 6px;
}

.c-login__logo {
  margin: 0 0 72px 0;
  padding: 0 72px;
  text-align: center;
}
@media screen and (max-width: 510px) {
  .c-login__logo {
    padding: 0 24px;
  }
}

.c-login__logo-img {
  max-width: 100%;
}

.c-login__content {
  background-color: #fff;
  padding: 60px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}
@media screen and (max-width: 360px) {
  .c-login__content {
    padding: 36px;
  }
}
.c-login__content .button {
  width: 100%;
}

/*------------------------------------*\
CHIPS

    Used in:
    1. Vacancy Search Results FilterResults List
\*------------------------------------*/
.chip {
  color: #333;
  display: block;
  text-decoration: none;
  background-color: #fff;
  border: solid 1px #e1e1e1;
  padding: 6px 12px;
  border-radius: 100px;
  line-height: 1;
}
.chip:hover {
  background-color: #e1e1e1;
  text-decoration: line-through;
}

.chip__delete {
  display: inline-block;
  margin-left: 4px;
  font-size: 16px;
  color: #333;
}

/*------------------------------------*\
BREADCRUMBS
\*------------------------------------*/
/*------------------------------------*\

Example Usage:

<div class="breadcrumbs">

	<ul class="not-list">

		<li><a href="#" class="" title="">Breadcrumb Text</a></li>
		<li><span class="active">Breadcrumb Text</span></li>

	</ul>

</div>


\*------------------------------------*/
.breadcrumbs {
  margin-bottom: 24px;
  background: #fff;
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li:before {
  display: inline-block;
  content: "/";
  margin: 0 4px 0 4px;
}
.breadcrumbs li:first-child:before {
  display: none;
}
.breadcrumbs .image__list li:before {
  content: "";
  display: none;
}

/*------------------------------------*\
PROFILE QUICK DETAILS
\*------------------------------------*/
.profile-quick-details-container {
  border-bottom: solid 1px #e1e1e1;
}

.profile-quick-details__name {
  display: block;
  margin-bottom: 0;
  text-decoration: none;
  color: #000;
}

/*------------------------------------*\
PROFILE-SIDENAV
\*------------------------------------*/
.profile-sidenav.is-expanded .profile-sidenav__list {
  display: block;
}
.profile-sidenav__title-container {
  width: 100%;
  padding: 12px 0;
  text-align: left;
  font-size: 16px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  border: 0;
  font-weight: 700;
}
.profile-sidenav__title-container:active {
  background: none;
}

.profile-sidenav__title {
  font-size: 16px;
  margin-bottom: 0;
  width: 100%;
  padding: 12px 0;
  text-align: left;
}

.profile-sidenav__section {
  border-bottom: solid 1px #e1e1e1;
}
.profile-sidenav__section:last-child {
  border-bottom: 0;
}
.profile-sidenav__section:first-child .profile-sidenav__title {
  padding-top: 0;
}

.profile-sidenav__list {
  display: none;
  list-style-type: none;
  margin: 0;
  padding-bottom: 12px;
}

.profile-sidenav__item {
  padding: 3px 0;
}

.profile-sidenav__link.is-active {
  color: #333;
  text-decoration: none;
}

.profile-sidenav__icon {
  float: right;
  font-size: 21px;
}
.profile-sidenav__icon.icon-check {
  color: #1b7e48;
}
.profile-sidenav__icon.icon-close {
  color: crimson;
}

.profile-sidenav__count {
  float: right;
  padding: 2px 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  background: #CC0000;
}

/*------------------------------------*\
Tiles 
\*------------------------------------*/
/*------------------------------------*\

Example Usage:

<div class="tile">
	<h3 class="tile__title"></h3>
	<div class="tile__content">

		//Optional START
		//--------------
		<div class="tile__icon"></div>
        <div class="tile__count">
            <span class="tile__counter"><%#Eval("DepartmentJobCount") %></span>
        </div>
		//--------------
		//Optional END

	</div>
    <a href='' class="tile__action"></a> 
</div>


\*------------------------------------*/
.departments {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.departments.departments--x4 .tile {
  flex: 1 1 20%;
  max-width: 24%;
}
.departments.departments--x3 .tile {
  flex: 1 1 33%;
  max-width: 31%;
}
@media screen and (max-width: 820px) {
  .departments.departments--x4 .tile, .departments.departments--x3 .tile {
    flex: 1 1 50%;
    max-width: 47%;
  }
}
@media screen and (max-width: 510px) {
  .departments.departments--x4 .tile, .departments.departments--x3 .tile {
    flex: 1 1 100%;
    max-width: 99%;
  }
}

.tile {
  background: #fff;
  border-radius: 10px;
  border: solid 1px #e1e1e1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: inherit;
  overflow: hidden;
}

.tile__banner {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
}
.tile__banner.tile__banner-1 {
  background-image: url(../../images/banners/functions/prevBanner-1.jpg);
}
.tile__banner.tile__banner-2 {
  background-image: url(../../images/banners/functions/prevBanner-2.jpg);
}
.tile__banner.tile__banner-3 {
  background-image: url(../../images/banners/functions/prevBanner-3.jpg);
}
.tile__banner.tile__banner-4 {
  background-image: url(../../images/banners/functions/prevBanner-4.jpg);
}

.tile__title {
  text-align: center;
  padding: 12px 0;
  margin-bottom: 0;
  font-weight: bold;
  width: 100%;
  text-overflow: ellipsis;
  text-decoration: underline;
}

.tile__content {
  display: block;
  text-align: center;
  padding: 24px;
  text-decoration: none;
}
.tile__content--button {
  border-top: 1px solid #e1e1e1;
}

.tile__link {
  text-decoration: none;
}

.tile__count {
  display: block;
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  font-size: 32px;
  color: #333;
}

.tile__count--large {
  font-size: 21px;
}

.tile__action {
  display: block;
  background-color: #f1f1f1;
  border-top: 1px solid #e1e1e1;
  text-align: center;
  padding: 12px 24px;
  margin-bottom: 0;
}

.tile__image img {
  padding: 0 12px;
  height: 30px;
}
.tile__image .tile__line {
  background: #e1e1e1;
  height: 1px;
  width: 20px;
}
@media screen and (max-width: 820px) {
  .tile__image .tile__line {
    display: inline-block;
    float: none;
    width: 20px;
  }
}
.tile__image .icon {
  padding: 0 12px;
  font-size: 35px;
}

.tile--testimonial {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/*------------------------------------*\
SECTIONS
\*------------------------------------*/
.profile__candidate-details {
  padding: 24px 0;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .profile__candidate-details {
    margin-top: 0;
  }
}

.profile__avatar {
  margin: 0 auto 12px;
}

.profile-tiles {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  align-items: stretch;
  padding-top: 24px;
}

.profile-tile {
  flex: 1 1 270px;
  background: #fff;
  border: solid 1px #e1e1e1;
  text-align: left;
  padding: 24px;
  border-radius: 10px;
  display: flex;
}

.profile-tile__content {
  margin-left: 30px;
}

.profile-tile__list {
  font-size: 15px;
}

.profile-tile__icon {
  font-size: 18px;
  float: left;
  width: 48px;
  height: 48px;
  position: relative;
  background: #fff;
  border: solid 1px #e1e1e1;
  border-radius: 50px;
  color: #0b375f;
  font-weight: bold;
  font-family: "Sansita", Arial, Helvetica, sans-serif;
}
.profile-tile__icon > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -51%);
}
.profile-tile__icon.active {
  background: #0b375f;
  color: #fff;
  border: unset;
}
.profile-tile__icon.inactive {
  background: #e1e1e1;
  color: #0b375f;
  border: unset;
}

.profile-tile__title {
  margin-bottom: 0;
  font-weight: bold;
  font-family: "Sansita", Arial, Helvetica, sans-serif;
  font-size: 21px;
}

.profile-tile__count {
  display: inline-block;
  vertical-align: middle;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1;
  margin-right: 3px;
}
.profile-tile__count:hover {
  text-decoration: underline;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.profile-links .profile-links__item-link:nth-last-of-type(1) {
  padding-right: 24px;
}
.profile-links .icon {
  color: #0b375f;
}

.profile-sections {
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  overflow: hidden;
}

.profile-sections__item {
  text-align: left;
}
@media screen and (max-width: 820px) {
  .profile-sections__item {
    display: block;
  }
}
@media screen and (max-width: 510px) {
  .profile-sections__item {
    margin: 12px 0;
  }
}

.regstage .icon-check {
  color: #1b7e48;
}
.regstage .icon-close {
  color: crimson;
}

.regstage__title,
.regstage__text {
  text-align: center;
}

.regstage__status {
  text-align: center;
  margin-bottom: 12px;
}
.regstage__status .icon-check-circle {
  color: #1b7e48;
  font-size: 24px;
}
.regstage__status .icon-cancel {
  color: crimson;
  font-size: 24px;
}

.print-application-form {
  max-width: 1024px;
  padding: 24px 0;
  margin: 0 auto;
  text-align: right;
}

@media print {
  .print-application-form {
    display: none;
  }
}
.profile-menu.profile-menu--mobile {
  display: none;
}
@media screen and (max-width: 820px) {
  .profile-menu.profile-menu--mobile {
    display: block;
  }
  .profile-menu.profile-menu--mobile .content-zone {
    border: unset;
  }
}
@media screen and (max-width: 820px) {
  .profile-menu {
    display: none;
  }
}

.page-profile .container--content {
  background: #fff;
}
.page-profile .processWorkflowCards .wrap {
  padding: unset;
}
.page-profile .profile__candidate-details {
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .page-profile .profile__candidate-details {
    margin-bottom: 0;
  }
}

.profile-section {
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .profile-section {
    padding-top: 0;
  }
}

@media screen and (max-width: 820px) {
  .profile-sidenav {
    display: none;
  }
}
.profile-sidenav.is-expanded {
  display: block;
}

.filter__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  clear: both;
}

.filter__listitem {
  display: inline-block;
  margin: 0 4px 4px 0;
}

.filter__clearlink:hover {
  text-decoration: underline;
}

.filter__clearlink,
.filter__refinelink {
  padding: 4px 0;
  display: inline-block;
}

/*------------------------------------*\
filter REFINE BUTTON
\*------------------------------------*/
.filter__button .icon {
  font-size: 24px;
  color: #fff;
  margin-right: 4px;
}
.sortcontainer {
  margin-bottom: 24px;
}
.sortcontainer select {
  margin-right: 0;
}
@media screen and (max-width: 510px) {
  .sortcontainer {
    float: none;
    margin: 0 0 12px 0;
  }
}

.filterblocker {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}

.search-refine {
  visibility: hidden;
  margin: 0;
  background: #fff;
  position: fixed;
  transform: translateX(-320px);
  top: 0;
  overflow: auto;
  bottom: 0;
  padding-bottom: 48px;
  z-index: 101;
  width: 320px;
  transition: transform 0.5s ease;
  box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.35);
}
.search-refine.is-visible {
  visibility: visible;
  transform: translateX(0px);
  transition: transform 0.5s ease;
}
.search-refine.is-visible .search-refine__buttoncontainer {
  left: 24px;
  transition: transform 0.5s ease;
}

.search-refine__content {
  bottom: 90px;
  top: 84px;
  left: 24px;
  padding-right: 24px;
  right: 0px;
  overflow: auto;
  position: absolute;
}

.search-refine__head {
  padding: 24px;
}

.search-refine__heading {
  display: table;
  width: 100%;
}

.search-refine__title, .search-refine__closecontainer {
  display: table-cell;
}

.search-refine__close {
  background: none;
  border: 0;
}

.search-refine__title {
  margin: 0;
  padding-right: 12px;
}

.search-refine__closecontainer {
  display: table-cell;
  width: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.search-refine__closecontainer .icon {
  font-size: 24px;
}
@media screen and (max-width: 820px) {
  .search-refine__closecontainer {
    display: table-cell;
  }
}

.search-refine__help {
  display: table;
  width: 100%;
  margin-top: 12px;
}

.search-refine__helpicon, .search-refine__helptext {
  display: table-cell;
}

.search-refine__helpicon {
  width: 1px;
  white-space: nowrap;
}

.search-refine__helptext {
  padding-left: 6px;
}

.search-refine__buttoncontainer {
  display: block;
  margin-top: 24px;
  position: fixed;
  width: 272px;
  bottom: 12px;
  left: -272px;
  transition: all 0.5s ease;
}
.search-refine__buttoncontainer .button {
  width: 100%;
  margin: 0;
}

.filter__button {
  margin-left: 10px;
  line-height: 26px;
  padding: 6px 18px;
}

.search-module__button {
  background: #f1f1f1;
  border-radius: 10px;
}

/*------------------------------------*\
IMAGES
\*------------------------------------*/
.img {
  max-width: 100%;
}

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 24px;
  margin-left: 24px;
}

.img--left {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
}

.img--maxsmall {
  max-width: 120px;
  max-height: 90px;
}
@media screen and (max-width: 510px) {
  .img--maxsmall {
    display: none;
  }
}

.img--maxlarge {
  max-width: 200px;
}

div#recaptcha_image, img#recaptcha_challenge_image {
  max-width: 100%;
}

/*------------------------------------*\
BOX
\*------------------------------------*/
/**
 *  This is used for loads of stuff such as as side boxes and boxes on vacancy details
 *  Includes featured/latest jobs
 *  If you want to adjust these for a new design use modifier classes :) box--modifier

	<div class="box">
		<h3 class="box__title">Box Title</h3>
		<p>Some stuff</p>
		<ul class="box__list box__list--nobullet">
			<li>Stuff</li>
			<li>Stuff</li>
			<li>Stuff</li>
		</ul>
	</div>

 *
 */
.box {
  margin: 0 0 24px;
}
.box > :last-child {
  margin-bottom: 0;
}

.box__item {
  background: #f1f1f1;
  padding: 24px;
  margin-bottom: 24px;
}

.box__content {
  padding: 0px 24px;
}

.box__list a {
  word-break: break-all;
}

/*------------------------------------*\
QUICKSEARCH
\*------------------------------------*/
.quicksearch {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}
.quicksearch .quicksearch__body {
  display: flex;
  width: 100%;
  align-items: flex-end;
}
@media screen and (max-width: 820px) {
  .quicksearch .quicksearch__body {
    display: block;
  }
}
.quicksearch .quicksearch__field-container {
  flex: 1 1 50%;
  vertical-align: bottom;
  padding-right: 12px;
}
@media screen and (max-width: 820px) {
  .quicksearch .quicksearch__field-container {
    display: block;
    padding: 0;
    margin-bottom: 12px;
  }
}
.quicksearch .quicksearch__field-container--button-cntr {
  flex: 0 0 auto;
  padding-right: 0;
  min-width: 160px;
}
@media screen and (max-width: 820px) {
  .quicksearch .quicksearch__field-container--button-cntr {
    width: 100%;
  }
}
.quicksearch .quicksearch__label {
  margin-bottom: 8px;
  text-align: left;
  color: #333;
}
@media screen and (max-width: 820px) {
  .quicksearch .quicksearch__label {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }
}
.quicksearch .button {
  margin-bottom: 0;
}
.quicksearch select,
.quicksearch input[type=text] {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  padding: 0.75rem;
}

.quicksearch__about .quicksearch__label {
  color: #fff;
}

.quicksearch--home {
  max-width: 1024px;
  background: rgba(0, 0, 0, 0.6);
  padding: 24px;
  border-radius: 6px;
}
.quicksearch--home .quicksearch__label {
  color: #fff;
}

.quicksearch__location {
  position: relative;
  display: block;
}
.quicksearch__location input[type=text] {
  padding-right: 48px !important;
}
.quicksearch__location .geolocation {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  line-height: 1;
  padding: 6px;
}

.quicksearch--mobile .quicksearch__body {
  display: block;
}
.quicksearch--mobile .quicksearch__field-container {
  display: block;
  padding: 0;
  margin-bottom: 12px;
}
.quicksearch--mobile .quicksearch__field-container--button-cntr {
  width: 100%;
}
.quicksearch--mobile .quicksearch__label {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.input-clear {
  position: relative;
}
.input-clear input[type=text]:placeholder-shown + .quicksearch__field-clear {
  display: none;
}
.input-clear .quicksearch__field-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none;
  line-height: 1;
  padding: 6px;
}

.quicksearch__field-clear {
  z-index: 5;
}

.quicksearch__field-clear-location {
  z-index: 1;
}

.blended-search-results {
  z-index: 999;
  position: absolute;
  width: 100%;
  color: #555;
  padding: 24px;
  display: block;
  background-color: white;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  margin-right: 50px;
  top: 100%;
  text-align: left;
  visibility: hidden;
}
.blended-search-results.show {
  visibility: visible;
}

.blended-search-results {
  max-height: 400px;
  overflow: auto;
}
.blended-search-results :focus {
  outline: none;
}
.blended-search-results .blended-search-results__start-typing P {
  color: #666;
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
}
.blended-search-results .blended-search-results__too-short {
  display: none;
}
.blended-search-results .blended-search-results__too-short P {
  color: #666;
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
}
.blended-search-results .blended-search-results__jobs__no-results {
  display: none;
}
.blended-search-results .blended-search-results__jobs__no-results p {
  color: #666;
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
}
.blended-search-results .blended-search-results__has-results {
  display: none;
}
.blended-search-results .blended-search-results__inner {
  position: relative;
}
.blended-search-results .blended-search-results__jobs ul {
  list-style: none;
  margin: 0;
}
.blended-search-results .VacancySearch-bottom {
  font-size: 16px;
}

.vacancysearch-show-more {
  border-top: dotted 1px #ccc;
  margin-bottom: 0 !important;
  font-size: 16px;
  margin-top: 36px;
}
.vacancysearch-show-more a {
  padding: 12px 24px 0;
  display: block;
  text-align: center;
}

/*------------------------------------*\
AVATARS
\*------------------------------------*/
/**
 *  Candidate area avatars
 *      
	<div class="avatar  avatar--large">
		<img class="avatar__img  avatar__img--large" />
	</div>
 *
 */
.avatar {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #f1f1f1;
  border: solid 1px #e1e1e1;
  border-radius: 50%;
}
.avatar .avatar__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.avatar .icon {
  font-size: 32px;
  position: absolute;
  right: 16px;
  bottom: 9px;
  color: #0b375f;
}
.avatar:hover .icon {
  color: #0b375f;
}

.avatar--large {
  height: 128px;
  width: 128px;
}
@media screen and (max-width: 510px) {
  .avatar--large {
    margin: 0 auto 24px;
    float: none;
  }
}

.avatar--medium {
  height: 64px;
  width: 64px;
}

.avatar--small {
  height: 35px;
  width: 35px;
}

/*------------------------------------*\
IMAGE LIST
\*------------------------------------*/
/**
 *	image__list
 *  Makes a horizontal list of images of the same height
 *  This is used on featured clients
 */
.image__list {
  clear: both;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.image__list li {
  float: left;
  margin-right: 24px;
}
.image__list img {
  max-height: 50px;
}

.image__list--small li {
  margin-right: 12px;
}

.image__list--bordertop {
  border-top: solid 3px #f1f1f1;
  padding-top: 24px;
}

/*------------------------------------*\
MAPS
\*------------------------------------*/
/**
 *  tablist 
 *  This is used to swap between map and list view for vacancies  
 */
/**
 *  MAP CALLOUTS
 *  !important is used on fonts to overwrite google defaults
 */
.map-detail {
  font-size: 13px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
  max-width: 300px;
  padding: 24px;
  border: solid 1px #e1e1e1;
  background: #fff;
  border-radius: 10px;
}

#mapInfoWindow--details.mapInfoWindow--details--open {
  left: 300px;
  transition: all 0.5s ease;
}

#mapTab, .mapTab {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-vac-results #mapTab {
  margin-top: -20px;
}

.its-c-mapContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.its-c-mapInfoWindow {
  left: -300px;
  width: 300px;
  overflow: auto;
}

.mapContainer #mapTab {
  margin-top: 0px;
}
.mapContainer .mapSidebar {
  width: 320px;
  height: 100vh;
  float: left;
  padding: 20px;
  overflow: auto;
}
.mapContainer .mapMain {
  width: 100%;
}
.mapContainer .search-refine.is-visible .search-refine__buttoncontainer {
  position: relative;
  left: 0;
}

.marker__icon {
  width: 40px;
  background-color: #0b375f;
  border-radius: 50%;
  border: 2px solid #fff;
}

/*------------------------------------*\
PAGINATOR
\*------------------------------------*/
.paginator a {
  color: #333;
  text-decoration: underline;
}

.paginator--bottom {
  margin-top: 24px;
}

.paginator__results {
  color: #333;
}

.paginator__count-results, .paginator__count-final {
  color: #333;
}

.paginator .paginator {
  border: none;
  padding: 0;
  margin: 0;
}

.PageNoInfo {
  width: auto !important;
}

.paginator--bottom .PageNoInfo {
  float: right !important;
}

.paginator .cpb {
  font-weight: 700;
}

/*------------------------------------*\
CLICK BLOCKER
\*------------------------------------*/
/**
 *  .body-relative 
 *  This is used when the mobile click blocker is toggled on so that 
 *  The overlay covers the whole content. 
 *  This is only used on the quick search.
 */
.body--relative {
  position: relative;
}

.mobile-click-blocker {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  cursor: pointer;
}

@media screen and (max-width: 820px) {
  .mobile-click-blocker--active {
    display: block;
  }
}

/*------------------------------------*\
progress
\*------------------------------------*/
.progress {
  width: 100%;
  margin-bottom: 12px;
}

.progress__total {
  width: 200px;
  height: 10px;
  border-radius: 10px;
  background: #f1f1f1;
  position: relative;
  margin: 0 auto 12px;
}
.progress__total--fullwidth {
  width: 100%;
}
.progress__total--sm {
  height: 6px;
}
.progress__total--lg {
  height: 18px;
}

.progress__complete {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  height: inherit;
  background: #1b7e48;
  border-radius: 10px;
}
.progress__complete.is-animated {
  transition: width ease-in 0.75s;
}

.progress__label {
  display: block;
  width: 100%;
  text-align: center;
  color: #333;
}

.progress__label-text {
  display: inline-block;
  font-size: 16px;
}

.progress--detailed {
  margin-bottom: 36px;
}
.progress--detailed .progress__total {
  margin-bottom: 0;
  background: #e1e1e1;
}
.progress--detailed .progress__label {
  text-align: left;
  margin-bottom: 12px;
}

.title-bar__progress-container {
  float: right;
  width: 300px;
  margin-top: 10px;
  transform: translateY(50px);
  opacity: 0;
  transition: all 200ms;
}
.title-bar__progress-container.is-attached {
  transform: translate(0);
  opacity: 1;
}
.title-bar__progress-container .progress__total {
  background: #e1e1e1;
  margin-bottom: 0;
}
@media screen and (max-width: 820px) {
  .title-bar__progress-container {
    display: none;
  }
}

.ie .title-bar__progress-container {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff slick-image-url("../../images/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: #f1f1f1;
  color: transparent;
  top: 50%;
  border-radius: 50%;
  padding: 5px;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
}
.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: #0b375f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -30px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -30px;
}
.slick-prev:before {
  content: "<";
}
[dir=rtl] .slick-prev:before {
  content: ">";
}

.slick-next {
  right: -30px;
}
[dir=rtl] .slick-next {
  left: -30px;
  right: auto;
}
.slick-next:before {
  content: ">";
}
[dir=rtl] .slick-next:before {
  content: "<";
}

.slick-play-button {
  border: none;
  color: #fff;
  margin: 12px;
  position: relative;
  z-index: 9;
  width: 44px;
  height: 44px;
  background: #0b375f;
}
.slick-play-button .icon {
  color: #fff;
  font-size: 20px;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 40px;
}

.slick-dots {
  bottom: -40px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 12px;
  width: 12px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
}
.slick-dots li.slick-active button:before {
  background-color: rgb(148.5, 148.5, 148.5);
  border-color: rgb(148.5, 148.5, 148.5);
}

#NearestJobs .slick-dots {
  display: block !important;
}

.slider--home.slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.slider--home .slick-dots {
  bottom: 0;
}

.sliderFlash {
  opacity: 0;
  height: 280px;
  overflow: hidden;
}

.slick-initialized {
  opacity: 1 !important;
  transition: opacity 0.3s ease-out;
  height: auto;
  overflow: inherit;
}

.slick-slider__home {
  position: absolute !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.slick-slider__home .slick-list, .slick-slider__home .slick-track {
  height: 100%;
}
.slick-slider__home span {
  display: block;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.empty-jobs-area .section__text {
  color: #333;
}

.widget-container ul.slick-slider {
  width: 1px;
  min-width: 100%;
  *width: 100%;
}

.people-slider .slick-slide {
  height: auto;
}
.people-slider .slick-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.people-slider .people-slider-item {
  flex: 1 1 0;
  background: #fff;
  padding: 0;
  margin-left: 12px;
  margin-right: 12px;
  border: solid 0px #e1e1e1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.people-slider .slick-prev, .people-slider .slick-next {
  z-index: 1;
  background: #0b375f;
  height: 40px;
  width: 40px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.3);
}
.people-slider .slick-prev:before, .people-slider .slick-next:before {
  color: #fff;
}
.people-slider .slick-prev {
  left: 5px;
}
.people-slider .slick-next {
  right: 5px;
}

.slider-timeline-nav {
  text-align: center;
}
.slider-timeline-nav .slick-list {
  padding-top: 50px !important;
}
.slider-timeline-nav:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 45px;
  height: 2px;
  background: #e1e1e1;
  z-index: 0;
}
.slider-timeline-nav h3 {
  position: relative;
  padding-bottom: 40px;
}
.slider-timeline-nav h3:before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0b375f;
}
.slider-timeline-nav .slick-current h3:before {
  background: #0b375f;
}
.slider-timeline-nav .slick-prev:before, .slider-timeline-nav .slick-next:before {
  display: none;
}
.slider-timeline-nav .slick-prev, .slider-timeline-nav .slick-next {
  background: #fff;
  width: 50px;
  height: 50px;
}
.slider-timeline-nav .slick-prev .icon, .slider-timeline-nav .slick-next .icon {
  font-size: 24px;
}

.job-slider-item .content {
  flex: 1 1 auto;
  width: auto;
}
.job-slider-item .label {
  flex: 0 0 auto;
  width: auto;
  padding-right: 12px;
  margin-bottom: 0;
}
.job-slider-item .item {
  margin-bottom: 3px;
}
.job-slider-item .item > div {
  display: flex;
}

.its-c-login__seperator:before {
  height: 1px;
  background-color: #e1e1e1;
}

.its-c-login__seperator__text {
  background: #fff;
  border: 0;
  font-style: italic;
}

.login__utility {
  text-align: center;
}

.change__password [id*=pnlSsoManagement] > .row > div {
  display: inline-block;
  width: auto;
}

/**
	REGISTRATION TAB BAR - USED IN REG / LOGIN MODAL
**/
.reg-tab-bar__button {
  width: 100%;
  text-align: center;
  appearance: none;
  padding: 24px 0;
  background: rgb(252.45, 252.45, 252.45);
  color: #667074;
  box-shadow: inset 0 -5px 6px -4px rgba(0, 0, 0, 0.1);
  border: solid 1px #e1e1e1;
  border-bottom: 0px;
}

.reg-tab-bar__button.is-active {
  background: #fff;
  color: #333;
  font-weight: bold;
  box-shadow: none;
}

.reg-tab-bar__container {
  padding: 48px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  border: solid 1px #e1e1e1;
  border-top: none;
}
.reg-tab-bar__container .login__content {
  padding: 0;
}

#regTab {
  border-radius: 10px 0px 0px 0px;
  border-right: 0px;
}

#loginTab {
  border-radius: 0px 10px 0px 0px;
}

.incomplete-application {
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 24px;
  opacity: 0;
  margin-bottom: 0;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  max-width: 360px;
  animation-delay: 1s;
}
.incomplete-application.animated {
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .incomplete-application {
    width: 100% !important;
    max-width: 100%;
    bottom: 0;
    right: 0;
  }
}
.incomplete-application .icon {
  font-size: 13px;
}
@media screen and (max-width: 510px) {
  .incomplete-application {
    max-width: 100%;
    bottom: 0;
    right: 0;
  }
}

.interviewSlotWarning {
  background: #333;
  padding: 24px;
  color: #fff;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  animation-delay: 1s;
  opacity: 0;
}
.interviewSlotWarning a {
  color: #fff;
}
.interviewSlotWarning.animated {
  opacity: 1;
}
@media screen and (max-width: 510px) {
  .interviewSlotWarning {
    max-width: 100%;
    bottom: 0;
    left: 0;
  }
}

.interviewSlotWarning__close {
  color: inherit;
  cursor: pointer;
}

.c-cookie-directive {
  position: relative;
  z-index: 10001;
  background-color: #f1f1f1;
  border-bottom: solid 1px #e1e1e1;
}

.c-cookie-directive__inner {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 24px;
}
@media screen and (max-width: 510px) {
  .c-cookie-directive__inner {
    flex-direction: column;
  }
}

.c-cookie-directive__content {
  padding-right: 24px;
  max-width: 760px;
}
@media screen and (max-width: 510px) {
  .c-cookie-directive__content {
    padding-right: 0;
  }
}

@media screen and (max-width: 510px) {
  .c-cookie-directive__buttons {
    padding-right: 0;
  }
}

@media screen and (max-width: 510px) {
  .c-cookie-directive__buttons .button {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
}

.accordion h3 {
  margin: 0;
  padding: 0;
  margin-bottom: 0px;
  color: #333;
  margin-top: 12px;
}

.accordion--profile h3 {
  margin-top: 0;
}

.accordion-trigger {
  background: none;
  display: block;
  font-weight: bold;
  margin: 0;
  position: relative;
  text-align: left;
  width: 100%;
  padding: 12px 24px;
  border: none;
  background: #f1f1f1;
  border-radius: 10px;
  color: #000;
}
.accordion-trigger.accordion-trigger--profileSections {
  background: #fff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  padding: 24px;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.accordion-trigger.accordion-trigger--profileSections svg {
  fill: #e1e1e1;
  margin-right: 24px;
  transition: all 0.3s ease-in-out;
}

.accordion-title {
  padding-right: 24px;
  display: block;
}
.accordion-title.accordion-title--profileSection {
  transition: all 0.3s ease-in-out;
}

.accordion-icon {
  border: solid currentcolor;
  border-width: 0 2px 2px 0;
  height: 12px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 12px;
}
.accordion-icon.accordion-icon--profile {
  border: solid #0b375f;
  border-width: 0 2px 2px 0;
}

.accordion-trigger[aria-expanded=true] .svg--profileSection {
  fill: #0b375f;
}
.accordion-trigger[aria-expanded=true] .accordion-title.accordion-title--profileSection {
  color: #0b375f;
}
.accordion-trigger[aria-expanded=true] .accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion-panel {
  margin: 0;
  padding: 0;
  background: #f1f1f1;
  margin-bottom: 0px;
  padding: 24px 24px;
  color: #333;
  border-top: 1px solid #e1e1e1;
  border-radius: 0px 0px 10px 10px;
}
.accordion-panel.accordion-panel--profileSections {
  background: #fff;
  border-top: none;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 0px;
}

/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.accordion-panel[hidden] {
  display: none;
}

.accordion--profileMenu {
  display: none;
}
@media screen and (max-width: 820px) {
  .accordion--profileMenu {
    display: block;
  }
}
.accordion--profileMenu h3 {
  margin: unset;
}
.accordion--profileMenu .accordion-trigger {
  text-align: center;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: unset;
  border-top: 1px solid #e1e1e1;
  border-radius: unset;
  padding: unset;
}
.accordion--profileMenu .accordion-title {
  padding: 24px;
  font-size: 16px;
  font-weight: normal;
  color: #0b375f;
  margin-left: -10px;
}
.accordion--profileMenu .accordion-title--text {
  margin-right: 24px;
}
.accordion--profileMenu .accordion-icon {
  right: unset;
}

.accordion-panel--profileSections[aria-expanded=false]:last-of-type {
  border-bottom: unset;
}

#ContentFiles {
  border-bottom: unset;
  border-top: 1px solid #e1e1e1;
}

#AccordionFiles {
  border-bottom: unset;
}

.cookie-not-enabled {
  color: #333;
  text-align: center;
  background: #e1e1e1;
  padding: 24px;
  margin: 0 auto 24px;
  border-radius: 10px;
}
.cookie-not-enabled a {
  text-transform: lowercase;
  color: #333;
}
.cookie-not-enabled .icon {
  color: #333;
  margin-right: 6px;
}

.its-c-mapContainer .cookie-not-enabled {
  margin: 0 24px 24px;
}

.video-unavailable {
  background: #f8f8f8;
  border: solid 1px #e1e1e1;
  text-align: center;
  height: 315px;
  width: 100%;
  padding-top: 130px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 24px;
}
.video-unavailable .icon {
  font-size: 24px;
}

.colleague-popup {
  display: none;
  width: 100%;
  max-width: 1200px;
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  padding: 0;
  margin: 0;
  background: #0b375f;
  color: #fff;
  border-radius: 0px;
}
.colleague-popup .dtable {
  min-height: 440px;
}
.colleague-popup p {
  font-size: 26px;
}

.slider--Testimonials .slick-slide {
  height: auto;
}
.slider--Testimonials .slick-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.slider--Testimonials .people-slider-item {
  flex: 1 1 0;
  background: #fff;
  padding: 24px;
  margin-left: 12px;
  margin-right: 12px;
  border: solid 1px #e1e1e1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.slider--Testimonials .people-slider-item a {
  text-decoration: none;
}
.slider--Testimonials .people-slider-item strong {
  margin-bottom: 20px;
  font-size: 21px;
  text-decoration: underline;
  color: #0b375f;
  display: block;
  text-decoration: none;
}
.slider--Testimonials .people-slider-item .img {
  background: #f1f1f1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.slider--Testimonials .people-slider-item .people-slider__link {
  display: block;
  margin: 12px 0 24px;
  line-height: 24px;
}

.list-testimonial-container {
  position: relative;
  list-style-type: none;
  background: #fff;
  max-height: 480px;
  max-width: 800px;
  overflow-y: auto;
  margin: 0 auto;
  border-radius: 10px;
  border: solid 1px #e1e1e1;
}
@media screen and (max-width: 820px) {
  .list-testimonial-container {
    margin-bottom: 24px;
  }
}

.list-testimonial {
  padding: 24px;
  border-bottom: solid 1px #e1e1e1;
}
.list-testimonial .list-testimonial__info {
  display: flex;
  margin-bottom: 24px;
}
@media screen and (max-width: 510px) {
  .list-testimonial .list-testimonial__info {
    flex-direction: column;
  }
}
.list-testimonial .list-testimonial__more-info {
  flex: 0 0 30%;
}

.people-popup {
  display: none;
  width: 100%;
  max-width: 1230px;
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  padding: 0;
  margin: 0;
  background: #0b375f;
  color: #fff;
}
.people-popup h3 {
  margin-bottom: 0;
}
.people-popup h2 {
  font-size: 22px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 48px;
  margin-top: 48px;
}
@media screen and (max-width: 820px) {
  .benefit-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.benefit {
  padding: 0 24px 24px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: #f1f1f1;
  position: relative;
}
.benefit__iconHolder {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: -32px 0 24px;
  border-radius: 100%;
}
.benefit__iconHolder svg path {
  fill: #0b375f;
}
.benefit .benefit__description {
  text-align: left;
  position: relative;
  z-index: 1;
  width: 100%;
  word-break: break-word;
}
.benefit .benefit__description h3 {
  color: #333;
  margin: 0 0 12px;
}
.benefit .benefit__description p {
  display: block;
  color: #333;
}
.benefit .benefit__description p:last-child {
  margin-bottom: 0;
}

/* SINGLE COLUMN LAYOUT STYLING FOR VACANCY RESULTS GRID  */
.vac-field-layout .item {
  width: 100%;
}
.vac-field-layout .item > div {
  display: flex;
}
.vac-field-layout .label {
  margin-bottom: 0;
  padding-right: 0;
}
.vac-field-layout .label span {
  margin-left: 0;
}
.vac-field-layout .content {
  word-break: break-word;
}
.vac-field-layout.vac-field-layout--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 820px) {
  .vac-field-layout.vac-field-layout--grid {
    grid-template-columns: 1fr;
  }
}

.vac-field-layout--show-labels .item {
  margin-bottom: 12px;
}
.vac-field-layout--show-labels .item .label {
  font-weight: 700;
}
.vac-field-layout--show-labels .item > div {
  flex-direction: column;
}

.vac-field-layout--show-icons .label .icon {
  width: 30px;
}

.vac-field-layout--show-icons.vac-field-layout--show-labels .item .content {
  margin-left: 30px;
}
.vac-field-layout--show-icons.vac-field-layout--show-labels .h3 .content {
  margin-left: 0px;
}

.suggested-jobs-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
}
.suggested-jobs-grid__item {
  display: flex;
  width: 100%;
  width: calc(33.33% - 16px);
}
@media screen and (max-width: 984px) {
  .suggested-jobs-grid__item {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 820px) {
  .suggested-jobs-grid__item {
    width: 100%;
  }
}
.suggested-jobs-grid__job-card {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

.suggested-jobs-slider .slick-slide {
  height: auto;
}
.suggested-jobs-slider .slick-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.suggested-jobs-slider .job-slider-item {
  flex: 1 1 0;
  background: #fff;
  padding: 24px;
  margin-left: 12px;
  margin-right: 12px;
  border: solid 1px #e1e1e1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list-job-container {
  position: relative;
  list-style-type: none;
  background: #fff;
  max-height: 480px;
  max-width: 800px;
  overflow-y: auto;
  margin: 0 auto;
  border-radius: 10px;
  border: solid 1px #e1e1e1;
}
.list-job-container.is-fullheight {
  max-height: initial;
}
.list-job-container:last-child {
  border-bottom: none;
}
@media screen and (max-width: 820px) {
  .list-job-container {
    margin-bottom: 24px;
  }
}

.list-job {
  padding: 24px;
  border-bottom: solid 1px #e1e1e1;
}
.list-job .list-job__info {
  display: flex;
}
@media screen and (max-width: 510px) {
  .list-job .list-job__info {
    flex-direction: column;
  }
}
.list-job .list-job__details {
  flex: 1 1 auto;
  padding-right: 24px;
}
.list-job .list-job__more-info {
  flex: 0 0 30%;
}

/*------------------------------------*\

    FORM PROCESS STYLES FOR:

    - Applying for a Vacancy
    - Completing a 'Thing To Do' (I.E. from the dashboard page, like Onboarding or Reference Collection Gathering)

\*------------------------------------*/
.dfw-process__form.nav-off {
  width: 100%;
  padding: 0;
  float: none;
}

.dfw-process__nav {
  position: sticky;
  top: 120px;
}
.dfw-process__nav.dfw-process__nav--nonFixed {
  position: static;
}
@media screen and (max-width: 820px) {
  .dfw-process__nav {
    position: static;
  }
}
@media screen and (max-height: 1024px) {
  .dfw-process__nav .content-zone {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }
}

.complete-form .container--topcontent {
  position: sticky;
  top: 0;
  z-index: 1;
}
.complete-form .container--topcontent.container--nonFixed {
  position: static;
}
@media screen and (max-width: 820px) {
  .complete-form .container--topcontent {
    position: static;
  }
}

/*------------------------------------*\
    BUTTONS THEMES THAT OVERRIDE THEMES SET IN FRAME
    THESE BUTTONS ARE USED IN ITS-CONTROLS COMING FROM CONTROLS LIBRARY.

    NOTE:
    -------------
    If, in the future we decide to make changes in FRAME's its-t-button stylesheet, this file 
    needs to be kept in-line with those changes. EG:

    We create a new .its-t-button-2 {} style in frame, we should then come in here and add the 
    base theme styles we want the web to have.


\*------------------------------------*/
.its-t-button-default {
  color: #333;
  background: #f1f1f1;
  border: solid 1px transparent;
  box-shadow: none;
}

.its-t-button-clear {
  color: #333;
  background: transparent;
  font-weight: 400;
}
.its-t-button-clear:hover {
  background: rgba(0, 0, 0, 0.1);
}
.its-t-button-clear:active {
  background: rgba(0, 0, 0, 0.2);
}
.its-t-button-clear.is-bordered {
  border: solid 1px rgba(0, 0, 0, 0.2);
}

.its-t-button-link {
  color: #0b375f;
  background: transparent;
  border: solid 1px transparent;
  font-weight: 400;
}
.its-t-button-link:hover, .its-t-button-link:active {
  background: transparent;
}
.its-t-button-link:hover {
  color: rgb(8.3537735849, 41.7688679245, 72.1462264151);
}
.its-t-button-link:active {
  color: rgb(5.7075471698, 28.5377358491, 49.2924528302);
}

.its-t-button-1 {
  color: #fff;
  background: #0b375f;
  border: solid 1px transparent;
}
.its-t-button-1:hover {
  background: rgb(8.3537735849, 41.7688679245, 72.1462264151);
}
.its-t-button-1:active {
  background: rgb(5.7075471698, 28.5377358491, 49.2924528302);
}

/*

    *t- prefixed classes are themes. 
    You can only change colours here!


*/
/*
    OVERRIDE for modal styles being pulled through from FRAME
*/
.its-t-modal .its-o-modal__header {
  background: #0b375f;
  color: #fff;
}

.its-c-fileupload__section {
  background: #f1f1f1;
  border: solid 1px #e1e1e1;
  border-radius: 5px;
}
.its-c-fileupload__section .itc-c-fileupload__icon {
  color: #e1e1e1;
}
.its-c-fileupload__section .its-c-fileupload__label {
  font-weight: normal;
}

.telerik-fileupload.RadUpload .ruFileLI .ruRemove,
.telerik-fileupload.RadUpload .ruFileLI .ruCancel {
  color: #0b375f;
}
.telerik-fileupload.RadUpload .ruFileLI .ruRemove:hover,
.telerik-fileupload.RadUpload .ruFileLI .ruCancel:hover {
  color: #0b375f;
}

.its-t-color {
  color: #0b375f;
}

.its-t-color-white {
  color: #fff;
}

.its-t-background-color {
  background-color: #0b375f;
}

.its-t-bg {
  background-color: #f1f1f1 !important;
}

.its-t-bg-brand {
  background-color: #0b375f !important;
}

.its-t-border {
  border-color: #e1e1e1 !important;
}

.its-t-border-color {
  border-color: #0b375f;
}

.its-t-border-brand {
  border-color: #0b375f !important;
}

.its-c-slots__slot {
  background: #fff !important;
  border: solid 1px #e1e1e1;
  border-radius: 10px;
}

.its-c-slots__row {
  background: #fff;
}

.its-c-slots__slot + .its-c-slots__slot {
  margin-top: 12px;
}

.its-c-slots__row + .its-c-slots__row {
  margin-top: 12px;
}