/*css varibales*/
:root {
  --primary-color: #1cabe2;
  --primary-hover:#0e95ca;
  --regular-gray1:#333;
  --regular-gray2:#404040;
  --regular-gray3:#595959;
  --regular-gray4:#757575;
  --regular-gray5:#c1c1c1;
  --regular-gray6:#f1f1f1;
  --regular-gray7:#f8f8f8;
  --regular-gray8:#d8d8d8;
  --regular-gray9:#ced4da;
  --regular-accent-action: #e34e09;
  --regular-accent-action-hover: #c94304;
  --white:#fff;
  --black:#000;
  --primary-light:#c5effc;
  --blue1:#2159a8;
  --blue2:#1a4b8f;
  --regular-bkgd:#d3dbdf;
  --hc-color:#0f5c85;
  --hc-hover: #0c4462;
  --hc-color-secondary:#2159a5;
  --hc-regular-accent-action: #9c350d;
  --hc-regular-accent-action-hover: #822500;
  --hc-accent-alert: #a12e26;
  --primary-font: 'Roboto',sans-serif;
  --primary-regular: 400;
  --primary-medium: 500;
  --primary-bold: 700;
  --primary-black: 900;
  --secondary-font: 'PT Serif',serif;
  --secondary-regular: 400;
  --secondary-bold: 800;
  --shadow-hover: 0 3px 3px -2px rgba(0, 0, 0, 0.1),0 3px 4px 0 rgba(0, 0, 0, 0.14),0 1px 8px 0 rgba(0, 0, 0, 0.12);
  --shadow-active: 0 5px 5px -3px rgba(0, 0, 0, 0.12),0 8px 10px 1px rgba(0, 0, 0, 0.14),0 3px 14px 2px rgba(0, 0, 0, 0.12);
  --outline-btn-shadow-hover: 0px 1px 8px 0px rgba(0, 0, 0, 0.12),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 3px 3px -2px rgba(0, 0, 0, 0.10);
  --outline-btn-shadow-active: 0px 3px 14px 2px rgba(0, 0, 0, 0.25),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 5px 5px -3px rgba(0, 0, 0, 0.12);
  --card-hover-shadow: 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 3px 4px 1px rgba(0, 0, 0, 0.14), 0px 5px 5px -3px rgba(0, 0, 0, 0.12);
  --drop-shadow: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.12)) drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.14)) drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.10));
  --inset-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.25);
  --box-shadow2: 0 1px 3px 0 rgba(0,0,0,0.25);
  --box-shadow3: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  --box-shadow4: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  --box-shadow5: 2px -3px 3px 0px rgba(0, 0, 0, 0.15);
  --box-shadow6: 0px 1px 2px -1px rgba(0, 0, 0, 0.25);
  --box-shadow7: 2px 2px 4px -1px rgba(0, 0, 0, 0.75);
  --drop-shadow1:drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  --drop-shadow2:drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
  --card-height: 525px;
  --bg-tint1: rgba(33, 89, 168, 90%);
  --bg-tint2: rgba(0, 0, 0, 0.6);
  /*survey colors*/
  --sc1: #a3e7f5;
  --sc2: #ffee00;
  --sc3: #ffc20e;
  --sc4: #80bd41;
  --sc5: #c9c9c9;
  /*dataset colors*/
  --ds1:#d9e3f2;
  --ds-h1:var(--blue1);
  --ds2:#d9f2e5;
  --ds-h2:#42b577;
  --ds3:#fcd5d3;
  --ds-h3:#bd605b;
  --ds4:#fcd5d3;
  --ds-h4:#ee9058;
  --ds5:#fff3cf;
  --ds-h5:var(--sc3);
  --ds6:#e1d2e3;
  --ds-h6:#884b90;
  --ds7:#d2eef9;
  --ds-h7:#1cabe2;
  --light-blue:#0e95Ca33; }

.high-contrast-mode {
  --primary-color:var(--hc-color);
  --primary-hover:var(--hc-hover);
  --blue1: var(--hc-color-secondary);
  --regular-accent-action:var(--hc-regular-accent-action);
  --regular-accent-action-hover:var(--hc-regular-accent-action-hover); }

:root {
  --header-height: 108px;
  --header-nav-height: var(--header-height); }

body {
  padding-top: var(--header-height); }

.site-header {
  --header-padding: 0;
  padding-top: 0;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0; }
  .site-header:not(.header-loaded) .region-header-top {
    opacity: 0; }

