/**********************

CSS For Components
- Only include Component specific CSS here
- This CSS should not be global CSS

1. Full Width Video Background Component
***********************/

/* 1. Full Width Video Background Component */
.component-full-width-video {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	position: relative;
}
.component-full-width-video video {
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.component-full-width-video .component-fwv-overlay {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: .7;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.component-full-width-video .component-fwv-overlay.overlay-red {
	background-color: #BE1E2D;
}
.component-full-width-video .component-fwv-overlay.overlay-dark {
	background-color: #000;
}
.component-full-width-video .component-fwv-overlay.overlay-yellow {
	background-color: #FFC629;
}
.component-full-width-video .component-fwv-overlay.overlay-white {
	background-color: #fff;
}
.component-full-width-video .component-fwv-content {
	padding: 3rem 2rem;
	position: relative;
	z-index: 3;
}
.component-full-width-video .component-fwv-content .component-fwv-heading h1,
.component-full-width-video .component-fwv-content .component-fwv-heading h2,
.component-full-width-video .component-fwv-content .component-fwv-heading h4,
.component-full-width-video .component-fwv-content .component-fwv-heading h4,
.component-full-width-video .component-fwv-content .component-fwv-heading h5,
.component-full-width-video .component-fwv-content .component-fwv-heading h6 {
	font-weight: 900;
}
.component-full-width-video .component-fwv-content .component-fwv-pre-heading {
	font-weight: 600;
}
.component-full-width-video .component-fwv-html {
	position: relative;
	z-index: 3;
}
.component-full-width-video .component-fwv-buttons a {
	margin-top: 1rem;
}
@media screen and (min-width: 768px) {
	.component-full-width-video .component-fwv-content {
		padding: 3rem 0;
	}
}
.container .component-full-width-video {
	  width: 100vw;
	  position: relative;
	  left: 50%;
	  right: 50%;
	  margin-left: -50vw;
	  margin-right: -50vw;
	}
}

/* Directory -- some of the css is within the PHP file directory-functions.php */
.pcc-directory-wrapper {
	height: 500px;
	overflow: hidden;
}
.pcc-directory-wrapper.pcc-directory-ready {
	height: auto;
	overflow: visible;
}