﻿/* ===============================================
      VISUALIZACIÓN SEGUIMIENTO ESTADOS
================================================== */

.steps-container {
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 20px;
    padding: 10px;
}

.step-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

    .step-item::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 28px;
        transform: translateX(-50%);
        height: 20%;
        width: 5px;
        background-color: #0056EE;
        display: none;
    }

    .step-item.condition-met::after {
        display: block;
    }

    .step-item:last-child::after {
        display: none;
    }

.step-icon {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 25px;
}

    .step-icon img {
        width: 55px;
        height: 55px;
    }

.step-text {
    font-size: 14px;
    color: #333;
    text-align: left;
    line-height: 1;
}
