.loader-promo{
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 10000;
  margin-left: -15px;
  background-color: RGBA(0, 0, 0, 0.1);
}
.loader-promo span{
  font-size: 40px;
  color:#eb0029;
  font-weight: bold;
  position: absolute;
  z-index: 10000;
  left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.loader-promo2{
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: RGBA(0, 0, 0, 0.1);
}
.loader-promo2 span{
  font-size: 40px;
  color:#eb0029;
  font-weight: bold;
  position: absolute;
  z-index: 10000;
  left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
@media
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {

		/* Force table to not be like tables anymore */
		.table table,.table thead,.table tbody,.table th,.table td,.table tr {
			display: block;
		}

		/* Hide table headers (but not display: none;, for accessibility) */
		.table thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

		.table tr { border: 1px solid #ccc; }

		.table td {
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee;
			position: relative;
			padding-left: 50%;
		}

		.table td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 6px;
			left: 6px;
			width: 15%;
			padding-right: 10px;
			white-space: nowrap;
            font-weight: bold;
		}

		/*
		Label the data
		*/
		.table td:nth-of-type(1):before { content: "Fecha"; }
		.table td:nth-of-type(2):before { content: "Producto"; }
		.table td:nth-of-type(3):before { content: "Monto"; }
		.table td:nth-of-type(4):before { content: "Balance"; }
		.table td:nth-of-type(5):before { content: "Status"; }
        .table td:nth-of-type(6):before { content: " "; }
		
	}