/* MHAA Styles */

/* ===========================
   HEADER STYLES
   =========================== */
.header-wrapper {
  position: relative;
  overflow-x: clip;
}

.site-header {
  font-family: Roboto, Arial, sans-serif;
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #cccccc;
}

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 0 0 25px;
  width: 100%;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 14px 0;
  flex-shrink: 0;
}

.header-logo>* {
  height: 37px;
  width: auto;
  display: block;
}

.header-logo-text {
  color: #575757;
  padding-top: 14px;
}

/* Desktop Nav */
.header-nav {
  display: flex;
  align-items: stretch;
}

.nav-list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin-bottom: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

.nav-item:hover::after {
  background: #333333;
}

.nav-item.is-active::after {
  background: #0081AB;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 40px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #575757 !important;
  text-decoration: none !important;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

a.nav-link {
  color: #575757 !important;
}

a.nav-link:visited {
  color: #575757;
}

.chevron {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.nav-item--dropdown.is-open .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% - 16px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-item--dropdown.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-main {
  display: block;
  padding: 10px 20px 13px;
  font-size: 16px;
  font-weight: 400;
  color: #0081ab;
  text-decoration: none !important;
}

.dropdown-main:hover {
  text-decoration: underline !important;
}

.dropdown-subnav {
  list-style: none;
  padding-left: 0;
}

.dropdown-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 16px;
  color: #0081ab;
  text-decoration: none !important;
}

.dropdown-sub:hover {
  text-decoration: underline !important;
}

.dropdown-sub .arrow-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

/* Mobile Nav */
.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #333333;
  padding: 8px 24px;
  flex-shrink: 0;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  width: min(360px, 100vw);
  background: #fff;
  box-shadow: -3px 0 20px rgba(0, 0, 0, 0.12),
    3px 0 20px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.10);
  padding: 0px;
  transform: translateX(110%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 90;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s linear 0s;
}

.mobile-nav-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #eeeeee;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-top-link {
  display: block;
  padding: 15px 24px;
  font-size: 16px;
  color: #333333;
  text-decoration: none !important;
}

a.mobile-sub-link:hover,
a.mobile-top-link:hover {
  color: #333333;
  text-decoration: underline !important;
}

.mobile-top-link.is-active {
  color: #00a65a;
  font-weight: 600;
}

.mobile-subnav {
  list-style: none;
  padding-bottom: 8px;
  padding-left: 0;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px 10px 24px;
  font-size: 16px;
  color: #0081ab;
  text-decoration: none !important;
}

.mobile-sub-link--main {
  padding-left: 24px;
  font-size: 16px;
}

.mobile-sub-link.is-active {
  color: #00a65a;
  font-weight: 600;
}

.mobile-sub-link .arrow-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 1294px) {
  .header-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mha-search-btn {
    padding: 0 16px;
    min-width: 65px;
  }

  .mha-search-btn-label {
    display: none;
  }
}

.header-right {
  display: flex;
  align-items: stretch;
}

/* ===========================
   SEARCH BUTTON
   =========================== */
.mha-search-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 24px;
  background-color: #0081AB;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mha-search-btn svg {
  fill: #ffffff;
  transition: fill 0.15s ease;
}

.mha-search-btn:hover {
  background-color: #cccccc;
  color: #333333;
}

.mha-search-btn:hover svg {
  fill: #333333;
}

.mha-search-btn-label {
  font-size: 16px;
  line-height: 1;
}

/* ===========================
   SEARCH OVERLAY + PANEL
   =========================== */
.mha-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.mha-search-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.mha-search-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 680px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  border-radius: 0 8px 8px 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mha-search-overlay.active .mha-search-panel {
  transform: translateX(0);
}

.mha-search-panel-header {
  background-color: #0081AB;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 65px;
  flex-shrink: 0;
}

.mha-search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  transition: opacity 0.15s ease;
}

.mha-search-close-btn:hover {
  opacity: 0.75;
}

.mha-search-panel-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  background-color: #f0f5f8;
}

.mha-search-title {
  font-family: Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500 !important;
  color: #36424a;
  margin: 0 0 16px 0;
}

.mha-search-input-wrap {
  position: relative;
}

.mha-search-input {
  width: 100%;
  padding: 10px 48px 10px 12px;
  border: 2px solid #cccccc;
  border-radius: 4px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  outline: none;
  transition: border-color 0.15s ease;
  background-color: #ffffff;
}

.mha-search-input:focus {
  border-color: #0081AB;
}

.mha-search-submit-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #0081AB;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.mha-search-submit-btn:hover {
  color: #36424a;
}

.mha-search-popular-title {
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin: 0 0 16px 0;
}

.mha-search-popular-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mha-search-popular-card {
  display: block;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.15s ease;
}

.mha-search-popular-card:hover {
  border-color: #36424a;
}

.mha-search-popular-card h5 {
  color: #0081AB;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px 0;
  transition: color 0.15s ease;
}

.mha-search-popular-card:hover h5 {
  color: #36424a;
}

.mha-search-popular-card p {
  color: #575757;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 575.98px) {
  .header-inner {
    padding-left: 16px;
  }

  .header-logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-logo-text {
    padding-top: 4px;
    font-size: 14px;
    height: fit-content;
  }

  .mha-search-panel {
    max-width: 100%;
    border-radius: 0;
  }

  .mha-search-panel-body {
    padding: 24px 16px;
    gap: 24px;
  }

  .mha-search-popular-grid {
    grid-template-columns: 1fr;
  }
}

/* Back to */
.mhaa-back-text {
  color: #0081AB;
  font-size: 16px;
}

.mhaa-back-text:hover {
  color: #36424a;
}

.mhaa-back-link {
  text-decoration: none;
}

/* On this page */
.on-this-page-link {
  font-size: 16px;
  color: #0081AB;
}

.inner-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.inner-nav-divider {
  width: 1px;
  height: 20px;
  background-color: #cccccc;
  flex-shrink: 0;
}

/* Topic dividers */
.mhaa-inner-topic-divider {
  border-top: 1px solid #cccccc;
  margin-bottom: -54px;
}

.mhaa-topic-divider {
  border-top: 1px solid #cccccc;
  padding-top: 54px;
  margin-bottom: -54px;
}

/* New footer starts */
/* ===========================
   FOOTER STYLES
   =========================== */
.mhaa-footer {
  background-color: #36424A;
  margin-top: auto;
  z-index: 10;
  position: relative;
  color: #ffffff;
  padding: 24px 0 40px;
}

.mhaa-footer-acknowledgment {
  align-items: center;
}

.mhaa-footer-acknowledgment p {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin-bottom: 0;
}

.mhaa-footer-logos {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.mhaa-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}

.mhaa-footer-divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin: 5px 0 35px;
}

.mhaa-footer-copyright {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: baseline;
}

.mhaa-footer-copyright span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

span.mhaa-copyright-text {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.mhaa-footer-copyright span a {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  text-decoration: none;
}

span.mhaa-copyright-links a:hover {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  text-decoration: underline;
}

.mhaa-footer-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px !important;
}

.mhaa-footer-text {
  font-size: 16px;
}

.mhaa-download-buttons {
  max-height: 52px;
  margin-right: 20px;
}

.mhaa-footer-top-left {
  border-right: 1px solid #cccccc;
  margin-right: 20px;
}

.mhaa-footer-top-right {
  margin-right: -20px;
}

/* Mobile responsiveness */
@media (max-width: 992px) and (min-width: 769px) {
  .mhaa-footer-acknowledgment .col-lg-8 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .mhaa-footer-acknowledgment .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767.98px) {
  .mhaa-footer-acknowledgment .col-md-6:first-child {
    margin-bottom: 24px;
  }

  .mhaa-footer-acknowledgment p {
    text-align: center;
  }

  .mhaa-footer-logos {
    justify-content: center;
  }

  .mhaa-footer-copyright {
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-bottom: 12px;
  }

  .mhaa-footer-top-left {
    border-right: none;
    border-bottom: 1px solid #cccccc;
    margin-right: 0px;
    padding-bottom: 20px;
  }

  .mhaa-footer-top-right {
    margin-right: 0;
    margin-top: 20px;
  }
}

