@charset "utf-8";
body {
	background-color: #000;
	font-family: Helvetica;
	color: #ccc;
	font-size: 1.5em;
	padding: 10px;
}
h1 {
	font-size: 3.0em;
	font-weight: bold;
	margin-bottom: 20px;
}
h2 {
	font-size: 2.75em;
	font-weight: bold;
	margin-bottom: 20px;
}
h3 {
	font-size: 2.5em;
	font-weight: bold;
	margin-bottom: 20px;
}
.notice {
	color: #f0e442;
	font-weight: bold;
}
.price {
	color: #e69f00;
	font-weight: bold;
}
a {
	color: #56b3e9;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #d55e00;
}
.divider {
	width: 80%;
	height: 10px;
	margin: 30px auto;
	background-color: #ccc;
}
.centered {
	text-align: center;
	margin: 0 auto;
}

/* Cookies and Privacy Compliance */
#cookie-box {
	font-size: 16px;
	background-color: #4d4d4d;
	z-index: 5;
	right: 10px;
	bottom: 10px;
	width: 350px;
	position: fixed;
	padding: 20px;
	border: 2px solid #cccccc;
}
#cookie-btn {
	width: 100px;
	margin: 0 auto;
	font-size: 24px;
	font-weight: bold;
}

/* Page Title Box */
#title {
	width: 100%;
	margin: 0px auto;
	padding: 225px 0px 15px;
	text-align: center;
}
.title-banner {
	width: 100%;
	text-align: center;
}
.title-banner img {
	max-width: 100%;
	max-height: 150px;
	margin: 0 auto 15px;
}
.title-text {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

/* Menu Box */
#menu {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 10px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	overflow-x: hidden;
}
.menu-item {
	display: inline-block;
	width: 300px;
	height: 60px;
	font-size: 1.15em;
	font-weight: bold;
	color: #ccc;
	background-color: #000;
	border: 3px solid #ccc;
	text-align: center;
	vertical-align: middle;
	margin: 3px;
}
.menu-item:hover {
	background-color: #ccc;
	color: #000;
	border-color: #808080;
}
.menu-item span {
	position: relative;
	top: 10px;
}

/* Product Listing Layout */
.listing {
	width: 90%;
	margin: 15px auto;
	text-align: center;
	vertical-align: middle;
}
.product-container {
	text-align: center;
	vertical-align: middle;
	display: inline-block;
	width: 650px;
	height: 825px;
	margin: 10px;
	border: 2px solid #ccc;
	padding: 40px 40px 20px;
}
.listing-text {
	width: 600px;
	height: 120px;
	display: block;
	font-size: 1.75em;
	color: #ccc;
	text-align: center;
	vertical-align: middle;
	margin: 40px auto 0px;
}
.product {
	display: none;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 25px;
	background: rgba(0, 0, 0, 0.8);
}
.product:target {
	display: block;
}
.product span {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* Mouseover Zoom Effect Button */
.img-zoom-btn {
	width: 570px;
	height: 570px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	text-align: center;
	vertical-align: middle;
}
.img-zoom-btn img {
	transition: transform .5s ease;
	z-index: 0;
}
.img-zoom-btn:hover img {
	transform: scale(1.1);
}
.buttonImage {
	max-width: 570px;
	max-height: 570px;
	margin: auto;
}

/* Footer */
#footer {
	width: 100%;
	text-align: center;
	font-size: 0.25em;
}
.footer-links {
	font-size: 5.0em;
}
