html,
body {
  height: 100%;
  width: 100%;
}

#reader-overlay {
	height: 100%;
	width: 100%;
}

.print-protection {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 99998;
	top: 0px;
	left: 0px;
	display: none;
	padding-top: 50%;
	background: white;
	text-align: center;
	font-size: 23px;
}

.print-info-overlay {
}

@media print {
	.print-protection {
		display: block;
	}

	#reader-overlay {
		display: none;
	}

	.print-info-overlay {
		display: none;
	}
}