/* New footer ends */

.SearchBoxShadow:focus {
  box-shadow: 0px 0px 0px 3px #92c0e0 !important;
}

.btnshadow {
  box-shadow: 0px 0px 0px 3px #92c0e0;
}

.footerdivider {
  margin-top: -16px;
  margin-bottom: -24px;
}

.footer-logo-divider {
  border-right: 1px solid #cccccc;
}

.footer-darkgrey-top {
  margin-top: -36px;
}

.footer-logo-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.authorinfo {
  font-size: 14px;
  line-height: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.mha-help-icon {
  float: right;
}

.mha-topic-footercontainerdivider {
  display: none;
}

.mha-footer-icon {
  /*top: 2px;*/
  bottom: 1px;
  position: relative;
}

.mha-floatright {
  float: right;
}

.mha-floatleft {
  float: left;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

/*Sharepoint page header top related css*/

body {
  width: 100% !important;
  height: 100% !important;
}

#s4-workspace {
  width: 100% !important;
  height: auto !important;
}

/* 
#s4-titlerow,
#sidenavbox,
#globalNavBox,
#suiteBarDelta,
#sideNavBox
 {
  display: none !important;
}
 */
.spuser #s4-titlerow,
.spuser #sidenavbox,
.spuser #globalNavBox,
.spuser #suiteBarDelta,
.spuser .ms-webpart-chrome-title {
  display: block !important;
}

/*sharepoint webpart cell*/
.ms-webpartzone-cell {
  margin: 0px !important;
}

.mha-html-template-component {
  font-size: 18px;
}

.mha-content-full {
  font-size: 100%;
}

#contentBox {
  margin-right: 0px !important;
  margin-left: 0px !important;
  min-width: 0px !important;
}

#contentRow {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

#s4-bodyContainer {
  padding-bottom: 0px !important;
}

div.welcome {
  padding: 0px !important;
}

.welcome-content {
  margin: 0px !important;
  display: none !important;
}

.cell-margin {
  margin: 0px !important;
}

.tableCol-75 {
  width: 100% !important;
}

.tableCol-25 {
  width: 0 !important;
}

.tableCol-50 {
  width: 100% !important;
}

.ms-table .tableCol-50:first-child {
  padding-right: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

input[type=button],
input[type=reset],
input[type=submit],
button {
  min-width: auto !important;
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300 !important;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 1.125em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, Arial, sans-serif;
  margin-bottom: 16px;
  color: #333333;
}

/* Hero */
.mhaa-hero {
  z-index: 2;
  position: relative;
}

.mhaa-hero-divider {
  z-index: 1;
  position: relative;
  margin-top: -92px !important;
}

/* Help cards */

.help-card {
  padding-bottom: 24px;
  border-bottom: 41px solid #0081AB;
}

.help-card:hover {
  border-bottom: 41px solid #333333;
}

.help-card-icon {
  max-width: 175px;
  margin: auto;
  padding: 4px 0 16px;
}

.help-card-text {
  text-align: center;
  font-size: 16px;
  line-height: 135%;
  padding-top: 24px;
}

.help-learn-more {
  color: #ffffff;
  text-decoration: none;
  margin-top: 40px;
  margin-bottom: -73px;
}

.help-learn-more:visited {
  color: #ffffff !important;
}

.help-learn-more:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* My health, one place */

.one-place-text {
  max-width: 782px;
  margin: auto !important;
}

.one-place-button {
  width: fit-content;
  margin-top: 20px;
}

/* Accordions */
.accordion {
  margin: 0 auto;
  font-family: Roboto, arial, sans-serif;
  overflow: hidden;
  border-top: 1px solid #ccc;
}

.accordion-header {
  width: 100%;
  display: flex;
  padding: 1rem 1.5rem;
  background-color: inherit;
  color: #0081AB;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  transition: background-color 0.2s ease;
}

/*.accordion-header:hover {
background-color: #f1f1f1;
}*/
.accordion-header .icon {
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  /* background-color: #fff; */
  border-bottom: 1px solid #ddd;
}

.content-inner {
  padding: 1.5rem;
}

.accordion-item {
  border: none;
  background: none;
}

.accordion-item .icon:before {
  content: "\002B";
  font-size: 24px;
  color: #0081AB;
}

.accordion-item.active .icon:before {
  content: "\2212";
  color: #666666;
}

.acc-name {
  margin-top: 6px;
  margin-left: 5px;
}

.acc-name strong {
  font-weight: 500;
}

.accordion-item.active .acc-name {
  color: #666666;
}

.mha-topic-borderleft {
  padding-left: 24px;
  border-left: 2px solid #f1f1f1;
  font-size: 32px !important;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  /* margin-left: 24px; */
}

.mha-topic-bkgTeal {
  background: #008996;
}

.mha-topic-bkgblue {
  background: #0081AB;
}

.mha-topic-bkgorange {
  background: #fef7ec;
}

.mha-topic-bkglightblue {
  background: #f0f5f8;
}

.mha-topic-bkglightgreen {
  background: #f7f9f4;
}

.mha-topic-bkgGray {
  background: #f1f1f1;
  /* background: #CCCCCC; */
}

.mha-topic-bkgdarkgray {
  background: #333333;
}

.mha-topic-bkgmediumgray {
  background: #575757;
}

.mha-topic-bkglightgray {
  background: #cccccc;
}

.mha-topic-center {
  text-align: center;
  margin-bottom: 45px;
}

.mha-topic-right {
  text-align: right;
}

.paragraphcenter {
  margin-left: 150px !important;
  margin-right: 150px !important;
}

.blackbuttonimg {
  margin-top: -5px;
  margin-right: 5px;
}

.mha-topiclabelmargin {
  margin-top: 15px;
  margin-bottom: 25px;
}

.margintop {
  margin-top: 16px;
}

.tworows {
  padding-top: 0px !important;
}

.container-fluid,
.container-xxl {
  padding-right: 0px;
  padding-left: 0px;
}

.container-fluid h1 {
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #36424A !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

.container-fluid h2 {
  font-weight: 400 !important;
  line-height: 1.25 !important;
  color: #333333 !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

.container-fluid h3,
.container-fluid h4,
.container-fluid h5 {
  line-height: 1.5 !important;
  color: #333333 !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 500;
}

.mha-topic-label {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
}

.mha-topic-regular {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #333333;
  display: block;
}

.cardtitle-stories {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #0081AB;
  display: block;
  text-align: center;
}

.cardstories {
  display: block;
  text-align: center;
}

.imgcardstories {
  width: 220px;
}

.spancardtitle-stories {
  background: #eba900;
  height: 2px;
  border-left: 100px solid white;
  border-right: 100px solid white;
  margin: 15px 0 15px 0;
}

.stories-description {
  font-size: 20px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #222425;
  display: block;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  /* display: -webkit-box; */
}

.mha-topic-BigText {
  font-family: "Impact";
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #333333;
  height: 100px;
  line-height: 75px;
  font-size: 72px;
  width: 120px;
}

/* .container-fluid p:not(:last-child) */
p {
  line-height: 1.5 !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  color: #575757;
}

.ms-rtestate-field p {
  margin-bottom: 0px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: 1.6;
}

.ms-rtestate-field p:not(:last-child) {
  margin-bottom: 27px;
}

.container-fluid li {
  line-height: 1.5 !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #575757;
}

/*Immunization :: PAGE1 related css*/

.mha-topic-hamburgermenu {
  margin-bottom: 3px;
}

.input-group>.form-control,
.input-group>.form-select,
.input-group>.form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  padding-left: 15px;
}

input#example-search-input {
  color: #9d9d9d;
  border: 1px solid #333333 !important;
}

element.style {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border: 1px solid #333333;
}

span.input-group-append {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border: 1px solid black;
}

.mha-topic-backbutton {
  text-transform: uppercase;
  color: #3c799f;
}

.mha-topic-ahslogos {
  display: flex;
  vertical-align: middle;
  /* padding-top: 16px; */
  /* padding-bottom: 16px; */
  margin-top: 5px;
  margin-bottom: 4px;
  margin-left: 24px;
}

/*.mha-topic-carousel-inner {
  padding-bottom: 22px;
}*/

.mha-topic-rightimages {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 250px;
  margin-right: 32px;
  margin-left: -32px;
}

.mha-topic-container {
  padding-left: 108px;
  padding-right: 108px;
}

.mha-topic-container>.row.mha-topic-containerdivider,
.ui-tabs-panel>.row.mha-topic-containerdivider {
  padding-top: 0px;
  padding-bottom: 0px;
}

.mha-topic-container>.row,
.ui-tabs-panel>.row {
  padding-top: 54px;
  padding-bottom: 54px;
}

.mha-topic-container ul {
  padding-left: 1rem;
}

.row.img-row {
  padding-bottom: 0;
}

.row.img-row h3 {
  margin-top: 16px;
}

.mha-topic-pagedescription {
  font-size: 24px;
  line-height: 1.5 !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #575757;
}

.mha-topic-bookappointment {
  right: 0;
  z-index: 10000;
  margin-right: 2px;
  -webkit-box-shadow: 2px 2px 4px #cccccc;
  -moz-box-shadow: 2px 2px 4px #cccccc;
  box-shadow: 2px 2px 4px #cccccc;
  height: 48px;
  border-radius: 8px 0px 0px 8px;
  transition: transform 0.3s;
  transform: translateY(0);
}

.mha-topic-bookappointment.hidden {
  transform: translateY(100%);
}

.mha-topic-search {
  /* margin-left: -90px; */
  text-align: right;
  z-index: 200 !important;
  margin-left: -38px;
  min-width: 1em !important;
}

.mha-topic-utilitiesimg {
  background-color: #fff;
  border-radius: 50%;
  padding: 7px;
  margin-top: 8px;
  overflow: visible;
}

.mha-topic-rowdivider {
  border-top: 1px #cccccc solid;
}

.mha-topic-headerheight {
  height: 48px;
}

.mha-topic-card {
  box-shadow: 2px 2px 4px #cdcdcd;
  border: 1px solid #cccccc;
  position: unset;
  width: 100%;
}

.mha-topic-cardStories {
  box-shadow: 2px 2px 4px #cdcdcd;
  border: 1px solid #cccccc;
  position: unset;
}

.mha-topic-4cards {
  box-shadow: 2px 2px 4px #cdcdcd;
  border: 1px solid #cccccc;
  position: unset;
}

.fourcardsanchor {
  cursor: pointer;
}

.mha-topic-twocards {
  box-shadow: 2px 2px 4px #cdcdcd;
  border: 1px solid #cccccc;
  position: unset;
  height: 100%;
}

.margintwocolumn {
  margin-bottom: 24px;
  padding-right: 0px;
  padding-left: 0px;
}

.mha-topic-twocardsmb24 {
  margin-bottom: 24px;
}

.mha-topic-fullimgcard {
  position: relative;
}

.mha-topic-fullimgcard:hover {
  cursor: pointer;
}

.mha-topic-howtobookcards {
  border: 1px solid #cccccc;
  position: unset;
}

.mha-topic-paddingright {
  padding-right: 0px !important;
}

.mha-topic-imgradius {
  border: 1px solid #cccccc;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #cdcdcd;
  cursor: pointer;
  position: unset;
}

.fullheight {
  height: 100%;
  border-radius: 5px;
}

.img-gradient {
  position: relative;
}

.img-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, #000000 99.35%);
  background-size: cover;
  border-radius: 5px;
}

