﻿/** typography **/

:root {
  --black-main: #333;
  --black-sub: #575757;
  --dark-blue: #005e85;
}

ctm_h1 {
  font-size: 56px;
  line-height: 70px;
  color: var(--black-main);
}

ctm_h2 {
  font-size: 36px;
  line-height: 45px;
  color: var(--black-main);
}

ctm_h3 {
  font-size: 24px;
  line-height: 36px;
  color: var(--black-sub);
  font-weight: 500;
}

@media screen and (max-width:992px){
  #mb-section-display .title ctm_h3{
    font-size: 16px;
    color: var(--black-main);
  }
  
  .cc-nav-sec{
      display: block;
  }
}

ctm_h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: var(--black-sub);
}

ctm_h5 {
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
  color: var(--black-main);
}

ctm_pd {
  font-size: 24px;
  line-height: 36px;
  color: var(--black-sub);
}

ctm_card {
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-blue);
}

ctm_menu {
  font-size: 18px;
  line-height: 27px;
  color: var(--black-sub);
}

ctm_links a {
  font-size: 16px !important;
  line-height: 24px;
  color: var(--dark-blue);
  display: block;
}

ctm_links:not(:last-child):not(#mb-custom-section-display ctm_links) a {
  margin-bottom: 20px;
}

ctm_sm_label {
  font-size: 14px;
  line-height: 21px;
  color: var(--black-sub);
}

ctm_caption {
  font-size: 12px;
  line-height: 18px;
  color: var(--black-sub);
}

@media screen and (max-width:768px) {
  ctm_h5 {
  font-size: 12px;
  line-height: 27px;
  font-weight: bold;
  color: var(--black-main);
}
}
/** end typography **/

.overlay-bg {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

#primary-nav {
  background: #f1f1f1 !important;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 20%);
}

#primary-nav .menu {
  display: inline-block;
  width: 100%;
  margin: 0;
}

#primary-nav .menu > li {
  margin: 0;
  padding: 10px 0px;
}

#primary-nav .menu > li > a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 0.7em 1em;
  text-align: center;
  font-size: 18px;
}

#primary-nav .menu > li > a {
  border: none;
}

/* #primary-nav .menu > li.open {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAA/CAYAAACmVEtSAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAHUSURBVGhD7ZVrqwFRFIbXICJKKblkwqf5OP7/L3I3FEYYvauZ07kxm721UuupnWPnsJ613j3bi6IooQ+mkL5+LCogjQpIowLSqIA0KiCNCkijAtKogDQqII0KSKMC0qiANCogjQpIowLSqIA0KiCNCkijAtKogDQqII0KSKMCeURRRIfDgTzP4+Watwpcr1daLpe0WCwoSRJeJph+DrxFAJ1GEbPZjJrNJr9frVZf+3k8M623CFwuFzoej7Tf72kwGPDabDZ0Op2MJ4HvMMGpwPeuTadTGo/HvFepVKjVavFEsuLzOlwomJXmVABdQ4GIC4puNBpcSLlcpl6vR+fzmQ+0yQRMcSaQFYWYrNdrGo1GP7pcLBY5SpgCwAE3zfkjnJ8BRKfb7XLXf4MDXa/XeUIQhoQtTiew3W45MojLPXzf58/FcexkCtYCKBwL+UdnEZ1HZOcBkwK2U3AyARSBywqFVavVdPc+7XabSqUS39K2OJkAnixYKMyU4XDItzSeTPiOV7ESyH4YcQjDkP82pVarUafT4f+1iZH1BNBFk9j8R7/f5wnsdrt053msBJBhPFGCIEh3ngeHHk14FSuB+XxOk8kkffcXRCwvHritcWu/BtENvB/bTtNdMdYAAAAASUVORK5CYII=")
    no-repeat scroll left bottom;
} */

#primary-nav li a {
  font-size: 16px;
  font-weight: 400;
}

#primary-nav .fa-chevron-down {
  font-size: 13px;
  margin-left: 10px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  #primary-nav .fa-chevron-down {
    margin-left: 1px; 
  }

  #primary-nav .menu {
    display: inline-flex;
  }  
}

