:root {
  --toolume-network-height: 40px;
}

.toolume-network {
  position: sticky;
  z-index: 10000;
  top: 0;
  height: var(--toolume-network-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #070b12;
  color: #e9eef7;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.toolume-network__inner {
  width: min(calc(100% - 32px), 1180px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toolume-network a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  color: inherit;
  font-size: 12px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.toolume-network a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.toolume-network__home {
  padding: 0 7px 0 4px;
}

.toolume-network__mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 211, 235, 0.34);
  border-radius: 6px;
  background: #091722;
  color: #37d3ec;
}

.toolume-network__mark svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.toolume-network__divider {
  color: #455268;
  font-size: 12px;
}

.toolume-network__site {
  min-width: 0;
  overflow: hidden;
  color: #9eabba;
  font-size: 12px;
  font-weight: 570;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toolume-network__all {
  margin-left: auto;
  padding-inline: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c8d2df !important;
}

.toolume-network__all span[aria-hidden="true"] {
  color: #37d3ec;
  font-size: 14px;
  transition: transform 150ms ease;
}

.toolume-network__all:hover span[aria-hidden="true"] {
  transform: translateX(2px);
}

.toolume-network + .site-header,
body > .toolume-network ~ .site-header {
  top: var(--toolume-network-height) !important;
}

@media (max-width: 540px) {
  :root {
    --toolume-network-height: 44px;
  }

  .toolume-network__inner {
    width: calc(100% - 20px);
    gap: 7px;
  }

  .toolume-network a {
    min-height: 36px;
  }

  .toolume-network__all {
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .toolume-network a,
  .toolume-network__all span[aria-hidden="true"] {
    transition: none;
  }
}

@media print {
  .toolume-network {
    display: none !important;
  }
}