.marginright {
  margin-right: 24px;
}

.typeofcontent {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #575757;
}

.cardtitle {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #0081AB;
  margin-bottom: 16px;
  font-size: 20px;
  text-decoration: none;
}

.description {
  /* font-size: 18px; */
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #575757;
  text-decoration: none;
}

.cardtitle:hover {
  color: #333333;
}

.whitecard {
  color: #ffffff;
  /* background: -webkit-linear-gradient(#eee, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;*/
}

.whitecard.cardtitle:hover {
  color: #cccccc;
}

.mha-topic-card:hover,
.mha-topic-twocards:hover,
.mha-topic-imgradius:hover,
.mha-topic-4cards:hover,
.mha-topic-cardStories:hover {
  border: 1px solid #333333;
  background: #f1f1f1;
  box-shadow: none;
}

.mha-topic-card:focus,
.mha-topic-twocards:focus,
.mha-topic-imgradius:focus .mha-topic-4cards:focus,
.mha-topic-cardStories:focus {
  outline: 2px solid #333333;
  box-shadow: none;
  border-radius: 0 !important;
  /* .mha-topic-howtobookcards:focus, */
}

.mha-topic-4cards:focus:not(:focus-visible),
.mha-topic-cardStories:focus:not(:focus-visible),
.mha-topic-card:focus:not(:focus-visible) {
  outline: none;
}

.mha-topic-footerrow {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

a,
.content-link,
a:visited {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #0081AB;
  text-decoration: underline;
}

a:hover {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #333;
  text-decoration: none;
}

.carousel a,
#back_btn a,
.cardelements {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  color: #0081AB;
  text-decoration: none;
}

.container-fluid li>a:not(.content-link),
span>a,
p>a {
  /* text-decoration: underline;  */
  font-size: 1em !important;
  /* color: #005e85; */
}

.mha-topic-carouselspacing {
  margin-left: 23px;
  margin-right: 0.1rem;
}

.col-lg {
  min-width: 0;
}

.mha-topic-carouselcard:focus {
  outline: 2px solid #333333;
  box-shadow: none;
  border-radius: 0 !important;
}

.mha-topic-carouselcard:hover {
  border: 1px solid #333333;
  background: #f1f1f1;
  box-shadow: none;
}

.overlay-text {
  position: absolute;
  /* left:0; */
  bottom: 0;
  color: white;
  margin: 24px;
}

.btn__default.secondary {
  background-color: #fff;
  color: #0081AB;
  border: 1px solid #ccc;
  min-width: 100px;
  box-shadow: 2px 2px 4px #cdcdcd;
  margin-bottom: 16px;
}

.mha-topic-mb16 {
  margin-bottom: 16px;
}

.footerspacing {
  padding-left: 5px;
  padding-right: 5px;
}

/*recommended*/

.mha-topic-display {
  display: flex;
}

.mha-topic-fontweightbold {
  font-size: 18px;
  font-weight: bold;
}

.marginbottom24 {
  margin-bottom: 24px;
}

.marginbottom12 {
  margin-bottom: 12px;
}

.margintop24 {
  margin-top: 24px !important;
  margin-bottom: 24px;
}

.marginbottom8 {
  margin-bottom: 8px;
}

.padding24 {
  padding: 24px;
}

.btn__default {
  font-size: 18px;
  font-weight: normal;
  border: none;
  display: inline-block;
  vertical-align: top;
  border-radius: 50px;
  text-align: center;
  padding: 8px 16px;
}

.buttonimgpadding {
  padding-left: 8px;
}

.btn__default.primary {
  background-color: #0081AB;
  padding: 8px 16px;
  color: #fff;
}

.btn__default.primary:focus,
a.printPDF:focus,
button#Generate:focus {
  background-color: #0081AB;
  color: #fff;
  text-decoration: none;
  outline: 2px solid #333333;
}

.btn__default.primary:hover,
a.printPDF:hover,
button#Generate:hover {
  text-decoration: none;
  background-color: #333333;
}

.btn__default.secondary:focus {
  outline: 2px solid #333333;
  background-color: #fff;
  color: #0081AB;
  padding: 12px 16px;
}

.btn__default.secondary:focus:not(:focus-visible) {
  outline: none;
}

.btn__default.secondary:hover {
  text-decoration: none;
  border: 1px solid #333;
  background-color: #eeeeee;
  color: #333;
}

.btn-small {
  font-size: 14px;
  line-height: 14px;
  padding: 8px 12px;
}

input.help {
  margin-right: 0;
  background: #ffffff;
  border: 1px solid #0081AB;
  border-radius: 8px 0px 0px 8px;
  padding: 16px;
  width: 175px;
  height: 48px;
  cursor: pointer;
}

input.help:hover {
  border: 1px solid #333333;
  box-shadow: none;
}

