.sib-global-header {
  align-items: center;
  background: var(--brand-white);
  color: var(--brand-white);
  display: flex;
  height: 56px;
  padding: 8px 32px;
  position: relative;
  z-index: var(--sib-z-index_header, 900);
}
.sib-global-header--with-logo {
  padding-left: 20px;
}
.sib-global-header__logo--wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
}
.sib-global-header__logo {
  margin-right: 32px;
}
.sib-global-header .sib-global-header__logo-loading {
  background-color: var(--brand-forest-green-600);
  margin-right: 32px;
}
.sib-global-header .sib-global-header__logo-loading-mobile {
  background-color: var(--brand-forest-green-600);
  margin-right: 24px;
}
.sib-global-header .sib-global-header__usage-loading {
  margin: 0 6px 0 0;
}
.sib-global-header .sib-global-header__user-pilot-loading {
  margin: 0 6px;
}
.sib-global-header .sib-global-header__notification-loading {
  margin: 0 6px;
}
.sib-global-header .sib-global-header__profile-loading {
  margin: 0 0 0 6px;
}
.sib-global-header__navbar {
  align-items: center;
  display: flex;
  flex: 1 1;
  justify-content: space-between;
}
.sib-global-header__right-actions {
  align-items: center;
  display: inline-flex;
  flex: 1;
  gap: 8px;
  justify-content: end;
  list-style: none;
  margin: 0;
  max-width: 100%;
  padding: 0;
  vertical-align: bottom;
}
.sib-global-header__right-actions--control {
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
  padding-top: 8px;
}
.sib-global-header__right-actions--control .sib-user-profile .sib-btn {
  padding: 12px;
}
.sib-global-header__right-actions--control .sib-user-profile .sib-btn .sib-btn--label,
.sib-global-header__right-actions--control .sib-user-profile .sib-btn .ellipsis {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  max-width: 104px;
}
.sib-global-header__right-actions--control .sib-btn {
  color: var(--brand-black);
}
.sib-global-header .sib-dropdown .sib-dropdown-root .sib-dropdown-menu {
  max-height: calc(100vh - 70px);
}
.sib-global-header--mobile {
  background: #e8fedf;
  display: inline-flex;
  justify-content: space-between;
  min-width: 100%;
  padding: 8px 20px;
}
.sib-global-header--mobile .sib-global-header__logo {
  margin-right: 24px;
}
.sib-global-header--mobile .sib-global-header__right-actions .sib-header-overlay {
  position: fixed;
}
.sib-global-header--mobile-breadcrumbs {
  margin: 0;
  margin-top: 32px;
  padding: 0;
}
.sib-header-overlay {
  background-color: #fff;
  height: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 3.5rem;
  transition: height 0.3s ease;
  width: 100%;
  z-index: calc(var(--sib-z-index_header, 900) - 1);
}
.sib-header-overlay.sib-header-overlay-toggled {
  height: calc(100% - 3.5rem);
  position: fixed;
}
@media screen and (max-width: 640px) {
  .sib-global-header .sib-global-header__usage-loading {
    margin: 0 12px 0 0;
  }
  .sib-global-header .sib-global-header__user-pilot-loading {
    margin: 0 12px;
  }
  .sib-global-header .sib-global-header__notification-loading {
    margin: 0 12px;
  }
  .sib-global-header .sib-global-header__profile-loading {
    margin: 0 0 0 12px;
  }
}
@media screen and (max-width: 330px) {
  .sib-global-header .sib-global-header__user-pilot-loading {
    margin: 0 16px 0 0;
  }
  .sib-global-header .sib-global-header__right-actions > :first-child {
    display: none;
  }
}

