/****** 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
 (Primary variables will be named - var(--awb-color1) - through number 8.
 After number 8, additional colors will be named sequentially as var(--awb-custom_color_1).)
 White - var(--awb-color1) - #fff
 Lgt Grey - var(--awb-color2) - #d6d6d6
 Lgt Medium Grey - var(--awb-color3) - #bebdbd
 Gold - var(--awb-color4) - #bda16b
 Medium Grey - var(--awb-color5) - #828282
 Dark Medium Grey - var(--awb-color6) - #545454
 Dark Grey - var(--awb-color7) - #333333
 Black - var(--awb-color8) - #000
 80% White - var(--awb-custom_color_1) - rgba(255,255,255,0.8)
 ************************/
/****** Global Options Responsive settings ******/
@media (min-width: 770px) and (max-width: 1024px) {
  :root {
    --h1_typography-line-height: 0.85;
    /* H1 - Heading Typography */
    --h1_typography-font-size: 56px;
    /* H1 - Heading Typography */
    --h2_typography-font-size: 40px;
    /* H2 - Heading Typography */
    --h2_typography-margin-bottom: 20px;
    /* H2 - Heading Typography */
    --h3_typography-font-size: 28px;
    /* H3 - Heading Typography */
    --h3_typography-margin-bottom: 20px;
    /* H3 - Heading Typography */
    --awb-typography3-font-size: 50px;
    /* Large Text - Global Typography */
  }
}
@media (max-width: 1024px) {
  /** universal elements on mobile **/
  .column-reverse > .fusion-builder-row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 769px) {
  :root {
    --h1_typography-line-height: 1;
    /* H1 - Heading Typography */
    --h1_typography-font-size: 46px;
    /* H1 - Heading Typography */
    --h2_typography-font-size: 30px;
    /* H2 - Heading Typography */
    --h2_typography-margin-bottom: 20px;
    /* H2 - Heading Typography */
    --h3_typography-font-size: 22px;
    /* H3 - Heading Typography */
    --h3_typography-margin-bottom: 20px;
    /* H3 - Heading Typography */
    --awb-typography3-font-size: 38px;
    /* Large Text - Global Typography */
  }
}
/*===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;
}
/******* Main Menu tweak *******/
nav:not(.collapse-enabled) #menu-main-menu > li .sub-menu {
  top: 46px;
}
@media (max-width: 1024px) {
  /** universal nav on mobile **/
  nav #menu-main-menu > li:not(.current_page_item) a {
    background: #000 !important;
  }
}
/******* Tab adjustment *******/
.fusion-tabs.fusion-tabs-1 .nav-tabs li.active a.tab-link {
  border-left: 1px solid var(--awb-color8);
  border-right: 1px solid var(--awb-color8) !important;
}
/******* Job Search Banner *******/
body .search-banner {
  width: 100%;
}
body .search-banner .select2-selection__rendered {
  color: var(--awb-color1) !important;
}
body .search-banner *::placeholder, body .search-banner .select2-selection__rendered[title="Select..."] {
  color: var(--awb-color1);
  opacity: 0.45;
}
body .search-banner .widget, body .search-banner form > div {
  margin-bottom: 0;
  float: none;
  padding: 10px;
}
body .search-banner .fusion-layout-column.fusion-one-half:first-of-type {
  width: 74%;
}
body .search-banner .w-form-row-label {
  line-height: 18px;
  margin-top: -18px;
}
body .search-banner label {
  margin-bottom: 0;
  color: var(--awb-color1);
}
body .search-banner form {
  display: flex;
  padding: 10px 0px 0px;
  align-items: center;
}
body .search-banner input[type="text"] {
  color: var(--awb-color1);
  border: 1px solid var(--awb-color1);
  background: rgba(0, 0, 0, 0.75);
}
body .search-banner input[type="text"]:focus, body .search-banner input[type="text"]:hover, body .search-banner input[type="text"]:active {
  border: 1px solid var(--awb-color1);
  background: initial;
}
body .search-banner .select2-container--default .select2-selection--single {
  line-height: 40px !important;
  min-height: 40px;
  border: 1px solid var(--awb-color1);
  background: rgba(0, 0, 0, 0.7);
}
body .search-banner .select2.select2-container:after {
  content: "\f107";
  width: 16px;
  height: 16px;
  color: var(--awb-color1);
  position: absolute;
  right: 7px;
  top: 12px;
  font-family: FontAwesome;
  font-size: 16px;
  line-height: 16px;
}
body .search-banner .quicksearch-btn {
  text-align: center;
  width: 26% !important;
}
body .search-banner .quicksearch-btn input {
  width: 100%;
  color: var(--awb-color1);
  background: rgba(0, 0, 0, 0.75);
  font-weight: 600;
  line-height: 22px !important;
  min-height: 40px;
}
body .search-banner .quicksearch-btn input:hover {
  color: var(--awb-color8);
  background: var(--awb-color1);
}
.select2-container .select2-dropdown {
  background: var(--awb-color1);
}
.select2-container--default .select2-dropdown .select2-search input {
  padding: 2px 10px !important;
  font-size: 15px;
  font-weight: 400;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: var(--awb-color8);
  color: var(--awb-color1);
}
@media (max-width: 767px) {
  body .search-banner form {
    flex-direction: column;
  }
}
/******* Hot jobs *******/
.hotjobs {
  width: 100%;
}
.hotjobs .widget-joblist {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}
.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;
}
.hotjobs .widget-joblist .widget_joblist_row > div {
  float: none;
  display: block;
}
.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***/
}
.hotjobs .job-list-left-container {
  line-height: 1.4;
  width: 100%;
  margin-bottom: 20px;
}
.hotjobs .job-list-left-container a {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
  display: block;
}
.hotjobs .job-list-right-container {
  width: auto;
  margin-bottom: 0;
  margin-top: auto;
}
.hotjobs .job-list-right-container a {
  display: block;
  margin: 0 auto;
  width: fit-content;
  border-color: var(--button_border_color);
  border-width: var(--button_border_width-top, 0) var(--button_border_width-right, 0) var(--button_border_width-bottom, 0) var(--button_border_width-left, 0);
  border-style: solid;
  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);
  text-transform: uppercase;
  font-size: var(--button_font_size, 14px);
}
.hotjobs .job-list-right-container a:hover {
  border-color: var(--button_border_hover_color);
}
@media (max-width: 1024px) {
  .hotjobs .widget-joblist {
    flex-direction: column;
  }
  .hotjobs .widget-joblist .widget_joblist_row {
    width: 100%;
    margin-bottom: 20px;
  }
}
/******* Sign In Menu Item - Small Header *******/
body .sign-in-main a.fusion-background-highlight {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body .sign-in-main .menu-dropdown.xcc-sign-in-parent {
  padding-bottom: 0;
}
body .sign-in-main .menu-dropdown.xcc-sign-in-parent .xcc-sign-in {
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  padding-left: 0px;
  padding-right: 0px;
}
body .sign-in-main .menu-dropdown.xcc-sign-in-parent .xcc-sign-in-submenu {
  min-width: 290px;
  border-radius: 0px;
  border: 0;
  top: 46px;
}
body .sign-in-main .menu-dropdown.xcc-sign-in-parent .xcc-sign-in-submenu:before {
  display: none;
}
body .sign-in-main .menu-dropdown.xcc-sign-in-parent .xcc-sign-in-submenu a {
  font-size: 13px;
  padding: 8px 5px;
  border-radius: inherit;
}
/******* 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;
}
/******* 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"] {
  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(--body_typography-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;
}
#cws-search-form #posted-date-4 {
  left: calc(100% - 30px) !important;
}
.widget-jobsearch-full #toggleAdvSearch {
  margin-bottom: 10px;
  border: 1px solid var(--awb-color8);
}
.widget-jobsearch-full #toggleAdvSearch .avia_iconbox_title:after {
  content: "\f104";
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  display: block;
  transform: rotate(90deg);
}
.widget-jobsearch-full #toggleAdvSearch.close {
  opacity: 1;
  background: var(--awb-color2);
}
.widget-jobsearch-full #toggleAdvSearch.close .avia_iconbox_title:after {
  transform: rotate(-90deg);
}
body .widget-jobsearch-results-list #job-map-toggle .world-icon {
  top: 6px;
  margin-top: 0px;
  left: 8px;
}
body .widget-jobsearch-results-list .widget-job-map {
  margin-bottom: 20px;
}
body .widget-jobsearch-results-list > .clearfix {
  margin-bottom: 10px;
}
body .widget-jobsearch-results-list #live-results {
  margin-top: 0;
  float: left;
}
body .widget-jobsearch-results-list .jobTitle {
  font-weight: 700;
}
body .widget-jobsearch-results-list .jobCategory, body .widget-jobsearch-results-list .joblist-location {
  font-size: 16px;
  line-height: 1.5;
}
body .widget-jobsearch-results-list .joblist-posdate {
  font-size: 14px;
  line-height: 1.5;
}
body .widget-jobsearch-results-list .search-columns {
  /* border-top:0;*/
  display: none;
}
body .widget-jobsearch-results-list h3.sort-title {
  /* font-size:16px; margin-top:0;*/
  display: none;
}
body.ejd-page {
  margin-top: 0;
}
body.ejd-page h1 {
  color: var(--awb-color1) !important;
  margin-bottom: 0;
  margin-top: 0;
}
body.ejd-page .checkform {
  display: flex;
  align-items: start;
}
body.ejd-page .checkform label {
  margin-bottom: 0;
}
body.ejd-page .checkform input {
  margin-top: 12px;
}
body.ejd-page .side-hj .widget_joblist_row {
  margin-bottom: 20px;
  line-height: 1.2;
}
body.ejd-page .side-hj .widget_joblist_row a {
  text-decoration: underline;
  margin-bottom: 5px;
  display: block;
}
body.ejd-page .side-hj .widget_joblist_row a:hover {
  text-decoration: none;
}
body.ejd-page .side-hj .widget_joblist_row .widget_joblist_category, body.ejd-page .side-hj .widget_joblist_row .widget_joblist_loc {
  font-size: 16px;
}
body.ejd-page .side-hj .widget_joblist_row .widget_joblist_loc {
  margin-top: 5px;
}
body.ejd-page .side-hj .widget_joblist_row i.locationtype {
  font-style: normal;
  /*& .ejd-img .ejdimgwrap {width:100%; display:block; height: 400px; min-height: 100%;}
   & .ejd-img img {width:100%; height: 100%; object-fit: cover; object-position:center center;}*/
}
/******** XCloud pages ********/
/*Sign In popup 1*/
.modal-backdrop.modal-popup-custom-backdrop.ng-scope.in {
  z-index: 900 !important;
  opacity: 0.7;
}
.modal.schema-modal-popup.ng-scope.in .modal-content {
  border-radius: 0 !important;
  background: var(--awb-color1);
}
.modal.schema-modal-popup.ng-scope.in .modal-content .modal-popup-small {
  padding-top: 0 !important;
}
.modal.schema-modal-popup.ng-scope.in .modal-content .ig-control__cbx:not(:checked) + label:after {
  border: 1px solid var(--awb-color8);
  border-radius: 0;
}
.modal.schema-modal-popup.ng-scope.in .modal-content .ig-control__cbx:checked + label:after {
  width: 20px;
  height: 20px;
  /*background-color: var(--awb-custom_color_3);*/
}
body.ng-scope main *:not(i) {
  font-family: var(--body_typography-font-family);
}
.fusion-body.lcp-pages .lcp-banner-image, .fusion-body.lcp-pages .join-form, .fusion-body.lcp-pages .full-width {
  width: 100% !important;
}
.fusion-body.lcp-pages .lcp-banner-image div {
  margin: 0px !important;
}
.fusion-body.lcp-pages h1 {
  color: var(--awb-color8);
  font-size: 48px;
}
.ng-scope #socialSiteProvider {
  display: none;
}
.ng-scope *:focus {
  outline-style: solid !important;
  outline-width: 2px !important;
  outline-offset: 2px;
  outline-color: var(--awb-color8) !important;
}
.ng-scope .post-content {
  z-index: 5;
}
.ng-scope .help-block {
  margin-top: -2px;
  font-size: 14px;
  color: red !important;
}
.ng-scope .has-success .checkbox, .ng-scope .has-success .checkbox-inline, .ng-scope .has-success .control-label, .ng-scope .has-success .help-block, .ng-scope .has-success .radio, .ng-scope .has-success .radio-inline, .ng-scope .has-success.checkbox label, .ng-scope .has-success.checkbox-inline label, .ng-scope .has-success.radio label, .ng-scope .has-success.radio-inline label {
  color: var(--awb-color8);
}
.ng-scope .tab-content-container-preference {
  border-radius: 0;
  border-color: var(--awb-color8);
}
.ng-scope .tab-content-container-preference input {
  border: 1px solid var(--awb-color8) !important;
  fonzt-family: var(--body_typography-font-family);
  font-size: var(--body_typography-font-size);
}
.ng-scope .tab-content-container-preference label, .ng-scope .tab-content-container-preference legend {
  font-family: var(--body_typography-font-family);
  font-size: var(--body_typography-font-size);
}
.ng-scope .apply-flow-wrapper.ng-scope {
  border-radius: 0;
  border-color: var(--awb-color8);
}
.ng-scope .apply-flow-wrapper.ng-scope h4 {
  color: var(--awb-color8);
}
.ng-scope .apply-flow-wrapper.ng-scope .border-dashboard {
  border: 0 !Important;
}
.ng-scope .apply-flow-wrapper.ng-scope select {
  border-radius: 0 !important;
  color: var(--awb-color8);
}
.ng-scope li.pagination-li a:not(.inactive) {
  color: #fff;
  /*Sign In popup 2*/
}
.ng-scope form[name="xcloud_Signin"] h1, .ng-scope .modal-popup-small h1 {
  font-family: var(--body_typography-font-family);
  font-weight: 700;
  color: var(--awb-color8);
}
.ng-scope form[name="xcloud_Signin"] p, .ng-scope form[name="xcloud_Signin"] label, .ng-scope form[name="forgotPasswordForm"] input, .ng-scope form[name="xcloud_Signin"] input, .ng-scope .modal-popup-small, .ng-scope form[name="updatePasswordForm"] label, .ng-scope form[name="updatePasswordForm"] input, .ng-scope form[name="updatePasswordForm"] span p {
  font-family: var(--body_typography-font-family) !important;
  color: var(--awb-color8);
}
.ng-scope form[name="xcloud_Signin"] p.modal-required-fields {
  color: #CC0000;
  margin-top: 15px;
}
.ng-scope .ng-scope form[name="xcloud_Signin"] input.btn.btn-azure, .ng-scope .ng-scope form[name="updatePasswordForm"] input.btn.btn-azure, .ng-scope div#candidatePasswordUpdateMainContent .ng-scope form[name="forgotPasswordForm"] input.btn.btn-azure, .ng-scope .ng-scope form[name="xcloud_Signin"] button.btn.btn-azure, .ng-scope .ng-scope form[name="updatePasswordForm"] button.btn.btn-azure, .ng-scope div#candidatePasswordUpdateMainContent .ng-scope form[name="forgotPasswordForm"] button.btn.btn-azure {
  font-family: var(--body_typography-font-family);
  color: var(--awb-color1) !important;
  background-color: var(--awb-color8) !important;
}
.ng-scope form[name="xcloud_Signin"] a.pull-right.draggable, .ng-scope form[name="xcloud_Signin"] a[title="Create one"] {
  font-family: var(--body_typography-font-family) !important;
  color: var(--awb-color8);
  text-decoration: underline !important;
}
.ng-scope form[name="updatePasswordForm"] .modal-required-fields {
  color: #CC0000 !important;
  font-family: var(--body_typography-font-family) !important;
}
.ng-scope div#candidatePasswordUpdateMainContent {
  /*& span.modal-popup-main-header {font-family: var(--body_typography-font-family) !important; color: #232323;}*/
}
.ng-scope div#candidatePasswordUpdateMainContent h3, .ng-scope div#candidatePasswordUpdateMainContent h4, .ng-scope div#candidatePasswordUpdateMainContent h5 {
  font-family: var(--body_typography-font-family) !important;
  color: #2e2925;
}
.ng-scope .modal-popup-main-header {
  margin-bottom: 20px;
}
.ng-scope .btn {
  border-color: var(--awb-custom_color_3);
}
.ng-scope .btn-azure, .ng-scope .btn-azure:focus, .ng-scope .btn-azure:hover {
  background-color: var(--awb-color8) !important;
  border-color: var(--awb-color8);
  /*LCP Join page*/
}
.ng-scope .form-control, .ng-scope select {
  background: var(--awb-color1);
  border-color: var(--awb-color8);
  color: var(--awb-color8);
  font-size: var(--body_typography-font-size);
  height: 40px;
  line-height: 40px;
  border-radius: 0;
}
.ng-scope .checkbox a {
  color: var(--awb-color8) !important;
}
.ng-scope .resume-wrapper {
  margin-bottom: 20px;
}
.ng-scope .btn-azure.disabled, .ng-scope .btn-azure[disabled], .ng-scope .btn-azure.disabled:hover, .ng-scope .btn-azure[disabled]:hover, .ng-scope .btn-azure.disabled:focus, .ng-scope .btn-azure[disabled]:focus, .ng-scope .btn-azure.disabled:active, .ng-scope .btn-azure[disabled]:active, .ng-scope .btn-azure.disabled.active, .ng-scope .btn-azure[disabled].active {
  background-color: var(--awb-color8) !important;
  border-color: var(--awb-color8);
  font-size: var(--body_typography-font-size);
}
.ng-scope.join-page .schema-form-section input[type="text"], .ng-scope.join-page select.form-control, .ng-scope.join-page .btn-azure {
  font-size: var(--body_typography-font-size);
  height: 50px;
  border-radius: 0;
  font-size: var(--body_typography-font-size);
}
.ng-scope .has-success .form-control-feedback {
  top: 41px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 3px;
}
.ng-scope .has-error .form-control-feedback {
  top: 43px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 1px;
}
.ng-scope .dashicons.dashicons-no-alt:before {
  color: var(--awb-color8) !important;
}
.ng-scope .form-control.ng-invalid {
  background: transparent;
  border-color: var(--awb-color8);
  color: var(--awb-color8) !important;
}
.ng-scope .form-group.has-error input, .ng-scope .input-group.has-error input, .ng-scope .form-group.has-error select, .ng-scope .input-group.has-error select, .ng-scope .form-group.has-error textarea, .ng-scope .input-group.has-error textarea, .ng-scope .form-group.has-success input, .ng-scope .input-group.has-success input, .ng-scope .form-group.has-success select, .ng-scope .input-group.has-success select, .ng-scope .form-group.has-success textarea, .ng-scope .input-group.has-success textarea {
  background: transparent;
  border-color: var(--awb-color8);
  color: var(--awb-color8) !important;
}
.ng-scope .attachments-list thead th {
  text-align: left !important;
}
.ng-scope .fa-trash:before {
  content: "\f1f8";
}
.ng-scope .checkbox-custom + .checkbox-custom-label:before, .ng-scope .radio-custom + .radio-custom-label:before {
  border: 1px solid var(--awb-color8);
}
.ng-scope .radio-custom:checked + .radio-custom-label:before {
  background: var(--awb-color8);
}
@media (min-width: 1025px) {
  .ng-scope .fusion-tb-header .fusion_builder_column_1_4 {
    max-width: 25%;
  }
  .ng-scope .fusion-tb-header .fusion_builder_column_3_4 {
    max-width: 75%;
  }
}
@media (max-width: 1024px) {
  .ng-scope .fusion-tb-header .fusion-fullwidth {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .ng-scope .fusion-tb-header .fusion-fullwidth {
    padding-top: 30px !important;
  }
  .ng-scope .fusion-tb-header .fusion_builder_column_1_4 {
    max-width: 75%;
  }
  .ng-scope .fusion-tb-header .fusion_builder_column_3_4 {
    max-width: 25%;
  }
}
