#progressbar {
  display: initial;
  padding: 0px;
}

#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 20%;
  float: left;
  position: relative;
  font-weight: 400;
  text-align: center;
}

#progressbar li .icons {
  font-size: 25px;
  color: #000000;
  margin-bottom: 5px;
  text-align: center;
}

#progressbar li .label {
  font-size: 12px;
}

#progressbar li .step {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px;
  background-color: var(--bs-light);
  display: grid;
  place-items: center;
  color: var(--bs-border-color-translucent);
}

.first::after {
  width: 0;
  height: 0;
}

ul li .step .awesome {
  display: none;
}

#progressbar li .label {
  font-size: 11px;
}

#progressbar li .step {
  border-color: var(--bs-secondary);
  border-style: solid;
  border-width: 3px;
}

#progressbar li .ready {
  background-color: var(--bs-secondary);
  color: var(--bs-light);
}

#progressbar li .active {
  background-color: var(--bs-primary);
  color: var(--bs-danger-border-subtle);
}

.progress {
  height: 5px;
  width: 84%;
  background-color: lightgray;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  left: 8%;
  top: 13px;
}

@media (min-width: 576px) {
  .progress {
    top: 71px;
    left: 10%;
    width: 80%;
  }
}

@media (min-width: 768px) {
  .progress {
    top: 71px;
    left: 9%;
  }
}

@media (min-width: 992px) {
  .progress {
    left: 10%;
  }
}

.progress-bar {
  background-color: var(--bs-secondary);
  width: 10%;
  height: 100%;
  transition: width 0.4s ease-in-out;
}

.progress-label {
  font-size: 9px;
}

@media (min-width: 576px) {
  .progress-label {
    font-size: 13px;
  }
}

