/*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); }

.container {
  padding: 0 15px; }

.landing-page .region-content {
  padding: 0; }

.reset-region-style .region-content {
  padding: 0; }

.reset-ul {
  list-style: none;
  padding-left: 0; }
  .reset-ul:last-child {
    margin-bottom: 0; }

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding: 0; } }
@media (max-width: 767px) {
  .container {
    padding: 0 20px; } }
html {
  font-size: 16px;
  line-height: 1.5; }

body {
  font-family: var(--primary-font);
  color: var(--regular-gray1); }

.ui-widget {
  font-family: var(--primary-font); }

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

.form-select:focus {
  box-shadow: none; }

/*disable click*/
.disable-click {
  pointer-events: none;
  opacity: .5; }

/*on focus outline keyboard*/
input:focus-visible,
button:focus-visible,
a:focus-visible,
.btn:focus-visible,
select:focus-visible,
.btn:focus:focus-visible,
.gtranslate-dummy .select2-selection:focus-visible {
  outline: 1px solid var(--regular-gray1); }

input[type="checkbox"]:focus-visible + label,
input[type="radio"]:focus-visible + label {
  outline: 1px solid var(--regular-gray1); }

.checkbox-without-text:focus-visible + label {
  height: 17px; }

/*scroll top*/
[id] {
  scroll-margin-top: var(--header-nav-height); }

textarea[id] {
  scroll-margin-top: 0; }

.content-container {
  width: 770px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; }
  @media (max-width: 770px) {
    .content-container {
      padding-right: 20px;
      padding-left: 20px;
      width: auto; } }

.content-container-lg {
  width: 970px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; }
  @media (max-width: 991px) {
    .content-container-lg {
      margin-left: 20px;
      margin-right: 20px;
      width: auto; } }

/*titles common*/
h1 {
  font-size: 2.625rem;
  line-height: 1.19;
  margin-bottom: 20px;
  font-weight: var(--primary-regular); }
  @media (max-width: 767px) {
    h1 {
      font-size: 1.875rem; } }

h2 {
  font-size: 2.125rem;
  line-height: 1.23;
  font-weight: var(--primary-regular);
  color: var(--regular-gray1);
  margin-bottom: 50px;
  text-align: center; }
  @media (max-width: 767px) {
    h2 {
      font-size: 1.625rem;
      line-height: 1.26;
      margin-bottom: 40px; } }

h3,
.h3-heading {
  font-size: 1.875rem;
  line-height: 1.26;
  margin-bottom: 20px;
  font-weight: var(--primary-regular); }
  @media (max-width: 767px) {
    h3,
    .h3-heading {
      font-size: 1.5rem; } }

h4 {
  font-size: 1.875rem;
  line-height: 1.26;
  margin-bottom: 20px;
  font-weight: var(--primary-regular); }
  @media (max-width: 767px) {
    h4 {
      font-size: 1.5rem; } }

h5 {
  font-size: 1.875rem;
  line-height: 1.26;
  margin-bottom: 20px;
  font-weight: var(--primary-regular); }
  @media (max-width: 767px) {
    h5 {
      font-size: 1.5rem; } }

h5 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: var(--primary-regular); }
  @media (max-width: 767px) {
    h5 {
      font-size: 1.125rem; } }

/*paragraph styling*/
p:last-child {
  margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

img {
  display: block;
  max-width: 100%;
  height: auto; }

.credit-text,
figcaption {
  font-size: 0.75rem;
  line-height: 1.66;
  color: var(--regular-gray5); }

.credit-text-2 {
  font-size: 0.938rem;
  line-height: 1.33;
  color: var(--regular-gray4);
  font-style: italic; }
  .credit-text-2 a:hover {
    color: var(--primary-hover); }

.credit-wrap.with-space {
  margin-top: 5px; }
.credit-wrap p {
  margin-bottom: 0; }

.bg-gray {
  background: var(--regular-gray6); }

.bg-gray-1 {
  background: var(--regular-gray7); }

.bg-gray-2 {
  background-color: var(--regular-gray2); }

.bg-blue {
  background-color: var(--blue1); }

.item-type {
  font-size: 0.75rem;
  background: url("/sites/mics/themes/custom/mics/components/images/icons/press-release.svg") no-repeat left top 3px;
  padding-left: 16px;
  min-height: 25px;
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--regular-gray1); }

.item-type-white {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/press-release-white.svg") no-repeat left top 3px;
  color: var(--white); }
  .item-type-white a {
    color: var(--white); }
  .item-type-white.type_icon_11 {
    background: url("/sites/mics/themes/custom/mics/components/images/icons/content-type/external-link-white.svg") no-repeat left top 3px; }

