/* Style the connect-bar to align the text to the right of the icons */
#header #connect-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
}
#header #connect-bar .connect-items {
  margin: 0;
}
#header #connect-bar .connect-bar-text {
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  margin-left: 2em;
  white-space: nowrap;
}
@media (max-width: 600px) {
  #header #connect-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
  #header #connect-bar .connect-bar-text {
    margin-left: 0;
    margin-top: 0.5em;
  }
}