.menu .open .fa-chevron-down,
.menu li:hover .fa-chevron-down{
  -webkit-animation: rotate-up 0.5s forwards;
  animation: rotate-up 0.5s forwards;
}


.menu .fa-chevron-down {
  -webkit-animation: rotate-down 0.5s forwards;
  animation: rotate-down 0.5s forwards;
}

@-webkit-keyframes rotate-up {
100% { transform: rotate(180deg); }
0% { transform: rotate(0deg); }
}

@-webkit-keyframes rotate-down {
100% { transform: rotate(0deg); }
0% { transform: rotate(180deg); }
}


.nav-section {
  color: #333;
  background: #fff;
  min-height: 400px;
  display: none;
  overflow: hidden;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2000;
  border-bottom: 1px solid #ddd;
  padding: 24px;
  margin-top: 12px;
  box-shadow: 2px 2px 4px 0 rgb(0 0 0 / 20%);
}

.nav-section li a {
  color: #005e85 !important;
  font-size: 18px !important;
}

.nav-section li p {
  font-size: 15px;
  margin-top: 10px;
  font-weight: 400;
}

li.lang {
  float: right;
}

li.lang > a {
  margin: 5px;
}

#primary-nav li.lang .fa-chevron-down {
  margin-left: 4px;
}

.nav-section h3, .nav-section-title .section-title > a {
  color: #005e85;
  margin: 30px 5px;
  font-size: 24px !important;
  font-weight: normal;
  text-decoration: underline;
}

.col-divider {
  border-right: 1px solid #ccc;
  min-height: 270px;
}

.col-divider-lft {
  border-left: 1px solid #ccc;
  min-height: 270px;
  margin-left: -1px;
}

.nav-section a,
.nav-section a:focus,
.nav-section a:hover,
.nav-section a:visited {
  color: inherit;
  text-decoration: none;
}

.nav-section a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*Sub Nav*/
#sub-nav ul{
    padding: 0;
}

#sub-nav li{
    list-style: none;
}

.sub-nav-list h4{
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    padding-bottom: 12px;
    color: #575757;
    margin-bottom: 20px;
    margin-top: 0px;
}

.sub-nav-list li{
    padding-bottom: 16px;
}

.sub-nav-list li a{
    font-size: 16px!important
}



/* Mobile Nav */
#mb-primary-nav,
#mb-custom-nav {
  font-size: 16px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 20%);
}

#mb-primary-nav .fa-chevron-right,
#mb-custom-nav .fa-chevron-right {
  /* margin-top: 10px; */
  font-size: 16px;
}

#mb-primary-nav .wrapper {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.menu-item {
  float: left;
  width: 87%;
  border-bottom: 1px solid #ececec;
  /*height: 45px;
  background-color: #eee;
  padding: 10px 0px 10px 20px;*/
  padding-left: 24px;
}


#mb-section-display .nav-section-title {
    padding: 16px 0px 16px 20px !important;
    line-height: 16px;
}

.menu-item a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 255px;
}

#mb-utility-menu .menu-item {
  float: left;
  width: 87%;
  border-bottom: 1px solid #fff;
  height: 57px;
  background-color: #eee;
  padding: 0px 0px 0px 24px;
  font-size: 14px;
  text-transform: uppercase;
  DISPLAY: flex;
  align-items: center;
}

#mb-utility-menu .menu-item a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 255px;
}

#mb-utility-menu .menu-item a,
#mb-utility-menu .menu-icon-wrapper a{
  color: var(--black-main);
}

#mb-primary-nav .menu-icon-wrapper,
#mb-custom-nav .menu-icon-wrapper {
  width: 13%;
  text-align: center;
  min-height: 45px;
  /* padding-top: 10px; */
  /* padding-right: 14px; */
  padding-left: 11px;
  float: right;
  font-size: 25px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ececec;
}

#mb-utility-menu .menu-icon-wrapper {
  border-bottom: 1px solid #fff;
  min-height: 57px;
  padding-right: 14px !important;
}

#mb-primary .menu-icon-wrapper {
  border-bottom: 1px solid #ececec;
  /* padding-top: 10px !important; */
  /* padding-right: 14px !important; */
  /* padding-left: 0px !important; */
}

