:root {
  --primary: #ee2e24;
  /* red */
  --secondary: #eeeded;
  /* grey */
  --tertiary: #a0ce4e;
  /* green */
  --white: #fff;
  --black: #000;
  --dark-gray: #333;
  --light-gray: #f0f0f0;
  --bg-gray: #f9f9f9;      
  --bg-light: #f8f9fa;/*navbar default*/
  --bg-dark: #e2e6ea;  
  --text-color: #747478;
  --light-text-color: #9d9da0;
  --dark-text-color: #333;
  --standard-font:'Helvetica', sans-serif;
  --light-font: 'Helvetica', sans-serif;
}

/* Fonts */

@font-face {
  font-family: "facetselecticon";
  src: url("../system/production/assets/377/original/facetselecticon.eot");
  src: url("../system/production/assets/380/original/facetselecticon.woff") format("woff"), url("../system/production/assets/378/original/facetselecticon.ttf") format("truetype"), url("../system/production/assets/379/original/facetselecticon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");
/* end Fonts */

/* Custom Animations */

@keyframes fadeIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadebgin {
  0% {
    background: transparent;
  }
  100% {
    background: rgba(255, 255, 255, 1);
  }
}

@-webkit-keyframes fadebgin {
  0% {
    background: transparent;
  }
  100% {
    background: rgba(255, 255, 255, 1);
  }
}

@keyframes fadebgout {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}

@-webkit-keyframes fadebgout {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}

@keyframes slideleft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-80%);
  }
}

@-webkit-keyframes slideleft {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-80%);
  }
}

@-moz-eyframes slideleft {
  0% {
    -moz-transform: translateX(0%);
  }
  100% {
    -moz-transform: translateX(-80%);
  }
}

