/* Layout: One Column
Theme: Basic Gray

Layout.css contains the layout properties for your order form, 
including width, height, margin, padding, position, float, 
display and text-align.

NOTE: There are additional classes that are not listed here 
because they currently have no attributes. You can locate 
these by downloading and using Firebug.
===============================================================*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic);
/* The above link needs to be moved to appearance.css */

* {
	margin: 0;
	padding: 0;
}
#wrapper {
	/* Wraps around everything and sets the total width of the order form */
	position: relative;
	width: 860px;
	margin: 0 auto;
	max-width: 100%;
	padding: 45px;
}
#header {
	/* The top area that contains your banner or logo */
	width: 860px;
	max-width: 100%;
}
#content {
	/* Content wrapper */
	position: relative;
	width: 860px;
	margin: 0 auto;
	max-width: 100%;
}
#logo {
	width: 300px;
	height: 165px;
	float: left;
	margin-bottom: 20px;
	text-align: center;
}
#headSupport {
	float: right;
	text-align: right;
}
#productInformation {
	width: 360px;
	float: right;
	padding: 0px 25px;
	/*clear: right;*/
}
/* PRODUCT GRID
===============================================================*/

.productImage {
	/* Image in the product grid */
	margin: 8px 0 10px 0;
	border: 1px solid #eee;
}
.price {
	/* Price in the right column of the product grid */
	display: block;
}
.productDescription {
	/* Paragraph for short product description */
	margin-bottom: 13px;
}
.optionsDrop {
	/* Dropdown for product options */
	padding: 4px 4px 4px 6px;
	margin-bottom: 13px;
	width: 200px;
}
.subscriptionPlan {
	display: block;
}
.qtyField {
	/* Quantity field in product grid */
	padding: 4px 4px 4px 6px;
	width: 30px;
	display: block;
	text-align: right;
	margin: 0 auto;
	margin-bottom: 5px;
}
/* HTML AREAS (Insert custom HTML by going to the HTML area tab)
===============================================================*/

#topCustomHTML {
	/* HTML area below header image. */
	margin: 35px 0 15px 0;
}
#middleCustomHTML {
	/* HTML area below product grid. */
	margin: 35px 0 60px 0;
	clear: both;
}
#bottomCustomHTML {
	/* This is your footer. */
	width: 860px;
	margin: 40px auto 20px auto;
	padding: 15px;
	text-align: center;
	clear: both;
	max-width: 100%;
}
/* FORMS
===============================================================*/

input {
	margin: 0 0 7px 0;
}
.paymentLabel {
	/* Labels for payment method table */
	display: block;
}
.choosePlan {
	/* Radio buttons used to choose pay plan or shipping option */
	margin-right: 5px;
}
/* Form fields and labels
---------------------------------------------*/

.checkout, .checkoutDone {
	/* Form fields used in checkout forms */
	padding: 4px 4px 4px 6px;
	margin: 0;
	width: 200px;
}
.checkoutBottom, .checkoutBottomDone {
	/* Provides bottom padding for last form field in a form */
	padding: 4px 4px 4px 6px;
	margin: 0 0 20px 0;
	width: 200px;
}
.checkoutTop, .checkoutTopDone {
	/* Provides top padding for first form field in a form */
	padding: 4px 4px 4px 6px;
	margin: 10px 0 0 0;
	width: 200px;
}
.checkoutLabel {
	/* Checkout form label */
	padding: 0 0 -3px 0;
	margin: 0 0 -3px 0;
}
.checkoutShort, .promoField {
	/* Smaller form field */
	padding: 4px;
	margin: 0;
	width: 125px;
}
.promoLabel {
	padding-top: 3px;
}
.checkoutShortest {
	/* Even smaller form field */
	padding: 5px;
	margin: 0;
	width: 70px;
}
.addressTableInfo {
	margin-bottom: 0px;
}
.paymentIcon {
	/* Credit card, pay pal and check icons in payment information table */
	margin: 0 7px -5px 4px;
}
/* Tables
---------------------------------------------*/

