                        
/* Layout: Two Column
Theme: Graphite

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=Source+Sans+Pro:400,700,900);

body {
	font: 15px/1.5 Source Sans Pro, Helvetica, sans-serif;
	color: #000;
	background-color: #222;
        background-image: url(/resources/styledcart/images/graphite/two-column/order-form/graphite-bgr.png);
	}

td {
    color: #222;
	}
	
img, img a {
    border: 0 none;
	}

#wrapper {
    /* Wraps around everything and sets the total width of the order form */
    background-color: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    }
	


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

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

.discountedPrice {
	text-decoration: line-through;
	}

.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, .checkoutShortTop, .checkoutShortBottom, .checkoutShortest, .checkoutBottom, .checkoutTop, .qtyField, .optionsDrop  {
	/* Form fields used in checkout forms */
	border: 1px solid #ddd;
	-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 #ddd;
	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: #222;
    color:#fff;
    }

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

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

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

.paymentDate, .paymentAmount, .financeDate, .financeAmount { /* Shown in payplan pay schedule box */
	font-size: 12px;
	}

.payplanSummaryHeader { /* Header for payplan pay schedule box */
	font-size: 12px;
	font-weight: bold;
	}



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

#upsellContainer {
    overflow: hidden;
	}

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

.upsellRegPrice {
	font-style: italic;
	}

.upsellPrice {
	color: #ff0000;
	}
	
.upsell img {
	border: 1px solid #ddd;
	}



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

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

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

h3 {
    /* Used for upsell headline */
    font-size: 12px;
    color: #222;
    }



/* 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;
	font-size: 15px;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	border: solid 1px #e74c3c;
	background: #444;
	background: -webkit-gradient(linear, left top, left bottom, from(#e74c3c), to(#e74c3c));
	background: -moz-linear-gradient(top,  #e74c3c,  #e74c3c);
    background: linear-gradient(to bottom,  #e74c3c,  #e74c3c);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e74c3c', endColorstr='#e74c3c');
    font-family: 'Doppio One';
    }
	
.codeButton:hover, .continueButton:hover, .upsellButton:hover {
	color: #fff;
    background: #c0392b;
	background: -webkit-gradient(linear, left top, left bottom, from(#c0392b), to(#c0392b));
	background: -moz-linear-gradient(top,  #c0392b,  #c0392b);
    background: linear-gradient(to bottom,  #c0392b,  #c0392b);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#c0392b', endColorstr='#c0392b');
	text-decoration: none;
	}



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

.errorMessage {
	color: #d44;
	}   

