/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Feb 17, 2025, 11:14:22 AM
    Author     : nmaltaisdans2013
*/

.stepper-wrapper {
  font-family: Arial;
  margin-top: 0px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  flex: 1;

/*  @media (max-width: 768px) {
    font-size: 12px;
  }*/
}

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

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

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ccc;
  margin-top: 8px;
  margin-bottom: 6px;
}
.stepper-item {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
}

.stepper-item.active .step-counter {
  background-color: #4bb543;
  width: 40px;
  height: 40px;
  margin-top: 0px;
  margin-bottom: 6px;
  color: white;
  box-shadow: #5f5f5f 1px 1px 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: #4bb543;
  color: white;
}

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

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}
.step-name {
    text-align: center;
    text-wrap: pretty;
    width: 100%;
    padding: 0px 5px;
}