.shop-progress-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;

  display: none; /* sieb; temp weg want te veel werk voor nu */
}
.shop-progress-bar .shop-progress-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

@media (max-width: 768px) {
    
    .shop-progress-bar .shop-progress-item {
        font-size: 12px;
    }
    
}


.shop-progress-bar .shop-progress-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.shop-progress-bar .shop-progress-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.shop-progress-bar .shop-progress-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.shop-progress-bar .shop-progress-item.active {
  font-weight: bold;
  color: #000;
}

.shop-progress-bar .shop-progress-item.completed .step-counter {
  background-color: var(--color);
}

.shop-progress-bar .shop-progress-item:not(.active) .step-name {
  color: #666;
}

.shop-progress-bar .shop-progress-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #4bb543;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.shop-progress-bar .shop-progress-item:first-child::before {
  content: none;
}
.shop-progress-bar .shop-progress-item:last-child::after {
  content: none;
}
