html {
  box-sizing: border-box;
}

body {
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

:host {
  font-family: var(--c-font-family);
}

::-ms-reveal {
  display: none;
}

:host {
  /**
   * @prop --c-toolbar-background-color: Toolbar background color
   * @prop --c-toolbar-text-color: Toolbar text color
   */
  --_c-toolbar-background-color: var(--c-toolbar-background-color, var(--c-white));
  --_c-toolbar-text-color: var(--c-toolbar-text-color, var(--c-text-system));
  z-index: 1;
}
:host .c-toolbar {
  align-items: center;
  background: var(--_c-toolbar-background-color);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1607843137);
  color: var(--_c-toolbar-text-color);
  column-gap: 12px;
  display: flex;
  height: 60px;
  padding-left: 16px;
  padding-right: 16px;
  position: fixed;
  width: 100%;
}
:host .spacer {
  height: 60px;
  width: 100%;
}

:host(.relative) .c-toolbar {
  position: relative;
  margin-bottom: -60px;
}