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

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

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Fix: ensure color-red is actually red even inside .white-color containers */
.color-red {
    color: #be1e2d;
}

/* Schedule hamburger/collapse icon - use Unicode so no FontAwesome CDN required */
.schedule > ul > li:after {
    font-family: sans-serif;
    content: "\2630"; /* ☰ */
}
.schedule > ul > li.active:after {
    content: "\2212"; /* − */
}

/* Navbar */
.navbar-logo {
    width: 13em;
}

/* Footer */
.footer-hr {
    width: 70%;
    margin: 1rem auto;
}

.footer-nav-row {
    width: 70%;
    margin: auto;
}

.footer-heading {
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 0;
}

.footer-link {
    margin: 0 0 10px;
    font-size: 15px;
    color: #999;
}

.footer-social-icon {
    width: 10%;
}

.footer-copyright {
    font-size: .8em;
}

.footer-legal-link {
    color: white;
}