/* Notification Banner - Manually compiled from SCSS */
.notification-banner {
  position: relative;
  width: 100%;
  background-color: #ffa600;
  color: #ffffff;
  z-index: 1000;
  display: none;
}

.notification-banner.is-visible {
  display: block;
}

.notification-banner:not(.is-visible) {
  display: none;
}

.notification-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.notification-banner-text {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  flex: 1;
}

.notification-banner-link {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: normal;
  font-size: inherit;
  transition: all 150ms cubic-bezier(0.5, 0, 0, 1);
  display: inline;
}

.notification-banner-link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .notification-banner-content {
    padding: 10px 20px;
  }

  .notification-banner-text {
    font-size: 13px;
    text-align: center;
  }

  .notification-banner-link {
    font-size: inherit;
    margin-left: 8px;
    margin-top: 0;
    display: inline;
  }
}

body.has-notification-banner .navigation-top {
  margin-top: 0;
}