.viewCart {
	/*width: 100%;*/
	width: 400px;
	border-collapse: collapse;
	margin: 20px 0 30px 0;
	float: left;
	border-radius: 4px;
	max-width: 100%;
}
.viewCart th, .billingTable th, .shippingTable th, .shipMethodTable th, .paymentMethodTable th, .payplanTable th, .orderSummary th {
	padding: 10px 10px 10px 15px;
	text-align: left;
}
.viewCart td, .shipMethodTable td, .paymentMethodTable td, .payplanTable td, .orderSummary td {
	padding: 10px 10px 10px 15px;
	vertical-align: top;
}
.billingTable td, .shippingTable td {
	padding: 8px 0 0 15px;
	vertical-align: top;
}
.billingTable {
	/* Table for entering billing address */
	/*width: 470px;*/
	width: 400px;
	border-collapse: collapse;
	margin: 0 20px 0px 0;
	text-align: left;
	float: left;
	max-width: 100%;
	/*height: 500px;*/
}
.billingTable tr:last-child td {
	padding: 0px;
	line-height: 1px;
	height: 1px;
}
.shippingTable {
	/* Table for entering shipping address */
	/*width: 470px;*/
	width: 400px;
	border-collapse: collapse;
	margin: 0 0 20px 0;
	text-align: left;
	float: right;
	/*height: 500px;*/
	max-width: 100%;
}
.orderSummary {
	/* Table for order form summary */
	position: relative;
	/*width: 470px;*/
	width: 400px;
	border-collapse: collapse;
	margin-bottom: 20px;
	text-align: left;
	/*float: right;*/
	float: left;
	clear: right;
	max-width: 100%;
}
.shipMethodTable {
	/* Table for shipping options */
	/*width: 470px;*/
	width: 400px;
	border-collapse: collapse;
	margin-bottom: 20px;
	margin-right: 20px;
	text-align: left;
	float: left;
	clear: left;
	max-width: 100%;
}
.payplanTable {
	/* Table for choosing pay plan */
	/*width: 470px;*/
	width: 400px;
	border-collapse: collapse;
	margin-bottom: 20px;
	text-align: left;
	float: left;
	max-width: 100%;
}
#shipPaymentContainer {
	/*width: 470px;*/
	width: 400px;
	float: left;
	max-width: 100%;
}
.tableOption { /**/
	/* Paragraph for shipping or pay plan option */
	margin: 0 0 11px 0;
}
.payplanSummary { /* Box that shows payment schedule for payment plan */
	background-color: #fff;
	width: 200px;
	margin: -12px 0 15px 0;
}
.paymentDate { /* Date shown in .paypanSummary box */
	width: 100px;
	display: inline-block;
	border-bottom: 1px dashed #ddd;
}
.paymentAmount { /* Payment amount shown in .paypanSummary box */
	width: 65px;
	text-align: right;
	display: inline-block;
	border-bottom: 1px dashed #ddd;
}
.financeDate { /* Finance charge label shown in .paypanSummary box */
	color: #777;
	font-style: italic;
	width: 100px;
	display: inline-block;
}
.financeAmount { /* Finance charge amount shown in .paypanSummary box */
	color: #777;
	font-style: italic;
	width: 65px;
	text-align: right;
	display: inline-block;
}
.promoCode {
	/* Table for promo code field */
	width: 400px;
	border-collapse: collapse;
	margin-left: 15px;
	max-width: 100%;
}
.promoCode td {
	height: 30px;
}
.paymentMethodTable {
	/* Table for entering payment method */
	width: 400px;
	/*width: 100%;*/
	border-collapse: collapse;
	margin: 0px 0 20px 0;
	text-align: left;
	/*float: right;*/
	float: left;
	max-width: 100%;
}
td.pay1 {
	/* First column in .paymentMethodTable */
	/*width: 220px;
	padding-bottom: 20px;*/
	display: block;
	float: left;
}
td.pay2 {
	/* First column in .paymentMethodTable */
	/*width: 231px;
	padding-bottom: 20px;*/
	display: block;
	float: left;
}
td.pay3 {
	/* First column in .paymentMethodTable */
	/*width: 186px;
	padding-bottom: 20px;*/
	display: block;
	float: left;
}
td.pay4 {
	/* First column in .paymentMethodTable */
	/*width: 314px;
	padding-bottom: 20px;*/
	display: block;
	float: left;
}
td.rightAlign {
	text-align: right;
	vertical-align: top;
	padding-top: 10px;
	height: 20px;
}
th.rightAlign {
	text-align: right;
}
th.rightAlignTop {
	text-align: right;
	vertical-align: top;
	padding-top: 20px;
	width: 150px;
}
td.rightAlignTop {
	text-align: right;
	padding-top: 20px;
	width: 150px;
	height: 20px;
}
td.rightAlignBottom {
	text-align: right;
	vertical-align: top;
	padding: 10px 10px 20px 0;
	width: 150px;
}
th.leftAlign {
	text-align: left;
	height: 15px;
}
td.leftAlign {
	text-align: left;
}
td.centerAlign, th.centerAlign {
	text-align: center;
}
td .rightCell {
	text-align: right;
}
.productCell {
	width: 80%;
!important
}
.qtyCell {
	width: 10%;
!important
}
.priceCell {
	width: 10%;
!important
}
.checkoutLinks {
	padding: 0px 15px 25px;
	/* Container for 'Checkout' and 'Continue Shopping' buttons */
	/*width: 300px;
	height: 30px;
	margin: 0 0 40px 0;
	text-align: right;
	float: right;
	clear: both;*/
}
/* UPSELLS
===============================================================*/

