
/**
 * Cart, Cart Items & Cart Totals
 */


/**
 * Cart errors
 */
.cart-errors {
	border: #c00000 1px solid;
	padding: 5px 10px;
	margin-bottom: 30px;
	width: 500px;
	color: #c00000;
}
.cart-errors__message {
	font-size: 15px;
	margin-bottom: 5px;
}
ul.cart-errors__errors {
	list-style-type: square;
	font-size: 15px;
	margin: 0;
	padding: 0 0 0 20px;
}
ul.cart-errors__errors > li {
	margin: 0;
}


/**
 * LMU Cart
 */
.lmu-cart {
	text-align: left;
}
.lmu-cart--with-controls {
}
.lmu-cart__items {
}
.lmu-cart-totals-container.st--loading {
}


/**
 * Cart items
 */
.cart-item {
	position: relative;
	border: #b3b3b3 1px solid;
	background-color: #f5f5f5;
	margin-bottom: 15px;
	padding: 5px;
	text-align: left;
}
.cart-item.st--added {
	border: #00746b 1px solid;
}
.cart-item.st--loading {
	background-image:url('../../images/loading/black-on-white.gif');
	background-repeat: no-repeat;
	background-position: center;
}
.cart-item.st--loading * {
	visibility: hidden;
}
.cart-item__controls {
	position: absolute;
	top: 8px;
	right: 1px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
}
.cart-item-control {
	width: 16px;
	height: 16px;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	opacity: 0.8;
}
.cart-item-control:hover {
	opacity: 1;
}
.cart-item-control:not(:last-child) {
	margin-right: 10px;
}
.cart-item-control--remove {
	background-image:url('../../images/icons/x--black--small.png');
	background-size: contain;
}
.cart-item-control--edit {
	background-image:url('../../images/icons/pencil--black--medium.png');
	background-size: contain;
}
.cart-item__title {
	font-size: 14px;
	line-height: 1.2em;
	margin-bottom: 5px;
}
.cart-item__title a {
	color: #0ca69a !important;
	text-decoration: none !important;
}
.cart-item__title span {
	font-size: 75%;
}
.lmu-cart--with-controls .cart-item__title {
	padding-right: 40px;
}
.lmu-cart-item-breakdown {
	clear: both;
}
.lmu-cart-item-breakdown table {
	width: 100%;
	border-collapse: collapse;
	border: 0 none;
}
.lmu-cart-item-breakdown table tr.lmu-cart-item-breakdown__prices {
	border-bottom: #b3b3b3 1px solid;
}
.lmu-cart-item-breakdown table td {
	border: 0 none;
	padding: 2px 0;
	font-size: 12px;
	line-height: 1.2em;
	vertical-align: top;
	word-break: break-word;
}
.lmu-cart-item-breakdown table td.colour {
	padding-top: 5px;
}
.lmu-cart-item-breakdown table td.size {
	padding-top: 5px;
	text-align: right;
}
.lmu-cart-item-breakdown table td.price {
	width: 40%;
	white-space: nowrap;
	color: #b63735;
	text-align: left;
}
.lmu-cart-item-breakdown table td.price > span {
	display: inline-block;
	margin-left: 1px;
}
.lmu-cart-item-breakdown table td.qty {
	width: 20%;
	text-align: center;
}
.lmu-cart-item-breakdown table td.line-total {
	width: 40%;
	white-space: nowrap;
	color: #00746b;
	font-weight: bold;
	text-align: right;
	padding-right: 0;
}

.lmu-cart-item-logo-note {
	padding-top: 5px;
	font-size: 12px;
	color: #b63735;
	margin-bottom: 5px;
}
.lmu-cart-item-logo-note > span {
	display: inline-block;
	margin-right: 1px;
}

