html {
  scroll-behavior: smooth;
}

/* Styles for Application Form */
.green {
  background-color: #00b050;
}

.label {
  font-size: 8pt;
  color: #00b050;
  font-style: italic;
}

.tahoma {
  font-family: Tahoma, sans-serif;
}

.arial {
  font-family: Arial, sans-serif;
}
/* End styles for Application Form */

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  /* height: 15px;
    width: 15px; */
  margin: 0 2px;
  color: #212529;
  border: none;
  /* border-radius: 50%; */
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  color: #198754;
}
