/**
 * @author:	Geert Romijn geertATprocurios.nl
* @UI:  webshopApp standard
 * @module: mod_webshop2
 * @about: 	webshop-shopping-cart.css - Layout of the webshop shoppingcart (checkout process)
 */

/**
 * Defaults
 */

a img {
	border: 0;
}

.price .regular {
	text-decoration: line-through;
}

/** Shopping cart buttons */

button,
div.submit button,
.webshop-back-to-shop {
	padding: 4px 8px;
	border: 1px solid;
	border-color: #fff #ccc #aaa;
	font: bold 12px/20px Arial;
	background: #944e4d;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#944e4d), to(#7e3837));
	background-image: -webkit-linear-gradient(top, #944e4d, #7e3837);
	background-image: -moz-linear-gradient(top, #944e4d, #7e3837);
	background-image: -o-linear-gradient(top, #944e4d, #7e3837);
	background-image: linear-gradient(to bottom, #944e4d, #7e3837);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	-moz-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	text-shadow: none;
	vertical-align: baseline;
	filter: none;
}

button:hover,
div.submit button:hover,
.webshop-back-to-shop:hover {
	background: #944e4d;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#944e4d), to(#7e3837));
	background-image: -webkit-linear-gradient(top, #944e4d, #7e3837);
	background-image: -moz-linear-gradient(top, #944e4d, #7e3837);
	background-image: -o-linear-gradient(top, #944e4d, #7e3837);
	background-image: linear-gradient(to bottom, #944e4d, #7e3837);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 0 1px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 0 1px rgba(0, 0, 0, 0.5);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 0 1px rgba(0, 0, 0, 0.5);
}

#shopping-cart-buttons_next,
a.webshop-back-to-shop {
	border-color: #444 #444 #000;
	color: #fff;
	background-color: #944e4d;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#944e4d), to(#7e3837));
	background-image: -webkit-linear-gradient(top, #944e4d, #7e3837);
	background-image: -moz-linear-gradient(top, #944e4d, #7e3837);
	background-image: -o-linear-gradient(top, #944e4d, #7e3837);
	background-image: linear-gradient(to bottom, #944e4d, #7e3837);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
}

a.webshop-back-to-shop {
	text-decoration: none;
}

#shopping-cart-buttons_next:hover,
a.webshop-back-to-shop:hover {
	border-color: #111 #111 #000;
	color: #fff;
	background-color: #7e3837;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#7e3837), to(#944e4d));
	background-image: -webkit-linear-gradient(top, #7e3837, #944e4d);
	background-image: -moz-linear-gradient(top, #7e3837, #944e4d);
	background-image: -o-linear-gradient(top, #7e3837, #944e4d);
	background-image: linear-gradient(to bottom, #7e3837, #944e4d);
}

a.button {
	display: block; /** Hide text in delete buttons */
	height: 16px;
	width: 16px;
	float: left;
	text-indent: -999em;
}

.button-delete {
	background: url(../img/shopping-cart-sprite.png) no-repeat -17px -58px;
}

/** Form resets */
form#shopping-cart div.field {
	background: none;
	border: 0;
}

/** Pick up address layout */
#pick_up_address input,
#pick_up_address label {
	float: left;
}

#pick_up_address label {
	line-height: 16px;
}

/**
 * .webshop-shopping-cart
 */

.webshop-shopping-cart {
	position: relative;
}

#s-page-products legend {
	display: none;
}

/** Shopping cart table settings */
.shoppingcart {
	/*table-layout: fixed;*/
	width: 100%;
	margin: 0;
	border-collapse: separate; /** Rule for IE8, Fx, Opera & Safari - border-collapse: collapse; introduces unexpected border behavior (missing borders) */
	*border-collapse: collapse; /** Rule for IE7 and below - border-collapse: separate; introduces gaps between borders */
}

.shoppingcart thead {
	color: #777;
	font-size: .9em;
	background: #f8f8f8;
}

.shoppingcart tbody tr {
	background: #fff;
}

.shoppingcart tfoot {
	display: none;
}

table.first thead {
	display: table-row-group;
}

table.last tfoot {
	display: table-footer-group;
}

table.last tr.total-price-category {
	/*display: none;*/
}

.shoppingcart td,
.shoppingcart th {
	padding: 8px 10px;
	background: none;
}

.shoppingcart th {
	padding: 0 10px;
}

table.first th, table.last th {
	padding: 8px 10px;
}

.shoppingcart .scr {
	text-indent: -999em;
}

/** Table caption */
.shoppingcart caption {
	display: none;
	margin: 0;
	background-color: #565658;
	color: #fff;
	text-align: left;
	text-indent: 10px;
	font-size: 16px;
}

/** Table rows */
.s-row-buttons {
	width: 30px;
}

.s-row-image {
	width: 125px;
}

.s-row-description {
	width: 290px;
}

.s-row-unit {
	width: 65px;
}

.s-row-quantity {
	width: 65px;
}

.s-row-price {
	width: 100px;
}

.s-row-total {
	width: 115px;
}

/** Table cells */
.shoppingcart tr td {
	border-top: 1px solid #d5d5cb;
	vertical-align: middle;
}

.shoppingcart tr.first td,
.shoppingcart tr.totals td {
	border: 0;
}

.shoppingcart .image-container {
	display: block;
	width: 100px;
	height: 100px;
	overflow: hidden;
}

.product-image-container:hover {
	cursor: url(../img/enlarge.cur), url(../img/enlarge.png), pointer;
}

.product-list .product-image-container:hover {
	cursor: pointer;
}

.shoppingcart .s-quantity input {
	width: 24px;
	text-align: right;
}

.shoppingcart .s-price {
	text-align: right;
}

.s-quantity {
	background: #fff url(../img/sc-x.png) no-repeat 100% 50%;
}

.s-price-total {
	background: #fff url(../img/sc-is.png) no-repeat 0 50%;
}

/** Product description */
td.product-description span {
	display: block;
	color: #585858;
}

/** Total price */

.shoppingcart tr.totals td {
	vertical-align: top;
}

.shoppingcart .totals .totals-column {
	border-bottom: 1px solid #d5d5d5;
}

.shoppingcart .total-price .totals-column {
	font-size: 18px;
	border-bottom: 2px solid #000;
}

tr.total-price th span {
	display: block;
	font-size: 9px;
}

.total-price th,
.total-price td {
	font-size: 16px;
	vertical-align: top;
}

/**
 * 	Gift coupons
 */

#gift-coupon,
.webshop-coupon-question {
	position: relative;
	font-size: 1em;
	overflow: visible;
}

.webshop-coupon-question a {
	font-size: 12px;
}

#formfielderror_gift-coupon {
	position: absolute;
	top: -15px;
	margin-left: 0;
	font-size: 11px;
}

#formfielderror_gift-coupon strong {
	font-weight: normal;
}

form#shopping-cart #gift-coupon {
	float: left;
}

#gift-coupon label {
	float: none;
	font-size: 12px;
	font-weight: bold;
}

#gift-coupon .fieldinput {
	margin-left: 0;
}

#gift-coupon span.formpanelelement {
	margin-right: 0;
}

form#shopping-cart #coupon_code {
	width: auto;
	padding: 4px 6px 5px;
	font: normal 12px/24px Verdana, Geneva, Helvetica, sans-serif;
	-webkit-border-radius: 2px 0 0 2px;
	-moz-border-radius: 2px 0 0 2px;
	border-radius: 2px 0 0 2px;
}

#activate-coupon {
	height: 29px;
	font: bold 12px/21px Helvetica,Arial,sans-serif;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

/**
 * Layout of form which contains the shopping cart checkout process
 */

#shopping-cart {
	overflow: hidden;
	padding: 0 0 10px;
	background: #fff;
	background: #f8f8f8;
}

#shopping-cart legend {
	margin-bottom: .5em;
	font-size: 18px;
	font-weight: normal;
}

.has-pages fieldset {
	margin-bottom: .6em;
	border: 0;
	background: none;
}

.has-pages legend {
	color: #000;
	font-size: 14px;
}

form.has-pages fieldset {
	padding: 0 0 10px 0;
	border: 0;
}

form#shopping-cart label {
	color: #555;
}

form#shopping-cart .w-medium {
	width: 30em; /** Same as .fea-group */
	font: normal 12px/14px Verdana, Arial, Helvetica, sans-serif;
}

form#shopping-cart div.submit {
	margin: 0 1.5em;
	padding-top: 1em;
}

