.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 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    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 (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: 1140px; } }
    @media (max-width: 767.98px) {
      .alert-container {
        grid-template-columns: 100%;
        grid-template-rows: auto; } }
  .alert-copy .title {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    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: #e77070; }
