/*
## webshop.css - Contains style for product/webshop module
*/

/** TODO: Make this a common style (layout.css) */

.webshop #content .article {
  padding-top: 0px;
}

.removeChange {
  text-align: center;
}

.removeChange a {
  margin: 5px;
}

#content #webshopOrder .text {
  font-size: 1.33em;
  line-height: 1.25em;
}

.webshop #content {
  padding-top: 20px;
}

#description p.text {
  font-size: 1.33em;
  line-height: 1.25em;
}

#description p {
  line-height: 1.5em;
}

/**
## start small shopping cart style ##
**/

#shoppingCart #cartWrapper {
  background: #ffffff;
  margin-top: 30px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  display: none;
}

#shoppingCart h3 {
  font-size: 1.0em;
  background: #0E0061;
  color: #ffffff;
  font-weight: bold;
  padding: 7px 0px 7px 17px;
}

#shoppingCart .container {
  padding: 7px;
  margin-left: 10px;
  line-height: 1.25em;
}

#shoppingCart .total {
  margin: 10px 0px;
  font-weight: bold;
  
}

#shoppingCart .price {
  font-size: 1.50em;
  color: #CC0001;
  font-weight: normal;
}

/**
## end small shopping cart style ##
**/

/**
## start common webshop style ##
**/
#content .infoBox {
  margin-bottom: 15px;
}

#content input.button {
  padding: 2px;
}

#content .infoBox h1.title,
#content .infoBox h2.title {
  border-bottom: 1px solid #ebeaef;
  margin-bottom: 12px;
}

#content #checkout fieldset {
  border: 0 none;
  padding: 0;
}

#content form div.submit {
  float: right;
  clear: both;
}

#webshopFooter .element {
  padding: 0.5em 0;
}

#webshopFooter a {
  float: right;
}

#webshopFooter img {
  display: inline;
}

/** TODO: Change this to #checkout label and put in checkout common styles? **/
#paymentMethod label,
#deliverMethod label {
  margin-right: 15px;
}
/**
## end common webshop style ##
**/

/**
## start common product style ##
**/

#content .product {
  border-bottom: 1px solid #eee;
}

#content .product.list.first {
  border-top: 1px solid #eee;
}

#content .product .image {
  float: left;
  margin-right: 15px;
  margin-bottom: 5px;
  border-style: solid;
  border-color: #eee;
}

#content .product .productno {
  color: #999;
}

#content .product .price,
#basketList .price {
  font-size: 150%;
  color: #CC0001;
  padding-left: 10px;
}

#content .product .product_attribute {
  padding: 5px;
  width: auto;
  margin-right: 10px;
}

#content .product form {
  width: auto;
}

#content .product form .amount,
#basketList .amount {
  width: 28px;
  margin-right: 10px;
  padding: 5px 0;
  text-align: center;
}
/**
## end common product style ##
**/

/**
## start product list style ##
**/

#content .productWrapper {
  float: left;
  width: 455px;
}

#content .productWrapper.full {
  width: 570px;
}

#content .product.list {
  position: relative;
  padding: 20px 0;
}

#content .product.list .image {
  border-width: 1px;
}

#content .product.list .image:hover {
  border-color: #ccc;
}

#content .product.list h2 {

}

#content .product.list .productno {
  display: none;
}

#content .product.list .description {
  line-height: 1.5em;
}

#content .product.list .price {

}

#content .product.list form {
  margin-bottom: 0;
}
/**
## end product list style ##
**/

/**
## start product category list style ##
**/
.productCategory #content .product.list {
  border-top: 1px solid #eee;
  border-bottom: 0 none;
  position: static
}

.productCategory #content .product.list.odd {
  float: left;
  width: 50%;
}

.productCategory #content .product.list.even {
  float: right;
  width: 50%;
}

.productCategory #content .product.list .image {
  float: right;
  margin-bottom: 0.8em;
}
.productCategory #content .product.list h2 {
  position: static;
}

.productCategory #content .product.list .shortDescription {
  padding-top: 0;
  width: auto;
}

.productCategory #content .product.list .price {
  position: static;
  clear: right;
  float: left;
  width: 70%;
}

.productCategory #content .product.list form {
  position: static;
  float: right;
  width: 30%
}
/**
## end product category list style ##
**/


/**
## start product detail style ##
**/
#content .product.detailed .image {
  border-width: 3px;
  float: left;
  margin: 0px 15px 15px 0;
}

#content .product.detailed .price {
  margin-bottom: 12px;
}

#content .product.detailed .variants {
  border-collapse: collapse;
}

#content table.variants label.variant {
  margin-right: 10px;
}

#content table.variants select.variant {
  width: auto;
  margin-bottom: 0;
  margin-right: 15px;
}

#content .product.detailed .description {
  line-height: 1.25em;
  font-size: 1.25em;
}

#content .product.detailed .fullDescription {
  line-height: 1.5em;
  clear: left;
}

/**
## end product detail style ##
**/

/**
## start shopping basket style ##
**/
#basketList,
#checkoutActions,
#orderSummary table {
  border-collapse: collapse;
  width: 100%;
}

#basketList th {
  text-align: left;
  text-transform: capitalize;
  width: 20%;
}

#basketList th.headRemove {
  width: 20%;
}

#basketList th.headImage {
  width: 10%;
}

#basketList th.headName {
  width: 50%;
}

#basketList th.headAmount {
  text-align: center;
  width: 5%;
}

#basketList th.headPrice {
  padding-left: 10px;
  width: 15%;
}

#basketList td {
  padding: 10px 0;
  border-top: 1px solid #dcdcdc;
}

#basketList td.productName {
  vertical-align: top;
}

#basketList .removeItem,
#basketList .amount {
  display: block;
  margin: 0 auto;
}