@keyframes slideright {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideright {
  0% {
    -webkit-transform: translateX(-80%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes slideright {
  0% {
    -moz-transform: translateX(-80%);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

/* end Custom Animations */

html {
  height: 100%;
  width: 100%;
}

body {
  min-height: 100%;
  background: var(--white);
  color: var(--text-color);
  font-family: var(--standard-font), sans-serif;
  display: flex;
  flex-direction: column;
}

.container-fluid.full-width{
  padding-left: 0px;
  padding-right: 0px;
}

.content {
  flex: 1 0 auto;
}

.main-footer {
  flex-shrink: 0;
}

/* General Classes */

.smaller {
  font-size: 85%;
}


.text-muted {
  color: var(--light-text-color) !important;
}

.has-shadow {
  box-shadow: 0 5px 15px rgba(34, 34, 34, 0.2);
  -moz-box-shadow: 0 5px 15px rgba(34, 34, 34, 0.2);
  -webkit-box-shadow: 0 5px 15px rgba(34, 34, 34, 0.2);
  position: relative;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.sticky {
  position: sticky;
}

.sticky-top {
  z-index: 999;
  width: 100%;
}

.preloader {
  animation: rotate 0.8s infinite linear;
  border: 6px solid #999;
  border-right-color: #ccc;
  border-radius: 50%;
  height: 28px;
  left: 50%;
  margin: 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 28px;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 2;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 2;
    border-radius: 0rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  opacity: .75;
}

.btn-primary a {
  color: var(--white);
}

.btn-secondary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  opacity: .75;
}

.btn-success {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
}

.btn-success:hover {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  opacity: .75;
}

.btn a:hover {
  text-decoration: none;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: none;
}

/* end General Classes */

/* Effects */

.slideright {
  animation-name: slideright;
  -webkit-animation-name: slideright;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

.slideleft {
  animation-name: slideleft;
  -webkit-animation-name: slideleft;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

.fadebgout {
  animation-name: fadebgout;
  -webkit-animation-name: fadebgout;
  animation-duration: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

.fadebgin {
  animation-name: fadebgin;
  -webkit-animation-name: fadebgin;
  animation-duration: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

/* end Effects */



.hero-images {
  position: relative;
  z-index: 1;
  padding: 240px 0;
  box-shadow: inset 0 -12px 24px -12px rgba(34, 34, 34, 0.4);
}

.hero-images:before {
  content: "";
  background: url('//connect.healthcaretalentsource.com/system/production/assets/5488/original/Banner1.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-images .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-color: #000;
    background-position: center;
    background-size: cover;
}

.hero-job-search {
  background-color: var(--light-text-color);
}

.cs_share_container {
  float: left;
}

.inner-search {
  position: relative; 
  width: 100%; 
  z-index: 2;
  padding: 15px 0px;
}

.inner-search h1, .hero-images h1 {
  color: var(--black);
}

.inner-search h4 {
  font-weight: 300;
  font-family: var(--light-font);
}

/* .featured-header::after {
  content: "";
  width: 100px;
  position: absolute;
  margin: 0 auto;
  height: 3px;
  background: #eaf2f6;
  left: 0;
  right: 0;
  bottom: 30px;
} */

.card-body a .list-group-item {
  box-shadow: 2px 2px 10px #33333381;
}
.card-body a:hover .list-group-item {
  box-shadow: none !important;
}
.card-body a:hover {
  text-decoration: none;
}

.featured-section::before {
  background: var(--primary);
  content: '';
  position: absolute;
  height: 175px;
  width: 94%;
  top: 100px;
  left: 0;
}
.home-featured .jobs-card-list {
  height: 250px !important;
}
.featured-section .home-featured .list-group-item {
  padding: 2.5rem;
  border-radius: 0 !important;
}
.jobs-section .featured-section .list-group-item {
  padding: 2.5rem 1rem;
  border-radius: 0 !important;
}
@media(max-width:991px) {
  .featured-section::before {
    background: none !important;
  }
}

/* Pre Footer */

.pre-footer {
  background-color: var(--primary);
}

.pre-footer .fa-circle, .pre-footer h3 {
  color: var(--black);
}

.pre-footer .fa-inverse {
  color: var(--secondary);
  transform: translateX(7%);
}

/* end Pre Footer */

/* Footer */

.footer {
  background-color: var(--secondary);
  padding: 30px 15px;
  color: var(--black);
}

.footer a, .footer a:link, .footer a:visited, .footer a:active {
  color: var(--black);
  margin: 0 5px;
}

.footer a:hover {
  color: var(--primary);
}

/* end Footer */

/* Pages */
           

.page-section {
  margin: 0 0 30px 0;
}

.page__image {
  margin: 0 0 30px 0;
}

.page__image img {
  width: 100%;
}

/* end Pages */

/* Posts */

/* #myList .list{ 
  display:none;
}  */

/* .our-stories-header {
  background-color: var(--secondary);
  color: var(--white);
  margin-top: -30px;
} */
.our-stories-cat {
  background-color: var(--secondary);
  color: var(--primary);
}

.our-stories-cat a{
  color: var(--primary);
  font-weight: 600;
}

 .our-stories-image{
  overflow: hidden;
  height: 100%;
  cursor: pointer;
 }

 .our-stories-image .image-bg {
  width: 100%;
  min-height: 250px;
  position: relative;
  display: block;
  background-position: top;
  background-size: cover;
  color: var(--text-dark-color);
  transition: transform .2s, opacity .2s
}
 .post-wrapper:hover .our-stories-image .image-bg {
  transform: scale(1.05);
  opacity: .9;
 }    

.post-wrapper {
    box-shadow: 0px 0px 14px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 14px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 14px rgba(0,0,0,0.15);
    margin: 30px 0;
    cursor: pointer;
}
.post-content {
  padding: 1.5rem;
}

.post-content h2 {
  color: var(--primary);
}

.indented{
  padding-left: 15px;
}

ul.list-group.list-group-flush.indented .list-group-item:first-child {
    border-top: 1px solid rgba(0,0,0,.125);
}




/* End Posts */

/* Home Page */

.working-at {
  background-color: var(--bg-gray);
}

.working-at .row {
    padding: 30px 0;
}

.working-at-section {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.working-at-section img {
  display: inline-block;
  transform: translate(-50%, 50%);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);

}


.working-at-section-content{
  position: absolute;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.6); */
  background-color: rgba(238,46,36,0.85);
  padding: 35px;
  transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -webkit-transition: 1s;
  left: 50%;
  top: 122%;
  transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  width: 100%;
}

.working-at-section:hover .working-at-section-content {
  top: 50%;
}

.working-at-section-content-inner {
  color: white;
  text-align: center;
}


.working-at-section-content-inner h3{ 
  padding-bottom: 45px;
  margin: 0;
}

.working-at-section-content-inner p {
  margin-bottom: 45px;
}

.working-at-link {
  padding: 14px;
  border: thin solid var(--white);
  color: white;
}

.working-at-link:hover{
  color: #dae0e5;
}

.working-at-sidebar:before {
  content: "";
  box-shadow: 0px 6px 12px rgba(23, 26, 27, .3);
  height: 90%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  border-radius: 9px 9px 75% 75%;
}

.working-at a:hover {
  text-decoration: none;
}


.job-category {
  min-height: 400px;
  position: relative;
  cursor: pointer;
}

.job-category div.title{
  z-index: 2;
}

.job-category h2, .job-category i {
  color: var(--white);
}

.job-category i {
  content: "";
}

.job-category.with-image-bg div.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.job-category div.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-color: #000;
  opacity: .4;
}

.job-category:hover div.overlay{
  opacity: .2;
}

.job-category.last div.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-color: #000;
  opacity: .4;
}

.job-category.last:hover div.overlay{
  opacity: .0;
}

.job-category:hover {
  text-decoration: none;
}

.job-category:after {
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
}



.talent-network-block {
  background-color: var(--secondary);
}

.talent-network-block h2,
.talent-network-block p {
  color: black;
}

/* Home Page */

.filter {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: .80;
  background-color: var(--white);
}

.job-search.page-section {
  background-color: var(--light-gray);
  padding: 15px;
}

/* Job Details */

.jobs-section__apply .btn,
.job__details-apply .btn {
  display: block;
  margin-bottom: 10px;
}

.jobs-section__category-info {
  background-position: top;
  background-size: cover;
}

.jobs-section__category-info-desc {
  background: var(--primary);
  color: var(--white);
  padding: 24px;
}

#pfm_form{
  font-size: 1em !important;
}

/* end Job Details */

/* Job Details : Saved Job Overlay */

.saved-jobs-alert-wrapper {
  background: rgba(34, 34, 34, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.saved-jobs-alert {
  background: var(--white);
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 280px;
}

.saved-jobs-alert__check {
  background: var(--dark-gray);
  color: var(--white);
  font-size: 120px;
  line-height: 120px;
  padding: 24px;
}

.saved-jobs-alert__check.removed {
  background: #8fd400;
}

.saved-jobs-alert__message {
  background: var(--white);
  padding: 24px;
}
/* end Job Details : Saved Job Overlay */


/* Pagination */

.pagination {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0px 15px;
}

.pagination a, .pagination span {
  position: relative;
  display: none;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  background-color: var(--white);
  border: none;
}

.pagination a.disabled, .pagination span.disabled {
  color: var(--text-color);
  pointer-events: none;
  cursor: auto;
}

.pagination:first-child {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.pagination span.current {
  color: var(--dark-text-color);
  font-weight: 700;
}
.pagination span:first-child, .pagination span:last-child, .pagination a:last-child, .pagination a:first-child {
  font-weight: 600;
  font-size: 25px;
  padding: 3px 1rem 5px 1rem;
  display: block !important;
}
.pagination span:first-child, .pagination a:first-child {
  background: var(--secondary) !important;
  color: var(--white) !important;
}
.pagination span:last-child, .pagination a:last-child {
  background: var(--primary) !important;
  color: var(--white) !important;
}
.pagination a:last-child:hover {
  background: var(--secondary) !important;
  text-decoration: none !important;
}
.pagination a:first-child:hover {
  background: var(--primary) !important;
  text-decoration: none !important;
}
.pagination-pages {
  position: absolute;
  right: 10%;
  bottom: 20%;
  color: var(--dark-text-color);
  margin-right: 20px;
  top: 10px;
}

/* end Pagination */

/* Jobs Search */
      
#search--jobs-search .row {
    background-color: var(--light-text-color);
}      

.jobs-section__item {
  border-top: 1px solid rgba(0, 0, 0, .12);
  box-shadow: none;
}

.jobs-section__item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, .12);
  /* 0px 11px 8px -10px #CCC, 0px -11px 8px -10px #CCC */
  transition: 100ms;
  border-top-color: transparent;
  z-index: 55;
}

.jobs-section__item:hover+.jobs-section__item {
  border-top-color: transparent;
}

.fa-star {
  color: var(--warning);
}

.fa-flag{
  color: var(--danger);
}

.tooltip > .tooltip-inner {
  background-color: var(--primary);
}

.tooltip > .arrow::before {
  border-top-color: var(--primary);
}

.talent-network .card {
  background-color: var(--secondary);
  border: none;
  border-radius: 0px;
}

.talent-network .card .card-text {
  color: var(--black);
}

/* end Jobs Search */

/* Facets */

.facet-loading {
  background-size: contain;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-repeat: no-repeat;
  display: none;
  height: 60px;
  margin: 20px auto;
  padding: 20px 0;
  width: 60px;
}

.facet-loading--dark {
  background-image: url('/system/production/assets/43/original/facet-loading-bg--dark.gif');
}

.facet-loading--light {
  background-image: url('/system/production/assets/44/original/facet-loading-bg--light.gif');
}

.facet-section h2 {
  border-bottom: 1px solid var(--black);
  font-size: 18px;
  line-height: 18px;
  margin: 0 0 12px 0;
  padding: 0 0 10px 0;
  position: relative;
}

.facet-section h2 span {
  font-size: 12px;
}

.facet-item {
  margin: 0 0 10px 0;
}

.facet-item--collapsed {
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px 0;
}

.facet-item__heading h3 {
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
  margin: 0;
  position: relative;
}

.facet-item--expanded .facet-item__heading h3 {
  margin: 0 0 10px 0;
}

.facet-item--expanded .facet-item__options {
  display: block;
}

.facet-item--collapsed .facet-item__options {
  display: none;
}

a.facet-item__show-more {
  display: inline-block;
  margin: 10px 0;
}

span.facet-item__heading-expand-collapse {
  bottom: 0;
  font-family: 'facetselecticon';
  font-size: 12px;
  position: absolute;
  right: 0;
  vertical-align: middle;
  width: 10%;
}

.facet-item--expanded span.facet-item__heading-expand-collapse:after {
  content: "s";
}

.facet-item--collapsed span.facet-item__heading-expand-collapse:after {
  content: "p";
}

.facet-item__options-item {
  border-bottom: 1px solid #ddd;
  margin: 0 0 4px 0;
  padding: 0 0 4px 0;
  position: relative;
}

.facet-item__heading div {
  padding: 0 10px;
  text-align: right;
}

span.facet-item__options-item-type {
  font-family: 'facetselecticon';
}

.facet-item__options-item-type--multi:after {
  content: "b";
}

.facet-item__options-item-type--selected.facet-item__options-item-type--multi:after {
  content: "o";
}

.facet-item__options-item-type--single:after {
  content: "f";
}

.facet-item__options-item-type--selected.facet-item__options-item-type--single:after {
  content: "g";
}

/* end Facets */

/* Job Alerts Popup */

#fancybox-wrap #fancybox-outer {
  padding: 15px;
}

#fancybox-wrap #fancybox-outer #fancybox-content {
  padding: 0;
}

#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .fInput br {
  display: none;
}

#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .g-recaptcha {
  margin: 0;
}

@media only screen and (min-width: 480px) {
  #fancybox-wrap {
    min-width: 344px;
    width: auto !important;
  }
}

#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .fInput {
  padding-left: 0;
  margin-bottom: 0;
}

#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .fInput .fLabel {
  color: var(--light-text-color);
  font-size: smaller;
  margin-bottom: .2rem;
}