.type_icon_11 {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/content-type/external-link.svg") no-repeat left top 3px; }

.video-type {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/content-type/video.svg") no-repeat left top 3px; }

.user-icon {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/content-type/user-icon.svg") no-repeat left top 2px !important; }

.item-date {
  font-size: 0.75rem;
  line-height: 1.33;
  display: flex;
  align-items: center;
  padding-left: 16px;
  min-height: 21px;
  color: var(--regular-gray1);
  position: relative; }
  .item-date:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("/sites/mics/themes/custom/mics/components/images/icons/date-range-v1.svg") no-repeat left center;
    margin-top: -1px;
    width: 12px;
    height: 16px; }
  .item-date.date-small {
    padding-left: 15px;
    min-height: 16px; }
    .item-date.date-small:after {
      width: 12px;
      height: 16px;
      background-size: contain; }

.date-icon-only {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/date-range-v1.svg") no-repeat left center;
  width: 12px;
  height: 16px;
  font-size: 0; }

.location-icon-only {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/location-gray.svg") no-repeat center center;
  width: 12px;
  height: 16px;
  font-size: 0; }

.listing-label-white .date-icon-only {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/date-range-v1-white.svg") no-repeat left center; }

.hide-empty-block.empty-block {
  display: none; }

main {
  position: relative; }

.no-access-page .region-content {
  max-width: 770px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767px) {
    .no-access-page .region-content {
      padding-top: 50px;
      padding-bottom: 50px; } }
  .no-access-page .region-content .field--name-body {
    text-align: center; }

.view-filter-enabled .view-empty,
.empty-msg,
.abbreviations-view .view-empty {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  background: var(--white); }
  @media (max-width: 767px) {
    .view-filter-enabled .view-empty,
    .empty-msg,
    .abbreviations-view .view-empty {
      padding-top: 50px;
      padding-bottom: 50px; } }

#list1 .empty-msg,
#survey-dissemination .empty-msg {
  background: var(--regular-gray6); }

body:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2) url("/sites/mics/themes/custom/mics/components/images/icons/loader/ajax-loaded.gif") no-repeat center center;
  background-size: 50px;
  z-index: 6;
  display: block; }
body.loading-completed:before {
  display: none; }
body.hide-page-loader:before {
  display: none; }

.ajax-progress-fullscreen {
  display: none !important; }

.block-common {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 767px) {
    .block-common {
      padding-top: 50px;
      padding-bottom: 50px; } }
  .block-common .view-header,
  .block-common .block-title-main {
    font-size: 2.125rem;
    line-height: 1.23;
    font-weight: var(--primary-regular);
    color: var(--regular-gray1);
    margin-bottom: 50px;
    text-align: center; }
    @media (max-width: 767px) {
      .block-common .view-header,
      .block-common .block-title-main {
        font-size: 1.625rem;
        line-height: 1.26;
        margin-bottom: 40px; } }
  .block-common .short-description {
    text-align: center; }

.table-responsive {
  overflow: auto; }
  .table-responsive::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;
    height: 5px; }
  .table-responsive::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--regular-gray5); }
  .table-responsive::-webkit-scrollbar {
    height: 4px;
    cursor: pointer; }

.breadcrumbs-block {
  margin-bottom: 0;
  border-bottom: 1px solid var(--regular-gray5); }
  .breadcrumbs-block ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 21px 30px;
    margin-bottom: -5px; }
  .breadcrumbs-block li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1.28;
    color: var(--regular-gray1); }
    .breadcrumbs-block li:not(:last-child):after {
      content: '';
      background: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/chevron_forward.svg") no-repeat center center;
      width: 8px;
      height: 12px;
      display: inline-block;
      margin: 0 12px; }
    .breadcrumbs-block li:last-child {
      font-weight: var(--primary-bold); }
    .breadcrumbs-block li.breadcrumb-item + .breadcrumb-item {
      padding-left: 0; }
  .breadcrumbs-block span,
  .breadcrumbs-block a {
    color: var(--regular-gray1); }
  .breadcrumbs-block a:hover {
    text-decoration: underline; }
  .breadcrumbs-block .breadcrumb-item::before {
    display: none; }

.home-page .breadcrumbs-block {
  display: none; }

.ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable {
  min-height: 150px; }

.ast-hide-text-format .form-type-textarea + .form-wrapper {
  display: none; }
.ast-hide-text-format.form-control-el + .form-wrapper {
  display: none; }

