@charset "UTF-8";
@font-face {
  font-family: "Untitled Sans";
  src: url("https://assets.hm.edu/_fonts/untitled-sans-web-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Untitled Sans";
  src: url("https://assets.hm.edu/_fonts/untitled-sans-web-medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* 1.2 is correct. 1.25 makes the font to bold */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Untitled Sans", Arial, Helvetica;
  font-size: 1rem;
  line-height: 1.5;
  color: #161616;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

select,
input[type=text],
input[type=checkbox] {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 1rem;
  border-radius: 0;
  border: 1px solid #d1d1d1;
  background-color: #ffffff;
  outline: none !important;
  box-shadow: none !important;
}

select,
input[type=text] {
  display: block;
  width: 100%;
}

select {
  padding: 5px 10px;
}

input[type=text] {
  padding: 10px;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  height: 1rem;
  width: 1rem;
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
}
input[type=checkbox]:checked {
  background-color: #161616;
  border-color: #161616;
}
input[type=checkbox]:checked:after {
  content: "◉";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

label[for] {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

button {
  all: unset;
  display: inline-block;
  box-sizing: border-box;
  font: inherit;
  background: none;
  border: 1px solid currentColor;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid #d1d1d1;
}

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

@media (min-width: 992px) {
  main {
    min-height: calc(100vh - 14rem);
  }
}
h1 {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1.875rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

p {
  margin: 0 0 0.625rem 0;
}

small {
  font-size: 0.875rem;
}

strong {
  font-weight: 600;
}

a {
  color: inherit;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
    margin-bottom: 2.8125rem;
  }
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
    font-weight: normal;
  }
}
@media (min-width: 1520px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.2rem;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1520px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.mt-2 {
  margin-top: 0.3125rem !important;
}

.mt-3 {
  margin-top: 0.625rem !important;
}

.mt-4 {
  margin-top: 0.9375rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.875rem !important;
}

.mr-2 {
  margin-right: 0.3125rem !important;
}

.mr-3 {
  margin-right: 0.625rem !important;
}

.mr-4 {
  margin-right: 0.9375rem !important;
}

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

.mb-3 {
  margin-bottom: 0.625rem !important;
}

.mb-4 {
  margin-bottom: 0.9375rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mb-6 {
  margin-bottom: 1.875rem !important;
}

.mb-7 {
  margin-bottom: 2.8125rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.ml-2 {
  margin-left: 0.3125rem !important;
}

.ml-3 {
  margin-left: 0.625rem !important;
}

.ml-4 {
  margin-left: 0.9375rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.ml-6 {
  margin-left: 1.875rem !important;
}

@media (min-width: 1200px) {
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .mr-xl-3 {
    margin-right: 0.625rem !important;
  }
  .mr-xl-4 {
    margin-right: 0.9375rem !important;
  }
  .ml-xl-6 {
    margin-left: 1.875rem !important;
  }
}
@media (min-width: 1520px) {
  .mx-xxl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.v-space,
.v-space-small,
.v-space-large {
  margin-top: 2.8125rem;
  margin-bottom: 2.8125rem;
}

.t-space,
.t-space-small,
.t-space-large {
  margin-top: 2.8125rem;
}

.b-space,
.b-space-small,
.b-space-large {
  margin-bottom: 2.8125rem;
}

@media (min-width: 768px) {
  .b-space-md-0 {
    margin-bottom: 0 !important;
  }
  .v-space-large {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .t-space-large {
    margin-top: 3.75rem;
  }
  .b-space-large {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 992px) {
  .v-space {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .t-space {
    margin-top: 3.75rem;
  }
  .b-space {
    margin-bottom: 3.75rem;
  }
  .v-space-large {
    margin-top: 4.6875rem;
    margin-bottom: 4.6875rem;
  }
  .t-space-large {
    margin-top: 4.6875rem;
  }
  .b-space-large {
    margin-bottom: 4.6875rem;
  }
}
@media (min-width: 1200px) {
  .b-space-xl-0 {
    margin-bottom: 0 !important;
  }
  .v-space {
    margin-top: 4.6875rem;
    margin-bottom: 4.6875rem;
  }
  .t-space {
    margin-top: 4.6875rem;
  }
  .b-space {
    margin-bottom: 4.6875rem;
  }
  .v-space-small {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .t-space-small {
    margin-top: 3.75rem;
  }
  .b-space-small {
    margin-bottom: 3.75rem;
  }
  .v-space-large {
    margin-top: 5.625rem;
    margin-bottom: 5.625rem;
  }
  .t-space-large {
    margin-top: 5.625rem;
  }
  .b-space-large {
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 1520px) {
  .t-space-xxl-0 {
    margin-top: 0 !important;
  }
  .v-space {
    margin-top: 5.625rem;
    margin-bottom: 5.625rem;
  }
  .t-space {
    margin-top: 5.625rem;
  }
  .b-space {
    margin-bottom: 5.625rem;
  }
  .v-space-large {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }
  .t-space-large {
    margin-top: 7.5rem;
  }
  .b-space-large {
    margin-bottom: 7.5rem;
  }
}
.v-space {
  margin-top: 2.8125rem;
  margin-bottom: 2.8125rem;
}

.top-spacing-default {
  margin-top: 2.8125rem;
}

.b-space {
  margin-bottom: 2.8125rem;
}

.vertical-spacing-small {
  margin-top: 2.8125rem;
  margin-bottom: 2.8125rem;
}

.top-spacing-small {
  margin-top: 2.8125rem;
}

.bottom-spacing-small {
  margin-bottom: 2.8125rem;
}

@media (min-width: 768px) {
  .vertical-spacing-large {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .top-spacing-large {
    margin-top: 3.75rem;
  }
  .bottom-spacing-large {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 992px) {
  .v-space {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .top-spacing-default {
    margin-top: 3.75rem;
  }
  .b-space {
    margin-bottom: 3.75rem;
  }
  .vertical-spacing-large {
    margin-top: 4.6875rem;
    margin-bottom: 4.6875rem;
  }
  .top-spacing-large {
    margin-top: 4.6875rem;
  }
  .bottom-spacing-large {
    margin-bottom: 4.6875rem;
  }
}
@media (min-width: 1200px) {
  .v-space {
    margin-top: 4.6875rem;
    margin-bottom: 4.6875rem;
  }
  .top-spacing-default {
    margin-top: 4.6875rem;
  }
  .b-space {
    margin-bottom: 4.6875rem;
  }
  .vertical-spacing-large {
    margin-top: 5.625rem;
    margin-bottom: 5.625rem;
  }
  .top-spacing-large {
    margin-top: 5.625rem;
  }
  .bottom-spacing-large {
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 1520px) {
  .vertical-spacing-small {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .top-spacing-small {
    margin-top: 3.75rem;
  }
  .bottom-spacing-small {
    margin-bottom: 3.75rem;
  }
  .vertical-spacing-large {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }
  .top-spacing-large {
    margin-top: 7.5rem;
  }
  .bottom-spacing-large {
    margin-bottom: 7.5rem;
  }
}
.v-gap {
  gap: 0.9375rem 0;
}

@media (min-width: 768px) {
  .v-gap {
    gap: 1.875rem 0;
  }
}
.text-decoration-none {
  text-decoration: none;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.font-size-default {
  font-size: 1rem;
}

.font-size-large {
  font-size: 1.125rem;
}

.font-weight-default {
  font-weight: normal;
}

.height-100 {
  height: 100%;
}

.hidden-flex-item {
  padding: 0 !important;
  flex: 0 0 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

@media (min-width: 1200px) {
  .font-size-xl-extra-large {
    font-size: 1.125rem;
  }
}
.container {
  width: 100%;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1102px;
  }
}
@media (min-width: 1520px) {
  .container {
    max-width: 1440px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}

@media (min-width: 768px) {
  .row-issue-grid {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }
  .row-issue-grid *[class*=col-] {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .row-issue-grid .issue {
    margin-bottom: 0.3125rem;
  }
}
.col,
[class*=col-] {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.col {
  flex: 1 0 0%;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-12 {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
}
@media (min-width: 1200px) {
  .col-xl-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
}
@media (min-width: 1520px) {
  .col-xxl-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
}
.site-header {
  padding: 0.625rem 0;
  border-bottom: 1px solid #d1d1d1;
}

.site-header-branding {
  display: flex;
}
.site-header-branding img {
  height: 3.75rem;
  width: auto;
  margin-left: -0.3125rem;
}

.site-header-branding-label {
  margin-top: 0.1875rem;
  font-size: 1.125rem;
}

.site-header-status-summary {
  margin-top: 0.625rem;
}

.site-header-status-summary-badge {
  padding: 0.3125rem 0.625rem;
  line-height: 1.6;
  color: #161616;
  text-align: center;
}

.site-header-status-summary-timestamp {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.3125rem;
}
.site-header-status-summary-timestamp svg {
  height: 1rem;
  width: 1rem;
}

@media (min-width: 576px) {
  .site-header-status-summary {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .site-header {
    padding: 0.9375rem 0;
  }
  .site-header-branding-label {
    margin-top: 0;
  }
  .site-header-status-summary-badge {
    padding: 0.3125rem 0.9375rem;
    line-height: 1.5;
  }
  .site-header-status-summary {
    transform: none;
  }
  .site-header-status-summary-timestamp {
    margin-top: 0.3125rem;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .site-header-branding img {
    height: 4rem;
    margin-left: -0.625rem;
  }
  .site-header-branding-label {
    margin-top: 0.3125rem;
  }
  .site-header-status-summary {
    font-size: 1.125rem;
  }
  .site-header-status-summary-timestamp {
    align-items: center;
  }
  .site-header-status-summary-timestamp svg {
    cursor: pointer;
    height: 1.1em;
    width: 1.1em;
  }
}
.site-footer {
  margin-top: 4.6875rem;
  padding: 0.625rem 0;
  font-size: 0.75rem;
  border-top: 1px solid #e2e2e2;
}
.site-footer .container {
  position: relative;
}
.site-footer a {
  color: #161616;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

.site-footer-credits {
  position: absolute;
  height: 1.5rem;
  top: calc(-1 * (2.125rem + 1px));
  padding: 0.1875rem 0.625rem;
  border: 1px solid #d1d1d1;
  border-bottom: none;
  background-color: #f3f3f3;
}

.site-footer-dark-mode-toggle {
  margin-top: 0.625rem;
  text-align: right;
  color: #4a4a4a;
}

#lightModeSwitch {
  font-weight: 600;
}

#darkModeSwitch:hover {
  color: #161616;
  cursor: pointer;
}

.site-footer-legal-links {
  display: flex;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}

@media (min-width: 768px) {
  .site-footer-dark-mode-toggle {
    margin-top: 0;
    text-align: center;
  }
  .site-footer-legal-links {
    gap: 0.9375rem;
    margin-top: 0;
  }
}
.icon {
  height: 1em;
  width: 1em;
}

.status-icon {
  display: inline-block;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background-color: #f3f3f3;
}
.status-icon.large {
  height: 0.9375rem;
  width: 0.9375rem;
}

.text-box {
  padding: 1.25rem 0.9375rem;
  border: 1px solid #d1d1d1;
}
.text-box p:last-child {
  margin-bottom: 0.3125rem;
}

@media (min-width: 1520px) {
  .text-box[data-id=about] {
    margin-top: -5.375rem;
  }
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  text-decoration: none;
}

.arrow-link-right:hover svg {
  transform: translateX(2px);
}

.arrow-link-left:hover svg {
  transform: translateX(-2px);
}

.arrow-link-bold {
  font-weight: 600;
}

.arrow-link-framed {
  border: 1px solid currentColor;
  padding: 0 0.9375rem;
}

.issue {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  padding: 0.9375rem 1.25rem;
  background-color: #f3f3f3;
}
.issue > a {
  text-decoration: none;
}
.issue:has(> a:hover) .issue-title-wrap {
  text-decoration: underline;
}
.issue[style^=background-color] {
  color: #ffffff;
}
.issue[style^=background-color] .issue-affected-system {
  background-color: rgba(255, 255, 255, 0.2);
}
.issue[style^=background-color] .issue-affected-system:hover {
  outline-color: rgba(255, 255, 255, 0.4);
}

.issue-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem 0.625rem;
  margin-bottom: 0.9375rem;
  margin-right: -0.3125rem;
  font-size: 0.875rem;
}
.issue-top time {
  opacity: 0.8;
}
.issue-top time + .issue-affected-system {
  margin-left: auto;
}

.issue-bottom {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
  margin-top: auto;
  padding-top: 0.9375rem;
  font-size: 0.875rem;
}

.issue-affected-system {
  padding: 0.1875rem 0.625rem;
  line-height: 1.4;
  background-color: #e2e2e2;
  text-decoration: none;
}
.issue-affected-system:hover {
  outline: 1px solid #d1d1d1;
}

.issue-small {
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
}
.issue-small h4 {
  font-size: 1.125rem !important;
}
.issue-small .issue-top {
  font-size: 0.75rem;
}
.issue-small .issue-bottom {
  padding-top: 0.625rem;
  font-size: 0.75rem;
}

.issue-details-date {
  margin-bottom: 1.875rem;
  font-style: italic;
  opacity: 0.8;
}

.issue-details-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
  font-size: 1.125rem;
}

.issue-details-severity {
  display: inline-flex;
  align-items: center;
  gap: 0 0.3125rem;
  margin-right: 0.3125rem;
}

.issue-details-content {
  max-width: 720px;
  margin-bottom: 1.875rem;
}
.issue-details-content hr {
  margin: 1.875rem 0;
}

.issue-details-affected-systems {
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  margin-top: 0.9375rem;
  gap: 0.9375rem;
}

.issue-details-affected-system {
  border: 1px solid #d1d1d1;
  padding: 0.3125rem 0.625rem;
  text-decoration: none;
}
.issue-details-affected-system:hover {
  border-color: #161616;
}

@media (min-width: 992px) {
  .issue-details-date {
    margin-bottom: 2.8125rem;
  }
  .issue-details-status {
    margin-bottom: 2.8125rem;
  }
  .issue-details-content {
    margin-bottom: 2.8125rem;
    font-size: 1.125rem;
  }
  .issue-details-content p {
    margin-bottom: 0.9375rem;
  }
}
.category {
  border: 2px solid #161616;
  margin-bottom: 0.9375rem;
}

.category-nav-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9375rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.category-nav-item span:last-child {
  margin-left: auto;
}
.category-nav-item .icon-minus-bold {
  display: none;
}
.category-nav-item.active {
  background-color: #e2e2e2;
}
.category-nav-item.active .icon-plus-bold {
  display: none;
}
.category-nav-item.active .icon-minus-bold {
  display: inline-block;
}
.category-nav-item.active + .category-systems {
  display: block;
}

.category-systems {
  display: none;
}

.category-system {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 -0.9375rem;
  padding: 0.9375rem;
  border-top: 1px solid #d1d1d1;
  font-size: 1.125rem;
  text-decoration: none;
  line-height: 1.3;
}
.category-system .icon-arrow-right {
  margin-left: auto;
}
.category-system .icon-arrow-right-bold {
  display: none;
}
.category-system .status-icon {
  align-self: flex-start;
  margin-top: 0.375rem;
}

.category-system-name {
  max-width: 82%;
}

@media (min-width: 992px) {
  .category {
    border: none;
    margin-bottom: 0.625rem;
  }
  .category-nav-item {
    padding: 0.625rem 0.9375rem;
    font-weight: normal;
  }
  .category-nav-item .icon {
    display: none !important;
  }
  .category-nav-item:hover {
    background-color: #f3f3f3;
  }
  .category-nav-item.active {
    background-color: #e2e2e2;
  }
  .category-nav-item:not(.active):hover {
    cursor: pointer;
  }
  .category-systems {
    display: none !important;
  }
  .category-system {
    margin: 0 0 1.875rem 0;
    padding: 1.25rem 0.9375rem;
    border: 2px solid #161616;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .category-system .icon-arrow-right {
    display: none;
  }
  .category-system .icon-arrow-right-bold {
    display: inline;
    margin-left: auto;
    transition: all 0.2s;
  }
  .category-system:hover .icon-arrow-right-bold {
    transform: translateX(0.1875rem);
  }
}
.button {
  margin: 0;
  padding: 0.3125rem 0.9375rem;
  color: #161616;
  background-color: transparent;
  border: 1px solid #161616;
  cursor: pointer;
  line-height: 1.2;
  text-align: inherit;
}
.button.button-active {
  background-color: #161616;
  color: #ffffff;
}

.button-small {
  padding: 0.1875rem 0.625rem;
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .button {
    padding: 0.625rem 1.25rem;
  }
  .button:not(.button-active):hover {
    background-color: #161616;
    color: #ffffff;
  }
  .button-small {
    padding: 0.3125rem 0.625rem;
  }
}
.affected-status {
  display: flex;
  align-items: center;
  gap: 0 0.3125rem;
  margin-bottom: 1.875rem;
  font-size: 1.125rem;
  font-weight: bold;
}

.affected-content {
  max-width: 720px;
  margin-bottom: 1.875rem;
}

@media (min-width: 992px) {
  .affected-status {
    margin-bottom: 2.8125rem;
  }
  .affected-content {
    margin-bottom: 2.8125rem;
    font-size: 1.125rem;
  }
  .affected-content p {
    margin-bottom: 0.9375rem;
  }
}
.controls-section {
  margin-bottom: 1.25rem;
}
.controls-section:last-child {
  margin-bottom: 0;
}

.dropdown-control select {
  width: 100%;
}
.dropdown-control select[multiple] {
  scrollbar-width: thin;
  scrollbar-color: #7d7d7d #ffffff;
  padding-left: 0.3125rem;
  padding-right: 0.625rem;
}
.dropdown-control select option {
  padding: 0.3125rem 0.625rem;
}
.dropdown-control select optgroup {
  margin-top: 0.625rem;
}
.dropdown-control select optgroup option:first-child {
  margin-top: 0.3125rem;
}

.dropdown-control-date-range select {
  min-width: 80px;
  max-width: 100px;
  text-align: center;
}

@media (min-width: 576px) {
  .controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1.875rem 1.25rem;
  }
  .controls-section {
    flex: 0 0 calc(50% - 0.625rem);
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .controls {
    position: relative;
  }
  .controls-section {
    flex: 0 0 calc(33.3333% - 0.8333333333rem);
  }
  .dropdown-control select[multiple] {
    min-height: 105px;
  }
}
@media (min-width: 1520px) {
  .controls-section {
    flex: 0 0 calc(25% - 0.9375rem);
  }
}
html[data-dark-mode=enabled] body {
  background-color: #161616;
  color: #e2e2e2;
}
html[data-dark-mode=enabled] hr,
html[data-dark-mode=enabled] select,
html[data-dark-mode=enabled] input[type=text],
html[data-dark-mode=enabled] input[type=checkbox] {
  border-color: #636363;
}
html[data-dark-mode=enabled] select,
html[data-dark-mode=enabled] input[type=text],
html[data-dark-mode=enabled] input[type=checkbox] {
  background-color: #4a4a4a;
  color: #e2e2e2;
}
html[data-dark-mode=enabled] #lightModeSwitch {
  color: #b0b0b0;
  font-weight: normal;
}
html[data-dark-mode=enabled] #lightModeSwitch:hover {
  cursor: pointer;
}
html[data-dark-mode=enabled] #darkModeSwitch {
  font-weight: 600;
  color: #e2e2e2;
}
html[data-dark-mode=enabled] #darkModeSwitch:hover {
  cursor: default;
}
html[data-dark-mode=enabled] .button {
  border-color: #e2e2e2;
  color: #e2e2e2;
}
html[data-dark-mode=enabled] .button.button-active {
  background-color: #e2e2e2;
  color: #161616;
}
@media (min-width: 992px) {
  html[data-dark-mode=enabled] .button:not(.button-active):hover {
    background-color: #e2e2e2;
    color: #303030;
  }
}
html[data-dark-mode=enabled] .site-header,
html[data-dark-mode=enabled] .site-footer,
html[data-dark-mode=enabled] .text-box,
html[data-dark-mode=enabled] .controls {
  border-color: #636363;
}
html[data-dark-mode=enabled] .site-header-branding img {
  filter: invert(100%);
}
html[data-dark-mode=enabled] .site-footer a {
  color: #e2e2e2;
}
html[data-dark-mode=enabled] .site-footer-credits {
  background-color: #303030;
  border-color: #636363;
}
html[data-dark-mode=enabled] .arrow-link-framed {
  border-color: #e2e2e2;
}
html[data-dark-mode=enabled] .category {
  border-color: #e2e2e2;
}
html[data-dark-mode=enabled] .category-system {
  border-color: #636363;
}
@media (min-width: 992px) {
  html[data-dark-mode=enabled] .category-system {
    border-color: #e2e2e2;
  }
}
html[data-dark-mode=enabled] .category-nav-item.active {
  background-color: #4a4a4a;
}
@media (min-width: 992px) {
  html[data-dark-mode=enabled] .category-nav-item:not(.active):hover {
    background-color: #303030;
  }
}
html[data-dark-mode=enabled] .issue {
  background-color: #303030;
}
html[data-dark-mode=enabled] .issue[style^=background-color] {
  color: #161616;
}
html[data-dark-mode=enabled] .issue-affected-system {
  background-color: #4a4a4a;
}
html[data-dark-mode=enabled] .issue-affected-system:hover {
  outline-color: #636363;
}
html[data-dark-mode=enabled] .issue-details-affected-system {
  border-color: #636363;
}
html[data-dark-mode=enabled] .issue-details-affected-system:hover {
  border-color: #e2e2e2;
}

@media (prefers-color-scheme: dark) {
  html:not([data-dark-mode=disabled]) body {
    background-color: #161616;
    color: #e2e2e2;
  }
  html:not([data-dark-mode=disabled]) hr,
  html:not([data-dark-mode=disabled]) select,
  html:not([data-dark-mode=disabled]) input[type=text],
  html:not([data-dark-mode=disabled]) input[type=checkbox] {
    border-color: #636363;
  }
  html:not([data-dark-mode=disabled]) select,
  html:not([data-dark-mode=disabled]) input[type=text],
  html:not([data-dark-mode=disabled]) input[type=checkbox] {
    background-color: #4a4a4a;
    color: #e2e2e2;
  }
  html:not([data-dark-mode=disabled]) #lightModeSwitch {
    color: #b0b0b0;
    font-weight: normal;
  }
  html:not([data-dark-mode=disabled]) #lightModeSwitch:hover {
    cursor: pointer;
  }
  html:not([data-dark-mode=disabled]) #darkModeSwitch {
    font-weight: 600;
    color: #e2e2e2;
  }
  html:not([data-dark-mode=disabled]) #darkModeSwitch:hover {
    cursor: default;
  }
  html:not([data-dark-mode=disabled]) .button {
    border-color: #e2e2e2;
    color: #e2e2e2;
  }
  html:not([data-dark-mode=disabled]) .button.button-active {
    background-color: #e2e2e2;
    color: #161616;
  }
}
@media (prefers-color-scheme: dark) and (min-width: 992px) {
  html:not([data-dark-mode=disabled]) .button:not(.button-active):hover {
    background-color: #e2e2e2;
    color: #303030;
  }
}
@media (prefers-color-scheme: dark) {
  html:not([data-dark-mode=disabled]) .site-header,
  html:not([data-dark-mode=disabled]) .site-footer,
  html:not([data-dark-mode=disabled]) .text-box,
  html:not([data-dark-mode=disabled]) .controls {
    border-color: #636363;
  }
  html:not([data-dark-mode=disabled]) .site-header-branding img {
    filter: invert(100%);
  }
  html:not([data-dark-mode=disabled]) .site-footer a {
    color: #e2e2e2;
  }
  html:not([data-dark-mode=disabled]) .site-footer-credits {
    background-color: #303030;
    border-color: #636363;
  }
  html:not([data-dark-mode=disabled]) .arrow-link-framed {
    border-color: #e2e2e2;
  }
  html:not([data-dark-mode=disabled]) .category {
    border-color: #e2e2e2;
  }
  html:not([data-dark-mode=disabled]) .category-system {
    border-color: #636363;
  }
}
@media (prefers-color-scheme: dark) and (min-width: 992px) {
  html:not([data-dark-mode=disabled]) .category-system {
    border-color: #e2e2e2;
  }
}
@media (prefers-color-scheme: dark) {
  html:not([data-dark-mode=disabled]) .category-nav-item.active {
    background-color: #4a4a4a;
  }
}
@media (prefers-color-scheme: dark) and (min-width: 992px) {
  html:not([data-dark-mode=disabled]) .category-nav-item:not(.active):hover {
    background-color: #303030;
  }
}
@media (prefers-color-scheme: dark) {
  html:not([data-dark-mode=disabled]) .issue {
    background-color: #303030;
  }
  html:not([data-dark-mode=disabled]) .issue[style^=background-color] {
    color: #161616;
  }
  html:not([data-dark-mode=disabled]) .issue-affected-system {
    background-color: #4a4a4a;
  }
  html:not([data-dark-mode=disabled]) .issue-affected-system:hover {
    outline-color: #636363;
  }
  html:not([data-dark-mode=disabled]) .issue-details-affected-system {
    border-color: #636363;
  }
  html:not([data-dark-mode=disabled]) .issue-details-affected-system:hover {
    border-color: #e2e2e2;
  }
}

/*# sourceMappingURL=hm-status.css.map */