#mb-primary-nav,
#mb-custom-nav {
  display: none;
  position: relative;
  z-index: 2000;
}

#mb-primary-nav a {
  text-decoration: none;
}

#mb-primary-nav li:hover,
#mb-custom-nav li:hover {
  cursor: pointer;
  opacity: 0.9;
}

#mb-primary-nav #mb-primary li span, #mb-secondary li span,
#mb-custom-nav #mb-custom li span {
  background-color: #fff;
  color: #005e85;
  /* padding: 0px 0px 0px 24px; */
  display: flex;
  height: 100%;
  align-items: center;
}

#mb-primary-nav.open,
#mb-custom-nav.open {
  display: block;
}

#mb-primary-nav,
#mb-custom-nav {
  position: absolute;
  right: 0px;
  top: 0px;
  background: #ededed;
  width: 400px;
  max-width: 95%;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 20%);
}

#mb-primary-nav ul,
#mb-custom-nav ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}

#mb-primary-nav .body .primary a,
#mb-primary-nav .header #btnBack,
#mb-custom-nav .body .custom a,
#mb-custom-nav .header #btnBack {
  cursor: pointer;
}

#mb-primary-nav .header,
#mb-custom-nav .header {
  width: 100%;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  border-bottom: solid 2px #ddd;
  color: #333;
  padding: 10px;
  padding-left: 24px;
}

#mb-primary-nav .header h3,
#mb-custom-nav .header h3 {
  margin-top: 15px;
  font-size: 18px;
  display: inline-block;
  /* margin-left: 5px; */
}

#mb-primary-nav .header h4,
#mb-custom-nav .header h4 {
  margin-top: 15px;
  font-size: 16px;
  display: inline-block;
}

#mb-primary-nav .header i.fa-times,
#mb-custom-nav .header i.fa-times {
  float: right;
  font-size: 28px;
  color: #005e85;
  margin-top: 10px;
  margin-right: 10px;
  cursor: pointer;
}

div#mb-section-display {
  background: #fff;
}

@media (max-width: 246px) {
#mb-primary-nav .menu-icon-wrapper,
#mb-custom-nav .menu-icon-wrapper {
  width: 13%;
  text-align: center;
  min-height: 45px;
  padding-right: 0px !important;
  padding-left: 0px;
  float: right;
  font-size: 25px;
}

#mb-primary .menu-icon-wrapper {
  border-bottom: 1px solid #ececec;
  padding-top: 10px !important;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

#mb-utility-menu .menu-icon-wrapper {
    border-bottom: 1px solid #fff;
    padding-top: 5px !important;
    margin-top: 5px;
    min-height: 45px;
}

}


@media (max-width: 992px) {

    .col-divider {
      border-right: none;
    }
  .mobile-nav-h3 {
    font-size: 16px;
    line-height: 18px;
    font-weight: medium;
    text-transform: uppercase;
    color: #333333;
}

  #mb-primary li {
    font-size: 16px;
    color: #005E85;
    font-weight: normal;
    line-height: 16px;
    border-bottom: #F1F1F1;
}


  #mb-primary-nav .header h4 {
    margin-top: 15px;
    font-size: 12px;
    display: inline-block;
    color: #005E85;
    text-transform: uppercase;
    font-weight: medium;
    Line-height: 12px
}

#mb-section-display .sub-nav-title {
  background-color: #eeeeee;
  margin: 0;
  padding: 16px 0px 16px 24px !important;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: medium;
  Line-height: 16px;
  color: #333;
}

#mb-section-display .sub-nav-link img  {
    width: 100%;
}

  #mb-section-display h3, #mb-section-display h3 a {
    background-color: #eeeeee;
    margin-bottom: 0px;
    font-size: 16px !important;
    padding-top: 0px !important;
    height: 20px !important;
    font-weight: bold;
}

