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;
}

.load-spinner {
    position: relative; /* Needed so overlay is positioned correctly */
}

.load-spinner::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0, right:0, bottom:0, left:0 */
    background: rgba(255, 255, 255, 0.6); /* overlay color */
    z-index: 10;
}

.load-spinner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px; /* doubled */
    height: 64px; /* doubled */
    margin-top: -32px; /* half the size negative for perfect centering */
    margin-left: -32px;
    border: 6px solid rgba(0, 0, 0, 0.2); /* slightly thicker border */
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    z-index: 11;
}


@keyframes spin {
    to {
    transform: rotate(360deg);
    }
}