#appointmentSidepanel:focus {
  outline: 2px solid #333333;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

#appointmentSidepanel img:hover {
  background-color: #333333 !important;
}

input.help::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #005071;
  opacity: 1;
  /* Firefox */
  font-size: 14px;
}

input.help:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #005071;
}

input.help::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #005071;
}

input.help:hover::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333333;
}

input.help:hover::-moz-placeholder {
  /* Firefox 19+ */
  color: #333333;
}

input.help:hover:-ms-input-placeholder {
  /* IE 10+ */
  color: #333333;
}

input.help:hover:-moz-placeholder {
  /* Firefox 18- */
  color: #333333;
}

.bookappointimg {
  margin-left: -5px;
  background: #0081AB;
  background-repeat: no-repeat;
  padding: 13px 10px;
  height: 48px;
}

.mha-topic-bkgimages {
  width: 350px;
  height: 397px;
  background: #acacac;
}

.mha-topic-bkgimages:first-child {
  margin-right: 14px;
  margin-bottom: 14px;
}

.mha-topic-videogallery {
  /* width: 727px; */
  height: 397px;
  background: #acacac;
}

/*Immunization for babies :: Second page*/
ul.support-ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
}

.support-ul li {
  float: left;
  padding: 0 16px 24px 0;
  font-size: 16px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
}

.form-row>.col {
  padding-left: 5px;
  padding-right: 5px;
}

input#inputChildName {
  height: 38px;
  border: 1px solid #dee2e6;
}

/* select#inputDOBday,
select#inputDOBMon {
  max-width: 73px;
} */

select.form-control {
  background-position: right;
  background: #fff url("/Help/siteAssets/images/chevron-down.svg") no-repeat 90%;
}

.checkbox.alt-checkbox {
  margin: 24px 0 36px 0;
}

.checkbox.alt-checkbox label {
  min-height: 23px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #575757;
}

input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
  margin-right: 5px;
  accent-color: #008996;
  margin-bottom: 3px;
}

.disclaimer img {
  margin-left: 5px;
}

.disclaimer {
  text-decoration: underline;
  cursor: pointer;
}

.disclaimerDetails {
  display: none;
}

.small-size {
  font-size: 0.875em !important;
}

.small-size p {
  font-size: 1em !important;
}

.small-size a,
.small-size li {
  font-size: 1em !important;
}

button#Generate {
  background: #008996;
  border-radius: 4px;
  font-size: 18px;
  font-weight: normal;
  border: none;
  height: 42px;
}

button#Generate span {
  /* View schedule */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  /* identical to box height, or 100% */
  color: #ffffff;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
  padding: 12px 16px;
}

button#Generate[disabled] {
  background-color: #ccc;
}

span.childName,
span.child-s,
span.childNameFutureImm,
span.child-noname-s {
  font-weight: bold;
}

.brownColor {
  color: #b56f40;
}

.tableDiv {
  overflow-x: auto;
  /* border-top: 1px solid #333333; 
  border-bottom: 1px solid #dcdcdc;*/
  border-right: none;
  border-left: none;
  padding: 27px 12px;
}

.tableDiv .table-sm {
  width: 100%;
}

.recievedVaccine {
  padding: 0;
}

.futureVaccine {
  margin-top: 27px;
  padding: 0;
}

.futureVaccine .text-end {
  padding-right: 0;
}

.immunizationSchedule .panel-group {
  padding: 27px 0;
}

.tableDiv tbody tr:last-child {
  border-bottom: 1px solid #dcdcdc;
}

a.printPDF {
  align-items: center;
  background-color: #008996;
  border-radius: 500px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  /*line-height: 1.5em;
     max-width: 350px;
  min-width: 10em; */
  padding: 8px 12px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  width: auto;
  z-index: 1;
  text-decoration: none;
}

a.printPDF img {
  height: 1em;
  margin-bottom: 0.3em;
  margin-right: 8px;
}

