/* :root {
  --blue: hsl(206,72%,68%);
  --green: hsl(120,42%,54%);
  --white: hsl(0, 0%, 100%);
  --grey: hsl(226,10%,55%);
  --disa: hsl(226,15%,83%);
} */

/* body {
  background-color: hsl(0, 0%, 90%);
  font-family: 'Open Sans', sans-serif;
} */

#progress {
  min-width: 60%;
  height: 80px;
  /* border: 1px solid red; */
}

#steps {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 120px;
  /* Jarak antar step */
  /* margin: 30px auto; */
  position: relative;
  /* overflow-x: auto; */
  padding-bottom: 20px;
  /* border: 1px solid blue; */
  height: 80px;
}

.step {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #ddd;
  font-weight: bold;
  font-size: 13px;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Garis antar step */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 120px;
  height: 3px;
  background-color: #ddd;
  transform: translateY(-50%);
  z-index: 0;
  margin-left: 2.6px;
}

/* Label di bawah */
.step::before {
  content: attr(data-desc);
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: bold;
  color: #666;
  white-space: nowrap;
  text-align: center;
}

/* Active step */
.step.active {
  border-color: #50a8f2;
  color: #50a8f2;
}

.step.active::after {
  /* background: linear-gradient(to right, #2ecc71, #50a8f2); */
}

/* Done step */
.step.done {
  background-color: #2ecc71;
  border-color: #2ecc71;
  color: #fff;
}

.step.done::after {
  /* background-color: #2ecc71; */
  background: linear-gradient(to right, #2ecc71, #50a8f2);
}