@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

html,
* {
  font-family: "Libre Franklin", sans-serif;
}

/* 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;
  background-color: #bbbbbb;
  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 {
  background-color: #04aa6d;
}

/* Style Applicant Types */
.applicant-type-card {
  cursor: pointer;
  height: 150px;
  background-color: rgba(221, 221, 221, .3);
  font-size: xx-large;
}

.applicant-type-card.active {
  color: white;
  background-color: #009639;
}
