/* INIZIO AVANZAMENTI STEP WIZARD – in linea con stile carrello */

.tp-stepper {
    margin: 15px 0 25px;
    font-family: "Trebuchet MS", Geneva, Arial, Helvetica, sans-serif;
    text-align: center;
    white-space: nowrap;
}

.tp-step {
    display: inline-block;
    position: relative;
    padding: 0 30px;
    white-space: normal;
}

/* cerchio numerato */
.tp-step-circle {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    margin: 0 auto 6px;
    background-color: #b6bcc7;      
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

/* testo */
.tp-step-label {
    font-size: 15px;
    color: #8a909a;
}

/* linea tra step */
.tp-step:after {
    content: "";
    position: absolute;
    top: 19px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #d5ddf0;
    z-index: -1;
}

/* ultimo step senza linea */
.tp-step:last-child:after {
    display:none;
}

/* STEP completati */
.tp-step.tp-complete .tp-step-circle {
    background-color: #1a73e8;
}
.tp-step.tp-complete .tp-step-label {
    color: #3c424c;
}
.tp-step.tp-complete:after {
    background-color: #1a73e8;
}

/* STEP corrente */
.tp-step.tp-current .tp-step-circle {
    background-color: #1a73e8;
}
.tp-step.tp-current .tp-step-label {
    color: #3c424c;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 767px) {
    .tp-step {
        padding: 0 10px;
    }
    .tp-step-label {
        font-size: 13px;
    }
    .tp-step-circle {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
    }
}
