:root {
  --primary: #bc321c;
  --secondary: #bd5255;
  --tertiary: #f9efef;
  --white: #fff;
  --black: #000;
  --font: #4a4a4a;
  --font-family: Manrope, helvetica, arial, sans-serif;

  --accent: var(--tertiary);
  --primary-fg: var(--white);
  --body-fg: var(--font);
  --body-bg: var(--white);
  --body-quiet-color: var(--font);
  --body-loud-color: var(--black);
  --header-color: var(--tertiary);
  --header-branding-color: var(--accent);
  --header-bg: var(--secondary);
  --header-link-color: var(--primary-fg);
  --breadcrumbs-fg: #c4dce8;
  --breadcrumbs-link-fg: var(--body-bg);
  --breadcrumbs-bg: var(--primary);
  --link-fg: var(--primary);
  --link-hover-color: var(--primary);
  --link-selected-fg: var(--primary);
  --hairline-color: #e8e8e8;
  --border-color: #ccc;
  --error-fg: #ba2121;
  --message-success-bg: #dfd;
  --message-warning-bg: #ffc;
  --message-error-bg: #ffefef;
  --darkened-bg: #f8f8f8;
  --selected-bg: #e4e4e4;
  --selected-row: var(--tertiary);
  --button-fg: var(--white);
  --button-bg: var(--primary);
  --button-hover-bg: var(--secondary);
  --default-button-bg: var(--secondary);
  --default-button-hover-bg: var(--primary);
  --close-button-bg: #888;
  --close-button-hover-bg: #747474;
  --delete-button-bg: #ba2121;
  --delete-button-hover-bg: #a41515;
  --object-tools-fg: var(--button-fg);
  --object-tools-bg: var(--close-button-bg);
  --object-tools-hover-bg: var(--close-button-hover-bg);
}

body,
html {
  background-color: var(--white);
  color: var(--body-fg);
  font: 16px var(--font-family);
  line-height: 1.3em;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.copyright {
  background-color: var(--accent);
  border-radius: 3px;
  font-family: var(--font-family);
  font-size: 0.8rem;
  padding: 0.5rem;
}

.copyright a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

div.app-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 120px 0 60px;
}

div.app-qrs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

a.app-link {
  flex: 1;
  color: var(--secondary);
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  max-width: 400px;
}

/* moves debug toolbar handle */
#djDebug #djDebugToolbarHandle {
  top: 6vh !important;
}
