@media only screen and (max-width: 1024px) {
	/* Force table to not be like tables anymore */
	.no-more-tables table,
	.no-more-tables thead,
	.no-more-tables tbody,
	.no-more-tables th,
	.no-more-tables td,
	.no-more-tables tr {
		display: block;
		vertical-align: baseline;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	.no-more-tables > thead > tr {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
	}

	.no-more-tables .force_hide {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
	}

 	.no-more-tables > tbody > tr {
		min-width: 320px;
		border-bottom: 2px solid #000;
	}

	.no-more-tables > tbody > tr > td {
		/* Behave like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 35%;
		white-space: normal;
		text-align: left;
		vertical-align: baseline;
	}
 
	.no-more-tables > tbody > tr > td:before {
		/* Now like a table header */
		position: absolute;
		top: 24%;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		padding-left: 10px;
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
		overflow-inline: hidden;
		vertical-align: baseline;
	}
 
	/* Label the data */
	.no-more-tables > tbody > tr > td:before {
		content: attr(data-title);
	}
}