.header-top {
  display: none; }

.header-left {
  margin-top: 0; }

.menu-item-link.is-active, .menu-item-link.active {
  color: var(--primary-hover);
  background: none; }
  .menu-item-link.is-active:after, .menu-item-link.is-active:before, .menu-item-link.active:after, .menu-item-link.active:before {
    display: none; }
.menu-item-link:not(.active):not(.is-active):hover {
  border-color: transparent; }

.header-bottom-inner {
  position: fixed;
  top: var(--header-height);
  width: 100%;
  left: 0;
  display: none;
  border-top: 1px solid var(--regular-gray5);
  overflow-y: scroll;
  max-height: calc(100% - var(--header-height)); }

.header-middle {
  padding: 10px; }

.menu-toggle {
  display: block;
  font-size: 0;
  width: 24px;
  height: 20px;
  background: url("/sites/mics/themes/custom/mics/components/images/icons/header/hamburger.svg") no-repeat center center;
  margin: 13px 12px; }

.menu-open {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/header/hamburger-close.svg") no-repeat center center; }

.responsive-menu-space {
  display: block;
  background-color: var(--regular-gray6);
  padding: 15px; }
  .responsive-menu-space .region-header-top {
    justify-content: center; }
    .responsive-menu-space .region-header-top .text-formatted > a {
      border-color: var(--regular-gray4); }

.header-logo-block p a:not(:last-child) {
  margin-right: 16.5px;
  padding-right: 16.5px; }
  .header-logo-block p a:not(:last-child):after {
    height: 30px; }
.header-logo-block img {
  width: auto; }

.header-right {
  position: absolute;
  top: 66px;
  right: 10px; }
  .header-right .login-details {
    display: none; }

.login-details {
  display: flex;
  justify-content: center;
  margin-bottom: 15px; }
  .login-details .dropdown-menu-list {
    top: auto;
    bottom: 100%;
    margin-bottom: 10px; }

.main-menu-wrap {
  flex-direction: column;
  background: var(--white);
  padding: 0 12px; }

.mega-menu-visual,
.tool-icon {
  display: none; }

.menu-item {
  padding: 0;
  position: relative; }

.menu-item-link {
  padding: 16px 12px;
  height: auto;
  border-radius: 0; }

.submenu-main-link,
.tool-menu a {
  width: 100%;
  display: block;
  padding: 16px 12px; }

.tool-menu a {
  color: var(--regular-gray1);
  border-bottom: 1px solid var(--regular-gray5);
  font-weight: var(--primary-bold);
  font-size: 0.875rem;
  line-height: 1.14; }

.menu-label {
  font-size: 0.875rem;
  line-height: 1.14;
  margin-left: 0; }

.menu-icon {
  display: none; }

.has-submenu {
  position: relative;
  flex-direction: column;
  --link-width: 100%;
  --second-menu-width: 100%; }

.mega-menu-open .menu-item-link {
  box-shadow: var(--box-shadow4);
  position: relative;
  z-index: 1; }

.region-header-bottom {
  overflow: scroll;
  max-height: calc(100vh - 170px); }

.menu-item-link {
  font-size: 0.875rem;
  line-height: 1.14;
  border: none; }

.main-menu-navigation-view .second-drop {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
  border-bottom: 1px solid var(--regular-gray5);
  margin-right: 0; }
  .main-menu-navigation-view .second-drop li a {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1;
    padding: 7.5px 20px; }

.mega-drop-container {
  background-color: var(--regular-gray6); }

.submenu-main-link {
  border-color: var(--regular-gray5); }

.arrow-style {
  width: 12px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 22px;
  display: block;
  background: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/down-gray-dark.svg") no-repeat right center;
  z-index: 3;
  pointer-events: none; }

.main-link-arrow {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/down-blue-dark.svg") no-repeat right center; }

.submenu-open .submenu-arrow {
  transform: rotate(180deg); }

.mega-menu-open .main-link-arrow {
  transform: rotate(180deg); }

.mega-description-inner {
  padding: 10px 12px; }

.mega-description-title {
  font-size: 1.125rem;
  line-height: 1.55; }

.submenu-open .submenu-main-link {
  border-color: transparent;
  padding-bottom: 0; }

.no-submenu-item .submenu-arrow {
  display: none; }

/*# sourceMappingURL=header-max-991.css.map */
