html {
    font-family: 'Roboto', sans-serif;
    /*    font-family: "Inter", sans-serif;*/
    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;
}

.busy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    z-index: 9999;
}

.busy-loader {
    text-align: center;
    color: white;
    font-size: 36px;
    font-family: system-ui;
}

.busy-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid #ffffff;
    border-radius: 50%;
    animation: busy-spin 1s linear infinite;
    margin: auto;
    margin-bottom: 15px;
}

@keyframes busy-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.busy-text {
    opacity: 0.9;
    letter-spacing: 0.5px;
}