#mb-section-display .careers-body{
  padding-bottom: 36px;
}

  #mb-primary-nav a {
    text-decoration: none;
    font-size: 16px;
    color: #005E85;
    font-weight: normal;
}

  #mb-section-display p {
    margin: 10px 0px 15px 0px;
    font-size: 14px;
    color: #575757;
    font-weight: normal;
    line-height: 20px;
}

  #mb-utility-menu li {
    font: Arial;
    font-size: 12px;
    color: #333333;
    font-weight: normal;
    line-height: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
}

  #mb-utility-menu .menu-item, #mb-utility-menu .menu-icon-wrapper a {
    font-size: 12px;
}

.nav-section-title {
    background-color: #eeeeee;
}
}


@media (min-width: 992px) {
  #mb-primary-nav,
  #mb-primary-nav.open {
    display: none;
  }

  #ahs-header .btn-link{
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 5px 12px;
    box-shadow: 2px 2px 2px #ccc;
  }
}

@media (max-width: 992px) {
  .overlay-bg {
    top: 0px;
  }
  #mb-section-display .container {
    width: auto;
  }
}

/**.placeholder:before {
  content: "standard field";
  padding: 8px 16px !important;
  background-color: #ead1dc;
  color: #333 !important;
  border-radius: 24px;
  margin: 5px;
  border: 1px solid #ead1dc !important;
  max-width: 130px;
  font-size: 12px !important;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.openarea:before {
  content: "Open HTML";
  padding: 8px 16px !important;
  background-color: #ecaa21;
  color: #333 !important;
  border-radius: 24px;
  margin: 5px;
  border: 1px solid #ecaa21 !important;
  max-width: 110px;
  font-size: 12px !important;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  text-align: center;
}**/


div#mb-section-display h3 {
    font-size:18px;
    margin-top:0px;
    padding-top:20px;
    height:45px;
    font-weight:500;
    text-transform:uppercase;
    color:#005e85;
}

div#mb-section-display div[class*='col-'] > li {
  margin-top: 0;
  margin-left:-15px;
  margin-right:-15px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 36px;
  padding-bottom: 36px;
  list-style-type:none;
  min-height: 57px;
}

div#mb-section-display div[class*='col-'] > li:not(:last-child){
  border-bottom:1px solid #eee;
}

#mb-section-display .col-divider.openarea [class*="col"] {
    padding: 0px;
}

div#mb-section-display #mb-secondary li {
  margin:0;
  padding:0;
}

div#mb-section-display p {
  /* margin:10px 0px 15px 0px; */
  margin: 13px 0px 0px 0px;
  font-size:14px;
}

#mb-section-display .card-list p {
  margin: 20px 0px 0px 0px;
}

/* Custom Top Arrow for Mega Menu */
#primary-nav .menu > li.open:not(.lang)::before {
  content: "";
  position: absolute;
  color: black;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(0deg);
  filter: drop-shadow(0px 0px 2px #bbb);
  line-height: 23px;
  transform: translate(26px, 50px);
}

#primary-nav .menu > li.open:not(.lang)::after {
  content: "";
  position: absolute;
  color: black;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(0deg);
  filter: drop-shadow(0px 0px 2px #bbb);
  transform: translateX(26px);
}
/* Custom Top Arrow for Mega Menu - ENDS */

/* Language Modal */
li.lang.open {
  position: relative;
  z-index: 100;
}

li.lang-item a{
    font-size: 16px !important;
}

li.lang nav {
  width: 300%;
  transform: translate(-30%, -15px);
  min-height: unset;
  border: 1px solid #ccc;
  left: -50%;
  height: 428px;
  overflow-y: auto;
}

/* Scroll Width */
.lang nav::-webkit-scrollbar {
  width: 8px;
}

/* Scroll Tracker */
.lang nav::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #bbb;
border-radius:20px;
}

/* Scroll Handle */
.lang nav::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius:20px;
}

.lang li:not(:last-child) {
  margin-bottom: 18px;
}


a#langMobile {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

a#langMobile i.fa-chevron-down {
  font-size: 8px;
}

nav.custom-visible {
  display: block !important;
  visibility: hidden;
}
.custom-visible .lang nav {
  visibility: initial;
}

nav.custom-visible li.lang nav {
  transform: translate(-60%, -70px);
  width: 370%;
}

#primary-nav.custom-visible h2, 
#primary-nav.custom-visible li:not(.lang):not(.lang-item) {
    display: none;
}

