.site-top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #c40000;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-top-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 16px;
  text-align: center;
}

.site-top-banner a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.site-top-banner a:hover,
.site-top-banner a:focus {
  text-decoration: underline;
}

body.has-top-banner {
  --top-banner-offset: 0px;
}

/* Add body padding only when we have a fixed navbar (set via JS) */
body.has-top-banner.has-fixed-nav {
  padding-top: var(--top-banner-offset);
}

/* Push down fixed navbars - they need top offset because they're position:fixed */
body.has-top-banner .navbar-fixed-top,
body.has-top-banner .sticky-header,
body.has-top-banner .fixed-header,
body.has-top-banner .navigation.sticky {
  top: var(--top-banner-offset) !important;
}

/* For static navbars, use margin-top to push them down */
body.has-top-banner .navbar-static-top {
  margin-top: var(--top-banner-offset);
}
