/* show payment spinner by default */
#ShopSuey-receipt-payment-loading {
	display: none;
	padding: 50px;
	text-align: center;
}
	/* hide when loaded */
	#ShopSuey-receipt-payment-loading.show {
		display: block;
	}
	/* spinner el */
	#ShopSuey-receipt-payment-loading > .fa {
		font-size: 100px;
		color: rgba(0,0,0,.25);
	}

/* hide payment details by default */
#ShopSuey-receipt-payment {
	display: none;
}
	/* show when loaded */
	#ShopSuey-receipt-payment.show {
		display: block;
	}

/* receipt table */
table#ShopSuey-receipt {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid black;
}

	/* alterations when cancelled */
	table#ShopSuey-receipt.Cancelled {
		text-shadow: 1px 1px 0px white !important;
		background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAP/GRiMqS7AwMAAAEA3BftfcZTcAAAAAElFTkSuQmCC);
	}

	/* labels */
	table#ShopSuey-receipt tr td > label {
		font-weight: bold;
	}

	/* font override */
	table#ShopSuey-receipt * {
		font-family: Open Sans, Calibri, Arial;
	}

	/* top summary */
	table#ShopSuey-receipt td#ShopSuey-receipt-summary {
		background-color: rgb(200,200,200);
		font-weight: bold;
	}

		/* positioning for summary elements */
		table#ShopSuey-receipt td#ShopSuey-receipt-summary > * {
			display: inline-block;
			float: left;
			margin-left: 15px;
			font-size: 15px !important;
			font-weight: bold;
			line-height: 1.2;
		}
			table#ShopSuey-receipt td#ShopSuey-receipt-summary > address > .ShippingInfo {
				margin-top: 10px;
				font-size: 12px;
				font-weight: normal;
			}

			/* no additional margin on first one */
			table#ShopSuey-receipt td#ShopSuey-receipt-summary > *:first-child {
				margin-left: 0px;
			}

			/* labels directly nested in summary element */
			table#ShopSuey-receipt td#ShopSuey-receipt-summary > label {
				font-weight: normal;
			}

			/* labels */
			table#ShopSuey-receipt td#ShopSuey-receipt-summary > * > label {
				font-weight: normal;
			}

		/* dates */
		table#ShopSuey-receipt td#ShopSuey-receipt-summary > div#dates {
			margin-left: 75px;
		}

			/* date labels */
			table#ShopSuey-receipt td#ShopSuey-receipt-summary > div#dates > label {
				display: inline-block;
				width: 125px;
				margin-right: 5px;
			}

	/* printable link cell */
	table#ShopSuey-receipt td#ShopSuey-receipt-printable-link {
		text-align: center;
		vertical-align: middle;
	}
		table#ShopSuey-receipt td#ShopSuey-receipt-printable-link > a {
			font-weight: bold !important;
		}

	/* all cells */
	table#ShopSuey-receipt td {
		padding: 10px;
		border-collapse: collapse;
		border: 1px solid black;
	}
		/* left col */
		table#ShopSuey-receipt td:first-child {
			padding-right: 100px;
			white-space: normal !important;
		}

		/* right col */
		table#ShopSuey-receipt td:last-child {
			text-align: right;
			white-space: nowrap;
		}

	/* orig price each */
	table#ShopSuey-receipt td span.price-each-orig {
		display: none;
	}
		/* orig price each */
		table#ShopSuey-receipt td span.price-each-orig.ShopSuey-onsale-show {
			display: inline-block;
			margin-right: 5px;
			color: rgba(0,0,0,.75);
			text-decoration: line-through;
		}

	/* result price each */
	table#ShopSuey-receipt td span.price-each-result {

	}
		/* orig price each */
		table#ShopSuey-receipt td span.price-each-result.ShopSuey-onsale-show {
			color: red;
			font-weight: bold;
		}

	/* total */
	table#ShopSuey-receipt tr.total td {
		padding-right: 10px;
		font-size: 18px;
		text-align: right;
		font-weight: bold;
	}

	/* TaxInfo */
	table#ShopSuey-receipt tr.total td.TaxInfo {
		white-space: pre;
	}

	/* OrderTotal */
	table#ShopSuey-receipt tr.total td.OrderTotal {
		font-size: 25px;
	}

	/* bottom summary info */
	table#ShopSuey-receipt tr td[colspan="2"] {
		text-align: left;
		padding: 10px;
	}

	/* receipt table cells */
	table#ShopSuey-receipt tr td {
		line-height: 1.25;
	}

		/* stock type */
		table#ShopSuey-receipt tr > td > div:is(.StockType,.subinfo) {
			font-size: 13px;
			margin-top: 6px;
			color: rgba(0,0,0,.5);
		}

			/* out of stock/backordered */
			table#ShopSuey-receipt tr > td > div.StockType[StockType="stocked"]:is([InStock="0"], [InStock=""]):is([Processed="0"], [Processed=""]) {
				color: orange;
				font-weight: bold;
			}

	/* Cancelled */
	table#ShopSuey-receipt tr td div#Cancelled {
		text-align: center;
		font-size: 30px;
		color: red;
		font-weight: bold;
		margin-top: 20px;
	}

		/* CancellationReason */
		table#ShopSuey-receipt tr td div#Cancelled > div#CancellationReason {
			margin-top: 15px;
			font-weight: normal;
			font-size: 14px;
		}

		table#ShopSuey-receipt tr td div#Cancelled > div#CancellationReason:empty {
			display: none;
		}

	/* split */
	table#ShopSuey-receipt tr td.split > a.Cancelled {
		text-decoration: line-through;
	}