/* All CSS should be writen mobile first and then use these media queries for larger screen sizes */
@font-face {
  font-family: "GE Sons Condensed";
  src:  url("../fonts/SonsCondensed/SonsCondensed-Extrabold.ttf") format("truetype");
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: "GE Sons Condensed";
  src:  url("../fonts/SonsCondensed/SonsCondensed-Semibold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "GE Inter Font";
  src:  url("../fonts/Inter/Inter-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GE Inter Font";
  src:  url("../fonts/Inter/Inter-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "GE Inter Font";
  src:  url("../fonts/Inter/Inter-BoldItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "GE Inter Font";
  src:  url("../fonts/Inter/Inter-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}

/* Normalize styling*/
html, 
body {
    height: 100%;
}
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
  padding: 0px;
  background-color: #ffffff;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: "GE Inter Font";
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input { /* 1 */
  overflow: visible;
}
label{
  margin: 0;
}

body{
  font-family: "GE Inter Font";
  position: relative;
}

/*search content*/

.search-container:after{
   content: "."; 
   visibility: hidden; 
   display: block; 
   height: 0; 
   clear: both;
}
.search-container{
  background-color: #f9f9f9;
  padding: 15px 15px 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-pack: unset; */
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.search-container > div{
  align-self: flex-end;
}
.search-container .title-search{
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
  font-size: 20px;
}

.search-container label{
  font-size: 18px;
  color: #212121;
}

/*--common styles for inputs--*/
.typeahead-field{
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.typeahead-field input{
  display: block;
  width: 100%;
  line-height: 1.25;
  min-height: calc(.5rem * 2 + 1.25rem + 2px);
  padding: 6px 50px 6px 8px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  color: #212121;
  font-size: 0.96rem;
  outline: 0;
}
.typeahead-field input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-style: italic;
  font-size: 16px;
  color: #a7a7a7;
}
.typeahead-field input::-moz-placeholder { /* Firefox 19+ */
  font-style: italic;
  font-size: 16px;
  color: #a7a7a7;
}
.typeahead-field input:-moz-placeholder { /* Firefox 18- */
  font-style: italic;
  font-size: 16px;
  color: #a7a7a7;
}
.typeahead-button{
  position: absolute;
  right: 0;
  top: 0;
  min-height: calc(.5rem * 2 + 1.25rem + 2px);
  line-height: 0;
}
.typeahead-container button{
  display: inline-block;
  margin: 0;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #555;
  border-radius: 0;
  border: 0;
  outline: 0;
}

/*--for an employee--*/
.perf-an-action{
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 15px;
}
.perf-an-action .perf-act-button{
  height: calc(.5rem * 2 + 1.25rem - 6px);
  position: relative;
  top: 4px;
  left: -1px;
  border-left:1px solid #e2e2e2;
  padding-top: 10px;

  position: absolute;
  right: 1px;
  left: auto;
  top: 1px;
  bottom: 1px;
  height: 36px;
  width: 32px;
}
.perf-an-action .typeahead-chevron-ico{
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.perf-an-action .typeahead-chevron-ico:before{
  content: '';
  background: url(../img/chevron-down-icon.svg) no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -8px;
  padding: 0;
  width: 16px;
  height: 12px;
  display: block;
}

.perf-an-action .typeahead-field input {
  padding-right: 8px;
}
.perf-an-action .typeahead-field input.has-dropdown-button {
  padding-right: 40px;
}
.perf-an-action .typeahead-result.typeahead-leader{
  padding: 10px 0px 20px 0px;
}
.perf-an-action .employee-results .typeahead-employee-item{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
}
.perf-an-action .employee-results .typeahead-employee-item:hover{
  background-color: #ddefff;
}
/*search component styles*/
.search-comp{
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.search-comp .typeahead-search-ico{
  background: url(../img/search-icon.svg) no-repeat;
  padding: 0;
  width: 20px;
  height: 20px;
  display: block;
}
.search-comp .search-comp-button{
  background-color: #005eb8;
  border: 0;
  height: 100%;
  min-height: calc(2.25rem + 0px);
  padding: 0px 11px;
  margin-right: 1px;
  position: relative;
  top: 1px;
}
.search-comp-button {
  width: 42px;
  position: relative;
}
.search-comp .typeahead-search-ico {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: none;
  width: auto;
  height: auto;
}
.search-comp .typeahead-search-ico:before {
  content: '';
  background: url(../img/search-icon.svg) no-repeat;
  padding: 0;
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 8px;
  margin-left: 12px;
}

/*--tabs component styles--*/
.search-comp-tabs{
  /* padding: 10px 0; */
  list-style-type: none;
  margin: 0;
}
.search-comp-tabs:before, .search-comp-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.search-comp-tabs li{
  float: left;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  padding-left: 3px;
  padding-right: 3px;
}
.search-comp-tabs li a{
  display: block;
  color: #4A4A4A;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none !important;
  font-size: 16px;
  border-bottom: 2px solid #dbdbdb;
  cursor: pointer;
}
.search-comp-tabs li.active a{
  border-bottom: 2px solid #005eb8;
  font-weight: bold;
}

/*--filters component styles--*/
.filter-comp{
  background-color: #f9f9f9;
  padding: 8px 8px 11px 8px;
  position: relative;
}
.filter-comp .filters-container{

}
.filter-comp .filter-comp-content.filter-tags{
  padding: 0;
  font-size: 0;
}
.filter-comp .filters-container .filter-dropdown{
  position: relative;
  display: inline-block;
  margin-right: 5px;
}
.filter-comp .title-filter-by{
  font-weight: bold;
  color: #8b8b8b;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.filter-comp hr{
  width: calc(100% - 24px);
  margin: 0;
  border: 1px solid #eaeaea;
}
.filter-comp .filter-btn-dropdown{
  line-height: 1.25;
  min-height: calc(2.25rem + 2px);
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  min-width: 150px;
  text-align: left;
  color: #4A4A4A;
  margin-top: 10px;
  outline: 0;
}
.filter-comp .filter-btn-dropdown:after{
  content: "";
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(../img/chevron-down-icon.svg) no-repeat;
  padding: 0px;
  position: relative;
  top: 3px;
  float: right;
}
.filter-comp .filters-collapse-btn{
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 20px;
  outline: 0;
  cursor: pointer;
}
.filter-comp .filters-collapse-btn i{
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: transparent url(../img/chevron-up-icon.svg) no-repeat;
  padding: 0px;
}
.filter-comp .filters-collapse-btn.active i{
  background: transparent url(../img/chevron-down-icon.svg) no-repeat;
}
.filter-comp .filter-dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  overflow: auto;
  z-index: 1;
  width: auto;
  min-width: 148px;
  left: 0;
  padding: 10px 0px;
  border: 1px solid #e2e2e2;
}
.filter-comp .filter-dropdown-content .filter-dropdown-item{
  color: #4A4A4A;
  padding: 6px 20px;
  text-decoration: none;
  display: block;
  border: 0;
  background: white;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
}
.filter-comp .filter-dropdown-content .filter-dropdown-item:disabled{
  color: #a2a2a2;
  cursor: auto;
}
.filter-dropdown-content .filter-dropdown-item:hover {
  background-color: #ddefff;
}
.open-filter-dropdown{
  display:block!important;
}
.filter-comp .filter-tags .item-tag{
  background: #fff;
  font-size: 16px;
  border: 1px solid #dadada;
  padding: 4px 12px;
  border-radius: 20px;
  color: #4a4a4a;
  display: inline-block;
  line-height: 1;
  margin-top: 10px;
  margin-right: 10px;
}
.filter-comp .filter-tags .item-tag .item-tag-remove{
  margin-left: 10px;
  font-size: 20px;
  display: inline-block;
  cursor: pointer;
}
.filter-comp .filter-tags .item-tag .item-tag-remove:after{
  background: url(../img/close-tag-icon.png) no-repeat;
  width: 12px;
  height: 12px;
  display: inline-block;
  content: "";
}

/*-- results component --*/
.results-comp{
  padding: 15px 8px;
}
.results-comp .associated-results{
  font-size: 16px;
  color: #4A4A4A;
  font-weight: bold;
}
.results-comp .header-results-comp{
  position: relative;
  padding-bottom: 20px;
}
.search-results-container{
  position: relative;
}
.search-results-container .sort-by-results{
  position: absolute;
  right: 0;
  top: 20px;
}
.search-results-container .sort-by-results .sort-btn-dropdown{
  cursor: pointer;
  font-weight: bold;
  color: #8b8b8b;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.search-results-container .sort-by-results .sort-btn-dropdown:before{
  content: "";
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  position: relative;
  top: 4px;
  float: right;
  background: url(../img/chevron-down-icon.svg) no-repeat;
  padding: 0px;
}
.search-results-container .sort-by-results .sort-btn-dropdown span{
  font-weight: normal;
}
.search-results-container .sort-by-results .sort-dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  overflow: auto;
  z-index: 1;
  right: 8px;
  padding: 10px 0px;
  border: 1px solid #e2e2e2;
  min-width: 150px;
  width: auto;
}
.search-results-container .sort-by-results .sort-dropdown-content a {
  color: #4A4A4A;
  padding: 6px 20px;
  text-decoration: none;
  display: block;
}
.search-results-container .sort-by-results .sort-dropdown-content a:hover {
  background-color: #ddefff;
}
.search-results-container .sort-by-results .open-sort-dropdown{
  display:block;
}
.results-comp .result-item{
  padding: 0 0 10px 0;
  position: relative;
}
.results-comp .result-item:first-child{
  padding-top: 0;
}
.results-comp .result-item .doc-type{
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  text-transform: uppercase;
  color: #212121;
}
.results-comp label.result-title{
  font-weight: bold;
}
.results-comp .result-item p{
  margin-bottom: 5px;
  margin-top: 10px;
  text-align: justify;
}
.results-comp .result-item .see-more-link{
  text-decoration: none;
  color: #005eb8;
  font-size: 16px;
}
.results-comp .results-rate{
  margin-bottom: 20px;
  margin-top: 10px;
  display: inline-block;
  width: 100%;
}
.results-comp .rate {
  float: left;
  padding: 0;
  margin-right: 10px;
}
.results-comp .rate-item .star-rate{
  background: url(../img/star-icon-not-checked.svg) no-repeat;
  display: inline-block;
  width: 18px;
  height: 18px;
}
.results-comp .rate-item .star-rate.checked{
  background: url(../img/star-icon-checked.svg) no-repeat;
}
.results-comp .rate-item:hover .star-rate{
  background: url(../img/star-icon-not-checked_hover.svg) no-repeat;
}
.results-comp .rate-item:hover .star-rate.checked{
  background: url(../img/star-icon-checked_hover.svg) no-repeat;
}

.results-comp .results-rate span{
  color: #8d8d8d;
  font-size: 14px;
}

.results-comp .additional-help{
  background: #eeeeee;
  border: 1px solid #dddee1;
  padding: 10px;
  color: #5b5b5b;
}
.results-comp .additional-help .help-title{
  font-weight: bold;
  font-size: .875rem;
  margin-bottom: 15px;
  display: block;
}
.results-comp .additional-help .open-hours span{
  margin-right: 5px;
}
.results-comp .additional-help .additional-help-container{
  position: relative;
}
.results-comp .additional-help .additional-help-container .open-hours-info{
  position: relative;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}
.results-comp .open-hours-info .chevron-info, 
.results-comp .phone-info .chevron-info{
  background: url(../img/chevron-down-icon.svg) no-repeat;
  display: inline-block;
  width: 14px;
  height: 10px;
  margin-left: 5px;
  cursor: pointer;
}
.results-comp .open-hours-info .open-label{
  font-weight: bold;
  margin-left: 10px;
}
.results-comp .phone-info{
  position: relative;
  display: block;
  font-size: 14px;
}
.results-comp .additional-help .help-chat-btn{
  position: absolute;
  right: 0;
  bottom: 0;
}
.results-comp .result-item .additional-help .chat-btn{
  display: inline-block;
  margin: 0;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #FFFFFF;
  border-radius: 3px;
  border: 0;
  background-color: #005eb8;
  padding: 6px 12px 6px 10px;
  font-size: .7rem;
  font-weight: bold;
  outline: 0;
}
.results-comp .result-item .additional-help .help-chat-ico{
  background: url(../img/chat-icon.svg) no-repeat;
  height: 14px;
  width: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  
}
.results-comp .result-item .less-info-control{
  display: block;
  text-align: right;
  margin-top: 10px;
}
.results-comp .result-item .less-info-control a{
  text-decoration: none;
  color: #005eb8;
  font-size: 16px;
}

/*typeahead results styles*/

.typeahead-result{
  display: none;
  position: absolute;
  left: 0;
  z-index: 4;
  width: 100%;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  text-align: left;
  background-color: #fff;
  border-radius: 2px;
  background-clip: padding-box;
  box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.4);
}
.typeahead-result.typeahead-client{
  min-width: 450px;
  width: auto;
}
.typeahead-result.typeahead-leader{
  top: 35px;
  left: auto;
  width: 100%;
}
.employee-results.typeahead-leader .employee-results-title{
  padding-right: 10px;
}
.employee-results.typeahead-leader .typeahead-employee-item{
  cursor: pointer;
}
.typeahead-result.typeahead-on-behalf{
  min-width: 500px;
  width: auto;
  z-index: 10;
}
.typeahead-result.typeahead-on-behalf .info-date{
  position: absolute;
  top: 1px;
  right: 0;
  color: #9b9b9b;
  font-size: 16px;
}

.typeahead-result .typeahead-list, .typeahead-result .typeahead-list ul{
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.typeahead-result .typeahead-list{
  padding: 12px 0 0 0;
  padding: 0 0 0 0;
}
.typeahead-result .typeahead-list .noresults{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  display: block;
}
.typeahead-result .typeahead-list .typeahead-item{
  margin-bottom: 3px;
}
.typeahead-result .typeahead-list .typeahead-item:last-child{
  margin-bottom: 0;
}
.typeahead-result .typeahead-list .typeahead-item.group-label{
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 20px;
}
.typeahead-result .typeahead-list .typeahead-group label, .typeahead-result .typeahead-list .typeahead-group hr {
  display: inline-block;
}
.typeahead-result .typeahead-list .typeahead-group{
  margin-bottom: 20px;
}
.typeahead-result .typeahead-list .typeahead-group label{
  font-style: italic;
  color: #666666;
  background-color: #ffffff;
  position: relative;
  top: 7px;
  padding-right: 10px;
}
.typeahead-result .typeahead-list > li{
  display: block;
}
.typeahead-result .typeahead-list .typeahead-item > a {
  clear: both;
  color: #4a4a4a;
  text-decoration: none;
  margin: 0;
  font-size: 18px;
}
.typeahead-result .typeahead-list > li > a strong{
  text-transform: uppercase;
}
.typeahead-result .typeahead-list .typeahead-item a .searched-date{
  font-style: italic;
  float: right;
  color: #9b9b9b;
}

.employee-results .employee-results-title{
  font-weight: bold;
  display: block;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 0.96rem;
}
.employee-results .advanced-search-link{
  display: block;
  text-align: right;
  padding-right: 15px;
  padding-top: 15px;
  text-decoration: none;
  color: #005eb8;
  font-size: 16px;
}
.employee-results .typeahead-employee-item{
    width: auto;
    cursor: pointer;
}
.employee-results .typeahead-employee-item span {
  display: block;
  color: #9b9b9b;
  font-size: 0.96rem;
  line-height: 20px;
}
.employee-results .typeahead-employee-item .typeahead_employee_pic{
  width: 45px;
  height: 45px;
  float: left;
}
.employee-results .typeahead-employee-item img{
  max-width: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.employee-results .typeahead-employee-item .typeahead-employee-info{
  padding-right: 15px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  box-sizing: content-box;
  position: relative;
 }
.employee-results .typeahead-employee-item:last-child .typeahead-employee-info{
  border: 0;
}
.employee-info-name-text {
  display: inline-block !important;
  color: #212121 !important;
}
.employee-results .typeahead-employee-item span.employee-info-sso{
  display: inline-block;
  color: #9b9b9b;
  font-size: 16px;
  line-height: 20px;
 }
 .employee-data-element {
  color: #9b9b9b;
  font-size: 0.96rem;
  line-height: 20px;
 }
.employee-results .typeahead-employee-item .employee-info-name{
  color: #212121;
  display: block;
 }
.employee-results .typeahead-employee-item .employee-info-sso{
  color: #9b9b9b;
  display: inline-block;
  margin-left: 5px;
 }
.employee-results .typeahead-employee-matches{
  padding: 30px 20px;
  text-align: center;
  border-top:  1px solid #e5e5e5;
}
.employee-results .typeahead-employee-matches .matches-link{
  text-decoration: none;
  color: #005eb8;
  font-size: 16px;
}

/*hover controls only to show results lists for search and on behalf of*/
/*.search-comp form:hover .typeahead-result, .on-behalf-comp form:hover .typeahead-result{
  display: block !important;
}*/
/*--style only to show the typeahead client container--*/
.typeahead-result.open {
  display: block!important;
}


.by-category-results, 
.most-viewed-results,
.search-results{
  padding: 10px 0;
  position: relative;
}
.by-category-results .category-item,
.most-viewed-results .most-viewed-item{
  position: relative;
}
.by-category-results .category-item .category-title{
  background-color: #ffffff;
  position: relative;
  top: 34px;
  padding-right: 10px;
  font-weight: bold;
  font-size: 0.96rem;
  color: #212121;
  z-index: 2;
  cursor: pointer;
  left: 34px;
}
.by-category-results .category-item .category-title span{
  font-weight: normal;
  color: #8b8b8b;
  margin-left: 5px;
}
.by-category-results .category-item hr {
  width: calc(100% - 36px);
  margin: 0;
  border: none;
  /* margin-bottom: 20px; */
  position: relative;
  /* height: 18px; */
  border-bottom: 2px solid #eaeaea;
  /* top: -18px; */
  z-index: 1;
  cursor: pointer;
}
.by-category-results .category-item .collapse-btn{
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    position: relative;
    /* right: 8px; */
    top: 12px;
    outline: 0;
    cursor: pointer;
    width: 30px;
    height: 26px;
}
.by-category-results .category-item .collapse-btn i{
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background: transparent url(../img/chevron-up-icon.svg) no-repeat;
    padding: 0px;
}
.by-category-results .category-item .collapse-btn.active i {
    background: transparent url(../img/chevron-down-icon.svg) no-repeat;
}
.category-item-result, .most-viewed-item, .search-result-item{
    display: block;
    box-sizing: border-box;
    padding: 25px 12px 0px 34px;
    font-size: 0.9rem;
}
.category-item-result:after, .most-viewed-item:after, .search-result-item:after{
    content: "";
    display: table;
    clear: both;
}
.cat-result-title, .most-viewed-result-title, .search-result-title{
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  color: #005E60;
  font-weight: bold;
  margin-bottom: 10px;
  clear: both;
}
.cat-result-title a, .most-viewed-result-title a, .search-result-title a{
  text-decoration: none !important;
  color: inherit;
  font-size: 15px;
  cursor: pointer;
}
.cat-result-title a:hover, .most-viewed-result-title a:hover, .search-result-title a:hover{
  text-decoration: underline;
}

.cat-action, .most-action{
  color: #9b9b9b;
  line-height: normal;
  margin-top: 5px;
  display: inline-block;
  position: relative;
}
.cat-result-desc, .most-viewed-result-desc, .search-result-desc{
  color: #212121;
}
.desc-expandable {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 20px;
  position: relative;
}
.more-desc {
  border: none;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  width: 24px;
  height: 20px;
  box-sizing: border-box;
  cursor: pointer;
  /*border: 1px solid red;*/
  outline: none;
  background-color: transparent;
}

.desc-expandable.desc-expandend {
  white-space: normal !important;
  height: auto !important;
}
.desc-expandable.desc-expandend .more-desc,
.desc-expandable .less-desc {
  display: none;
}
.desc-expandable.desc-expandend .less-desc {
  display: inline-block;
}
.desc-expandable.desc-no-expand .less-btn {
  display: none;
}
.action-num{
  font-size: 16px;
  font-weight: bold;
  color: #212121;
  padding-bottom: 10px;
  padding-top: 10px;
  display: block;
}
.search-results-container .title-results{
  font-size: 20px;
  font-weight: bold;
  color: #4A4A4A;
  margin-bottom: 5px;
  margin-top: 20px;
  display: block;
}
.search-results .rel-actions-dropdown{
  display: inline-block;
  background: transparent url(../img/chevron-down-icon.svg) no-repeat;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: relative;
  top: 3px;
}
.search-results .dropdown-content{
  position: absolute;
  background-color: #ffffff;
  overflow: auto;
  z-index: 1;
  right: -150px;
  padding: 10px 0px;
  border: 1px solid #e2e2e2;
  min-width: 200px;
}
.search-results .dropdown-content a{
  color: #4A4A4A;
  padding: 6px 20px;
  text-decoration: none;
  display: block;
}
.search-results .dropdown-content a:hover, .dropdown-container .dropdown-content ul li:hover{
  background-color: #ddefff;
}
.dropdown-container .dropdown-content ul{
  padding-left: 0;
  padding-right: 0;
}
.dropdown-container .dropdown-content ul li{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
}

/*--styles for tabs--*/
.tab-content{
  display: none;
}
.tab-content.active {
  display: inherit;
}
.hr-services-title{
  font-weight: normal;
  /*font-size: 52px;
  line-height: 40px;
  color: #4a4a4a;
   font-family: "ge-sans","Helvetica Neue",Helvetica,Arial,sans-serif;*/
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  line-height: 45px;
  color: #005E60;
  font-size: 1.8rem;
  font-family: 'GE Sons Condensed';
  letter-spacing: 0.5pt;
}
.on-behalf{
  color: #4a4a4a;
  margin-bottom: 30px;
  position: relative;
}
.on-behalf-dropdown-btn{
  display: inline-block;
  background: transparent url(../img/chevron-down-icon.svg) no-repeat;
  background-size: 16px 16px;
  background-position: 50% 50%;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  margin-left: 5px;
  border: none;
  outline: 0;
}
.open-dropdown{
  display: block !important;
}


/* GENERIC DROPDOWNS */
.dropdown-container {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
 /*  overflow: auto; */
  z-index: 10;
  padding: 10px 0px 20px 0px;
  border: 1px solid #e2e2e2;
  min-width: 100%;
  width: auto;
  overflow:scroll;
  max-height:500px;
}
.dropdown-content a{
  color: #4A4A4A;
  padding: 6px 20px;
  text-decoration: none;
  display: block;
}
.search-comp .dropdown-content{width: 100%; }
.dropdown-content a:hover{
  background-color: #ddefff;
}
.dropdown-trigger {
  cursor: pointer;
}
.dropdown-content.open, .filter-dropdown-content.open {
  display: block!important;
}
.dropdown-btn{
  display: inline-block;
  background: transparent url(../img/chevron-down-icon.svg) no-repeat;
  background-size: 16px 16px;
  background-position: 50% 50%;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  margin-left: 5px;
  border: none;
  outline: 0;
}

/* END OF GENERIC DROPDOWNS */

.less-desc a.less-btn{
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-left: 6px;
    color: #2e628a;
    text-transform: lowercase;
}
.desc-expandend{
  white-space: normal !important;
  height: auto !important;
}

.my-actions{
  color: #4A4A4A;
  font-size: 16px;
  display: block;
  text-align: right;
  margin-bottom: 5px;
}
.my-actions-dropdown{
  display: inline-block;
  padding-left: 5px;
  margin-left: 5px;
}
.my-actions-dropdown:before{
  display: inline-block;
  content: "";
  position: relative;
  height: 17px;
  width: 1px;
  top: -2px;
  margin-right: 7px;
  vertical-align: middle;
  background-color: #979797;
}
.my-actions-dropdown .actions-text{
  display: inline-block;
  vertical-align: middle;
}
.my-actions-btn{
  color: #3E6E93;
  cursor: pointer;
  display: inline-block;
  margin-left: 5px;
}
.my-actions-btn:hover{
  text-decoration: underline!important;
}
.my-actions .dropdown-content{
  right: 0;
  left: auto;
  text-align: left;
  min-width: auto;
  width: auto;
}
.additional-links{
  cursor: pointer;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  float: right;
  opacity: 0;
  pointer-events: none;
}
.additional-links a{
  font-size: 14px;
  color: #3E6E93;
}
.additional-links a{
  text-decoration: none;
}
.additional-links a:hover{
  text-decoration: underline;
}
.additional-links .question-link{
  /*border-right: 1px solid #979797;*/
  padding-right: 10px;
  margin-right: 6px;
}
.category-item-result:hover >.additional-links,
.most-viewed-item:hover >.additional-links ,
.search-result-item:hover >.additional-links{
  opacity: 1;
  pointer-events: all;
}
.desc-expandable:not(.desc-expandend) br {
    display: none;
}
.truncate-item{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.noactions{
  display: block;
  color: #212121;
  font-size: 16px;
}
.noactions a{
  color: #3E6E93;
  text-decoration: none;
}
.noactions a:hover{
  text-decoration: underline;
}
/*Alerts*/
.alert-container{
  position: absolute;
  right: 20px;
  top: 10px;
  max-width: 360px;
  width: auto;
  z-index: 10;
}
.alert-box{
    padding: 12px 24px 12px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
}
.alert-msg {
    color: #e6942f;
    background-color: #fcf4e5;
}
.warning-msg{
  color: #f42424;
  background-color: #fce5e5;
}
.alert-header-container {
  margin-top: 15px;
}
.alert-header-container .alert-box{
  text-align: center;
}
.info-msg{
    color: #345cb5;
    background-color: #e2f2fa;
}
.close-alert,.hide-alert{
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  position: absolute;
  top: 8px;
  right: 7px;
  color: inherit;
  font-size: 20px;
  outline: 0;
}

/*Something Wrong Page*/
.error-back{
  background: transparent url(../img/bg-image-large.png) no-repeat;
  background-size:contain;
  position: absolute;
  z-index: 0;
}
.error-desc{
  z-index: 10;
  position: absolute;
  bottom: 0;
  right: 40%;
  margin-right: -235px;
  width: 100%;
  max-width: 500px;
}
.error-desc h1{
  font-weight: normal;
  color: #4b4b4b;
}
.error-desc p{
  font-size: 22px;
  color: #4b4b4b;
}
.error-desc a{
  color: #3E6E93;
  text-decoration: none;
}
.error-desc a:hover{
  text-decoration: underline;
}
.img-section{
  position: absolute;
  height: 65%;
  max-height: 500px;
  left: 0;
  top: 25%;
  z-index: -1;
  overflow: hidden;
  width: 100%;
}
.img-section .img-back {
  background-image: url(../img/bg-image-large.png);
  background-repeat: no-repeat;
  width: 1200px;
  background-size: contain;
  position: absolute;
  left: 60%;
  top: 0px;
  bottom: 0;
  margin-left: -650px;
}
 
@media (max-width: 540px) {
  .error-desc{
    right: auto;
    width: auto;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 23px;
    margin: 0;

  }
  .img-section .img-back{
    width: 1100px;
    left: 80%;
  }
}
@media (max-width: 375px){
  .img-section .img-back{
    left: 100%;

  }
  .img-section{
    top: 15%;
    height: 70%;
  }
  .error-desc h1{
    font-size: 20px;
  } 
  .error-desc p{
    font-size: 18px;
  }
}
.aux-input{
  position: absolute;
  opacity: 0;
  right: 0;
}
.typeahead-no-mouseleave *,
.typeahead-no-mouseleave {
  color: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.action-type{
  font-size: 12px;
  color: #9B9B9B;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 10px;
  vertical-align: text-bottom;
  line-height: normal;
}
/*loading spinner */
.rn_LoadingIndicator .rn_OkcsLoading {
    background: url(../img/spinner.gif) no-repeat fixed center center;
	clear: both;
    height: 100%;
    margin-left: -6px;
    opacity: 0.6;
    position: fixed;
    width: 69em;
    z-index: 500;
}

.mostused-ajax-gif, .bycategory-ajax-gif{
    background: url(../img/spinner.gif) no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 48%;
    top: 48%;
}
.reset{
  position: absolute;
  top: 4px;
  right: 0;
}
.reset a{
  color: #005eb8;
  font-size: 14px;
  text-decoration: none;
}


/* Start of Modal Styles */
/*Modal*/
.popup.privacy-modal {
  width:100%;
  height:100%;
  display:none;
  position:fixed;
  top:0px;
  left:0px;
  background-color: #4A4A4A;
  background: rgba(74, 74, 74, 0.5); /* Green background with 30% opacity */
  z-index: 2;
}
.privacy-modal .popup-inner {
  width: 90% !important;
  max-width: 820px;
  max-height: 650px;
  height: calc(100% - 10%) !important;
  box-sizing: border-box;
  padding: 40px;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  box-shadow: 0px 0px 6px rgba(0,0,0,.5);
  border-radius: 3px;
  background: #fff;
}
.privacy-modal .popup-close {
  display:inline-block;
  position:absolute;
  top:15px;
  right:15px;
  font-size:20px;
  text-align:center;
  line-height:100%;
  font-size: 22px;
  color: #4A4A4A;
  background: url(../img/close-modal-icon.svg) no-repeat;
  width: 18px;
  height: 18px;
}
.privacy-modal .modal-title{
  font-size: 22px;
  color: #4A4A4A;
}
.privacy-modal .modal-body{
  height: 95%;
}
.modal-iframe{
  width: 100%;
  height: 95%;
  border: 0;
}
/* End of Modal styles */

.hr-services-header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-pack: unset; */
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 10px;
}
.data-privacy {
  color: #5c5c5c;
  margin-left: 20px;
  align-self: flex-end;
  text-decoration: none;
}
.data-privacy .icon-lock {
  background: url(../img/privacy-icon.svg) no-repeat;
  padding: 0;
  width: 18px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
/*** Toggle styles ***/
.toggle{
  float: left;
  position: relative;
}
.toggle-elem{
  display: inline-block;;
  margin-top: 1px;
}
.toggle span{
  font-size: 13px;
  vertical-align: middle;
  color: #9d9d9d;
}
.toggle-selected{
  color: #4a4a4a!important;
}
.switch {
  position: relative;
  display: inline-block;
  width: 33px;
  height: 15px;
  vertical-align: middle;
}
.switch input {display:none;}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a5a6a8;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.toggle-dropdown{
  position: relative;
  display: none;
  line-height: 1.4;
  height: 20px;
  width: 150px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 13px;
  min-width: 150px;
  text-align: left;
  color: #9d9d9d;
  outline: 0;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 25px;
}
.toggle-dropdown:after{
  content: "";
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(../img/chevron-down-icon.svg) no-repeat;
  padding: 0px;
  position: absolute;
  top: 4px;
  right: 5px;
  float: right;
}
.toggle-ddl{
  position: absolute;
  z-index: 1001;
  background-color: #fff;
  left: 54px;
  border: 1px solid #e2e2e2;
  min-width: 150px;
  display: none;
}
.toggle-ddl.open, .toggle-dropdown.open{
  display: inline;
}
.toggle-ddl ul{
  padding: 0;
}
.toggle-ddl ul li{
  list-style: none;
  text-align: left;
  padding: 5px;
  font-size: 13px;
  cursor: pointer;
}
.toggle-ddl ul li:hover{
  background-color: #ddefff;
}
.toggle-drop-available{
  color: #4a4a4a;
}

@media only screen and (max-width : 900px) {
  .popup-inner {
    width: calc(100% - 100px);
  }
}

/*load more css*/
.icon-more-results {
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
    width: 30%;
    height: 20px;
    position: relative;
    top: 4px;
    background: url(../img/chevron-down-icon.svg) no-repeat;
    background-size: 20px;
    padding: 0px;
    text-align: center;
}
.btn-more-results {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    color: #8d8d8d;
    font-size: 16px;
    border-top: 1px solid #8d8d8d;
    background-color: transparent;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    outline: none;
    cursor: pointer;
}
.more-results {
    text-align: center;
    margin-top: 10px;
}
.timeout-message {
  position: fixed !important;
  z-index: 10000 !important;
  top: 0;
  left: 0;
  width: 100% !important;
  padding: 0;
  background-color: rgb(255, 255, 255) !important;
  border: 0;
  border-radius: 0;
  height: 100%;
  margin: 0 !important;
  max-width: 100% !important;
}
.timeout-message span{
  display:block;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}
.timeout-message span:before{
  content:"";
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAmCAYAAACoPemuAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAArhJREFUeNrMWN1xwjAMTpggE7RhgsIEwGtfmk5QmIAwAWWC0AmACUpf+kqYgHQCaCfIBq10p7RGyHZiklx15/MFYuWz/OnPnvdPxb9m8f3yK4CpR4/FnBXze3yTtwYMwCCAJxhDBYxOTjC2MDYAMmsEGABCIHMC5CIIcgEA17UAA0AhTKsrAHFJYUwA4Mn0UscCKoLpUBJUTlaxCeo6gO6xk8Vo4cqwFo9kjxbguycrI/8eYODmAo2Oie5ofQdQS+JKXsFzYxhTDUARnK8h+U5QkJGSzDG0oBVfNZ78CHq3WmC0u6Ows5QW55qPfqvP8J6JIngSY4GffZUSnPxzARQGytE1wZKBnhA/VcFvJqJXkqljIfaMGsg4MyVDFBIRjS4sNtcQM68bFemcCH9Nz4ARtyLOK1CQNpWkyYnWgtVC1WJSrFm0UERI34hUYAPOrSatpVjtJHBtoALjsWXbYun1xp57JmAfLQLjJxOakvipRWC5lCU6TXwJFB/I08t6J5dmgBE1jlTtlkny1eqxipHcE9IMWi4usQluxbSj4dSwotsvKXVJWSLBxG042tBkMQ7sziEmoXf1hbjkWYrFgeSlBbC9kBoCB3BF0l8L9ZbO0yOh7vsFJgXU2IVsmKCptCl4N9NlEaqUuQH2Z4UiujgjIvKle011gV5pqnjh/yPjGKbCLvfKF8Gr5jVUEDpQzwLxNxfhghoCzoPY1mY5WjISNp1ToyPGMal4W9UJjoLuylaUdgSXXzYFjnTsBMJvjV2SwRHUcmhma+81aScRuqMiPFw0O75B0c5wm4N8fLH1mFQmTwlQUBaU7YogoAZ1aLnBweP/ZL/f0rrQsFYLquxtT+IabA1ivWbwK3hSUsNVVGbKBE4Xd8q9xlTIbzYpbhVL9xK+o9sH3t9V50Dz2p4slLqktR8BBgDGISDddTLURQAAAABJRU5ErkJggg==') no-repeat;
  height: 38px;
  width: 38px;
  display: inline-block;
  position: relative;
  top: 10px;
  margin-right: 10px;
}
.timeout-message > div{
  width: 100%;
  margin: 0;
  position: absolute;
  max-width: 410px;
  background-color: #ffffff;
  color: #212121;
  padding: 30px 20px;
  top: 100px;
  left: 50%;   /* bring your own prefixes */
  transform: translate(-50%, 0);
  letter-spacing: 0.5pt;
  font-size: 0.9rem;
}

/* For typeahead ui*/
.typeahead_answer{
  color: #4A4A4A;
  padding: 6px 20px 6px 40px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  
}

.typeahead_display{
    color: #005990;
}

/** new ones defined for UI redesign **/
/* #hrHeader{
  border-top: 5px solid #005E60;
} */
.GEVNlogoHR{
  background-image: url('/euf/assets/themes/hr_services/img/gevn-myhr-logo.svg');
  min-height: 3.5rem;
  min-width: 3.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  margin: 1%;
}
.GEVNLogo-offsetHR {
  margin-left: 11.5%;
}
.rn_MainColumn{
  margin: 0 auto;
}
.left-content{
  width: 40rem !important;
  margin-left: 9% !important;
  margin-bottom: 6%;
}
.pad-top{
  padding: 8% 2%;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 0rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
}
.ge-list-item {
  border-left: none;
  border-right: none;
  color: #212121;
  line-height: 24px;
  padding-left: 0px;
  font-size: 0.96rem;
}
.ge-list-item a{
  color: #005E60;
  text-decoration:none;
  font-weight: bold;
}
.right-heading{
  margin-left: 11%;
  font-size: 16px;
}

.startLazy{
  display: block;
  width: 94%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  background-color: #8c9399;
  border-color: #8c9399;
  text-align: center;
  padding: 8px;
  font-size: 16.5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px auto;
}

.startLazy:hover{
  color: #fff;
  background-color: #717476;
  border-color: #717476;
}