html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  margin-top: 72px;
  line-height: 150%;
  font-family: Arial;
}
h1,
.h1 {
  font-size: 34px;
  line-height: 120%;
  margin: 12px 0;
}
h2,
.h2 {
  font-size: 28px;
  line-height: 130%;
}
h3,
.h3 {
  font-size: 24px;
  line-height: 130%;
}
h4,
.h4 {
  font-size: 20px;
  line-height: 130%;
}
h5,
.h5 {
  font-size: 18px;
  line-height: 130%;
}
h6,
.h6 {
  font-size: 18px;
  line-height: 140%;
}
a {
  color: #0E40A4;
  text-decoration: underline;
}
a.btn {
  color: black;
  text-decoration: none;
}
.response-container {
  max-width: 1280px;
  margin: auto;
}
nav {
  background: #FFF;
  z-index: 2;
  width: 100%;
  position: fixed;
  top: 0;
  border-bottom: 1px solid #515151;
}
.response-nav-wrapper {
  display: flex;
  justify-content: center;
}
.response-nav-wrapper a,
.response-nav-wrapper img {
  max-height: 48px;
}
.response-nav-wrapper .response-nav {
  max-width: 1280px;
  width: 100%;
}
.response-nav-wrapper .response-nav--content {
  display: flex;
  padding: 12px;
  justify-content: space-between;
  min-height: 48px;
  align-items: center;
}
.nav-expanded-wrapper {
  display: flex;
  justify-content: center;
}
.nav-expanded-wrapper .nav-expanded {
  max-width: 1280px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.nav-expanded-wrapper .nav-expanded > * {
  margin-left: 20px;
}
.nav-expanded-wrapper .nav-expanded > *:last-child {
  margin-bottom: 20px;
}
.nav-expanded-wrapper .nav-expanded.active {
  max-height: 500px;
}
.response-breadcrumb ul {
  column-gap: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 32px;
  padding-left: 20px;
  padding-right: 20px;
  list-style-type: none;
}
@media (min-width: 1024px) {
  .response-breadcrumb ul {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.response-breadcrumb li a {
  text-decoration: underline;
}
.response-breadcrumb li.active {
  display: none;
}
.btn {
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #515151;
  background: #F5F8FF;
  display: flex;
  height: fit-content;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1024px) {
  .btn {
    width: fit-content;
  }
}
.btn::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out;
}
.btn--download::before {
  background-image: url('/_content/CDEM.EMHub/images/response/response-download.svg');
}
.btn--expand {
  display: none;
  /* Hidden by default */
}
.btn--expand:before {
  background-image: url('/_content/CDEM.EMHub/images/response/response-arrow-down.svg');
}
.btn--collapse {
  display: none;
  /* Hidden by default */
}
.btn--collapse:before {
  background-image: url('/_content/CDEM.EMHub/images/response/response-arrow-down.svg');
  transform: rotate(180deg);
}
.btn--hamburger {
  width: fit-content;
}
.btn--hamburger::before {
  background-image: url('/_content/CDEM.EMHub/images/response/response-hamburger.svg');
}
.btn--share {
  color: #FFF;
  background: #0E40A4;
  border: 1px solid #08255E;
}
.btn--share::before {
  background-image: url('/_content/CDEM.EMHub/images/response/response-share.svg');
}
.btn--back-to-top {
  margin-top: auto;
}
.btn--back-to-top::before {
  background-image: url('/_content/CDEM.EMHub/images/response/response-arrow-left.svg');
  transform: rotate(90deg);
}
.btn--close {
  width: fit-content;
}
.btn--close::before {
  background-image: url('/_content/CDEM.EMHub/images/response/response-close.svg');
}
.response-main {
  padding: 20px;
  background: #B00202;
  color: #FFF;
}
.response-main h2 {
  margin: 12px 0;
}
.response-main .txt-timestamp {
  padding-bottom: 16px;
}
.response-main .iframe-container {
  padding-top: 16px;
}
@media (min-width: 1024px) {
  .response-main {
    padding: 40px;
  }
}
.home-info-panel-container {
  padding: 20px 20px;
  background: #FFF5F5;
}
.home-info-panel-container.latest-update:not(.white-bg) {
  background: #FDF7EC;
}
.home-info-panel-container.latest-update.white-bg {
  background: unset;
}
.home-info-panel-container.latest-update .home-info-panel {
  border-left: 4px solid #F4BF00;
}
@media (min-width: 1024px) {
  .home-info-panel-container {
    padding: 20px 40px;
  }
}
.home-info-panel {
  border-left: 4px solid #B00202;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .home-info-panel {
    padding: 0 0 0 20px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.content-panel {
  min-width: 240px;
  max-width: 600px;
}
.situation-content-container {
  display: flex;
  padding: 20px;
  position: relative;
  flex-direction: column;
}
.situation-content-container h3 {
  margin-bottom: 8px;
}
.situation-content-container .btn {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .situation-content-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px;
  }
  .situation-content-container .sticky-sm {
    align-self: flex-start;
  }
}
.situation-content {
  min-width: 240px;
  max-width: 600px;
}
.info-section-block {
  max-width: 640px;
}
.downloads-block > *:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .downloads-block {
    min-width: 335px;
  }
}
.further-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.further-info-block > * {
  margin: 0;
}
.further-info-block a {
  font-weight: 700;
}
.expandable-content {
  position: relative;
  transition: max-height 0.3s ease-in-out;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.expandable-content.expanded {
  -webkit-line-clamp: 8000;
}
.response-footer {
  background: #F5F8FF;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.response-footer.white-bg {
  background: unset;
}
.response-footer h1 {
  margin-top: 0;
}
.response-footer h1,
.response-footer h3 {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .response-footer {
    padding: 40px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  border-left: 4px solid #0E40A4;
  padding-left: 10px;
}
@media (min-width: 1024px) {
  .footer-content {
    padding-left: 20px;
  }
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}
.footer-logo img {
  height: 57px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .footer-logo {
    width: 335px;
    margin-top: 0;
  }
}
.txt-timestamp {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
}
.txt-timestamp--dark {
  color: #515151;
}
.txt-timestamp--black {
  color: #000000;
}
.link--icon {
  color: #0E40A4;
  display: flex;
  font-size: 20px;
  gap: 8px;
}
.link--icon img,
.link--icon svg {
  height: 1em;
  width: 1em;
}
.more-links {
  font-weight: 700;
}
.more-links li::marker {
  color: #0E40A4;
}
.more-links li:not(:last-child) {
  margin-bottom: 16px;
}
.more-links a[type="External"]::after {
  display: inline-block;
  content: '';
  background-image: url('/images/response/response-external-arrow.svg');
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
}
.more-links.no-decoration {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.more-links.no-decoration li:not(:last-child) {
  margin-bottom: 8px;
}
img.svg-large {
  width: 48px;
  height: 48px;
}
.iframe-container {
  margin: 1em 0;
  max-width: 100%;
  position: relative;
}
.iframe-container iframe {
  width: 100%;
  height: 100%;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-s {
  margin-bottom: 8px;
}
.mb-m {
  margin-bottom: 12px;
}
.mb-xl {
  margin-bottom: 20px;
}
.mt-xl {
  margin-top: 20px;
}
.flex-r-jc-sb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media (min-width: 1024px) {
  .flex-r-jc-sb {
    flex-direction: row;
    justify-content: space-between;
    width: fit-content;
  }
}
.mobile-full-width {
  width: 100%;
}
@media (min-width: 1024px) {
  .mobile-full-width {
    width: fit-content;
  }
}
.hidden {
  display: none;
}
@media (min-width: 1024px) {
  .sticky-sm {
    position: sticky;
    top: 1px;
  }
}
.response-banner-wrapper {
  background: #B00202;
  display: flex;
  justify-content: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.response-banner-wrapper .response-banner {
  width: 100%;
  max-width: 1280px;
}
.response-banner-wrapper .response-banner--content {
  display: flex;
  padding: 12px 20px;
  min-height: 48px;
  align-items: center;
  gap: 8px;
}
.response-banner-wrapper .response-banner--content > * {
  color: #FFF;
}
.response-banner-wrapper a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.response-banner-wrapper svg {
  width: 1em;
  height: 1em;
}

