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: 0;
  min-width: 320px;
  min-height: 100vh;
  background-color: #F4F6F8;
  color: #263238;
}

/* Hide Vue app content until Vue is ready, while keeping loader visible. */
[v-cloak] {
  position: relative;
}

[v-cloak] > v-app,
[v-cloak] v-app {
  display: none !important;
}

.vue-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F4F6F8;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

[v-cloak] > .vue-loader {
  display: flex !important;
}

:not([v-cloak]) > .vue-loader {
  display: none !important;
}

.vue-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #E0E0E0;
  border-top: 4px solid #0B3C5D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}