.row

.col-xs-12
  .progress.progress-striped.active.bgm-orange style="height:80px;"
    .progress-bar.progress-bar-warning aria-valuemax="100" aria-valuemin="0" aria-valuenow="0" role="progressbar" style="width: 0%;text-align:left;"
      .lv-item.p-20.p-fixed
        .media
          .pull-left
            i.zmdi.zmdi-hc-3x.zmdi-cloud-off.c-white
          .media-body
            .lv-title.c-white Conexión con la base de datos
            small.lv-small.c-white Espera unos segundos mientras se reestablece la conexión.

javascript:

$(document).ready(function() {
  setTimeout(function(){
     window.location.reload(1);
  }, 5000);

  update_progress();

  function update_progress() {
      var current = $(".progress-bar").width() / $('.progress-bar').parent().width() * 100;
      $(".progress-bar").width( current + 10 + "%");
      setTimeout(update_progress, 100);
  }
});