﻿.campo-lista label {
    margin-right: 20px;
}
.dialogo {
    width: 50%;
    margin: auto;
    padding-top: 5%;
}
.active {
    font-weight: bold;
    text-decoration: underline;
}

.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
}

.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: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ccc;
        margin-bottom: 1px;
        padding-top: 6px;
    }
    .stepper-item .step-counter i {
        color:white;
    }
    .stepper-item.active {
        font-weight: bold;
        color: #E26017;
    }
    .stepper-item.active .step-counter i {
        color: #E26017;
    }

    .stepper-item.completed .step-counter {
        background-color: #E26017;
    }

    .stepper-item.completed::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #E26017;
        width: 100%;
        top: 20px;
        left: 50%;
        z-index: 3;
    }

    .stepper-item:first-child::before {
        content: none;
    }

    .stepper-item:last-child::after {
        content: none;
    }

.bg-dark {
    color: white;
}