.print-manager-canvas {
	background: white;
	box-shadow: 0 0 10px black;
}

#printManager-component {}

body {
	counter-reset: section;
	/* Set a counter named 'section', and its initial value is 0. */
}

print-proof-svg-render-container::before {
	counter-increment: section;
	/* Increment the value of section counter by 1 */
	content: "Section "counter(section) ": ";
	/* Display the word 'Section ', the value of
                                                   section counter, and a colon before the content
                                                   of each h3 */
}
