@keyframes animate-text {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.alert {
  background: #4d4d4d;
  color: #fff;
  display: block;
}
.alert.animate-out {
  animation-name: fadeOut;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.alert-container {
  max-width: 1440px;
  width: 100%;
  padding-right: 45px !important;
  padding-left: 45px !important;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  grid-template-rows: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 767.98px) {
  .alert-container {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
}
@media (min-width: 576px) {
  .alert-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .alert-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .alert-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .alert-container {
    max-width: 1440px;
  }
}
@media (max-width: 767.98px) {
  .alert-container {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
.alert-copy .title {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.alert-copy .title {
  font-size: 16px;
}
@media (min-width: 575px) {
  .alert-copy .title {
    font-size: calc(16px + 2 * (100vw - 575px) / 1025);
  }
}
@media (min-width: 1600px) {
  .alert-copy .title {
    font-size: 18px;
  }
}
.alert-icon {
  align-self: center;
  justify-self: center;
}
.alert-icon {
  font-size: 50px;
}
@media (min-width: 575px) {
  .alert-icon {
    font-size: calc(50px + 25 * (100vw - 575px) / 1025);
  }
}
@media (min-width: 1600px) {
  .alert-icon {
    font-size: 75px;
  }
}
@media (max-width: 767.98px) {
  .alert-icon {
    display: none;
  }
}
.alert-close {
  transition: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  padding: 0;
  align-self: center;
  color: #fff;
  justify-self: center;
}
.prefers-reduced-motion .alert-close {
  transition: none;
}
.alert-close:hover, .alert-close:focus {
  background-color: transparent;
}
.alert-close {
  font-size: 18px;
}
@media (min-width: 575px) {
  .alert-close {
    font-size: calc(18px + 7 * (100vw - 575px) / 1025);
  }
}
@media (min-width: 1600px) {
  .alert-close {
    font-size: 25px;
  }
}
.alert-close:hover {
  color: #fff;
}
.alert-close:before {
  content: "\f11b";
  font-family: "icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
}
@media (max-width: 767.98px) {
  .alert-close {
    grid-row: 1;
    justify-self: end;
  }
}
.alert--emergency {
  background: #009BA8;
}
.alert--announcement {
  background: #D9F1F1;
  color: #1a1a1a;
}
.alert--announcement .alert-container {
  grid-template-columns: 1fr auto;
}
@media (min-width: 1200px) {
  .alert--announcement .alert-container {
    max-width: 1600px;
  }
}
@media (max-width: 767.98px) {
  .alert--announcement .alert-container {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
.alert--announcement .alert-copy .title {
  color: #1a1a1a;
}
.alert--announcement .alert-copy .alert-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.alert--announcement .alert-close {
  color: #1a1a1a;
  font-size: 15px;
  position: relative;
}
.alert--announcement .alert-close::after {
  content: "";
  position: absolute;
  inset: -10px;
}
.alert--announcement .alert-close:hover, .alert--announcement .alert-close:focus {
  color: #1a1a1a;
}
.alert--announcement.alert--not-dismissible .alert-container {
  grid-template-columns: 1fr;
}