﻿.stepper-wrapper { 
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-weight: bold;
}

    .stepper-item::before {
        position: absolute;
        content: "";
        border-bottom: 2px solid #D4D4D4;
        width: 100%;
        top: 10px;
        left: -50%;
        z-index: 2;
    }

    .stepper-item::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #D4D4D4;
        width: 100%;
        top: 10px;
        left: 50%;
        z-index: 2;
    }

    .stepper-item .step-counter {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #ccc;
        margin-bottom: 6px;
    }

    .stepper-item.active {
        font-weight: bold;
    }
    .step-counter.active {
        border: 5px solid #00558A;
        background-color: #FFFFFF;
    } 

.stepper-item.completed .step-counter {
    background-color: #00558A;
}

    .stepper-item.completed::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #00558A;
        width: 100%;
        top: 10px;
        left: 50%;
        z-index: 3;
    }

    .stepper-item:first-child::before {
        content: none;
    }

    .stepper-item:last-child::after {
        content: none;
    } 

.step-name{
    text-align:center;
}