.hello-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.2s ease;
  background-color: var(--ink);
}

body.hello-bar-visible {
  padding-top: var(--hello-bar-height);
}

.hello-bar-content > :last-child {
  margin-bottom: 0;
}

.hello-bar-content a {
  color: inherit;
  font-weight: 600;
}

.hello-bar-close {
  top: 50%;
  transform: translateY(-50%);
}

.hello-bar.is-closing {
  max-height: 0 !important;
  opacity: 0;
}

@media (max-width: 575.98px) {
  .hello-bar-content {
    text-align: left !important;
  }
}
