/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 
@media all {
	/* With full-width content, fix sizes for ul lists */
	body.has-blocks .fl-post-content ul, 
	body.has-blocks .fl-post-content ol {
		max-width: none;
	}

	/* Padding to separate unit text from the "Mark as Completed" button */
	.wpcw_fe_progress_box {
		margin-top: 50px;
	}

	/* Padding on button for going to "next" unit */
	.wpcw_fe_navigation_box .fe_btn_navigation_next {
		margin-left: 10px;
	}

	/* Code samples have smaller padding and a better font */
	.wp-block-code {
		padding: .5em;
	}
	
	/* fix color from base update breakage */
	.wp-block-code>code {
		color: #abb2bf;
	}
	
	.wp-block-code code.hljs {
		font-size: 14px;
		font-family: "Source Code Pro",monospace;
	}


	/* Show/hide solution link */
	.sh-link {
		font-weight: bold;
		position: relative;
	}
	.sh-link a:before {
		content: '\027A1';    /* arrow */
		position: absolute;
		color: #8c759bff;
		left: -37px;
		top: -14px;
		font-size: 35px;	
	}

	/* Login page image customization */
	.login h1 a {
		background-image: url(img/login-logo.png)
	}

	.login h1 a {
		height: 67px;
		width: 235px;
		background-size: 235px 67px;
		background-position: 50% 50%;
		background-repeat: no-repeat;
		text-align: center;
		margin: 0 auto;
		border: 0;
	}

	/* Pull quote styling */
	.wp-block-pullquote {
		margin-bottom: 1em;	
	}
}

@media print {
   /*  */
    .wp-block-brainlid-block-tip-block.tip-block-outer {
		background: inherit !important;
        background-color: #9db26cff !important;

    }
    .wp-block-brainlid-block-tip-block.tip-block-outer > .tip-block-inner {
        background-color: #fbf7e6ff !important;
    }	
}