/* Example Styles */
body {
	font-family: Futura, sans-serif;
	background: #444;
}
body, a {
	color: #fff;
}
h3 {
	margin-top: 5em;
}
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
} 
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1; 
}


/* Quick Gallery Thumbnails */
.quickGalleryThumbs img {
	display: block;
	float: left;
	margin: 0.5%;
	padding: 0;
	border: none;
	width: 24%;
	cursor: pointer;
}


/* Quick Gallery Styles */
#quickGalleryPopup {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	height: 100vh;
	width: 100%;
	user-select: none;
}
.quickGalleryNav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 5px;
	color: #fff;
	text-align: center;
	font-size: 50px;
	cursor: pointer;
}
#quickGalleryRightButton {
	right: 0;
}
#quickGalleryMainImage {
	position: absolute;
	display: block;
	max-width: 75%;
	max-height: 90vh;
	padding: 20px;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#quickGalleryCloseButton {
	width: 50px;
	height: 50px;
	position: fixed;
	top: 0;
	right: 0;
	font-size: 50px;
	font-weight: bolder;
	color: #fff;
	cursor: pointer;
	text-align: center;
}
@media screen and (max-width: 550px) {
	#quickGalleryMainImage {
		padding: 10px;
	}
}