#primary-nav.custom-visible{
    height: 1px !important;
    margin-top: -12px;
}

/* Language Modal - ENDS */

/* Search Modal */
.search-bar {
  position: relative;
}

.search-bar input {
  width: 100%;
}

.search-bar i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  color: #005e85;
  font-weight: bold;
}

#ahs-search-bar {
  padding: 8px 12px;
  border: #ccc 1px solid;
  border-radius: 4px;
}

#popular-search ctm_h5{
  text-wrap: nowrap;
}

.popular-search-items:not(#mb-custom-section-display .popular-search-items) {
  padding: 0 0 0 16px;
}

#mb-custom-nav .popular-search-items {
  margin-top: 20px;
}

#mb-custom-nav .popular-search-items ctm_links:not(:last-child) {
    margin-bottom: 16px;
    display: block;
}

/* Search Modal - ENDS */

/* Mobile modal view */
#mb-section-display .title {
  background-color: #f1f1f1;
  padding: 10px 20px;
}

#mb-section-display hr {
  display: none;
}

/* Mobile modal view for Health Tool content */
#mb-section-display .ht-content {
  padding: 20px 20px 36px 20px;
}

#mb-section-display .ht-content-item {
  display: list-item;
  list-style: disc;
  margin: 0 30px;
  /* color: var(--dark-blue); */
  margin-bottom: 54px;
}

#mb-section-display .ht-content-item:last-child {
  margin-bottom: 36px;
}

#mb-section-display .ht-content-item a {
  display: block;
  list-style: unset;
  margin: 48px 0px 0px 0px;
}

.ht-content .records .mrgn-bttm-lg {
    margin-bottom: 34px;
}

#mb-primary-nav .ht-content .records{
  margin-bottom: 54px;
}

.ht-content .btn-home-primary {
  color: #fff !important;
}

#mb-section-display .ht-content a,
#mb-section-display .ht-content-item a {
  /* text-decoration: underline; */
}

/* Mobile modal view for Health Tool content - ENDS */
/* Mobile modal view - ENDS */

/* Mobile single layer modal  */
#mb-custom-section-display {
  padding: 16px;
  background-color: white;
}

#mb-custom-section-display ctm_h3,
#mb-custom-section-display > div > ctm_h5,
#mb-custom-section-display .modal-divider {
  display: none;
}

#mb-custom-section-display #popular-search {
  background-color: #eee;
  margin: -16px;
  padding: 25px 0px;
}

#mb-custom-section-display #popular-search br {
  display: block;
}

/* Mobile single layer modal - ENDS */

/* Mobile ultility menu */
div#primary-nav-mobile {
  display: flex;
  align-items: center;
}

a#btnMbNav {
  font-size: 23px;
}

div#primary-nav-mobile i,
div#primary-nav-mobile a {
    width: 40px;
    height: 40px;
    display:flex;
    align-items: center;
    justify-content: center;
}
/* Mobile ultility menu -ENDS */

/* Mobile Nav */
#mb-custom-nav.open {
  display: block;
}

#mb-custom-nav {
  font-size: 16px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 20%);
}

#mb-custom-nav .fa-chevron-right {
  margin-top: 10px;
  font-size: 16px;
}

#mb-custom-nav .menu-icon-wrapper {
  width: 13%;
  text-align: center;
  min-height: 45px;
  padding-top: 5px;
  float: right;
  font-size: 25px;
}

#mb-custom-nav {
  display: none;
  position: relative;
  z-index: 2000;
}

#mb-custom-nav li:hover {
  cursor: pointer;
  opacity: 0.9;
}

#mb-custom-nav #mb-custom li span {
  background-color: #fff;
  color: #005e85;
}

#mb-custom-nav.open {
  display: block;
}

#mb-custom-nav {
  position: absolute;
  right: 0px;
  top: 0px;
  background: #ededed;
  width: 400px;
  max-width: 95%;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 20%);
}

#mb-custom-nav ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}

#mb-custom-nav .body .custom a,
#mb-custom-nav .header #btnBack {
  cursor: pointer;
}

#mb-custom-nav .header {
  width: 100%;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  border-bottom: solid 2px #ddd;
  color: #333;
  padding: 10px;
}

