﻿/* Stepper custom */
.stepper-custom-container {
    margin: 30px 0;
}

.step-indicator-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #DFE6E9;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #B2BEC3;
    transition: all 0.3s ease;
    z-index: 2;
}

    .step-indicator-custom.active {
        border-color: #5CB85C;
        background: linear-gradient(135deg, #5CB85C 0%, #449D44 100%);
        color: white;
    }

.step-line-custom {
    flex: 1;
    height: 3px;
    background: #DFE6E9;
    margin: 0 -10px;
    transition: all 0.5s ease;
}

    .step-line-custom.active {
        background: linear-gradient(90deg, #5CB85C 0%, #449D44 100%);
    }

.step-content-custom {
    padding: 20px 0;
}