#upsellContainer {
	/* Contains all upsells */
	width: 860px;
	margin-bottom: 60px;
	clear: both;
	max-width: 100%;
}
.upsell {
	/* Box that contains single upsell */
	width: 283px;
	float: left;
	margin: 0 10px 20px 0;
	padding: 10px 10px 12px 15px;
}
.upsellImage {
	float: left;
	margin: 6px 15px 0 0;
}
.upsellItem {
	/* Product name */
	font-weight: bold;
	margin-right: 10px;
}
.upsellAdd {
	/* Add to cart button for upsells */
	float: right;
	margin: 7px 7px 0 0;
}
.upsellPrice {
	margin-left: 9px;
}
/* TYPOGRAPHY
===============================================================*/

h1 {
	/* Used for product names */
	margin: 2px 0 2px 0;
}
h2 {
	/* Used for upsell product names */
	margin-right: 10px;
	display: inline;
}
#upsellContainer h2 {
	/* Used for upsell product names */
	margin: 5px 12px 0 0;
	display: inline-block;
}
h3 {
	/* Used for upsell headline */
	margin: 0 0 5px 0;
	padding-bottom: 3px;
}
/* LINKS AND BUTTONS
===============================================================*/

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
.codeButton {
	padding: 3px 15px 3px 15px;
	margin: 0 0 0 15px;
	cursor: pointer;
}
.upsellButton {
	margin: 0 0 0 1px;
	padding: 1px 8px 2px 8px;
	cursor: pointer;
}
.productChart {
	width: 100%;
	background-color: rgba(45,2,81,0.1);
	color: #4F4F4F;
	margin: 20px 0 10px 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.productChart .column {
	width: 25%;
	float: left;
}
.productChart .column3 {
	width: 75%;
	float: left;
}
.productChart .subtotal {
	clear: both;
	background-color: #CC9900;
	color: #FFFFFF;
	padding: 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-webkit-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px;
}
.productChart .subtotal .right {
	display: inline-block;
	float: right;
}
.productChart .title {
	border-bottom: solid 1px #CC9900;
	padding: 10px;
	font-size: 20px;
	line-height: 26px;
	font-weight: bold;
	color: #4F4F4F;
}
.productChart .details {
	padding: 10px;
	font-size: 15px;
	line-height: 20px;
	padding: 10px;
}
@media(max-width:860px) {
	#wrapper {
		padding: 0px;
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
		border-radius: 0px;
		width: 100%;
		overflow: hidden;
	}
	img {
		max-width: 100%;
	}
	#logo {
		width: 100%;
		clear: both;
		float: none;
		margin-bottom: 10px;
	}	
	#headSupport {
		width: 100%;
		clear: both;
		float: none;
		text-align: center;
		margin-bottom: 10px;
	}
	#productInformation {
		width: 100%;
		float: none;
		padding: 0px;
		clear: both;
	}
	.checkoutLinks {
		display: block;
	}
	.checkoutLinks {
		padding: 0px 0px 25px;
	}
}
@media(min-width:767px) {
}
@media(max-width:767px) {
	.productChart {
		width: auto;
		margin: 0px 0px 10px;
		padding: 5px;
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
		border-radius: 0px;
	}
	.productChart .column, .productChart .column3 {
		width: 100%;
		float: none;
		clear: both;
	}
	.productChart .subtotal {
		clear: both;
		padding: 5px;
		margin: 0px -5px -5px;
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
		border-radius: 0px;
	}
	.productChart .title {
		width: 35%;
		float: left;
		text-align: right;
		border-bottom: none;
		padding: 5px 0px;
		font-size: 20px;
		line-height: 20px;
	}
	.productChart .details {
		width: 55%;
		float: right;
		text-align: left;
		padding: 5px 0px;
		font-size: 16px;
		line-height: 20px;
	}
	td.pay1 {
		width: 100%;
		display: block;
		float: left;
	}
	td.pay2 {
		width: 100%;
		display: block;
		float: left;
	}
	td.pay3 {
		width: 100%;
		display: block;
		float: left;
	}
	td.pay4 {
		width: 100%;
		display: block;
		float: left;
	}
	#ORDER_FORM_PRODUCT_LIST, #ORDER_FORM_BILLING_ENTRY, #ORDER_FORM_SUMMARY {
		max-width: 100% !important;
		/*overflow: hidden;*/
	}
	table.viewCart {
		margin: 0px !important;
		/*max-width: 100% !important;*/
	}
	.viewCart td.productCell {
		/*width: 30% !important;*/
	}
	.viewCart .priceCell {
		/*width: 25% !important;*/
	}
	.viewCart .qtyCell {
		/*width: 20% !important;*/
	}
	.viewCart th, .billingTable th, .shippingTable th, .shipMethodTable th, .paymentMethodTable th, .payplanTable th, .orderSummary th {
		font-size: 15px;
		padding: 5px;
	}
	.viewCart td, .shipMethodTable td, .paymentMethodTable td, .payplanTable td, .orderSummary td {
		padding: 5px;
		font-size: 14px;
	}
	.billingTable {
		/*width: 100%;*/
		margin: 0px;
		float: none;
	}
	.billingTable td {
		display: block;
		float: left;
		clear: both;
		width: auto;
	}
	.billingTable td.rightAlign, .billingTable td.rightAlignTop {
		clear: both;
		text-align: left;
	}
}