.has-pages div.field {
	width: auto; /** uibase fix */
}

/** Breadcrumbs of form with pages */
/** Most selectors are overly specified due to overly specified selectors in uibase files */
form.has-pages ul.form-bc {
	margin-bottom: 30px;
	background: transparent url(../img/shopping-cart-sprite.png) repeat-x left top;
}

form.has-pages ul.form-bc li {
	color: #000;
	background: transparent url(../img/shopping-cart-sprite.png) no-repeat right -30px;
}

form.has-pages ul.form-bc li span {
	padding: 8px 15px 10px 10px;
}

form.has-pages ul.form-bc li.current-page span {
	color: #565658;
}

/** Processed pages */
form.has-pages ul.form-bc li.processed-page {
	padding-right: 10px;
}

form.has-pages ul.form-bc li.processed-page span {
	padding-right: 20px;
	background: transparent url(../img/shopping-cart-check.png) no-repeat 100% 8px;
}

button#shopping-cart-buttons_previous {
	float: left;
}
/** Form buttons */
div.clear-shopping-cart {
	display: none;
}

.clear-shopping-cart .fieldinput {
	margin-left: 0;
}

div#content div.submit {
	clear: none;
	margin: 0 10px;
}

div.submit div.fieldinput {
	margin-left: 0;
}