.tg {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.tg td {
  border: none;
  overflow: hidden;
  padding: 10px 16px 10px 16px;
  word-break: normal;
}

tr {
  border: none;
  border-top: 1px solid #dcdcdc;
}

thead tr {
  border-top: 0;
}

th {
  border: none;
}

.tg th {
  border: none;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  /* identical to box height, or 100% */
  color: #000000;
  overflow: hidden;
  padding: 10px 16px;
  word-break: normal;
}

.tg .tg-ul38 {
  position: -webkit-sticky;
  position: sticky;
  text-align: left;
  top: -1px;
  vertical-align: top;
  will-change: transform;
}

.tg .tg-j1i3 {
  border-color: inherit;
  position: -webkit-sticky;
  position: sticky;
  text-align: left;
  top: -1px;
  vertical-align: top;
  will-change: transform;
}

.tg .tg-0pky {
  border-color: inherit;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.tg .tg-0lax {
  text-align: left;
  vertical-align: top;
}

.tg ol,
.tg ul {
  padding-left: 1rem;
}

.tableDiv.recievedVaccine tbody tr td:first-child,
.tableDiv.futureVaccine tbody tr td:first-child,
.tableDiv.recievedVaccine thead tr th:first-child,
.tableDiv.futureVaccine thead tr th:first-child {
  padding-left: 0;
}

.startHidden {
  display: none;
}

.dateForamt {
  display: flex;
  height: 24px;
}

.dateForamt input {
  margin-right: 4px;
}

.dateForamt label {
  border: 0;
  opacity: 0.6;
  background-color: #f1f1f1;
  margin-left: -8px;
}

.date-details {
  margin-top: -30px;
}

.DOB {
  margin-bottom: 0 !important;
}

.generateSchedule {
  background-color: #f1f1f1;
  border-radius: 20px;
}

/* form {
 padding: 12px;
} */
.generateSchedule button {
  border-radius: 8px !important;
}

.hilite {
  display: block;
  background-color: #e5eff3;
  border: 0 solid #888;
  border-top: 4px solid #0081AB;
  padding: 12px;
  border-radius: 2px;
}

.important-info-title {
  position: relative;
  display: inline-block;
  padding-left: 56px;
  text-transform: initial;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.5;
  margin: 30px 27px 30px 0;
}

.important-info-title:before {
  display: inline-block;
  content: "";
  background-image: url("/Help/siteAssets/images/info.svg");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 1000;
  left: 20px;
}

.scheduleSection ul {
  padding-left: 32px;
}

/* .scheduleSection .panel table th:nth-child(1) {
  width: 40%;
}

.scheduleSection .panel table th:nth-child(2) {
  width: 60%;
} */

/*new css for beforeDuringAfterImm*/
.tab-container {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.nav-tabs {
  border-bottom: 4px solid #ccc;
  border-top: 1px solid #ccc;
}

.nav-tabs .nav-item .nav-link {
  color: #0081AB;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: bold;
  border-radius: unset;
  text-decoration: none;
}

.nav-tabs .nav-link:focus {
  outline: 2px solid #333333;
  background: #fff;
  color: #333333;
}

.nav-tabs .nav-link:hover {
  border: 1px solid #005071;
  background: #f1f1f1;
  color: #333333;
  border-bottom: 4px solid #333333;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: 1px solid white;
  color: #333333;
  background-color: #dcdcdc;
  border-bottom: 4px solid #ffc844;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0px !important;
}

.inline-icon {
  vertical-align: bottom;
  margin-right: 4px;
}

.expandallplusicon {
  width: 12px;
  height: 14px;
  margin-bottom: 5px;
}

.panel {
  margin-bottom: 5px;
  padding-top: 10px;
  border-top: 1px solid #cccccc;
}

.panel:last-of-type {
  padding-bottom: 5px;
  border-bottom: 1px solid #cccccc;
}

.accordion-option {
  width: 100%;
  clear: both;
  margin-bottom: -20px;
  /* padding: 16px 0; */
  display: flex;
  justify-content: right;
  margin-left: -15px;
}

.accordion-option .toggle-accordion {
  float: right;
  font-size: 14px;
  color: #0081AB;
  text-decoration: none;
  text-transform: uppercase;
}

.toggle-accordion.active:before {
  content: "EXPAND ALL";
  font-size: 15px;
}

.toggle-accordion:before {
  content: "COLLAPSE ALL";
  font-size: 15px;
}

.panel-title a {
  display: block;
  position: relative;
  padding: 10px 15px;
  font-size: 18px;
  color: #0081AB;
  text-decoration: none;
}

.panel-title a:hover {
  text-decoration: none;
}

.panel-heading {
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  margin-bottom: 4px;
}

.panel-heading:hover {
  color: #333333;
}

.panel-heading:focus {
  outline: 2px solid #333;
  border-radius: 0;
}

.panel-heading.active {
  color: #333333;
  font-weight: 500;
}

.panel-title .expand-icon-wrap {
  font-family: "Material Icons";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.panel-group .expand-icon-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.panel-group {
  padding: 27px 0 0 0;
}

.panel-title .expand-icon {
  padding: 0 12px;
  font-size: 20px;
  vertical-align: middle;
}

.panel-title .expand-icon img {
  background-size: 18px 18px;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  font-weight: 900;
  position: absolute;
  z-index: 1000;
  left: 1px;
  font-size: 32px;
  top: 14px;
}

.panel-body {
  padding: 15px 40px;
}

.panel-group .drop-accordion .panel-body {
  position: relative;
}

.tab-container-row {
  margin-top: 54px;
}

.collapse-text {
  display: flex;
  margin: 0 25px;
}

.left-icon {
  left: 0;
  margin: 0 12px;
}

.ms-WPBorder {
  border: none;
}

nobr span,
.ms-webpart-titleText span {
  display: none;
}

/*arrow tab css*/
.arrow-tabs {
  min-width: 360px;
  margin: auto;
}

.arrow-tabs>ul {
  padding-left: 0;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
  z-index: 2000;
  border-bottom: 1px solid white;
}

.sticky-line-top {
  border-top: 2px #cccccc solid;
}

.sticky-line-bottom {
  padding: 1px;
  -webkit-box-shadow: 0 4px 4px #cccccc;
  -moz-box-shadow: 0 4px 4px #cccccc;
  box-shadow: 0 4px 4px #cccccc;
  margin-top: -3px;
}

.sticky-line-bottom-full-bkg {
  border-top: 120px solid #ffffff;
  margin-top: -118px;
}

.sticky-line-bottom-full-bkg-no-icons {
  border-top: 74px solid #ffffff;
  margin-top: -74px;
}

.arrow-tabs>ul>li {
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-right: -4px;
  color: white;
  cursor: pointer;
}

.arrow-tabs>ul>li:before,
.arrow-tabs>ul>li:after {
  opacity: 0;
  transition: 0.3s ease;
}

.arrow-tabs>ul>li.ui-tabs-active:before,
.arrow-tabs>ul>li.ui-tabs-active:after {
  opacity: 1;
}

.arrow-tabs>ul>li:hover:before,
.arrow-tabs>ul>li:hover:after,
.arrow-tabs>ul>li:focus:before,
.arrow-tabs>ul>li:focus:after {
  opacity: 1;
}

.arrow-tabs>ul>li.ui-tabs-active:before,
.arrow-tabs>ul>li.ui-tabs-active:hover:before,
.arrow-tabs>ul>li.ui-tabs-active:focus:before {
  content: "";
  position: absolute;
  z-index: -1;
  border-top: 2px solid #eba900;
  border-bottom: 4px solid #eba900;
  border-right: 0;
  border-left: 0;
  top: 1px;
  bottom: 1px;
  left: 0;
  right: 9px;
  margin: -3px -9px -5px 0px;
}

.arrow-tabs>ul>li.ui-tabs-active:after,
.arrow-tabs>ul>li.ui-tabs-active:hover:after,
.arrow-tabs>ul>li.ui-tabs-active:focus:after {
  content: "";
  background: transparent;
  position: absolute;
  width: 18px;
  height: 12px;
  left: 50%;
  bottom: -4px;
  margin-left: -12px;
  /* transform: rotate(45deg); */
  /* box-shadow: 3px 3px 3px rgba(0, 153, 148, 0.5), 1px 1px 1px rgba(0, 0, 0, 0.3); */
  /* border-top: 3px solid #eba900; */
  /* border-left: 3px solid #eba900; */
  background-image: url("/Help/SiteAssets/images/yellow-tab-arrow.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-origin: border-box;
}

.arrow-tabs>ul>li:hover:before,
.arrow-tabs>ul>li:focus:before {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.arrow-tabs>ul>li:focus {
  outline: 2px solid #333333;
}

.arrow-tabs>ul>li a {
  color: #0081AB;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  font-size: 20px;
  display: block;
  padding: 24px;
}

.tabwithimage .arrow-tabs>ul>li a {
  padding: 20px 32px;
}

.arrow-tabs>ul>li a:focus {
  outline: none;
  text-decoration: none;
  padding: 24px;
}

.tabwithimage .arrow-tabs>ul>li a:focus {
  padding: 20px 32px;
}

/* .arrow-tabs > ul > li a span {
  position: relative;
  font-weight: bold;
  font-size: 20px;
} */

/* .arrow-tabs > ul > li:hover { */
.ui-state-hover {
  /*:not(.ui-tabs-active)*/
  background: #f1f1f1;
  border-top: 2px solid #333333 !important;
  border-bottom: 4px solid #333333 !important;
  margin-top: -2px;
  margin-bottom: -4px;
}

.arrow-tabs>ul>li a span:hover {
  color: #333333;
}

.arrow-tabs>ul>li.ui-tabs-active a {
  color: #333333;
}

.ui-widget-content {
  border: none !important;
}

/*arrowt tab with images*/
.tabwithimage .arrow-tabs>ul>li a span {
  display: block;
  font-size: 18px;
}

/* .tabwithimage .arrow-tabs > ul > li {
  padding: 20px 32px;
} */

/*footer */

.link-column div {
  color: white;
  margin: 0px;
  margin: 12px;
}

.white-text {
  color: white;
}

.white-text>a {
  color: white;
  text-decoration: none;
}

.mha-topic-bkgdarkgray>a {
  color: #333333;
  background-color: white;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  text-align: center;
  align-content: center;
  align-items: center;
  margin-left: 30px;
}

.error-message {
  color: #c73a32;
}

.inputError {
  border: 1px solid #e11c1c !important;
}

div.item {
  display: inline-block;
}

.form-lable {
  margin-bottom: 8px;
  font-weight: 700;
}

.padding-left-24 {
  padding-left: 24px;
}

.padding-right-24 {
  padding-right: 24px;
}

div#dateErrorMessage,
div#disclaimerErrorMessage {
  padding: 12px 0;
  margin-bottom: 0;
  font-size: 0.875em;
  height: 36px;
}

span.child-s {
  margin-left: -8px;
}

span.child-noname-s {
  margin-left: -6px;
}

/* 
.immunizationSchedule h2 span {
  font-weight: 700;
} */

.table> :not(caption)>*>* {
  border-bottom-width: 0 !important;
}

thead,
tbody,
tfoot,
tr,
td,
th,
tbody a {
  font-size: 16px;
}

.note {
  font-size: 14px !important;
  font-weight: 700;
  margin-top: 16px !important;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.immunizationSchedule span.important-info-title {
  margin: 30px 50px;
}

/* .tg-padding {
  padding-right: 40px !important;
} */

.date-row {
  margin-bottom: 36px;
}

/*explore menu*/
.mha-explore-dropdown {
  position: absolute;
  z-index: 99999;
  width: 100%;
}

body.noscroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .show-on-desktop {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .hide-on-desktop {
    display: none;
  }
}

.exploreleft-10 {
  margin-left: -10px;
}

.exploreright-10 {
  margin-right: -10px;
}

.exploreright-15 {
  margin-right: -15px;
}

.exploretop-36 {
  margin-top: -36px;
}

.mha-explore-overlay {
  height: 100%;
  width: 100%;
  background-color: #333333;
  position: absolute;
  opacity: 50%;
  /* z-index: 9999;
  left: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; */
}

.mha-explore-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
  cursor: pointer;
}

.mha-explore-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
  cursor: pointer;
  z-index: 100001;
}

.mha-explore-heading {
  font-size: 1.5rem;
  text-align: left;
}

.mha-explore-mobile-subheading {
  font-size: 1.5rem;
}

.mha-explore-no-bottom-padding {
  padding-bottom: 0 !important;
}

.mha-explore-left-col div {
  padding: 15px;
  margin: 15px;
}

.mha-explore-right {
  float: right;
}

.mha-explore-bottom-black-border {
  border-bottom: 1px solid black;
}

.mha-subheader {
  font-weight: 650;
}

.mha-main-menu-link {
  color: #0081AB;
}

.mha-explore-right-col {
  background-color: #0081AB;
}

.mha-explore-right-col div {
  padding: 15px 0;
  margin: 0 15px;
}

.mha-explore-right-col h2 {
  text-align: center;
}

.mha-explore-right-col img,
.mha-mobile-link-row img {
  padding-right: 15px;
}

.gray-border-left {
  border-left: #cccccc 1px solid;
  padding-left: 10px;
}

.blue-border-top {
  border-top: #337b9c 1px solid;
}

.blue-background {
  background-color: #0081AB;
}

.light-gray-background {
  background-color: #f1f1f1;
}

.text-dark,
.text-dark a {
  color: #333333;
}

.text-white,
.text-white a {
  color: #ffffff;
}

.text-blue,
.text-blue a {
  color: #0081AB;
}

.mha-explore-white-left-border {
  border-left: 1px solid white;
}

.mha-explore-contact-link {
  display: inline-block;
  padding-right: 10px;
}

.mha-explore-menu,
.mha-explore-mobile-menu a {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.mha-explore-mobile-menu {
  width: 95%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100002;
}

#mobile-search-input {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid black !important;
}

.mha-mobile-search {
  position: absolute;
  top: 88px;
  right: 12px;
}

.mha-explore-menu {
  padding-top: 0px !important;
}

.mha-explore-menu a,
.mha-explore-mobile-menu a {
  text-decoration: none;
}

.mha-explore-menu-img {
  padding-right: 10px;
}

.mha-explore-submenu-item {
  padding: 10px 20px;
  padding-left: 44px;
}

.top-padding-30 {
  padding-top: 30px;
}

.mha-explore-811-row {
  max-height: 77px;
}

.mha-explore-811-text {
  vertical-align: 5px;
}

.mha-explore-small-text {
  padding-left: 44px;
  font-size: small;
  top: -15px;
  position: relative;
}

.mha-heading-2 {
  display: flex;
}

.mha-explore-divider {
  padding: 5px 0 20px 0;
  margin: 10px 10px 10px 0;
}

.mha-explore-mobile-subheading {
  font-size: 1.5rem;
}

.mha-mobile-header {
  font-size: 1.5rem;
  font-weight: 650;
  padding: 20px;
  color: black;
}

.mha-mobile-contact-links {
  padding: 20px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.mha-mobile-subheading-link {
  padding: 20px 30px;
  font-size: 1.5rem;
}

.mha-explore-bottom-gray-border {
  border-bottom: 1px solid #cccccc;
}

.mha-mobile-link-row {
  padding: 20px;
}

.mha-explore-right {
  float: right;
}

.mha-explore-bottom-black-border {
  border-bottom: 1px solid black;
}

.mha-subheader {
  font-weight: 650;
  color: black;
  font-size: 1.5rem;
}

.mha-explore-link:hover,
.mha-explore-mobile-close:hover,
.mha-search-mobile-close:hover {
  cursor: pointer;
}

.hover-pointer:hover {
  cursor: pointer;
}

.mha-explore-subnav-img {
  max-height: 1.5rem;
}

.mha-explore-back-img {
  max-height: 1rem;
}

.mha-heading-2 {
  display: flex;
}

.mha-explore-divider {
  padding: 5px 0 20px 0;
  margin: 10px 10px 10px 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* CSS for the logo */
.logo {
  background: url("/Help/SiteAssets/images/PCA_Logo.png") no-repeat;
  width: 291px;
  height: 61px;
  margin: 5px 24px;
  cursor: pointer;
}

/* CSS for the explore and search */
.explore-search {
  display: flex;
  align-items: center;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.content-wrapper p {
  flex-basis: 70%;
}

.content-wrapper img {
  flex-basis: 30%;
  width: 79px;
  height: 150px;
}

/*All Carousel related css*/

.mha-topic-carouselcard {
  border: 1px solid #cccccc;
  border-radius: 8px;
  box-shadow: 2px 2px 4px #cdcdcd;
  padding-right: 24px;
  padding: 40px 12px 40px 12px;
  margin-bottom: 24px;
  color: #0081AB;
  font-weight: bold;
  text-align: center;
  height: 135px;
  line-height: 1.5 !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-left: 3px;
  position: unset;
}

.carousel-indicators {
  display: none !important;
}

.carousel-control-next {
  right: -124px !important;
  opacity: 1 !important;
}

.carousel-control-prev {
  left: -124px !important;
  opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 75px;
  width: 40px;
}

.carousel-control-next span {
  background-image: url("/Help/siteassets/images/NextEnable.png");
}

.carousel-control-prev span {
  background-image: url("/Help/siteassets/images/PrevEnable.png");
}

.carousel-control-prev.disabled span {
  background-image: url("/Help/siteassets/images/PrevDisable.png");
}

.carousel-control-next.disabled span {
  background-image: url("/Help/siteassets/images/NextDisable.png");
}

.carousel-control-next-icon:hover {
  background-image: url("/Help/siteassets/images/arrow-right.svg");
}

.carousel-control-prev-icon:hover {
  background-image: url("/Help/siteassets/images/arrow-left.svg");
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  color: #fff !important;
  background-color: transparent !important;
  border: none;
}

.carousel-control-prev-icon:focus:not(:hover),
.carousel-control-next-icon:focus:not(:hover) {
  outline: 1px solid #333333;
}

.carousel-control-prev-icon:focus:not(:focus-visible),
.carousel-control-next-icon:focus:not(:focus-visible) {
  outline: none;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  border: none;
}

.carousel-indicators>li {
  border-radius: 50%;
  width: 10px !important;
  height: 10px !important;
}

.CarouselPrevNexthidden a.carousel-control {
  display: none;
}

.carousel .carousel-item.active {
  transition: transform 0s ease-out;
}

.mha-topic-Relatedinfocard {
  border-top: 2px solid #0081AB;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 2px 4px #cdcdcd;
  padding: 24px;
  margin-bottom: 2px;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  display: block;
  position: unset;
}

.mha-topic-Relatedinfocardmoreitems {
  border-top: 2px solid #0081AB;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 2px 4px #cdcdcd;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  display: block;
  position: unset;
  margin-right: 24px;
  margin-left: 5px;
}

.mha-topic-Relatedinfocard:hover,
.mha-topic-Relatedinfocardmoreitems:hover {
  border-top: 2px solid #333333;
  /* border: 1px solid #333333; */
  background: #f1f1f1;
  box-shadow: none;
  border-left: 1px solid #333333;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.mha-topic-Relatedinfocard:focus,
.mha-topic-Relatedinfocardmoreitems:focus {
  outline: 2px solid #333333;
  box-shadow: none;
  border-radius: 0 !important;
}

.mha-topic-Relatedinfocard:focus:not(:focus-visible),
.mha-topic-Relatedinfocardmoreitems:focus:not(:focus-visible) {
  outline: none;
}

.carousel-inner .carousel-item.active {
  display: flex;
}

.mha-topic-carouselcard-empty {
  padding-right: 24px;
  padding: 40px 12px 40px 12px;
  margin-bottom: 24px;

  font-weight: bold;
  text-align: center;
  height: 135px;
  line-height: 1.5 !important;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-left: 3px;
}

.carousel-item>div {
  display: none;
}

/*
.carousel-item > div{
	margin-right: 24px;
}
.carousel-item > div:last-child{
	margin-right: 0;
}
*/
.carousel-inner .row {
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  /*margin-left: calc(-0.5 * var(--bs-gutter-x));*/
}

.carousel-inner .row>* {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/*Respiratory Illness Chart :: Start*/

.Stickytable {
  border-radius: 0.2rem;
  /* padding-bottom: 1rem;   */
  margin-bottom: 0;
  width: 100%;
  border-spacing: 0;
}

.Stickytable th:first-child {
  position: sticky;
  left: 0;
}

.Stickytable td:first-child {
  position: sticky;
  left: 0;
  color: #373737;
}

.Stickytable td,
.Stickytable th {
  padding: 10px;
  background: white;
  box-sizing: border-box;
  text-align: left;
}

.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
}

.table-responsive::-webkit-scrollbar:vertical {
  width: 8px;
}

.table-responsive::-webkit-scrollbar:horizontal {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 2px solid #ffffff;
}

.table-responsive::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

/*Respiratory Illness Chart :: End*/
.tableshadow {
  border-bottom: 1px solid #dcdcdc;
}

/* Discontinued vaccine */
.discont-bar {
  margin-top: 18px;
  max-width: 400px;
  margin-left: 0px;
  background-color: #c63a31;
  min-height: 30px;
  border: 1px solid #c63a31;
  border-radius: 3px;
  padding: 2px 0px 5px 0px;
}

.discont-ul {
  /* //  padding: 0px 0px 0px 34px; */
  list-style-image: url("/Help/SiteAssets/images/discontinued.png");
  /* //  margin: 5px -5px -1px -5px; */
  margin: 0px -5px -9px 14px;
}

.discont-li {
  top: -2px;
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 0px;
}

.line-left {
  border-left: 1px dashed #cccccc;
  padding-left: 35px;
}

/**/
.bookHere {
  cursor: pointer;
  text-decoration: underline;
  font-size: 1em !important;
  color: #0081AB;
}

#bookHere-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

#bookHereoverlay-overlay-content {
  background-color: white;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  width: 300px;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: white;
}

.bookHereTitle {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.bookHereOR {
  margin-top: 12px !important;
  margin-bottom: 24px !important;
}

#bookHere-overlay .btn__default {
  padding: 12px 80px;
}

#bookHere-overlay .btn__default.secondary {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .line-left {
    border-left: none;
    padding-left: 15px;
    padding-top: 30px;
  }
}

.prevent-circle-text {
  font-size: 16px;
  font-weight: 400;
  color: rgb(87, 87, 87);
}

@media print {

  header,
  .mha-topic-headerheight,
  .ms-webpart-chrome-title {
    display: none !important;
  }

  div.ms-webpart-cell-vertical-inline-table {
    display: table !important;
  }

  .panel-collapse {
    display: block !important;
  }

  .panel-heading {
    background-color: #f1f1f1;
    border: 1px solid #333333;
    color: #333333;
    border-radius: 8px !important;
  }

  .expand-icon img {
    content: url("/Help/siteAssets/images/minus.svg") !important;
  }

  body,
  h1,
  h2,
  h3,
  ol,
  ul,
  div,
  span,
  p {
    width: auto !important;
    height: auto !important;
    float: none !important;
    position: static !important;
    overflow: visible !important;
  }
}

.expand-icon img {
  content: url("/Help/siteAssets/images/minus.svg");
}

.collapsed .expand-icon img {
  content: url("/Help/siteAssets/images/plus.svg");
}

/* Photo captions */
.caption {
  font-size: 12px;
}

html,
body {
  height: auto !important;
  min-height: 100% !important;
  overflow: auto !important;
  overflow-x: hidden !important;
}

/* ===========================
   MHAA Panel Tab
   =========================== */
.mhaa-tools-section {
  background-color: #fff;
  padding: var(--section-padding) 0;
}

.mhaa-tools-section h2 {
  margin-bottom: 16px;
}

/* Display utilities */
.mhaa-desktop-only {
  display: block;
}

.mhaa-mobile-only {
  display: none;
}

/* Tab Navigation (Desktop) */
.mhaa-tools-nav {
  display: flex;
  flex-direction: column;
}

.mhaa-tools-accordion-item {
  position: relative;
}

.mhaa-tools-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: none;
  background: none;
  text-align: left;
  color: #0081ab;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  ;
  border-left: 4px solid transparent;
  width: 100%;
  border-radius: 0 8px 8px 0;
}

.mhaa-tab-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.mhaa-tools-tab:hover {
  background-color: #ffffff;
  color: #333333;
  border-left: 4px solid transparent;
}

.mhaa-tools-tab.active {
  color: #333333;
  border-left-color: #333333;
  background-color: #f0f5f8;
}

.mhaa-tab-arrow {
  background-image: url("/help/SiteAssets/images/nav-right-arrow.svg");
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0;
}

.mhaa-tools-tab.active .mhaa-tab-arrow {
  opacity: 1;
}

.mhaa-tools-section.step-tabs .mhaa-tab-arrow {
  opacity: 1;
}

.mhaa-tab-content .panel-tab-tagline {
  display: none;
}

.mhaa-tools-tab.active .mhaa-tab-content .panel-tab-tagline {
  display: flex;
  font-size: 12px;
  line-height: 150%;
  color: #575757;
  text-transform: uppercase;
}

.mhaa-tab-content .mhaa-tab-arrow.step-1 {
  background-image: url("/help/SiteAssets/images/tab-step-1-regular.svg");
}

.mhaa-tools-tab.active .mhaa-tab-content .mhaa-tab-arrow.step-1 {
  background-image: url("/help/SiteAssets/images/tab-step-1-active.svg");
}

.mhaa-tab-content .mhaa-tab-arrow.step-2 {
  background-image: url("/help/SiteAssets/images/tab-step-2-regular.svg");
}

.mhaa-tools-tab.active .mhaa-tab-content .mhaa-tab-arrow.step-2 {
  background-image: url("/help/SiteAssets/images/tab-step-2-active.svg");
}

.mhaa-accordion-icon {
  color: #0081ab;
  font-size: 18px;
  transition: all 0.15s ease-in-out;
  flex-shrink: 0;
}

/* Accordion Content (Mobile Only) */
.mhaa-accordion-content {
  display: none;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 20px 20px 20px;
  border-bottom: 1px solid #cccccc;
}

.mhaa-accordion-content.active {
  display: block;
}

/* Tab Content (Desktop Only) */
.mhaa-tools-content {
  position: relative;
}

.mhaa-tools-panel {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  display: none;
  border: 4px solid #F0F5F8;
}

.mhaa-tools-panel.active {
  display: block;
}

.mhaa-tools-panel h3,
.mhaa-accordion-content h3 {
  font-family: Roboto, Arial, sans-serif;
  color: #575757;
  margin-bottom: 16px;
  font-weight: 500 !important;
  font-size: 24px;
  line-height: 150%;
}

.mhaa-tools-panel p,
.mhaa-accordion-content p {
  font-size: 18px;
  margin-bottom: 16px;
}

.mhaa-accordion .mhaa-accordion-content p {
  font-size: 18px;
  margin-bottom: 16px;
}

.mhaa-tools-panel a {
  font-size: 16px;
}

.mhaa-tools-panel .btn.btn__default.primary svg {
  vertical-align: bottom;
}

/* Tools List */
.mhaa-tools-section .mhaa-tools-list,
.mhaa-accordion-list {
  list-style: disc;
  padding-left: 20px;
  margin: 16px 0;
}

.mhaa-tools-section .mhaa-tools-list li,
.mhaa-accordion-list li {
  margin-bottom: 16px;
  color: #575757;
}

.mhaa-tools-section .mhaa-tools-list li:last-child,
.mhaa-accordion-list li:last-child {
  margin-bottom: 0;
}

.mhaa-tools-section .mhaa-tools-list li::marker,
.mhaa-accordion li::marker {
  color: #575757;
}

.mhaa-tools-link {
  font-size: 16px;
  color: #0081ab;
  text-decoration: underline;
  font-weight: 400;
  transition: color 0.15s ease-in-out;
  ;
}

.mhaa-tools-link:hover {
  color: #36424a;
  text-decoration: underline;
}

.mhaa-tools-list li p,
.mhaa-accordion-list li p {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 16px;
  color: #575757;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {

  /* Switch display utilities */
  .mhaa-desktop-only {
    display: none !important;
  }

  .mhaa-mobile-only {
    display: block;
  }

  /* Full width on mobile */
  .mhaa-tools-nav-col {
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* Accordion styling */
  .mhaa-tools-tab {
    border-left: none;
    border-bottom: 1px solid #cccccc;
    padding: 20px;
    background-color: #fff;
    justify-content: flex-start;
    border-radius: 0;
  }

  .mhaa-tools-tab:first-child {
    border-top: 1px solid #cccccc;
  }

  .mhaa-tools-tab:hover {
    background-color: white;
    border-left: none;
    border-bottom-color: #cccccc;
  }

  .mhaa-tools-tab.active {
    background-color: #f0f5f8;
    border-left: none;
    border-bottom-color: #cccccc;
  }

  .mhaa-accordion-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 575.98px) {
  .mhaa-tools-tab {
    padding: 16px;
  }

  .mhaa-accordion-content {
    padding: 16px 16px 16px 16px;
  }
}

/* ===========================
   IN-PAGE TABS COMPONENT
   =========================== */
/* Main tabs container */
.mhaa-tabs-section {
  background-color: #fff;
  padding: 0;
}

.mhaa-tabs-container {
  min-width: 360px;
  margin: auto;
}

/* Main wrapper that becomes sticky */
.mhaa-tabs-wrapper {
  position: relative;
}

/* Sticky behavior - applied to main wrapper */
.mhaa-tabs-wrapper.mhaa-tabs-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2000;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* Sticky full-width borders */
.mhaa-tabs-wrapper.mhaa-tabs-sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  height: 2px;
  background: #dfe6d2;
  z-index: 1;
}

.mhaa-tabs-wrapper.mhaa-tabs-sticky::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  height: 4px;
  background: #dfe6d2;
  z-index: 1;
}

/* Top border div */
.mhaa-tabs-border-top {
  height: 2px;
  background: #dfe6d2;
  z-index: 1;
  position: relative;
}

/* Bottom border div */
.mhaa-tabs-border-bottom {
  height: 4px;
  background: #dfe6d2;
  z-index: 1;
  position: relative;
  margin-top: -4px;
}

/* Scrollable nav wrapper */
.mhaa-tabs-nav-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: -2px;
}

.mhaa-tabs-nav-wrapper::-webkit-scrollbar {
  display: none;
}

/* Tab nav */
.mhaa-tabs-nav {
  padding-left: 0!important;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  position: relative;
  margin-top: 0;
  /* Overlap top border */
  margin-bottom: 0;
  /* Overlap bottom border */
  padding-top: 0;
  padding-bottom: 0;
}

/* Tab items */
.mhaa-tab-item {
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 2;
  /* Higher than border divs */
  display: inline-block;
  color: #fff;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

/* Tab item pseudo elements for arrow effect */
.mhaa-tab-item:before,
.mhaa-tab-item:after {
  opacity: 0;
  transition: 0.3s ease;
}

.mhaa-tab-item.mhaa-tab-active:before,
.mhaa-tab-item.mhaa-tab-active:after {
  opacity: 1;
}

.mhaa-tab-item:hover:before,
.mhaa-tab-item:hover:after,
.mhaa-tab-item:focus:before,
.mhaa-tab-item:focus:after {
  opacity: 1;
}

/* Active tab background - overlaps border divs */
.mhaa-tab-item.mhaa-tab-active:before,
.mhaa-tab-item.mhaa-tab-active:hover:before,
.mhaa-tab-item.mhaa-tab-active:focus:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* Highest z-index to cover border divs */
  border-top: 2px solid #78bf26;
  border-bottom: 4px solid #78bf26;
  border-right: 0;
  border-left: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}

/* Active tab arrow */
.mhaa-tab-item.mhaa-tab-active:after,
.mhaa-tab-item.mhaa-tab-active:hover:after,
.mhaa-tab-item.mhaa-tab-active:focus:after {
  content: "";
  background: transparent;
  position: absolute;
  width: 18px;
  height: 12px;
  left: 50%;
  bottom: 0px;
  margin-left: -10px;
  background-image: url("/help/SiteAssets/images/green-tab-arrow.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-origin: border-box;
  z-index: 4;
}

/* Hover effects */
.mhaa-tab-item:hover:before,
.mhaa-tab-item:focus:before {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.mhaa-tab-item:focus {
  outline: 2px solid #333333;
}

/* Tab anchors */
.mhaa-tab-anchor {
  color: #0081ab;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  font-size: 20px;
  display: block;
  padding: 24px;
  transition: color 0.15s ease-in-out;
  ;
}

.mhaa-tab-anchor:focus {
  outline: none;
  text-decoration: none;
  padding: 24px;
}

/* Hover state for non-active tabs */
.mhaa-tab-item:hover:not(.mhaa-tab-active) {
  background: #f1f1f1;
  border-top: 2px solid #36424a !important;
  border-bottom: 4px solid #36424a !important;
  z-index: 3;
  /* Above border divs when hovering */
}

.mhaa-tab-item:hover:not(.mhaa-tab-active) .mhaa-tab-anchor {
  color: #36424a;
  margin-bottom: -4px;
  margin-top: -2px;
}

/* Active tab anchor */
.mhaa-tab-item.mhaa-tab-active .mhaa-tab-anchor {
  color: #333333;
}

/* Tab content */
.mhaa-tabs-content {
  border: none !important;
}

.mhaa-tab-panel {
  display: none;
  padding: 0;
}

.mhaa-tab-panel-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 54px;
  padding-bottom: 54px;
}

.mhaa-tab-panel.mhaa-tab-panel-active {
  display: block;
}

.mhaa-tab-panel section:first-child {
  padding-top: 0;
}

a.mhaa-tab-overview-link {
  font-weight: 700;
  text-decoration: none;
}

/* Disable hover on touch devices */
@media (hover: none) and (pointer: coarse) {
  .mhaa-tab-item:hover:not(.mhaa-tab-active) {
    background: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    z-index: 2 !important;
  }

  .mhaa-tab-item:hover:not(.mhaa-tab-active) .mhaa-tab-anchor {
    color: #0081ab !important;
  }
}

/* Mobile responsiveness */
@media (max-width: 767.98px) {
  .mhaa-tab-anchor {
    padding: 24px;
  }

  .mhaa-tabs-container {
    min-width: auto;
  }
}

@media (max-width: 575.98px) {
  .mhaa-tab-anchor {
    padding: 24px;
    font-size: 18px;
  }
}

/* ===========================
   INFOBOX
   =========================== */

.mhaa-infobox-important {
  padding: 24px;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.mhaa-infobox-important__label {
  display: flex;
  align-items: self-start;
  margin-bottom: 12px;
}

.mhaa-infobox-important__label-icon {
  flex-shrink: 0;
  width: 24px;
  height: 32px;
  display: block;
}

.mhaa-infobox-important__label-text {
  font-size: 18px;
  line-height: 150%;
  font-weight: bold;
  letter-spacing: 0;
  color: #575757;
}

.mhaa-infobox-important__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mhaa-infobox-important__body p,
.mhaa-infobox-important__body li {
  font-size: 16px;
}

.mhaa-infobox-important__body p:last-child,
.mhaa-infobox-important__body ul:last-child {
  margin-bottom: 0;
}

/* ===========================
   ACCOUNT OPTIONS CARD
   =========================== */

.account-options-card {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D1E2E9;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  gap: 24px;
  text-decoration: none !important;
  flex-direction: row;
}

.account-options-card:hover {
  border: 1px solid #333333;
}

.account-options-card-icon img {
  width: 128px;
  height: 128px;
}

.account-options-card-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.account-options-card .account-options-card-content .account-options-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #0081AB;
  margin-bottom: 20px;
}

.account-options-card:hover .account-options-card-content .account-options-card-title {
  color: #333333;
}

.account-options-card .account-options-card-content p {
  font-size: 16px;
  line-height: 135%;
}

.account-options-card .account-options-card-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {

  .account-options-card {
    flex-direction: column;
  }

  .account-options-card-icon img {
    width: 64px;
    height: 64px;
  }

  .account-options-card-content {
    align-items: center;
  }
}

