html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--bs-body-bg);
  border: 2px solid var(--bs-primary);
}

main:focus {
  outline: none;
}

/* The validation summary is always rendered; show its alert box only when it has errors. */
.validation-summary-valid {
  display: none;
}

.validation-summary-errors ul {
  margin-bottom: 0;
}

/* Justified text from sanitised rich text (FR-071); Bootstrap 5 has no such utility. */
.text-justify {
  text-align: justify;
}

