/**
 * This file contains print styles
 *
 * @author Christian Hamacher <c.hamacher@alldesign.de>
 */

/*###############################################################################*/
/*#### DEFAULTS
/*###############################################################################*/

@media print {

	#wrapper {
		display: block !important;
	}

	#main, #sidebar {
		display: block !important;
		width: 100% !important;
		float: none !important;
		margin: 0 !important;
	}

	/* define page breaks */
	a {
		break-inside: avoid;
	}

	blockquote {
		break-inside: avoid;
	}

	h1, h2, h3, h4, h5, h6 {
		break-inside: avoid;
	}

	figure img {
		display: block !important;
		width: 100%;
		height: auto;
		break-inside: avoid !important;
		color-adjust: exact !important;
		opacity: 1 !important;
		transition: none !important;
	}

	.grecaptcha-badge {
		display: none !important;
	}

	table, tbody, thead, tfoot, tr, th, td {
		break-inside: avoid;
	}

	ul, ol, dl {
		break-inside: avoid;
	}

	.fusion-header {
		position: relative !important;
		top: 0 !important;
		box-shadow: none !important;
	}

	.fusion-header .fusion-logo {
		margin-left: 0 !important;
	}

	/*###############################################################################*/
	/*#### HIDE ELEMENTS
    /*###############################################################################*/
	.fusion-main-menu,
	.fusion-mobile-navigation,
	.fusion-mobile-menu-icons,
	.fusion-mobile-nav-holder,
	.fusion-secondary-header {
		display: none !important;
	}

	#ad-tag-cloud, /* avada container */

	#sliders-container {
		display: none !important;
	}

	.fusion-footer {
		display: none !important;
	}

	.wp-video-shortcode {
		display: none !important;
	}

	.to-top-container {
		display: none !important;
	}
}