.fsa-progressbar-labels,
.fsa-progressbar-dot,
.fsa-progressbar-description {
  margin: 0 5px;
}

.fsa-progressbar-labels {
  display: flex;
}

.fsa-progressbar-label {
  flex-grow: 1;
  color: var(--fsa-color-police-blue);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fsa-progressbar-score {
  margin-left: 10px;
  color: var(--fsa-color-police-blue);
  font-size: 1.6rem;
  font-weight: 900;
}

.fsa-progressbar {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.fsa-progressbar-dots {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.fsa-progressbar-dot {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background-color: var(--fsa-color-columbia-blue);
  transition: background-color 0.3s ease;
}

.fsa-progressbar-dot.filled {
  background-color: var(--fsa-color-blueberry);
}

@media (max-width: 991.98px) {

  .fsa-progressbar-label,
  .fsa-progressbar-description {
    font-size: 0.9rem;
  }

  .fsa-progressbar-score {
    font-size: 1rem;
  }

  .fsa-progressbar-dots {
    margin: 10px 0;
  }

  .fsa-progressbar-dot {
    margin: 0 2px;
    width: 10px;
    height: 10px;
    border-radius: 3.5px;
  }
}

@media (max-width: 767.98px) {}