@media (max-width: 800px) {
	.outer { flex-wrap: wrap; }
	
	.acctable { text-align: left; }
	.acctable tr {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		height: 150px;
		padding: 10px 10px 0;
		gap: 10px 0;
	}
	.acctable td { width: 27%; font-size: 14px; padding: unset; background: unset !important; }
	.acctable td:first-of-type { padding-left: unset; }
	.acctable td, .inlineheaders { display: block; }
	.acctable > thead { display: none; }
	
	.acctable tr:nth-of-type(odd) { background: #9993; }
	.acctable tr:nth-of-type(even) { background: unset; }
	
	.recentorders td:nth-child(3) { max-width: unset; }
	.clamp {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		width: 100%;
	}
	
	a.moreinfo[href] {
		width: 70px;
		padding: 1px 6px 3px;
		margin: -1px -6px -3px;
	}
	
	.tablepopout > .inlineheaders { display: initial; }
}