#basketList h2 {
  font-size: 1.17em;
  margin-bottom: 0;
}

#basketList .attribute {

}


#basketList table.variants td {
  border: 0 none;
  padding: 0;
}

#basketList .smallPrice {
  color: #bbb;
  padding-left: 10px;
}

#basketList .basketActions td,
#checkoutActions td {
  padding: 10px;
}

#basketList .basketActions td {
  background-color: #eee;
  border: none;
}

#basketList .basketActions td.profiled {
  font-size: 150%;
}

#checkoutActions td.checkout {
  text-align: right;
}
/**
## end shopping basket style ##
**/

/**
## start signin style ##
**/
#existingCustomer .infoBox,
#newCustomer .infoBox {
  height: 13.5em;
}
#existingCustomer {
  float: left;
  width: 49%;
  margin-right: 2%;
}

#existingCustomer form fieldset {
  border: 0 none;
  padding: 0;
}

#existingCustomer form label {
  float: left;
  width: 30%;
  margin: 0 0 0.8em 0;
}

#existingCustomer form label.error {
  float: none;
  width: auto;
  margin: 0;
  display: block;
}

#existingCustomer form input.username,
#existingCustomer form input.password {
  width: 66%;
  margin: 0 0 0.8em 0;
}

#existingCustomer form input.submit {
  float: right;
  margin-top: 10px;
}

#existingCustomer .getPassword {
  float: right;
}

#newCustomer {
  float: right;
  width: 49%;
}

#newCustomer form input.submit {
  float: right;
  margin-top: 10px;
}
/**
## end signin style ##
**/

/**
## start register style ##
**/
#content #register fieldset {
  border: 0 none;
  padding: 0;
}

#content form.twoColumn label.block,
#content form.twoColumn label .block {
  float: left;
  width: 30%;
}

#content form.twoColumn input.default {
  width: 40%;
  margin-right: 0;
  margin-bottom: 8px;
}

#content form.twoColumn input.checkbox {
  margin-right: 15em;
}

/**
## end register style ##
**/

/**
## start checkout style ##
**/
#deliverTo #infoCell {
  vertical-align: top;
}

#deliverTo .addrCell {
  padding-right: 20px;
}

#deliverTo input.text {
  padding: 5px;
  width: 250px;
  display: block;
  margin-top: 2px;
  margin-bottom: 10px;
}

#deliverTo input.text.none{
  border:1px solid #fff;
}

#content form textarea{
  width:264px;
}

#content form select{
  width:265px;

}

#deliverTo ul {
  margin-bottom: 0;
  padding-left: 0;
}

#deliverTo ul li {
  list-style-type: none;
}

#deliverTo .deliveryAddress {
  float: left;
  width: 50%;
}

#deliverTo .paymentAddress {
  float: right;
  width: 50%;
}

#orderSummary {
  width: 100%;
  /*padding-right: 10px;*/
}

#orderSummary table td {
  padding: 5px 0px;
}

#orderSummary td.even {
  width: 17%;
}

#orderSummary td.odd {
  text-align: right;
  padding-right: 5px;
}

#orderSummary td.total {
  font-size: 1.33em;
  font-weight: bold;
}

#paymentMethod,
#deliverMethod {
  float: left;
  width: 65%;
}

#paymentInfo,
#deliveryInfo {
  padding: 4px;
  margin-top: 1em;
  border: 1px dashed #f0f0f0;
}

#basketSummary {
  clear: left;
  border-bottom: 1px solid #EBEAEF;
}
/**
## end checkout style ##
**/

/**
## start receipt style ##
**/
#webshopOrder h1 .first {
  float: left;
  width: 50%;
}

#webshopOrder h1 .last {
  float: right;
  width: 50%;
  text-align: right;
}

#webshopOrder .receipt {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.25em;
}

#webshopOrder .receipt .separator {
  border-bottom: 1px solid #ebeaef;
}

#webshopOrder .payer,
#webshopOrder .shipper,
#webshopOrder .orderDetails,
#webshopOrder .receiptSummary {
  margin: 1em 0em;
}

#webshopOrder .orderDetails,
#webshopOrder .receiptSummary {
  margin-top: 1em;
}

#webshopOrder #basketList {
  margin-top: 2em;
  border-collapse: collapse;
}

#webshopOrder #basketList th {
  width: 0%;
}

#webshopOrder #basketList th.productID {
  width: 12%;
}

#webshopOrder #basketList th.productName {
  width: 52%;
}

#webshopOrder #basketList th.amount {
  width: 8%;
}

#webshopOrder #basketList th.priceCell {
  width: 14%;
}

#webshopOrder #basketList td.position {
  padding-right: 10px;
  padding-left: 10px;
}

#webshopOrder #basketList th.productId,
#webshopOrder #basketList td.productId {
  /*text-align: center;*/
}

#webshopOrder #basketList td.productAmount {
  /*text-align: center;*/
}

#webshopOrder #basketList .last td {
  /*border-bottom: 1px dashed #f0f0f0;*/
}

#webshopOrder #basketList .summaryLines td {
  border: 0 none;
  padding: 5px 0px;
  text-align: right;
  background: #eeeeee;
}

#webshopOrder #basketList .summaryLines td.total {
  /*padding-right: 10px;*/
  border-top: 1px solid #ebeaef;
  border-bottom: 1px double #ebeaef;
  font-weight: bold;
}

#webshopOrder #basketList .priceCell,
#webshopOrder #basketList .summaryLines td.priceCell {
  text-align: right;
  padding-right: 5px;
}

#webshopOrder #basketList .productPrice.priceCell {
  padding-right: 0px;
}

.blank{
 height:63px;
 display:block;
}

/**
## end receipt style ##
**/
