/*
Theme Name: Loft Child
Theme URI: http://loft.cwsthemes.com/
Description: Child theme for Loft. Adds an optional page-title video background from an ACF file field.
Author: CWSthemes
Template: loft
Version: 1.0.0
Text Domain: loft
*/

/*
 * The page title image is printed as a background-image on #page_title_section.
 * When a video is set, drop that image so it does not show behind or before the video.
 * This rule is more specific than the parent inline style, and this sheet loads after it.
 */
#page_title_section.has-video-bg {
	background-image: none;
	overflow: hidden;
}

#page_title_section.has-video-bg > .video_bg {
	z-index: 0;
}