/*THIS CSS will be used for printing, DO not use it for PDF download*/
@media print{
	body{
		-webkit-print-color-adjust: exact;
	}
	.hide-at-print{
		display: none !important;
	}
	.show-block-at-print{
		display: block !important;
	}
	.float-right-at-print{
		float: right !important;
	}
	.keep-together-at-print {
		display: block !important; /* display block required to avoid page break*/
		page-break-inside: avoid !important;
		break-inside: avoid !important; 
	}
	.break-before-at-print {
		page-break-before: always !important;
	}

	/*MODAL classes*/
	.modal-backdrop.show{
		display: none !important;
	}
	/*END MODAL classes*/
	
}