#mb-custom-nav .header h3 {
  margin-top: 15px;
  font-size: 18px;
  display: inline-block;
  margin-left: 5px;
}

#mb-custom-nav .header h4 {
  margin-top: 15px;
  font-size: 16px;
  display: inline-block;
}

#mb-custom-nav .header i.fa-times {
  float: right;
  font-size: 28px;
  color: #005e85;
  margin-top: 10px;
  margin-right: 10px;
  cursor: pointer;
}

/* Misc. */
.ctm-tp-0 {
  top: 0;
}

.modal-divider {
  border-top: 1px solid #ccc;
  margin: 12px 0px 48px 0px;
}

#mb-section-display .card-section{
  float:left;
  margin: 15px 0 36px 0;
  padding: 0 24px;
}

#mb-section-display .nav-menu-item{
  float: left;
  width: 100%;
  border-bottom: 1px solid #ececec;
  height: 57px;
  background-color: #fff;
}

#mb-section-display .sub-nav-title{
  background: #eeeeee;
  margin: 0;
  padding: 15px 20px;
  text-transform: uppercase;
}

/** mb secondary nav **/
button#mb-sec-btn {
    display: none;
}
#wb-sec a.list-group-item.active {
    background-color: #efefef !important;
    border: 1px solid #ddd;
    font-weight: 600;
}

ul#mb-primary li,
ul#mb-secondary li,
ul#mb-utility-menu li {
    position: relative;
    display: block;
    height: 57px;
    padding: 0;
    /* padding-left: 24px; */
}

ul#mb-secondary li {
    position: relative;
    height: 57px;
}

ul#mb-primary a,
ul#mb-secondary a,
ul#mb-utility-menu a{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

ul#mb-primary,
ul#mb-utility-menu {
    display: flow-root;
    height: 100%;
}

span.nav-menu-item a:not(#sub-nav span.nav-menu-item a) {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

span.nav-menu-item,
div#mb-section-display div[class*='col-'].col-divider li {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

span.nav-menu-item a:not(#sub-nav span.nav-menu-item a),
div#mb-section-display div[class*='col-'].col-divider li{
    padding: 16px 24px 16px 24px;
}

@media screen and (max-width:992px) {
    
    button#mb-sec-btn {
      display:block;
      padding: 8px 16px;
      background-color: #fff;
      color: #005e85;
      border-radius: 24px;
      margin: 20px 0;
      border: 1px solid #ccc;
      width: 100%;
      font-size: 16px;
      box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
      font-weight:500;
    }
    
    button#mb-sec-btn:before,
    button#mb-sec-btn:after {
      font-family: 'FontAwesome';
    }
    
    button#mb-sec-btn:before {
      content: "\f0c9";
      margin-right: 10px;
    }
    
    button#mb-sec-btn:after {
      content: "\f078";
      margin-left: 10px;
      font-size: 12px;
    }
    
    #wb-sec {
      position: absolute;
      background-color: #fff;
      z-index: 1000;
      width: 80%;
      box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
      border: 1px solid #ccc;
      margin: -15px 20px 0 20px;
      font-size:16px;
    }
    
    #wb-sec .list-group.menu li,
    #wb-sec .list-group.menu a.list-group-item {
      border: 0;
      background-color: #fff !important;
      font-weight:500;
      font-size:16px;
    }
    
    #wb-sec .list-group.menu a.list-group-item {
      margin-left: 20px;
      color: #005e85;
    }
   #wb-sec .list-group.menu a:hover{
     cursor:pointer;
     color:#005e85!important;
     opacity:0.8;
   }
    
    #wb-sec .list-group.menu li.list-group-item.left-nav-top {
        padding-top:20px;
    }
    #wb-sec a.active {
        color:#333!important;
        font-weight: 600 !important;
    }
    
    #wb-sec .list-group.menu li.list-group-item.left-nav-top a {
      color: #005E85;
    }

}

@media screen and (min-width:993px) {
    nav#wb-sec {
        display: block!important;
    }
    
    .cc-nav-sec{
        display: none;
    }
}

/*Global header*/
#gha{
    position: relative;
    z-index: 1600;
}