.custom-checkbox-style.checkbox-big label {
  font-size: 1.188rem;
  line-height: 1.63;
  padding-left: 29px; }
  @media (max-width: 767px) {
    .custom-checkbox-style.checkbox-big label {
      font-size: 1.125rem;
      line-height: 1.55; } }
  .custom-checkbox-style.checkbox-big label:after {
    width: 19px;
    height: 19px;
    background-size: cover;
    margin-top: 0;
    top: 5px; }
    @media (max-width: 767px) {
      .custom-checkbox-style.checkbox-big label:after {
        width: 16px;
        height: 16px; } }
.custom-checkbox-style.checkbox-big input:checked + label:after {
  background-size: cover; }
.custom-checkbox-style.checkbox-style-white label:after {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/checkbox/default-white.svg") no-repeat left center; }
.custom-checkbox-style.checkbox-style-white input:checked + label:after {
  background: url("/sites/mics/themes/custom/mics/components/images/icons/checkbox/checked-white.svg") no-repeat left center; }
.custom-checkbox-style input {
  width: 0;
  height: 0;
  float: left;
  pointer-events: none;
  display: block;
  opacity: 0; }
  .custom-checkbox-style input:checked + label:after {
    background: url("/sites/mics/themes/custom/mics/components/images/icons/checkbox/checked.svg") no-repeat left center; }
.custom-checkbox-style label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.28;
  font-weight: var(--primary-regular);
  color: var(--regular-gray1);
  padding-left: 18px;
  cursor: pointer;
  position: relative; }
  .custom-checkbox-style label:after {
    content: '';
    background: url("/sites/mics/themes/custom/mics/components/images/icons/checkbox/default.svg") no-repeat left center;
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    margin-top: -1px; }

.custom-radio-style.custom-radio-style-sm label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.28;
  font-weight: var(--primary-regular);
  color: var(--regular-gray1);
  padding-left: 18px;
  cursor: pointer;
  position: relative; }
  .custom-radio-style.custom-radio-style-sm label:after {
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    margin-top: -1px; }
.custom-radio-style input {
  width: 0;
  height: 0;
  float: left;
  pointer-events: none;
  display: block;
  opacity: 0; }
  .custom-radio-style input:checked + label:after {
    background: url("/sites/mics/themes/custom/mics/components/images/icons/radio/radio-checked.svg") no-repeat left center;
    background-size: cover; }
.custom-radio-style label {
  font-size: 1.188rem;
  line-height: 1.63;
  font-weight: var(--primary-regular);
  color: var(--regular-gray1);
  padding-left: 29px;
  cursor: pointer;
  position: relative; }
  @media (max-width: 767px) {
    .custom-radio-style label {
      font-size: 1.125rem;
      line-height: 1.55; } }
  .custom-radio-style label:after {
    content: '';
    background: url("/sites/mics/themes/custom/mics/components/images/icons/radio/radio.svg") no-repeat left center;
    position: absolute;
    left: 0;
    top: 4px;
    width: 19px;
    height: 19px;
    background-size: cover; }
    @media (max-width: 767px) {
      .custom-radio-style label:after {
        width: 16px;
        height: 16px; } }

.custom-checkbox-style-before input {
  width: 0;
  height: 0;
  float: left;
  pointer-events: none;
  display: block;
  opacity: 0; }
  .custom-checkbox-style-before input:checked + label:before {
    background: url("/sites/mics/themes/custom/mics/components/images/icons/checkbox/checked.svg") no-repeat left center; }
.custom-checkbox-style-before label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.28;
  font-weight: var(--primary-regular);
  color: var(--regular-gray1);
  padding-left: 18px;
  cursor: pointer;
  position: relative; }
  .custom-checkbox-style-before label:before {
    content: '';
    background: url("/sites/mics/themes/custom/mics/components/images/icons/checkbox/default.svg") no-repeat left center;
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    margin-top: -1px; }

.video-thumbnail {
  position: relative; }
  .video-thumbnail img + img {
    display: none; }
  .video-thumbnail:after {
    content: '';
    position: absolute;
    background: url("/sites/mics/themes/custom/mics/components/images/icons/media/youtube.svg") no-repeat center center;
    width: 42px;
    height: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%); }

.detail-summary-full {
  margin-top: 18px; }
  .detail-summary-full:not(.show-full) {
    display: none; }

body:not(.trans-cmtd) * {
  visibility: hidden; }

body > div:has(svg[viewBox="0 0 66 66"]) {
  display: none !important; }

.iframe-wrap-element iframe {
  width: 100%; }

.no-trim-rq-element {
  -webkit-line-clamp: unset !important; }

.page-node-type-embed .page-intro {
  max-width: none; }

.page-node-type-embed .page-intro > .page-intro_page-title,
.page-node-type-embed .page-intro > .page-intro_page-desc {
  width: 100%;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto; }
/*.page-node-type-embed main > .content-main-wrap {
  display: none; }*/

/*# sourceMappingURL=base.css.map */