.webshop-back-to-shop {
	position: absolute;
	left: 10px;
	bottom: 11px;
}

#shopping-cart-buttons_next .inner-button {
	padding-right: 13px;
	background: url(../img/webshop-arrows.png) no-repeat 100% -626px;
}

#clear-shopping-cart {
	position: absolute;
	top: 65px;
	left: 11px;
	border-color: transparent;
	color: #000;
	font-size: 10px;
	text-transform: none;
	text-decoration: underline;
	background-color: transparent;
}

#clear-shopping-cart:hover {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/**
 * Payment section
 */

#s-page-payment-methods .proFormRadio {
	margin-right: 1em;
	margin-top: .1em;
}

.payment-title {
	color: #000;
}

.payment-description {
	clear: left;
}

/**
 *     #webshop-shopping-cart-snippet (quickview)
 */

#webshop-shopping-cart-snippet {
	background: url(../img/shoppingcart.png) no-repeat 100% 100%;
}

#webshop-shopping-cart-snippet h3 {
	float: left;
	padding-right: 16px;
	font-weight: bold;
	background: url(../img/webshop-arrows.png) no-repeat 100% -446px;
}

#webshop-shopping-cart-snippet span {
	display: block;
	clear: left;
}

#webshop-shopping-cart-snippet .total-price,
#webshop-shopping-cart-snippet .total-price span {
	display: inline;
}

#webshop-shopping-cart-snippet .total-price:before {
	content: "- ";
}

/*
 * .top-right #webshop-shopping-cart-snippet
 */

.top-right #webshop-shopping-cart-snippet {
	position: relative;
	width: 118px;
	height: 30px;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent none;
	-ms-filter: none;
	filter: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.top-right #webshop-shopping-cart-snippet h3 {
	position: absolute;
	left: -999em;
}

.top-right #webshop-shopping-cart-snippet .total-price:before {
	content: '';
}

.top-right #webshop-shopping-cart-snippet span {
	display: block;
	text-indent: -999em;
}

.top-right #webshop-shopping-cart-snippet .total-price {
	top: 0;
	position: absolute;
	width: 116px;
	left: 0;
	text-align: left;
	font-weight: bold;
	text-indent: 0;
}

.top-right #webshop-shopping-cart-snippet .currency-symbol {
	position: relative;
	display: inline-block;
	text-indent: 0;
}