/* Style for larger screens */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 50px 20px;
  }
  
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: lightgrey;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
  }
  
  .step-title {
    margin-left: 10px;
    font-size: 18px;
  }
  
  .step-line {
    flex-grow: 1;
    height: 2px;
    background-color: lightgrey;
    margin: 0 10px;
  }
  
  .step.completed .step-number {
    background-color: #21dd86;
  }
  .step-line.completed {
    background: linear-gradient(to right, #21dd86 100%, lightgrey 0%);
  }
  
  .step-line.completed-half {
    background: linear-gradient(to right, #21dd86 50%, lightgrey 50%);
  }
  .quantity-selector-cart {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.quantity-input-cart {
    width: 51px;
    text-align: center;
    margin-right: 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 3.4em;
}

.quantity-controls-cart {
    display: flex;
    flex-direction: column;
}

.quantity-change-cart {
    margin-right: 10px;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    padding: 0px 14px;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    font-size: 1em;
    flex: 1;
}


.quantity-change-cart:active {
    background-color: #e2e2e2;
}
  
  /* Style for screens less than 992px */
  @media (max-width: 992px) {
    .steps-container {
        align-items: flex-start;
      flex-direction: column;
    }
  
    .step {
      flex-direction: row;
      align-items: center;
    }
  
    .step-line {
        
      width: 2px;
      height: 50px; /* Adjust height as needed */
      margin: 8px 14px;
    }
  
    .step-line.completed-half {
       
      background: linear-gradient(to bottom, #21dd86 50%, lightgrey 50%);
    }
  }