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;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Workflow Stepper Mobile */
@media (max-width: 768px) {
  .step-label {
    font-size: 0.6rem;
    white-space: normal;
    line-height: 1.1;
    max-width: 70px;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .stepper-line-bg,
  .stepper-line-active {
    top: 14px;
  }

  .step-circle.active {
    box-shadow: 0 0 0 3px white, 0 0 0 5px rgba(62, 181, 245, 0.2);
  }
}