:host {
  /**
   * @prop --background: Background of the list header
   * @prop --color: Color of the list header text
   *
   * @prop --border-color: Color of the list header border
   * @prop --border-width: Width of the list header border
   * @prop --border-style: Style of the list header border
   *
   * @prop --inner-border-width: Width of the inner list header border
   */
  --background: transparent;
  --color: var(--bkkr-text-color, #000);
  --border-color: transparent;
  --border-style: solid;
  --border-width: 0;
  --inner-border-width: 0;
  --opacity: 0.85;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: calc(var(--safe-area-left, 0px) + var(--bkkr-spacer, 16px));
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  border-width: var(--border-width);
  border-style: var(--border-style);
  border-color: var(--border-color);
  background: var(--background);
  color: var(--color);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: var(--opacity);
  overflow: hidden;
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  :host {
    padding-left: unset;
    -webkit-padding-start: calc(var(--safe-area-left, 0px) + var(--bkkr-spacer, 16px));
    padding-inline-start: calc(var(--safe-area-left, 0px) + var(--bkkr-spacer, 16px));
  }
}