:root {
  --line-border-fill: #3498db;
  --line-border-empty: #e0e0e0;
}



.progress-container::before {
  content: "";
  background: var(--line-border-empty);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  z-index: -1;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
  max-width: 100%;
  width: 92%;
  margin: auto;
}

.progress {
  background: #ff898f;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  z-index: -1;
  transition: 0.4s ease;
}

.circle {
  background: #ffffff;
  color: #999;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--line-border-empty);
  transition: .4s ease;
  position: relative;
}

.circle.active {
  border-color: #ff898f;
}

.btn {
  background-color: var(--line-border-fill);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  border: 0;
  border-radius: 6px;
  padding: 8px 30px;
  margin: 5px;
  font-size: 14px;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus {
  outline: 0;
}

.btn:disabled {
  background-color: var(--line-border-empty);
  cursor: not-allowed;
}
.circle p {
  position: absolute;
  top: -35px;
  color: #999;
  font-weight: 400;
  width: auto;
  text-align: center;
  white-space: nowrap;
}

.productStatusBody {
  width: 100%;
  padding: 50px 0;
}