*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  color: var(--c-ink);
  background: var(--c-bg);
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}

body.theme-bella-vitalis {
  background:
    linear-gradient(180deg, rgba(242, 232, 32, 0.16), rgba(43, 156, 179, 0.08) 42%, rgba(242, 243, 245, 0.94)),
    var(--c-bg);
}

body.theme-fitnesswerk {
  background:
    linear-gradient(180deg, rgba(143, 22, 50, 0.16), rgba(143, 22, 50, 0.07) 48%, rgba(242, 243, 245, 0.94)),
    var(--c-bg);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.boot-error {
  padding: 24px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-md);
  color: #991b1b;
  font-size: 14px;
  line-height: 1.5;
}

.boot-error a {
  color: #991b1b;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
