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-tab-item-padding: Tab item padding
   */
  --_c-tab-item-padding: var(--c-tab-item-padding, 16px 0 0 0);
  display: block;
  min-width: 100%;
  user-select: none;
}
:host > div {
  padding: var(--_c-tab-item-padding);
}

:host([active=true]) {
  height: calc-size(auto, size);
  user-select: auto;
}

:host([active=false]) > div {
  display: none;
}

:host([disabled=true]) {
  min-width: 0;
  width: 0;
  overflow: hidden;
}