/**
 * GatewayKit Receipt – print styles.
 *
 * Hides everything except the .gatewaykit-ui container when printing.
 */

@media print {
	body * {
		visibility: hidden !important;
	}

	.gatewaykit-ui,
	.gatewaykit-ui * {
		visibility: visible !important;
	}

	.gatewaykit-ui {
		position: absolute !important;
		left: 0 !important;
		top: 0 !important;
		width: 100% !important;
	}
}
