/*
 * General
 */
img {
  max-width: 100%;
}

.rtd ul:not([class]) {
  margin: 15px 0;
  padding-left: 20px;
  list-style: disc;
}
.rtd ul:not([class]) li:before {
  display: none;
  content: "";
}
.rtd ul:not([class]) li:not([class]) {
  line-height: normal;
  padding: 0;
}

/*
 * Custom Select
 */
.select {
  color: rgb(45, 45, 133);
  position: relative;
  flex: 1;
  margin: 0 10px;
}
.select__display {
  width: 100%;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  border: 1px solid white;
  border-radius: 10px;
  background: #065E74;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 300ms;
  text-transform: capitalize;
}
.select__display:hover {
  background: #064555;
}
.select__display::after {
  font-size: 1.8rem;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: auto;
  color: #fff;
  transition: 300ms;
}
.select.open .select__display::after {
  content: "\f068";
}
.select__options {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 100%;
  max-height: 260px;
  border-radius: 10px;
  background-color: white;
  list-style: none;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #065E74 transparent;
}
.select__options::-webkit-scrollbar {
  width: 20px;
  background: transparent;
}
.select__options::-webkit-scrollbar-track {
  background-color: transparent;
}
.select__options::-webkit-scrollbar-thumb {
  width: 10px;
  background-color: #065E74;
  border-radius: 10px;
  border: 6px solid white;
}
.select__option label {
  padding: 3px 14px;
  display: block;
  transition: 300ms;
  font-size: 1.4rem;
  line-height: 1.3;
  cursor: pointer;
}
.select__option label.disabled {
  opacity: 0.5;
  cursor: default;
}
.select__option label:hover {
  background-color: rgba(211, 211, 211, 0.5);
}
.select__option.isChecked {
  position: relative;
}
.select__option.isChecked::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  font-size: 1.8rem;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: auto;
  color: #065E74;
  transition: 300ms;
}
.select:not(.open) .select__options {
  display: none;
}

.form-inputs-search {
  position: relative;
}
.form-inputs-search #predictive-search {
  display: none;
  min-width: 300px;
  padding: 5px 0;
  position: absolute;
  top: 70px;
  left: 20px;
  z-index: 10;
  background-color: #fff;
  border-radius: 10px;
}
.form-inputs-search #predictive-search .result-row {
  padding: 10px;
}
.form-inputs-search #predictive-search .result-row:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.select-buttons {
  height: 60px;
}

.filter-buttons .select {
  display: none;
}

/* Wesley - CSS */
.wbjb-job-list-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.wbjb-job-list-item .wpjb-job_title {
  width: 40%;
  min-width: 200px;
  margin-right: 2%;
}
.wbjb-job-list-item .wpjb-job_location {
  width: 40%;
  min-width: 200px;
}
.wbjb-job-list-item .wbjb-job-date-type {
  width: 20%;
  text-align: center;
}

@media (max-width: 48rem) {
  .jobs-board .wbjb-job-list-item {
    flex-wrap: wrap;
  }
  .wbjb-job-list-item .wpjb-job_title,
.wbjb-job-list-item .wpjb-job_location,
.wbjb-job-list-item .wbjb-job-date-type {
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
  }
}
.wpjb a.wpjb-button:visited,
.wpjb .wpjb-upload-actions a.button:visited,
.wpjb a.wpjb-button:hover,
.wpjb .wpjb-upload-actions a.button:hover {
  color: #ffffff !important;
}

.wpjb .job-info-box {
  width: 100%;
}

/* Google Maps */
.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

/* Add padding to the top of the body to allow for the header */
body {
  padding-top: 80px;
}
@media screen and (min-width: 64rem) {
  body {
    padding-top: 150px;
  }
}

/*
 * Form maker textarea fix
 */
textarea#script_mail_user,
.js .tmce-active .wp-editor-area,
.js .tmce-active textarea.wp-editor-area {
  color: black !important;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

/*
 * Induction - Questionnaire
 */
.questionnaire h3 {
  margin-top: 5rem;
  margin-bottom: 3rem;
  font-weight: bold;
}
.questionnaire .form-group-container,
.questionnaire .radio-group {
  width: 100%;
  margin-bottom: 3rem;
}
.questionnaire--medical .radio-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.questionnaire--medical .radio-container label {
  margin-right: 1rem;
  margin-bottom: 0;
}
.questionnaire--medical .radio-container label:last-of-type {
  margin-left: 2rem;
}
.questionnaire--medical .form-group .form-question {
  font-weight: bold;
  margin-bottom: 1rem;
}
.questionnaire--medical .form-group .form-question-details {
  margin-bottom: 1rem;
}
.questionnaire--medical .form-group .form-input {
  width: 100%;
  margin: 0;
}
.questionnaire--medical .radio-group .radio-question {
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .questionnaire--medical .radio-container {
    justify-content: flex-start;
  }
  .questionnaire--medical .form-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .questionnaire--medical .form-group:last-child {
    align-items: center;
  }
  .questionnaire--medical .form-group .form-question,
.questionnaire--medical .form-group .form-question-details {
    width: 48%;
    text-align: left;
    margin-bottom: 0;
  }
  .questionnaire--medical .form-group .radio-container {
    width: 48%;
  }
  .questionnaire--medical .form-group .form-input {
    width: 48%;
  }
  .questionnaire--medical .radio-group-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .questionnaire--medical .radio-group {
    margin-bottom: 2rem;
    width: 48%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .questionnaire--medical .radio-group .radio-question {
    width: 60%;
    text-align: left;
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=stylesheet.css.map */
