/* Layout: Two Column
Theme: Basic Blue

Appearance.css contains the costmetic properties for your order
form, such as fonts, colors, background images and borders.

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);
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,700);

body, td {
	font: 15px/1.5  'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
	color: #222;
	}
th {
  color: #FFF;
}

img, img a {
    border: 0 none;
	}



/* PRODUCT GRID
===============================================================*/

.priceBold {
	/* Price subtotal on bottom right of product grid */
	font-weight: bold;
	}

.discountedPrice {
	text-decoration: line-through;
    color: red;
    font-size: 18px;
	}

.totalPrice {
	/* Subtotal label on bottom left of product grid */
	font-weight: bold;
	}

.optionChosen {
	font-style: italic;
	color: #999;
	font-size: 14px;
	}

.updateCart {
	/* Link to update quantity */
	font-size: 10px;
	}

.promoField {
    /* Text fields for promo code */
	border: 1px solid #ddd;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
    font-size: 13px;
	}



/* FORMS
===============================================================*/

.checkout, .checkoutShort, .checkoutShortBottom, .checkoutShortest, .checkoutBottom, .checkoutTop, .qtyField, .optionsDrop  {
	/* Form fields used in checkout forms */
	border: 1px solid #ddd;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
    font-size: 13px;
	color: #222;
	}

.checkoutDone, .checkoutTopDone, .checkoutBottomDone {
	/* Form fields used on confirmation page */
    font-size: 13px;
	color: #222;
	}

.viewCart, .shippingTable, .billingTable, .paymentMethodTable, .shipMethodTable, .payplanTable, .orderSummary {
	outline: 1px solid #c3e1e5;
	border-collapse: collapse;
	}

.viewCart th, .payPlan th, .summaryCart th, .shippingInfo th, .billingInfo th, .billingTable th, .shippingTable th, .paymentInfo th, .signinTable th, .paymentMethodTable th, .shipMethodTable th, .payplanTable th, .orderSummary th {
    background: #73b413;
	border-bottom: 1px solid #c3e1e5;
    }

.viewCart td, .viewCartShort td, .payPlan td, .summaryCart td, .shippingInfo td, .billingInfo td, .paymentInfo td, .orderSummary td {
	border-top: 1px solid #c3e1e5;
	}

.subtotal {
	background-color: #f6f6f6;
	font-weight: bold;
	}

.cartDiscount {
    /* Discount text */
	color: #f00;
    }

.financeCharge {
    font-size: 12px;
    color: #777;
    }



/* UPSELLS
===============================================================*/

#upsellContainer {
  	overflow: hidden;
	}

#upsellContainer img {
	border: 1px solid #ddd;}

.upsell {
	background-color: #f6f6f6;
	border: 1px solid #f1edb4;
	}

.upsellRegPrice {
	font-style: italic;
	}



/* TYPOGRAPHY
===============================================================*/

h1 {
    /* Used for product names */
	font-size: 16px;
	}

h2 {
    /* Used for upsell product names */
    font-size: 16px;
    }

h3 {
    /* Used for upsell headline */
    font-size: 15px;
	font-weight: normal;
    color: #555;
	text-transform: uppercase;
	}



/* LINKS AND BUTTONS
===============================================================*/

a {
	color: #1675a2;
	}

a:hover {
	color: #1675a2;
	}

.codeButton, .continueButton, .upsellButton  {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
    text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	border: solid 1px #649d11;
    background-color: #73b413;
    }

.codeButton:hover, .continueButton:hover, .upsellButton:hover {
	background-color: #5b8f0f;
    border-color: #41660b;
	text-decoration: none;
    color: #fff;
	}

.codeButton:active, .continueButton:active, .upsellButton:active {
	position: relative;
	top: 1px;
    }



/* MISC
===============================================================*/

.errorMessage {
	color: #dd4949;
	}

