.progress-bar {
  width: 100%;
  margin-bottom: 70px;
}

.progress-bar > .prog-line {
  height: 1px;
  width: 50px;
  border-bottom: 2px solid var(--lightgray);
  margin: 0px 10px;
}

.progress-bar > .prog-item {
  font-size: var(--t-small);
  color: var(--lightgray);
}

.progress-bar > .prog-item.prog-active {
  border-color: #FBB03B;
  color: #FBB03B;
}

@media screen and (max-width: 768px) {
  .progress-bar {
    margin-bottom: 50px;
  }

  .prog-item > span {
    display: none;
  }

  .prog-item {
    width: 12px;
    height: 12px;
    border-radius: 16px;
    background-color: var(--lightgray);
  }

  .prog-item.prog-active {
    width: 18px;
    height: 18px;
    background-color: var(--yellow);
  }

  .prog-item.prog-finished {
    width: 18px;
    height: 18px;
    background-color: var(--lightgray);
  }
}