@charset "UTF-8";


.stepper {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0;
    
}

.steps-horizontal::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step-horizontal {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.95rem;
    font-weight: normal; 
    color: #6c757d;
    margin-bottom: 5px;
    
}

.step-description {
    font-size: 12px;
    color: #adb5bd;
    max-width: 150px;
    margin: 0 auto;
}

.step-horizontal.active .step-icon {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
    box-shadow: 0 0 0 6px rgba(67, 97, 238, 0.2);
    cursor:pointer;
}

.step-horizontal.active .step-title {
	font-weight: bolder;
}

.step-horizontal.complete .step-icon {
    background: #2ecc71;
    border-color: #2eaa71;
    color: white;
    cursor:pointer;
}