.g-aikit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--g-spacing-2);
  width: 100%;
  box-sizing: border-box;
  background: var(--g-aikit-header-background);
}
.g-aikit-header__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.g-aikit-header__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--g-spacing-2);
}
.g-aikit-header__title-container {
  display: flex;
  gap: var(--g-spacing-1);
  flex: 1;
  min-width: 0;
  align-items: baseline;
}
.g-aikit-header__title-container_position_left {
  justify-content: flex-start;
}
.g-aikit-header__title-container_position_center {
  justify-content: center;
}
.g-aikit-header__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}
.g-aikit-header__preview {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.g-aikit-header__action-button {
  flex-shrink: 0;
}
.g-aikit-header__menu-sheet-content {
  padding-bottom: var(--g-spacing-2);
}