/****** Global Options Style Guide ******
 h1 - h6: set in Symphony Talent > Options > Global Typography
 Buttons: set in Symphony Talent > Options > Symphony Talent Builder Elements > Buttons
 --- NOTE: Buttons in our platform - job search buttons, etc. will likely need some aspect set here in css
 Color palette: set in Symphony Talent > Options > Colors
 (pre-existing variables will be named - var(--awb-color1) - through number 8)
 (after 8 additional colors will be named sequentially as var(--awb-custom_color_1) )
 ************************/
/*===Added to fix IE spacing issue on flex columns===*/
.ua-ie-11 .fusion-flex-column > div > div:not([class]) {
  display: flex;
  flex-shrink: 0;
}
/*===Added to fix the empty regtangle icon for breaks on IE===*/
br {
  font-family: serif;
}
/******* Job Search Banner *******/
body .search-banner {
  width: 100%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
body .search-banner .widget, body .search-banner form > div {
  margin-bottom: 0;
  float: none;
  padding: 10px;
}
body .search-banner .w-form-row-label {
  line-height: 18px;
  margin-top: -18px;
}
body .search-banner label {
  margin-bottom: 0;
}
body .search-banner form {
  display: flex;
  padding: 10px 0px 0px;
  align-items: center;
}
body .search-banner .widgettitle.cws-widgetitle {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px !important;
}
body .search-banner input[type="text"] {
  border-radius: 5px !important;
}
body .search-banner .select2-selection.select2-selection--single, body .search-banner input[type="text"] {
  min-height: 40px;
  line-height: 40px;
  font-size: 15px;
}
body .search-banner .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
}
body .search-banner .select2.select2-container:after {
  content: "\f107";
  width: 16px;
  height: 16px;
  color: var(--primary_color);
  position: absolute;
  right: 7px;
  top: 12px;
  font-family: FontAwesome;
  font-size: 16px;
  line-height: 16px;
}
body .search-banner .quicksearch-btn {
  text-align: center;
}
body .search-banner .quicksearch-btn input {
  width: 75%;
}
@media (max-width: 767px) {
  body .search-banner form {
    flex-direction: column;
  }
}
/******* Sign In Menu Item - Small Header *******/
body .sign-in-mi a.fusion-background-highlight {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body .sign-in-mi .menu-dropdown.xcc-sign-in-parent {
  padding-bottom: 0;
}
body .sign-in-mi .menu-dropdown.xcc-sign-in-parent:focus-within .xcc-sign-in-submenu {
  display: block !important;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
body .sign-in-mi .menu-dropdown .xcc-sign-in {
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  padding-left: 25px;
  padding-right: 26px;
}
body .sign-in-mi .menu-dropdown .xcc-sign-in-submenu {
  min-width: 260px;
}
body .sign-in-mi .menu-dropdown .xcc-sign-in-submenu a {
  font-size: 12px;
  padding: 8px 5px;
}
/******* XCR pages - Sign Up,etc. *******/
body .ng-scope {
  font-family: var(--body_typography-font-family);
}
body .modal.ng-scope {
  z-index: 999999 !important;
}
body .modal.ng-scope * {
  font-family: var(--body_typography-font-family) !important;
}
/******* Hot jobs *******/
.home-hotjobs {
  width: 100%;
}
.home-hotjobs .widget-joblist {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}
.home-hotjobs .widget-joblist .widget_joblist_row {
  width: 30.33%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  margin: 0 1.5%;
  background: #fff;
  padding: 40px 40px 50px 40px;
  display: flex;
  flex-direction: column;
}
.home-hotjobs .widget-joblist .widget_joblist_row > div {
  float: none;
  display: block;
}
.home-hotjobs .widget-joblist > .widget_joblist_row:nth-child(4) {
  display: none;
  /** This is a corrective issue for the Similar Jobs List Widget - sometimes it will be short 1 result, even when there are jobs available, so you have to set it to 1 more than you need and then use this class to hide the extra***/
}
.home-hotjobs .job-list-left-container {
  line-height: 1.4;
  width: 100%;
  margin-bottom: 20px;
}
.home-hotjobs .job-list-left-container a {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
  display: block;
}
.home-hotjobs .job-list-right-container {
  width: auto;
  margin-bottom: 0;
  margin-top: auto;
}
.home-hotjobs .job-list-right-container a {
  display: block;
  margin: 0 auto;
  width: fit-content;
  border-radius: 37px 37px 37px 37px;
  background-color: var(--primary_color);
  color: var(--link_color);
  text-align: center;
  padding-top: var(--button_padding-top, 13px);
  padding-right: var(--button_padding-right, 29px);
  padding-bottom: var(--button_padding-bottom, 13px);
  padding-left: var(--button_padding-left, 29px);
  line-height: var(--button_line_height, 1);
  font-size: var(--button_font_size, 14px);
  font-weight: 600;
}
.home-hotjobs .job-list-right-container a:hover {
  background-color: var(--link_color);
  color: var(--button_accent_hover_color, var(--button_accent_color));
}
@media (max-width: 767px) {
  .home-hotjobs .widget-joblist {
    flex-direction: column;
  }
  .home-hotjobs .widget-joblist .widget_joblist_row {
    width: 100%;
    margin-bottom: 20px;
  }
}
/******* Job Search Filters, Map, Details Image *******/
#cws-search-form > .w-form-row {
  margin-bottom: 10px;
}
#cws-search-form label {
  margin-bottom: 0;
}
#cws-search-form input[type="text"] {
  border-radius: 5px !important;
  margin-bottom: 0;
  height: 40px;
}
#cws-search-form .select2.select2-container:after {
  content: "\f107";
  width: 16px;
  height: 16px;
  color: var(--body_typography-color);
  position: absolute;
  right: 7px;
  top: 12px;
  font-family: FontAwesome;
  font-size: 16px;
  line-height: 16px;
}
#cws-search-form .select2.select2-container.select2-container--default {
  margin-bottom: 10px;
}
#cws-search-form .select2-selection.select2-selection--single {
  min-height: 40px;
}
#cws-search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
}
#cws-search-form fieldset {
  margin-top: 10px;
}
#cws-search-form fieldset legend {
  margin-bottom: 0;
  font-size: 13px;
  color: var(--primary_color);
  font-family: var(--body_typography-font-family);
}
#cws-search-form .checkbox-group h5, #cws-search-form .checkbox-group .Nationwide, #cws-search-form .checkbox-group .Statewide, #cws-search-form .checkbox-group .Onsite {
  display: none;
}
#cws-search-form .checkbox-group .Remote input {
  top: 0;
  margin-top: 0;
  margin-right: 3px;
}
#cws-search-form .search-submit-btn {
  margin-top: 20px;
}
.widget-jobsearch-results > .clearfix {
  margin-bottom: 10px;
}
#job-map-toggle .world-icon {
  top: 6px;
}
body .widget-jobsearch-results #live-results {
  margin-top: 0;
  float: left;
}
.ejd-page h1 {
  margin-top: 0;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 30px;
}
.ejd-page .ejd-img .ejdimgwrap {
  width: 100%;
  display: block;
  height: 400px;
  min-height: 100%;
}
.ejd-page .ejd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .widget-jobsearch-results .job .joblist-location, .widget-jobsearch-results .job .joblist-posdate {
    padding-left: 0 !important;
  }
  #wrapper #main .widget-jobsearch-results .search-columns.fusion-row {
    padding: 5px 10px !important;
    background: black;
  }
  .xcc-sign-in-submenu {
    position: static !important;
  }
  #menu-small-header-menu .fusion-background-highlight {
    justify-content: right;
  }
  .menu-dropdown .xcc-sign-in-submenu:before {
    right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .widget-jobsearch-results .search-results-table .fusion-layout-column.fusion-two-fifth {
    width: 34%;
  }
  .widget-jobsearch-results .search-results-table .fusion-layout-column.fusion-one-fifth {
    width: 17%;
  }
  .EJD-locations .slick-slide {
    margin: 0px !important;
  }
  .search-filters-column > .fusion-column-wrapper {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .fusion-body .why-covenant-health {
    order: 0 !important;
  }
  .search-filters-column #widget_job_search_full-2 a {
    opacity: 1;
    text-shadow: none;
  }
}
.EJD-locations .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center !important;
}
.EJD-locations .slick-track {
  display: flex !important;
  align-items: center;
}
.EJD-locations .slick-prev {
  left: -30px;
  width: 30px;
  height: 35px;
}
.EJD-locations .slick-next {
  right: -30px;
  width: 30px;
  height: 35px;
}
@media only screen and (max-width: 1024px) {
  .EJD-locations .slick-track .fusion-column-wrapper {
    margin: 0px !important;
  }
  .fusion-layout-column .slick-track .fusion-layout-column {
    width: 43% !important;
  }
  .EJD-locations .slick-prev {
    left: 40px !important;
  }
  .EJD-locations .slick-next {
    right: 45px !important;
  }
  .EJD-locations > .fusion-column-wrapper {
    margin: 0px !important;
  }
}
@media only screen and (max-width: 767px) {
  .EJD-locations .slick-prev {
    left: 35px !important;
  }
  .EJD-locations .slick-next {
    right: 40px !important;
  }
  .ejd-page .EJD-locations .fusion-layout-column {
    width: 60% !important;
  }
}
.ejd-page #main {
  padding-top: 0px;
}
.ejd-page .fusion-accordian .fieldValueText span {
  font-size: 16px !important;
}
.ejd-page .fusion-accordian .panel-body {
  padding-top: 30px;
  padding-bottom: 15px;
}
.fusion-tb-header .fusion-builder-row .header-social-icons {
  width: 20% !important;
}
@media only screen and (max-width: 767px) {
  .fusion-tb-header .fusion-builder-row .header-social-icons {
    width: 50% !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fusion-tb-header .fusion-builder-row .header-social-icons {
    width: 33.3% !important;
  }
  .home-hotjobs .widget-joblist .widget_joblist_row {
    width: 47%;
  }
  .select2-results__option {
    word-wrap: break-word;
  }
  .EJD-social-sharing > .fusion-column-wrapper {
    margin-right: 0px !important;
    margin-left: 160px !important;
  }
  .EJD-social-sharing > .fusion-column-wrapper .fusion-social-networks {
    justify-content: flex-start !important;
  }
  #widget-jobsearch-results-pages .button {
    margin: 0px 5px;
    padding: 9px 12px;
  }
  #main .post-content .search-results-column {
    width: 75% !important;
  }
  #main .post-content .search-filters-column {
    width: 25% !important;
  }
  .EJD-social-sharing > .fusion-column-wrapper {
    margin: 0 auto !important;
  }
  .EJD-social-sharing .fusion-social-networks {
    justify-content: flex-start !important;
  }
  #main .post-content .EJD-social-sharing {
    width: 33.3% !important;
  }
  #main .post-content .EJD-breadcrumbs {
    width: 66.6% !important;
  }
  .EJD-social-sharing .fusion-sharing-box {
    align-items: flex-start !important;
  }
}
.form-control.ng-invalid {
  background-color: #fff;
}
.form-group.has-success input, .input-group.has-success input, .form-group.has-success select, .input-group.has-success select, .form-group.has-success textarea, .input-group.has-success textarea {
  background: transparent;
  border-color: #000;
  color: #000 !important;
}
#main .post-content .thank-you-message-container {
  z-index: 0 !important;
}
.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
  color: #000;
}
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: #000;
}
label[for="termsAndPolicy"] span u a:hover {
  color: black;
}
.form-group.has-error input, .input-group.has-error input, .form-group.has-error .select, .input-group.has-error .select, .form-group.has-error textarea, .input-group.has-error textarea {
  background-color: white;
  border-color: black;
}
.has-error .form-control {
  border-color: black;
}
.resume-filename a:before {
  position: relative;
  top: 6px;
}
#termsAndPolicyDescription {
  color: #e46f61;
}
.form-hroup.has-feedback .help-block {
  color: #e46f61;
}
.form-group.has-error input {
  color: #000 !important;
}
.gigya-login-providers {
  height: 0px !important;
}
#socialLoginProvider {
  padding-left: 0px !important;
}
#candidatePoolMainContainer .copyright.ng-binding {
  display: none;
}
#candidatePoolMainContainer label[for="fileupload"] {
  background: #454545 !important;
  border-color: #454545;
  color: white;
  opacity: 1;
  width: 125px;
  height: 32px !important;
}
#candidatePoolMainContainer label[for="fileupload"]:hover {
  background-color: #3ecdf1 !important;
  border-color: #3ecdf1;
  color: #fff;
}
.fusion-tb-header .social-links-header {
  padding: 17px 30px !important;
}
.xcloud-unsubscribe-msg .h1.ng-binding {
  font-size: 32px;
}
.xcloud-unsubscribe-msg p.ng-scope {
  font-size: 16px;
}
#job-map-toggle .world-icon {
  top: 9px;
  left: 10px !important;
}
.home-hotjobs .widget-joblist {
  flex-wrap: wrap;
}
.home-hotjobs .widget-joblist .widget_joblist_row {
  margin-bottom: 20px;
}
input[name="termsAndPolicy"] {
  margin-top: 8px;
}
.header-social-icons .fusion-social-networks a:hover {
  color: white !important;
}
.home-hotjobs .widget-joblist .widget_joblist_row.alt {
  background-color: white !important;
}
.job-description-accordion * {
  font-size: 16px !important;
  line-height: 22px !important;
  font-family: "Public Sans" !important;
}
/*.job-description-accordion a.apply-btn,.job-description-accordion a.apply-btn:hover{
 background-color:#f3cf1e;
 }*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  #colhead-title_category {
    width: 38%;
  }
  #colhead-title_category .col-controls, #colhead-city_state .col-controls, #colhead-open_date .col-controls {
    margin-top: 8px;
  }
}
.button-default:hover {
  color: var(--button_accent_color) !important;
}
.job-description-accordion a.apply-btn:hover {
  color: white !important;
  text-decoration: none;
}
.search-results-column a#job-map-toggle:hover, .search-filters-column a#cws-adv-search-btn:hover {
  color: white !important;
  text-decoration: none;
}
.EJD-social-sharing .fusion-social-networks {
  justify-content: flex-start !important;
}
.EJD-social-sharing .fusion-sharing-box .tagline {
  margin-bottom: 10px !important;
}
.EJD-social-sharing .fusion-social-networks .fusion-social-network-icon {
  margin: 5px 10px 5px 10px !important;
}
.EJD-social-sharing .fusion-column-wrapper {
  margin-left: 22px !important;
}
.form-control-feedback.glyphicon.glyphicon-remove::before {
  top: 45px !important;
  left: 8px !important;
}
.form-control-feedback.glyphicon-ok::before {
  position: relative;
  top: 5px !important;
}
@media (max-width: 767px) {
  #widget-jobsearch-results-pages .button {
    margin: 0px;
    padding: 10px;
    font-size: 11px;
  }
  #main .post-content .search-results-column {
    width: 100% !important;
  }
  .EJD-social-sharing .fusion-social-networks {
    justify-content: center !important;
  }
}
.fusion-tb-header .fusion-social-networks a {
  margin: 13px !important;
  outline-offset: 2px;
}
.search-filters-column .fusion-widget-area .select2-container .select2-selection:focus, .search-filters-column .fusion-widget-area .location_type_container.Remote input:focus {
  outline: solid 2px #000 !important;
}
.search-filters-column .fusion-widget-area .location_type_container.Remote input {
  outline-offset: 0.3px;
}
.search-results-column #widget-jobsearch-results-pages .pagination-li a.button-default:focus, .search-results-column #widget-jobsearch-results-pages .pagination-li a.button-default:hover {
  color: white !important;
}
.fusion-tb-header .fusion-social-links .fusion-social-networks.color-type-custom .fusion-social-network-icon:hover {
  color: white !important;
}
.fusion-sharing-box a:first-item {
  margin-left: 0px;
}
*:focus {
  outline: solid 2px #000 !important;
}
#cws-search-form .w-form-row-field input:focus {
  border: none;
}
@media (max-width: 767px) {
  .EJD-social-sharing div:not(.fusion-social-networks) {
    text-align: center;
  }
  .search-filters-column a#toggleAdvSearch:hover span {
    color: white;
  }
  .awb-menu__open-nav-submenu_mobile {
    outline-offset: -4px;
  }
  .EJD-social-sharing div:not(.fusion-social-networks) {
    margin: 0 auto !important;
    padding: 0 !important;
  }
}
@media (max-width: 1024px) {
  .awb-menu__m-toggle {
    padding: 0px !important;
  }
}
label[for="fileupload"] {
  background-color: var(--awb-color5);
}
#main #fileupload {
  width: 132px;
  height: 39px !important;
  margin-left: -3px;
  margin-top: -3px;
}
.fileupload:focus {
  opacity: 1 !important;
}
.header-logo a, .footer-logo a {
  display: block;
}
.search-results-table .search-columns div:focus {
  outline-color: white !important;
}
.search-results-table #colhead-primary_category {
  word-wrap: break-word;
}
.slick-prev.slick-arrow {
  z-index: 999;
}
input[type=checkbox]:focus {
  outline: 1px solid !important;
}
a.EJD-join-button:focus {
  outline: 1px solid !important;
  outline-offset: -3px !important;
}
.search-results-column #job-map-toggle .toggle-text {
  line-height: 12px;
}
.display-none {
  display: none;
}
.form-group.has-error .help-block, #termsAndPolicyDescription {
  color: red;
}
.awb-menu__open-nav-submenu_mobile:focus {
  outline-offset: -5px;
}
.header-social-icons .fusion-social-network-icon {
  display: block;
  float: left;
}
@media (min-width: 768px) {
  .job-details-section {
    width: 65% !important;
  }
  .fusion-builder-row .EJD-social-sharing h2, .fusion-builder-row .EJD-social-sharing div:last {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .EJD-job-title h1 {
    font-size: 32px !important;
  }
  .EJD-breadcrumbs span {
    font-size: 12px;
  }
}
@media (max-width: 840px) {
  .menu-header #menu-handyman-main-menu {
    display: none;
  }
  .menu-header nav.expanded #menu-handyman-main-menu {
    display: flex;
  }
}
.single-campaign .fusion-meta-info, .single-campaign .fusion-sharing-box, .single-campaign .about-author, .single-campaign .single-navigation {
  display: none;
}
.landing-page-content h1 {
  font-size: 36px !important;
}
.single-campaign select, .single-campaign .uib-calendar-icon button {
  border-radius: 0px;
  border-color: #4a4e57;
  height: 40px;
}
.single-campaign .uib-calendar-icon button i {
  margin-right: 0px;
  padding-right: 0px;
}
.single-campaign #candidatePoolMainContainer label[for="fileupload"] {
  width: 135px;
}
@media (min-width: 1025px) {
  #widget-jobsearch-results-list .fusion-layout-column.fusion-one-fifth, div#colhead-department, div#colhead-shift {
    padding-left: 20px;
  }
}
.evp-main-title {
  margin-bottom: 0px;
}
.evp-main-title h2 {
  font-size: 40px;
}
.evp-title {
  font-size: 30px !important;
}
.container-parent {
  display: flex;
  min-height: 80px;
}
.column {
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  display: flex;
  padding: 10px;
  text-align: left;
  font-size: 15px;
}
.column p {
  margin-bottom: 0px !important;
  font-size: 15px !important;
  text-align: left;
}
.red-bg {
  background-color: #6d97bf;
  width: 30%;
  color: #fff !important;
  font-weight: bold;
}
.red-light-bg {
  background-color: #bde3f8;
  width: 70%;
  color: #000 !important;
}
.blue-bg {
  background-color: #003777;
  width: 30%;
}
.blue-light-bg {
  background-color: #ddedfd;
  width: 70%;
  color: #000 !important;
}
.yellow-bg {
  background-color: #f3cf1c;
  width: 30%;
}
.yellow-light-bg {
  background-color: #f9eba7;
  width: 70%;
  color: #000 !important;
}
body.apply-join h1 {
  display: none !important;
}
a.container-parent:hover {
  text-decoration: none;
}
div#colhead-title {
  width: 25%;
}
