@charset "UTF-8";

/*This keeps menus from wrapping on hover. 
	span {white-space: pre;} 
*/
/*Keep cursor from changing on empty anchor tags. */
	.empty-anchor:hover {
		cursor:pointer;
	}

/*Add some padding. */
	.paragraph {
		padding-top:15px;
		padding-bottom:5px;
	}

/*Styling for cookie consent. */
	.cc-window {position:fixed; overflow:hidden; width:100%; bottom:0px; padding:20px; text-align:center; vertical-align:middle; background-color:#767676; color:#ffffff; display:none; z-index:10;}
	.cc-button {margin-top:5px; padding:5px 10px;}


/*Multi-column lists. */
	@media only screen and (min-width: 1480px)  {
		.list-two-column {
			display: grid;
			grid-template-columns: 50% 50%;
		}
		.list-three-column {
			display: grid;
			grid-template-columns: 33.33% 33.33% 33.33%;
		}
		.list-four-column {
			display: grid;
			grid-template-columns: 25% 25% 25% 25%;
		}
	}

/* CSS Marquee */
/* <div class="marquee"><span>Your Message</span></div> */
/* Make it a marquee */
	.marquee {
			width: 100%;
			margin: 0 auto;
			white-space: nowrap;
			overflow: hidden;
			box-sizing: border-box;
	}

	.marquee span {
			display: inline-block;
			padding-left: 100%;
			text-indent: 0;
			animation: marquee 20s linear infinite;
	}

	.marquee span:hover {
			animation-play-state: paused
	}

	@keyframes marquee {
			0%   { transform: translate(0, 0); }
			100% { transform: translate(-100%, 0); }
	}

/** 1.29 Wells */
.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
	border-radius: 0px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
	border-color: #ddd;
	border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
	padding: 24px;
	border-radius: 0px;
}

.well-sm {
	padding: 9px;
	border-radius: 0px;
}

/* Videos */
/*
<div class="overlay"></div>
<video id="video" playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
	<source src="/Media/American-Pride-Power-Equipment-Zanesville-Ohio-Our-Story-V1.mp4" type="video/mp4" media="all and (max-width: 1200px)"> <%' 100mb 1920x1080 %>
	<source src="/Media/American-Pride-Power-Equipment-Zanesville-Ohio-Our-Story-V2.mp4" type="video/mp4" media="all and (max-width: 900px)"> <%' 16mb 1920x1080 %>
	<source src="/Media/American-Pride-Power-Equipment-Zanesville-Ohio-Our-Story-V3.mp4" type="video/mp4" media="all and (max-width: 600px)">
</video>
*/
	.camera_container {
		position: relative;
		background-color: black;
		overflow: hidden;
	}
	.camera_container .container {
		position: relative;
		z-index: 2;
	}