.lmu-cart-item-logos-detailed {
}
.lmu-cart-item-logos-detailed_title {
	color: #00746b;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 0;
}
.lmu-cart-item-logos-detailed .user-file {
	padding: 2px 0;
	border-bottom: 1px solid #b3b3b3;
	font-size: 12px;
	line-height: 1.4em;
}
.lmu-cart-item-logos-detailed .user-file__name {
}
.lmu-cart-item-logos-detailed .user-file__details {
}
.lmu-cart-item-logos-detailed .user-file__details div {
}
.lmu-cart-item-logos-detailed .user-file__name span,
.lmu-cart-item-logos-detailed .user-file__name a,
.lmu-cart-item-logos-detailed .user-file__details span {
	font-weight: bold;
}
.lmu-cart-item-logos-detailed .user-file__name span,
.lmu-cart-item-logos-detailed .user-file__name a {
	color: #0ca69a;
}
.lmu-cart-item-logos-detailed .user-file__name span.original-file-name {
	color: #b63735;
	font-weight: normal;
}
.lmu-cart-item-logos-detailed .user-file__details div.cost span {
	color: #b63735;
	font-weight: normal;
}
.lmu-cart-item-total-price {
	margin-top: 5px;
	color: #00746b;
	font-size: 15px;
	font-weight: bold;
	text-align: right;
}

.lmu-cart-item-staff-actions {
	display: flex;
	flex-direction: row;
	column-gap: 15px;
	row-gap: 5px;
	align-items: center;
	margin-top: 10px;
}

.lmu-cart-item-staff-actions a,
.lmu-cart-item-staff-actions button {
	margin: 0;
	border: 0 none;
    padding: 0 0 0 20px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: 15px;
    font-size: 14px;
    line-height: 16px;
	color: #FF9933;
    font-weight: bold;
	cursor: pointer;
}
.lmu-cart-item-staff-actions a:hover,
.lmu-cart-item-staff-actions button:hover {
	opacity: 0.8;
}

.lmu-cart-item-logocheck {
	background-image: url('../../images/icons/check-in-circle--black-small.png');
	color: #ED8578 !important;
}

.lmu-price-amends-toggle {
    background-image: url(../../images/icons/pencil--black--small.png);
	background-size: contain !important;
}
.lmu-price-amend-interface {
	display: none;
}
.lmu-price-amend-interface.st-show {
	margin: 5px auto 0 0;
	display: flex;
	flex-direction: row;
	column-gap: 5px;
	align-items: center;
	justify-content: left;
	flex-wrap: nowrap;
}
.lmu-price-amend-input {
	border: #FF9933 1px solid;
	border-radius: 5px;
	background-color: #fff;
	padding: 2px;
	width: 75px;
	font-size: 14px;
	line-height: 16px;
	color: #FF9933;
    font-weight: bold;
	text-align: left;
}
.lmu-price-amend-remove {
	cursor: pointer;
	color: #000;
}
.lmu-price-amend-original-price {
	margin-top: 5px;
	color: #FF9933;
	white-space: wrap;
}


/**
 * Cart incentives
 */
.lmu-cart-incentives {
	color: #b63735;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.2em;
}
.lmu-cart-incentives * {
	font-family: 'Titillium Web', 'Open Sans', Arial, sans-serif;
}
.lmu-cart-incentives ul {
	list-style-type: square;
	padding: 0 0 0 25px;
	margin: 0;
}
.lmu-cart-incentives ul li {
	padding: 5px 0 5px 0;
	margin: 0;
}


/**
 * Cart totals
 */
.lmu-cart-totals-container {
}
.lmu-cart-totals-container.st--loading .lmu-cart-totals {
	background-image:url('../../images/loading/white-on-green.gif');
	background-repeat: no-repeat;
	background-position: center center;
}
.lmu-cart-totals-container.st--loading .lmu-cart-totals > * {
	visibility: hidden;
}
.lmu-cart-totals {
	background-color: #0ca69a;
	padding: 10px;
	color: #ffffff;
	text-align: left;
}
.lmu-cart-totals__title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.lmu-cart-totals__stats {
	margin-bottom: 10px;
}

.cart-totals-item {
	font-size: 15px;
	margin-bottom: 0;
}
.cart-totals-item div:nth-of-type(1) {
	float: left;
}
.cart-totals-item div:nth-of-type(2) {
	float: right;
}
.cart-totals-item span {
	font-size: 80%;
}
.cart-totals-item--gross {
	margin-bottom: 10px;
}
.cart-totals-item--gross,
.cart-totals-item--before-shipping,
.cart-totals-item--net {
	font-weight: bold;
}
.cart-totals-item--vat {
	margin: 10px 0;
}
.cart-totals-item--net {
	margin: 10px 0 0;
}
.cart-totals-item--net div:nth-of-type(1) {
	text-transform: uppercase;
}


