
/*---------------*\
    Basket Page
\*---------------*/


.page--basket {

}
.basket {
	position: relative;
}
.basket--with-errors {

}
.basket--valid {

}




/*
CART ITEMS
*/

.basket__top {
	margin-bottom: 15px;
}

.page--basket .lmu-cart__items .cart-item {
	display: inline-block;
	vertical-align: top;
	width: 19%;
	margin-right: 1%;
}

@media only screen and (max-width: 1180px) {
	.page--basket .lmu-cart__items .cart-item {
		width: 24%;
	}
}
@media only screen and (max-width: 780px) {
	.page--basket .lmu-cart__items .cart-item {
		width: 32%;
	}
}
@media only screen and (max-width: 580px) {
	.page--basket .lmu-cart__items .cart-item {
		width: 49%;
		margin-right: 2%;
	}
	.page--basket .lmu-cart__items .cart-item:nth-of-type(2n) {
		margin-right: 0;
	}
}
@media only screen and (max-width: 480px) {
	.page--basket .lmu-cart__items .cart-item {
		width: 100%;
		margin-right: 0;
	}
}




/**
 * Checkout button (top)
 */
.basket--with-errors .basket-checkout-button {
	display: none;
}
.basket-checkout-button .checkout-button {
	height: 40px;
}
.basket-checkout-button--top {
	position: absolute;
	top: 7px;
	right: 0px;
	width: 360px;
}
@media only screen and (max-width: 780px) {
	.basket-checkout-button--top {
		position: relative;
		top: 0px;
		left: 0px;
		width: 360px;
		margin-bottom: 30px;
	}
}




/**
 * Totals, shipping, etc
 */

.basket__bottom {
}
.basket__bottom > * {
	float: left;
}
.basket__bottom .lmu-cart-incentives {
	float: none;
	margin-bottom: 15px;
}
.basket__bottom .lmu-cart-totals-container {
	width: 23%;
	margin-right: 2%;
}
.basket__bottom .select-shipping-date {
	width: 43%;
	margin-right: 2%;
}
.basket__bottom .basket-checkout-button--bottom {
	width: 30%;
}
@media only screen and (max-width: 880px) {
	.basket__bottom .lmu-cart-totals-container {
		width: 38%;
		margin-right: 2%;
		margin-bottom: 15px;
	}
	.basket__bottom .select-shipping-date {
		width: 60%;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.basket__bottom .basket-checkout-button--bottom {
		clear: both;
		float: none;
		width: 360px;
	}
}
@media only screen and (max-width: 680px) {
	.basket__bottom .lmu-cart-totals-container,
	.basket__bottom .select-shipping-date {
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.basket__bottom .lmu-cart-totals-container {
		width: 360px;
	}

}




/**
 * 'Select shipping date' interface
 */

.select-shipping-date {
	position: relative;
	background-color: #eeeaea; 
	padding: 10px;
}
.select-shipping-date.st--loading {
	background-image: url('../../images/loading.gif');
	background-repeat: no-repeat;
	background-position: center center;
}
.select-shipping-date.st--loading > * {
	visibility: hidden;
}
.select-shipping-date.st--loading::after {
	content: " ";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	visibility: visible;
}

h3.select-shipping-date__title {
	font-size: 24px;
}

.shipping-dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 2px;
	grid-row-gap: 2px;
	user-select: none;
}

.shipping-date {
	padding: 3px;
	color: #dbd7d7;
	text-align: left;
}
.shipping-date--available {
	background-color: #ffffff;
	color: #787878;
}
.shipping-date--available:hover {
	background-color: #f7b1a7;
	color: #ffffff;
	cursor: pointer;
}
.shipping-date--selected {
	background-color: #e7a195;
	color: #ffffff;
}

.shipping-date__name {
	font-family: 'Titillium Web', 'Open Sans', Arial, sans-serif;
	font-weight: bold;
	font-size: 14px;
	line-height: 14px;
	text-transform: uppercase;
}
.shipping-date__date {
	font-size: 10px;
	line-height: 12px;
	text-transform: uppercase;
}
.shipping-date__shipping_price {
	padding-top: 5px;
	font-size: 10px;
	line-height: 10px;
	color: #11baad;
}
.shipping-date__shipping_name {
	font-family: 'titillium web', 'open sans', arial, sans-serif;
	font-weight: bold;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	margin-top: 2px;
}
.shipping-date__shipping_name.priority {
	color: #ed8578 !important;
}
.shipping-date__shipping_name.fast {
	color: #ffbbae !important;
}
.shipping-date__shipping_name.standard {
	font-size: 8px;
	color: #929292 !important;
}
.shipping-date--available:hover .shipping-date__shipping_name,
.shipping-date--selected .shipping-date__shipping_name {
	color: #ffffff !important;
}
.shipping-date--available:hover .shipping-date__shipping_price,
.shipping-date--selected .shipping-date__shipping_price {
	text-shadow: 0 0 2px #ffffff;
}

.select-shipping-date-collection {
	margin-top: 15px;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
}
.select-shipping-date-collection__icon {
	padding: 0 10px;
	margin-right: 10px;
	font-size: 30px;
	line-height: 1em;
	color: #E75454;
}
.select-shipping-date-collection__input {
	margin: 0;
	cursor: pointer;
}
.select-shipping-date-collection__label {
	padding-left: 10px;
	cursor:  pointer;
	font-weight: 700;
	line-height: 1.1em;
}
.select-shipping-date-collection__label-address {
	font-size:  80%;
	font-weight: 400;
}

label.select-shipping-date-early {
	display: block;
	margin-top: 15px;
	padding: 5px 10px;
	background-color: #F57B7B;
	color: #fff;
	cursor: pointer;
}
.select-shipping-date-early > .inner {
	position: relative;
	padding-right: 50px;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
}
.select-shipping-date-early__icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 32px;
}
.select-shipping-date-early__input {
	appearance: none;
	display: block;
	margin: 0;
	border: 0 none;
	background-color: #fff;
	cursor:  pointer;
}
.select-shipping-date-early__input:checked {
	background-color: #25BDB1;
}
.select-shipping-date-early__input::after {
	display: inline-block;
	font-family: "FontAwesome";
	content: "\f00c";
	color: #fff;
	font-size: 20px;
	line-height: 1em;
	text-align: center;
}
.select-shipping-date-early__label {
	padding-left: 15px;
	cursor: pointer;
	line-height: 1em;
}
.select-shipping-date-early__label-note {
	margin-top: 5px;
	font-size:  80%;
	font-weight: 700;
	text-transform: uppercase;
}
.select-shipping-date-international {
	margin-top: 30px;
}
.select-shipping-date-international__title {
	font-family: 'Titillium Web', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
}
.select-shipping-date-international__options {
	display: flex;
	align-items: center;
}
.select-shipping-date-international__option {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.select-shipping-date-international__option:not(:last-child) {
	margin-right: 15px;
}
.select-shipping-date-international__option input {
	margin-right: 5px;
}