html {
  font-size: 14px;
}

/* Red asterisk after labels of required form fields. The .required-field
   class is added by the layout-level JS that scans [required] inputs and
   tags the matching <label for="..."> automatically — so adding `required`
   to a form input is enough to get the visual cue, no markup change needed. */
label.required-field::after {
  content: " *";
  color: #dc3545;
  font-weight: bold;
}

/* Tom Select shows the *selected* option as a .item div inside .ts-control.
   When the empty <option value=""> is selected, that .item is empty but
   still takes up the control's full height — looked like a stray
   horizontal line. Hide it so the closed control shows nothing (or the
   placeholder, if one is set). */
.ts-control .item[data-value=""] {
  display: none;
}

@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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}