/* CSS for the shopping cart */
.shopping_cart_body {
  padding: 10px 0;
}
.shopping_cart_body span {
  display: block;
}
.cart_row {
  display: block;
  padding: 10px;
  border: 1px dashed #CCC;
  margin-top: -1px;
  text-align: center;
}

.cart_row > div {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}

.cart_row > div > div {
  display: inline-block;
  vertical-align: middle;
}

.cart_row .product_description {
  min-width: 180px;
}
span.price {
  display: inline;
}

.cart_row .last > div {
  width: 32%;
  text-align: center;
}

.product_price .button {
  display: block;
  font-size: 0.7em;
  white-space: normal;
}
span.change_quantity_type_fabric {
  display: inline;
}
span.quanttype {
  display: inline;
  font-weight: bold;
}

.group_name_text {
  font-size: 1.5em;
  font-weight: 100;
}

.empty_shopping_cart {
  float: right;
}
.empty_shopping_cart a {
  font-size: 0.7em;
}

.subtotal {
  width: 300px;
  max-width: 100%;
  margin: 10px auto;
  text-align: center;
  clear: both;
}

.shopping_buttons {
  width: 300px;
  margin: 0 auto;
  text-align: center; 
  max-width: 100%;
}
.shopping_buttons a {
  display: block;
  margin: 0;
  margin-bottom: -1px;
}
.shopping_buttons a.button {
  color: #666;
  border-color: #999;
  position: relative;
  z-index: 0;
  text-transform: none;
}
.shopping_buttons a.button:hover {
  color: #223f5c;
  border-color: #223f5c;
}


.shopping_buttons a.button.good {
  color: #1e8e00;
  border-color: #1e8e00;
  z-index: 10;
}
.shopping_buttons a.button.good:hover {
  border-color: #6cc355;
  color: #6cc355;
}

.saved_cart_message {
  margin: 0 auto;
  text-align: center;  
  font-weight: 100;
  font-style: italic;
  margin: 5px;
}

#total_line {
  font-size: 1.6em;
}
#subtotal_row {
  font-size: 1.1em;
}
#shipping_rate_row {
  font-size: 1.2em;
}

#shipping_totals .pure-control-group label {
  max-width: 160px;
}
.pure-form-aligned .pure-controls {
  margin-top: 0px;
  margin-bottom: 10px;
}

#shipping_information_local_pickup_address {
  display: inline-block;
}


#coupon_code {
  text-transform: uppercase;   
}
#friends.highlight {
  display: inline-block;
}

.hidden_textarea {
  display: none;
}