/*Contiene el estilo de todo el html del wizard de pasos iniciales */
.paso-disabled{

    height: 42px;
    width: 46px;
    display: flex;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background: white;
    justify-content: center;
    text-align: center;
    align-items: center;
    border: 5px solid #c8c8c8;

}

.paso-enabled{
    height: 42px;
    width: 46px;
    display: flex;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background:white;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-weight: bold;
    border: 5px solid #ce24f0;
    
}

#contenedor-wizard{
    display: none; 
    justify-content: space-around;
    margin: 1rem;
    align-items: center;
    margin-bottom: 5rem;
}

.icono-paso{
    font-size: 6rem;
    color: #975AFF;
}
#contenedor-mensaje-wizard{
    font-size: 2rem;
    vertical-align: middle;
}

.section-msj{
    background-color: #DCBDFF;
    margin-right: 1rem;
    margin-left: 1rem;
    width: 100%;
    text-align: center;
    border-radius: 7px;
    height: auto;
    min-height: 11rem;
    display: flex; 
    justify-content: center; 
    align-items: center;
}
#contenedor-pasos{
    width:100%;display: flex;
    justify-content: space-around;
}