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 {
  display: block;
}
:host menu {
  margin: 0;
  padding: 0;
}
:host footer {
  padding: 0 var(--_c-card-gap, 24px);
}

.c-card-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}
.c-card-actions ::slotted(c-button[fit]) {
  flex: 1;
}
.c-card-actions--align-center {
  align-items: center;
}
.c-card-actions--align-start {
  align-items: flex-start;
}
.c-card-actions--align-end {
  align-items: flex-end;
}
.c-card-actions--justify-center {
  justify-content: center;
}
.c-card-actions--justify-end {
  justify-content: flex-end;
}
.c-card-actions--justify-start {
  justify-content: flex-start;
}
.c-card-actions--justify-stretch {
  justify-content: stretch;
}
.c-card-actions--justify-stretch ::slotted(*) {
  flex: 1;
}
.c-card-actions--justify-space-between {
  justify-content: space-between;
}
.c-card-actions--justify-space-around {
  justify-content: space-around;
}