/**
 * PSMRC receipt styling
 */

/* payment info section */
div.ShopSuey-receipt-payment {
	display: inline-block;
	margin-bottom: 35px;
	vertical-align: top;
	font-size: 18px;
}

	div.ShopSuey-receipt-payment:not(:first-child) {
		margin-left: 75px;
	}
	
	/* address */
	div.ShopSuey-receipt-payment > address {
		margin: 10px 0px 0px 0px;
		font-size: 22px;
		line-height: 1.35;
	}
 
	/* payment button */
	.ShopSuey-receipt-payment > a.submit {
		display: block;
		padding: 10px;
		margin: 10px 0px 0px 0px;
		width: 100%;
		
		text-align: left;
		font-size: 25px;
		
		background: #D8CDBC;
		border: 1px solid rgba(0,0,0,.35);
	}
		/* "active" effect on button */
		.ShopSuey-receipt-payment > a.submit:active {
			color: white;
			text-shadow: none;
			background: #b29d7c;
		}
		
		/* payment button icons */
		.ShopSuey-receipt-payment > a.submit > i.fa {
			float: right;
			margin: auto 5px auto 5px;
		}
		
		/* more spacing for first icon in payment button */
		.ShopSuey-receipt-payment > a.submit > i.fa:last-of-type {
			margin-left: 50px;
		}
 
/* receipt table */
table#ShopSuey-receipt {
	margin-bottom: 50px;
}
 
	/* receipt table cells */
	table#ShopSuey-receipt tr td {
		font-family: Open Sans, Calibri, Arial;
		font-size: 14px;
		line-height: 1.25;
	}

		/* print link */
		table#ShopSuey-receipt td#ShopSuey-receipt-printable-link > a {
			font-size: 22px;
			font-weight: bold !important;
		}
