/* Shared "paper receipt" component. Used by the How Expensive Is Your Wishlist
   splash and the cost/bill page so both render the identical receipt. */

.wc-receipt {
	position: relative;
	max-width: 500px;
	background-image: url("../images/features/how_expensive_is_your_wishlist/receipt_bgd.c1d889aa7169.jpg");
	background-repeat: repeat-y;
	background-position: top center;
	background-size: 100% auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
	font-family: 'VT323', monospace;
	font-size: 1.25rem;   /* body text, table */
	color: #000;
}
.wc-receipt h2           { font-size: 3.0rem; line-height: 0.8em; }
.wc-receipt h3           { font-size: 2rem;    }
.wc-receipt small        { font-size: 1rem;    }
.wc-receipt h1, .wc-receipt h2, .wc-receipt h3,
.wc-receipt h4, .wc-receipt h5, .wc-receipt h6 {
	color: #000;
	font-weight: normal;
}
.wc-receipt p {
	line-height: 1.2em;
}

.wc-receipt.is-collapsed {
	max-height: 350px;
	overflow: hidden;
}
.wc-receipt-rollup {
	display: none;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	cursor: pointer;
}
.wc-receipt.is-collapsed .wc-receipt-rollup {
	display: block;
}
.wc-receipt-rollup img {
	display: block;
	width: 100%;
}
.wc-receipt-rollup-text {
	position: absolute;
	top: 55%;
	left: 0;
	width: 100%;
	margin: 0;
	transform: translateY(-50%);
	text-align: center;
	color: #000;
	pointer-events: none;
}
