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;
}

.thinking-loader {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    height: 1em;
    margin-left: 6px;
}

    .thinking-loader .dot {
        width: 6px;
        height: 6px;
        background-color: #333;
        border-radius: 50%;
        animation: bounce 1s infinite ease-in-out;
    }

        .thinking-loader .dot:nth-child(1) {
            animation-delay: 0s;
        }

        .thinking-loader .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .thinking-loader .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

html, body {
    height: 100%;
    margin: 0;
}

.full-height {
    min-height: 100vh;
    height: 100%;
}