/* para bloqear tablas cuando hacemos un submit o similares */
table.loading, div.loading, form.loading {
    position: relative;
}
  
table.loading:after, div.loading:after, form.loading {
    position: absolute;
    border-radius: 3px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url('../../assets/SpinnerProsof.png'); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100px 100px;
    content: "";
    z-index: 9999;
}

table tr.loading {
    background-color: rgba(236, 240, 241, 1);
    pointer-events: none;
}

table tr.loading td{
    color: gray !important;
}