#emergency-notification {
  background-color: #f5dc69;
  color: #0d1e1c;
  position: relative;
  z-index: 6;

  .hidden {
    display: none;
  }
}

.notification-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;

  @media screen and (min-width: 1024px) {
    padding-right: 36px;
    padding-left: 36px;
  }

  @media screen and (min-width: 1440px) {
    padding-right: 140px;
    padding-left: 140px;
  }
}

#emergency-notification .emergency-notification__message {
  display: flex;
}

#emergency-notification .emergency-notification__message .wrapper {
  display: flex;
}

#emergency-notification
  .emergency-notification__message
  .emergency-notification__icon {
  display: block;
  background-image: url('RAVE-emergency-banner-icon.svg');
  background-size: 6rem;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 10rem;
  width: 7rem;
  margin: 0;

  @media screen and (max-width: 768px) {
    position: relative;
    top: -27px;
    background-size: 2rem;
    width: 3rem;
  }
}

#emergency-notification .emergency-notification__message .wrapper + .wrapper {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 45em;
}

#emergency-notification h2,
#emergency-notification p,
#emergency-notification a,
#emergency-notification span {
  display: inline;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0;
  width: 100%;
  max-width: 656px;
}

#emergency-notification h2 {
  font-family: 'National 2', Arial, sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 14px;
  margin-top: 24px;
  line-height: 1.2;

  @media screen and (max-width: 768px) {
    font-size: 1.2rem;
  }
}

#emergency-notification p {
  margin: 0.03rem 0 0;
  font-family: 'National 2', Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
}

#emergency-notification a {
  text-decoration: underline;
  font-size: inherit;
  color: inherit;
}

#emergency-notification a:hover,
#emergency-notification a:focus {
  text-decoration: none;
}

#emergency-notification a:focus {
  outline-style: dotted;
}

#emergency-notification span {
  font-size: 14px;
  margin: 0;
  font-family: 'National 2', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
