:root {
  --color-navbar: #c12127;
  --color-promotion: #eb2225;
  --color-sidebar: #d2d3d5;
  --color-panel: #eeefef;
  --color-field: #fff;
  --color-field-disabled: #e9ecef;
  --color-cta: #ffc107;
  --color-text: #111;
  --color-muted: #5c636a;
  --color-border: #ced4da;
  --color-focus: #0d6efd;
  --font-family-base: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --border-subtle: 1px solid var(--color-border);
  --navbar-height: 5.25rem;
  --sidebar-width: 6.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-weight: 400;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select {
  font: inherit;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 0.1875rem solid var(--color-focus);
  outline-offset: 0.1875rem;
}

.app-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
