                                
/* Layout: One 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=Raleway:400,500,700,900');

* {
  box-sizing: border-box;
}

body {
	font-size: 16px;
    font-family: 'Raleway', sans-serif;
	color: #ffffff;
    background-color: #fff;
    line-height: 1.5;
	}

td {
	font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #343434;
    line-height: 1.5;
	}

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;
    }

#header {
    /* The top area that contains your banner or logo */
    background-color: #303136;
}

/* 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, .checkoutShortest, .checkoutBottom, .checkoutTop, .qtyField, .optionsDrop  {
	/* Form fields used in checkout forms */
  border: 1px solid #343434;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 13px;
  color: #222;
  background-color: transparent;
	}

.checkoutShortest {
    padding: 4px !important;
}

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

.viewCart, .shippingTable, .billingTable, .paymentMethodTable, .shipMethodTable, .payplanTable, .orderSummary {
    border-collapse: collapse;
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}
	
.viewCart th, .viewCartShort 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-color: #2e3841;
    font-size: 16px;
    }

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

.subtotal {
    background-color: #fafafa;
    font-weight: bold;
    border-top: 2px solid #ddd;
}

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

.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: 21px;
	}

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

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



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

a {
	color: #1675a2;
	}

a:hover {
	color: #1675a2;
	}

.codeButton, .continueButton {
    padding: 2px 15px 2px 15px;
    margin: 0 0 0 15px;
    cursor: pointer;
}
.codeButton, .continueButton, .upsellButton {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    color: white;
    border: solid 2px #d22124;
    background: #d22124;
    font-family: 'Raleway', sans-serif;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
	
.codeButton:hover, .continueButton:hover, .upsellButton:hover {
    background: #831a1c;
    border-color: #831a1c;
    color: white;
    text-decoration: none;
	}


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

.errorMessage {
	color: #d44;
	}

.promoField {
	border: 1px solid #343434;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	font-size: 13px;
	margin-left: 10px !important;
    width: 100% !important;
    max-width: 150px;
}

.shipMethodTable.tabular.grid b {
    font-family: sans-serif;
    font-weight: 900;
    margin-right: 5px;
    line-height: 1;
}

.paymentIcon {
    margin: 5px 7px -5px 4px !important;
}

.checkoutTop, .checkoutTopDone, .checkout, .checkoutDone, .checkoutBottom, .checkoutBottomDone {
  width: 100% !important;
  max-width: 230px !important;
}

.checkoutShortest {
  width: 100% !important;
  max-width: 100px;
}

.addressTableInfo {
  font-weight: 700;
  text-align: center;
}

#expirationMonth, #expirationYear {
  margin-top: -1px;
  max-width: 65px;
}
