<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* FAU Alert */
.fau-alert {
  display: grid;
  grid-template-columns: 60px auto;
  grid-template-areas: "icon title" "icon content" "icon link";
  position: relative;
  align-items: start;
  column-gap: 24px;
  row-gap: 1.5rem;
  background: #ffe200;
  color: #000;
  font-size: 18px;
  padding: 2rem 10% 2rem 3rem;
}
@media screen and (max-width: 991px) {
  .fau-alert {
    padding: 2rem 15% 2rem 3rem;
  }
}
@media screen and (max-width: 640px) {
  .fau-alert {
    grid-template-columns: 1fr;
    grid-template-areas: "icon" "title" "content" "link";
    padding: 2rem;
  }
}
.fau-alert.closed {
  grid-template-areas: "icon title";
  align-items: center;
  min-height: 80px;
  padding: 1rem 2rem;
}
.fau-alert.closed:hover {
  background: #f1d600;
  cursor: pointer;
}
.fau-alert.closed .alert-title span,
.fau-alert.closed .alert-content,
.fau-alert.closed .alert-link {
  display: none;
}
.fau-alert.closed .alert-icon {
  font-size: 48px;
}
@media screen and (max-width: 640px) {
  .fau-alert.closed .alert-icon {
    align-self: center;
  }
}
.fau-alert.closed .alert-toggle {
  align-items: center;
}
.fau-alert.closed .alert-toggle button {
  transform: rotate(45deg);
}
@media screen and (max-width: 640px) {
  .fau-alert.closed .alert-title {
    padding-right: 10%;
    font-size: 24px;
  }
}
.fau-alert .alert-toggle {
  position: absolute;
  display: flex;
  align-items: start;
  height: 100%;
  top: 0;
  right: 0;
  padding: 2rem;
}
.fau-alert .alert-toggle button {
  font-size: 22px;
  font-weight: bold;
  padding: 18px;
  border-radius: 50%;
  color: #000;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 640px) {
  .fau-alert .alert-toggle button {
    font-size: 18px;
    padding: 16px;
  }
}
.fau-alert .alert-toggle button:hover {
  background-color: #f1d600;
}
.fau-alert .alert-icon {
  font-size: 60px;
  grid-area: icon;
  align-self: center;
  line-height: 1;
  transition: all 0.15s ease;
}
@media screen and (max-width: 991px) {
  .fau-alert .alert-icon {
    align-self: start;
  }
}
@media screen and (max-width: 640px) {
  .fau-alert .alert-icon {
    font-size: 54px;
  }
}
.fau-alert .alert-title {
  grid-area: title;
  font-family: var(--body-font);
  font-size: 34px;
  padding-right: 20%;
  text-transform: uppercase;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  .fau-alert .alert-title {
    padding-right: 40%;
    font-size: 26px;
    line-height: 1.1;
  }
}
.fau-alert .alert-content {
  grid-area: content;
  font-family: var(--bold-font);
  line-height: 1.3;
}
.fau-alert .alert-link {
  grid-area: link;
  font-family: var(--bold-font);
}
.fau-alert .alert-link a {
  color: #000;
  text-decoration: underline;
}

/*# sourceMappingURL=emergency-alerts.css.map */
</pre></body></html>