#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification button {
  /* have to emulate the bootstrap button here due to Talemetry defaults */
  background-color: var(--primary);
  border-color: var(--primary);
  text-transform: none;
  font-size: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  color: var(--white);
  padding: .375rem .75rem;
  box-shadow: none;
  margin-bottom: 0;
  right: 0;
}

#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification button:hover {
  opacity: .75;
}

/* Job Alerts Popup */


/* default (xs-screens) */

html, body {
  font-size: 14px !important;
}

h1 {
  font-size: 1.602em;
}

h2 {
  font-size: 1.424em;
}

h3 {
  font-size: 1.266em;
}

h4 {
  font-size: 1.125em;
}

h5 {
  font-size: 0.889em;
}

h6 {
  font-size: 0.79em;
}

.display-1 {
  font-size: 3.906em;
}

.display-2 {
  font-size: 3.125em;
}

.display-3 {
  font-size: 2.5em;
}

.display-4 {
  font-size: 2em;
}

/* Navbar */
.navbar {
  -webkit-backface-visbility: hidden;
  z-index: 12;
  background-color: var(--bg-light);
}
.navbbar.scrolled-nav {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.navbar .navbar-brand img.logo {
  height: 29px;
}

.navbar.scrolled-nav {
  box-shadow: 0px 0px 23px 2px rgba(34, 34, 34, 0.4);
}

.jobs-search .navbar, .jobs.search .navbar {
  box-shadow: none;
}

.jobs-search .search, .jobs.search .search {
  z-index: 11;
}

.jobs-search .search.sticky, .jobs.search .search.sticky {
  box-shadow: 0px 0px 23px 2px rgba(34, 34, 34, 0.4);
}

      
.mobile-subnav {
  box-shadow: none;
  position: unset !important;
}

.mobile-subnav {
  box-shadow: none;
  background-color: var(--bg-light);
}

.mobile-subnav a.nav-link {
    
} 

.mobile-subnav.scrolled-nav {
  box-shadow: 0px 0px 23px 2px rgba(34, 34, 34, 0.4);
}

/* end Navbar */

.facet-section {
  background: var(--white);
  /* display: none; */
  font-size: 12px;
}

/* Mobile Phones (375 and down) */
@media(max-width: 420px) {
    .hero-images{
    padding: 100px 0;
  }
}

/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {
  .facet-section {
    display: block;
    height: auto;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 0;
  }
}

@media (max-width: 767px) {
  .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    transition: all .25s ease-out;
    overflow: hidden;
  }
  .row-offcanvas-right .sidebar-offcanvas {
    right: -100%;
    padding: 0 20px 0 20px;
  }
  .row-offcanvas-left .sidebar-offcanvas {
    left: -100%;
    padding: 0 20px 0 20px;
  }
  .row-offcanvas-right.active {
    right: 110%;
    overflow: unset;
  }
  .row-offcanvas-left.active {
    left: 110%;
    overflow: unset;
  }
  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 100%;
  }
}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
  h1 {
    font-size: 2.441em;
  }
  h2 {
    font-size: 1.953em;
  }
  h3 {
    font-size: 1.563em;
  }
  h4 {
    font-size: 1.25em;
  }
  .display-1 {
    font-size: 6em;
  }
  .display-2 {
    font-size: 5.5em;
  }
  .display-3 {
    font-size: 4.5em;
  }
  .display-4 {
    font-size: 3.5em;
  }
  .navbar .navbar-brand img.logo {
    height: 70px;
    transition-property: height;
    transition-duration: 200ms;
    transition-timing-function: linear;
    transition-delay: 0s;
  }
  .navbar.scrolled-nav .navbar-brand img.logo {
    height: 40px;
    transition-property: height;
    transition-duration: 200ms;
    transition-timing-function: linear;
    transition-delay: 0s;
  }

  /*Hero*/ 
  .inner-search {
    left: 50%; 
    position: absolute; 
    top: 50%; 
    transform: translate(-50%,-50%); 
    -moz-transform: translate(-50%,-50%); 
    -webkit-transform: translate(-50%,-50%); 
    width: 100%; 
    z-index: 2;
    padding: 15px 0px;
  }

}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {
  html, body {
    font-size: 16px !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {}

/* Custom Styles */

.mobile-facet-label {
  background: var(--primary);
  color: var(--white);
  padding: 7px 10px;
  float: left;
  margin-right: 7px;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 7px;
}
.mobile-facet-label i, .mobile-facet-label a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
}

/* Google Form */
.google-form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Job Search Autofill */ 
.cs_jsearchform .ui-widget-content {
  font-family: din-condensed, sans-serif;
  border-bottom: 2px solid #eee !important;
}
.cs_jsearchform .ui-corner-all {
  border: medium none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.cs_jsearchform .ui-autocomplete-head {
  border-bottom: 2px solid #fff; 
  font-size: 12px; 
  line-height: 18px; 
  margin: 0; 
}
.cs_jsearchform .cs_srchresults_count {float: none; }
.cs_jsearchform .cs_srchresults_close {
  float: none;
  position: absolute;
  right: 8px;
  top: 6px;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  background: #eee;
  border: medium none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin: 0;
}
.cs_jsearchform a.cs_mtitle,
.cs_jsearchform a.cs_mtitle.ui-state-focus,
.cs_jsearchform a.cs_mtitle.ui-state-active {
  border: medium none;
  font-family: din-condensed, sans-serif;
  font-size: 14px;
  line-height: 16px;
}
.cs_jsearchform .cs_mtitle .cs_mjob_title { position: relative; }
.cs_jsearchform .cs_mtitle .ui-icon {
  margin: 0;
  position: absolute;
  top: 0;
}
.cs_jsearchform .cs_mtitle .cs_mjob_titletext { width: 100%; }
.cs_jsearchform .cs_mtitle .cs_mjob_location { padding-left: 18px; }
.cs_jsearchform .ui-autocomplete-foot a,
.cs_jsearchform .ui-autocomplete-foot a.ui-state-focus,
.cs_jsearchform .ui-autocomplete-foot a.ui-state-active {
  font-size: 12px;
  line-height: 18px;
}
.cs_jsearchform .ui-autocomplete-notfound {
  font-size: 12px;
  line-height: 18px;
  padding: 4px;
  width: 100%;
}
.jobs-search .cs_jsearchform .ui-autocomplete {
  z-index: 9999 !important;
}
/* Job Search Autofill End */

/* Chat Bot Mobile Fixes */
.wrapper {
    z-index: 99999;
}
@media(max-width:576px) {
.wrapper {
    width: 100%;
    height: 8vh !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.wrapper.opened {
    width: 100%;
    height: 100%;
    height: 100vh !important;
    top: 0 !important;
  bottom: auto !important;
    left: 0;
    -webkit-transform: translate(0%, 0px) !important;
  transform: translate(0%, 0px) !important;
}
}
/* END Chat Bot Mobile Fixes */

/* parallax scrolling - benefits page */

.parallax {
  /* The image used */
  background-image: url('//connect.healthcaretalentsource.com/system/production/assets/5503/original/Glow_Party053-banner.jpg');

  /* Set a specific height */
  /* height: 350px; */

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

h4.benefit-title {
    color: var(--primary);
}

.program-hero {
  background-image: url('//connect.healthcaretalentsource.com/system/production/assets/5504/original/Volunteer_2.jpg');
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top:400px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 0; /* size of chrome */
    height: 0; 
    overflow: hidden;
}
 
/* .video-container iframe,
.video-container object,
.video-container #overlay,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */
.video-container iframe,
.video-container object,
.video-container #overlay,
.video-container embed {
    position: absolute;
    top: -10%;
    /* left: 0.5%; */
    width: 100%;
    height: 100%;
    overflow:hidden;
}

a {
  color:var(--primary);
}

a:hover{
  color:var(--text-color);
  text-decoration: none;
}

.panel-title > a:before {
    float: right !important;
    font-family: FontAwesome;
    content:"\f068";
    padding-right: 5px;
}
.panel-title > a.collapsed:before {
    float: right !important;
    content:"\f067";
}
/* .panel-title > a.collapsed.show:before {
    float: right !important;
    content:"\f068";
} */
.panel-title > a:hover, 
.panel-title > a:active, 
.panel-title > a:focus  {
    text-decoration:none;
}

/* color grid banner */
.colorgrid-image {
    background: url(https://www.childrensal.org/images/colorgrid.gif) repeat-y fixed center;
    /* background: url(https://www.childrensal.org/images/colorgrid.gif) repeat-y 0 0; */
    height: 5px;
}

/* Job Details Share buttons */
.cs_share_text, .cs_share_linkedin, .cs_share_facebook, .cs_share_facebooklike, .cs_share_google, .cs_share_email, .cs_share_twitter, .cs_share_instagram, .cs_share_instagram {
  display: block;
  float: left;
  margin-left: 7px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  padding-top: 2px;
  overflow: hidden;
}
.cs_share_instagram {
  margin-left: 12px;
  margin-top: 1px;
}
.cs_share_text {
width: auto;
}

a.cs_email_btn, a.cs_share_google_btn, a.cs_share_twitter_btn, a.cs_facebook_btn, a.cs_share_linkedin_btn, a.cs_share_instagram_btn {
  background: var(--white);
  color: var(--text-color);
  height: 28px !important;
  position: relative;
  width: 28px !important;
}
a.cs_email_btn:hover, a.cs_share_google_btn:hover, a.cs_share_twitter_btn:hover, a.cs_facebook_btn:hover, a.cs_share_linkedin_btn:hover, a.cs_share_instagram_btn:hover {
color: var(--primary);
}

a.cs_email_btn:after, a.cs_share_google_btn:after, a.cs_share_twitter_btn:after, a.cs_facebook_btn:after, a.cs_share_linkedin_btn:after, a.cs_share_instagram_btn:after {
  font-size: 14px;
  font-style: normal;
  line-height: 28px;
  position: absolute;
  top: 0;
  left: 50%;
  text-align: center;
  vertical-align: middle;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

a.cs_email_btn:after{
  font-family: 'Font Awesome 5 Free';
  content: "\f0e0";
}
a.cs_facebook_btn:after {
  font-family: 'Font Awesome 5 Brands';
  content: "\f39e";
}
a.cs_share_google_btn:after {
  font-family: 'Font Awesome 5 Brands';
  content: "\f0d5";
}
a.cs_share_twitter_btn:after {
  font-family: 'Font Awesome 5 Brands';
  content: "\f099";
}
a.cs_share_linkedin_btn:after {
  font-family: 'Font Awesome 5 Brands';
  content: "\f0e1";
}
/* end Job Details Share buttons */

.white-txt{
  color: #fff;
}