/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/*CSS for printing*/
/*set the size of the logo for print*/

.print_logo{
	width:300px !important;
	margin-bottom: 10px;
}


/* hide row on the website since it is for printing only*/

@media screen{
	.print_only{
	opacity:0;
		height:0;
}

}

/*hide elements when printing*/

@media print {
	.print_only{
	opacity:1;
		height: auto;
}
	.no_print,
	.menu-underlay,
	header,
	footer,
	.fusion-tb-footer.fusion-footer,
	.fusion-tb-header,
	.fusion-privacy-bar,
	.fusion-privacy-bar-bottom
	.fusion-privacy-bar-acceptance,
	.fusion-pagination-tb{
		display:none !important;
	}
	
}