.progress-bar {
  position: relative;
}

.progress-bar__list {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: space-between;
}

.progress-bar__list::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--colorBlue);
  width: 100%;
  left: 0;
  z-index: -1;
}

.progress-bar__title {
  text-align: center;
  margin-top: 0;
}

.progress-bar__list-item {
  display: flex;
  align-items: center;
}

.progress-bar__list-item::before {
  content: none;
}

.progress-bar__list-item-wrap {
  transition: background 0.3s;
  background: var(--colorWhite);
  display: block;
  color: var(--colorBlue);
  padding: 16px 14px;
  border: solid 1px var(--colorBlue);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 7px;
}

.progress-bar__list-item-wrap-active,
.progress-bar__list-item-wrap:hover {
  background: var(--colorBlue);
  color: var(--colorWhite);
}
