
/*-------- PRODUCTS --------*/

 #products
	{
	margin: 20px auto;
	width: 730px;
	min-height: 715px;
	}

 .product
	{
	margin-bottom: 20px;
	padding-top: 8px;
	text-align: center;
	border-top: 1px solid black;
	}

 .product-title
	{
	font-family: Georgia;
	font-size: 13px;
	text-align: center;
	font-weight: bold;
	}

 .product-comment1,
 .product-comment2
	{
	font-family: Georgia;
	font-size: 13px;
	text-align: center;
	font-weight: bold;
	}

 .product-comment2
	{
	font-style: italic;
	}

 .product-preorder
	{
	font-size: 13px;
	font-weight: bold;
	font-style: italic;
	text-decoration: underline;
	cursor: pointer;
	}
 .product-preorder:hover
	{
	color: #005500;
	text-decoration: none;
	}

 .product-photos
	{
	margin-top: 10px;
	text-align: center;
	}

 .product-photos img
	{
	margin: 0px 20px;
	width: 215px;
	height: 200px;	
	border: 1px solid #ffffff;
	}


/*-------- PREORDER --------*/

 #preorder-window-bg
	{
	display: none;
	position: fixed;
	top:0; left:0; right:0; bottom:0;
	*background-color: RGBA(140,140,140, 0.8);
	background-color: RGBA(0,0,0, 0.6);
	overflow-y: auto;
 	-webkit-overflow-scrolling: touch;
    	zoom: 1;
	z-index: 500;

	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in;
	-moz-transition: opacity 0.3s ease-in;
	-o-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
	}

 #preorder-window
	{
	position: relative;
	margin: 100px auto;
	padding: 25px 30px;
	box-sizing: border-box;
	width: 90%;
	min-width: 500px;
	max-width: 720px;
	min-height: 150px;
	background-color: #faf8de;
	font-family: Georgia, Arial, Tahoma;
	box-shadow: 2px 2px 20px RGBA(0,0,0, 0.2);
	text-align: center;

	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;

	-webkit-transform: translate(0, -500px);
	-moz-transform: translate(0, -500px);
	-o-transform: translate(0, -500px);
	transform: translate(0, -500px);
	}

 #preorder-window.show
	{
	-webkit-transform: translate(0, 0px);
	-moz-transform: translate(0, 0px);
	-o-transform: translate(0, 0px);
	transform: translate(0, 0px);
	}

 #preorder-window .close-btn
	{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 26px;
	height: 26px;
	background: url('images/close.png') center center no-repeat;
	background-size: 18px auto;
	cursor: pointer;
	z-index: 600;
	}
 #preorder-window .close-btn:hover
	{
	opacity: 0.5;
	}

 #preorder-window .title
	{
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 700;
	font-style: italic;
	color: #374b13;
	}

 #preorder-window .subtitle
	{
	font-size: 16px;
	color: #374b13;
	}

 #preorder-window .error-msg
	{
	display: none;
	padding-left: 22px;
	font-weight: bold;
	color: #ff5050;
	background: url('images/error.png') left center no-repeat;
	}

 #preorder-window .cols
	{
	margin-top: 10px;
	display: table;
	width: 100%;
	text-align: left;
	font-size: 15px;
	}

 #preorder-window .cols > div
	{
	display: table-cell;
	vertical-align: top;
	width: 50%;
	}
 #preorder-window .cols > .L-col
	{
	padding-right: 15px;
	}
 #preorder-window .cols > .R-col
	{
	padding-left: 15px;
	}

 #preorder-window .field
	{
	margin: 6px 0;
	padding: 7px 8px;
	width: 100%;
	box-sizing: border-box;
	font-family: Georgia;
	font-size: 18px;
	border: 1px solid #99aa99;
	}
 #preorder-window .field.error
	{
	border-color: #ff6060;
	}

 #preorder-window textarea
	{
	resize: vertical;
	height: 184px;
	max-height: 300px;
	}

 #preorder-window .agreement
	{
	text-align: left;
	}

 #preorder-window .agreement label
	{
	color: #707070;
	cursor: pointer;
	}
 #preorder-window .agreement input.error + label
	{
	border-bottom: 1px solid #ff5050;
	}

 #preorder-window .agreement a
	{
	margin: 0 3px;
	font-size: 14px;
	font-style: italic;
 	color: #393939;
	text-decoration: underline;
	cursor: pointer;
	}
 #preorder-window .agreement a:hover
	{
	text-decoration: none;
	}

 #preorder-window .button
	{
	position: relative;
	margin-top: 12px;
	cursor: pointer;
	}

 #preorder-form .button span
	{
	position: absolute;
	top: 6px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: url('images/loading.gif') no-repeat;
	background-size: 100% auto;
	opacity: 0;
	}
 #preorder-form.loading .button span
	{
	opacity: 1;
	}
