/* =========================================================
   Shared NAHDO / APCD utility navigation
   NAHDO
   ========================================================= */

.shared-nav {
  width: 100%;
  padding: 6px 0;
  background: #123b58;
  color: #fff;
}

/* Make Drupal wrappers fill the container */
.shared-nav .region,
.shared-nav .block,
.shared-nav .block-content {
  width: 100%;
  margin: 0;
}

/* Main shared-nav layout */
.shared-network-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

/* Left and right groups */
.shared-network-nav__sites,
.shared-network-nav__utility {
  display: flex;
  align-items: center;
}

/* Links */
.shared-network-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 13px;
  font-weight: 400;
  line-height: 1;

  text-decoration: none;
  white-space: nowrap;

  transition: color 0.15s ease;
}

/* Remove left padding from first links */
.shared-network-nav__sites a:first-child,
.shared-network-nav__utility a:first-child {
  padding-left: 0;
}

/* Hover */
.shared-network-nav a:hover,
.shared-network-nav a:focus {
  color: #fff;
  text-decoration: none;
}

/* Simple dividers */
.shared-network-nav a + a::before {
  content: "";

  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;

  width: 1px;

  background: rgba(255, 255, 255, 0.28);
}

/* =========================================================
   Current site
   ========================================================= */

.shared-network-nav__sites a.is-active {
  color: #fff;
  font-weight: 700;
}

/* Small active indicator */
.shared-network-nav__sites a.is-active::after {
  content: "";

  position: absolute;
  right: 11px;
  bottom: 0;
  left: 11px;

  height: 2px;

  background: #6fc5d4;
}

/* NAHDO is the first link, so align indicator with left edge */
.shared-network-nav__sites a.is-active:first-child::after {
  left: 0;
}

/* =========================================================
   Utility links
   ========================================================= */

.shared-network-nav__utility a {
  color: rgba(255, 255, 255, 0.72);
}

.shared-network-nav__utility a:hover,
.shared-network-nav__utility a:focus {
  color: #fff;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 575.98px) {

  .shared-nav {
    padding: 5px 0;
  }

  .shared-network-nav {
    min-height: 34px;
  }

  .shared-network-nav a {
    min-height: 34px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }

  .shared-network-nav__sites a:first-child,
  .shared-network-nav__utility a:first-child {
    padding-left: 0;
  }

  .shared-network-nav__sites a.is-active::after {
    right: 8px;
    left: 8px;
  }

  .shared-network-nav__sites a.is-active:first-child::after {
    left: 0;
  }
}