/*
 * Basket Side Cart v1.8.3
 * The Big Kitchen
 * Only adds the free-shipping message/progress UI and the full-screen
 * DOM confetti layer. It deliberately does NOT resize/reposition XootiX.
 */

#basket-free-shipping-v170 {
	box-sizing: border-box;
	margin: 10px 0 12px;
	padding: 11px 12px;
	border: 1px solid #c9dddc;
	border-radius: 10px;
	background: #f3faf9;
	color: #263c3d;
	font-family: inherit;
}

#basket-free-shipping-v170 *,
#basket-free-shipping-v170 *::before,
#basket-free-shipping-v170 *::after {
	box-sizing: border-box;
}

#basket-free-shipping-v170 .basket-v170-message {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

#basket-free-shipping-v170 .basket-v170-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #dfeeed;
	color: #326568;
	font-size: 14px;
	font-weight: 900;
}

#basket-free-shipping-v170 .basket-v170-copy {
	min-width: 0;
}

#basket-free-shipping-v170 .basket-v170-copy strong {
	color: #326568;
	font-weight: 800;
}

#basket-free-shipping-v170 .basket-v170-track {
	height: 7px;
	overflow: hidden;
	border-radius: 999px;
	background: #dfe9e8;
}

#basket-free-shipping-v170 .basket-v170-track > span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: #5c9497;
	transition: width .3s ease;
}

#basket-free-shipping-v170.is-unlocked {
	border-color: #78aa90;
	background: #e9f6ef;
}

#basket-free-shipping-v170.is-unlocked .basket-v170-icon {
	background: #5c9b78;
	color: #fff;
}

#basket-free-shipping-v170.is-unlocked .basket-v170-track > span {
	background: #4e9b79;
}

#basket-free-shipping-v170.is-international {
	border-color: #ddd7c7;
	background: #faf8f2;
}

#basket-free-shipping-v170.is-international .basket-v170-icon {
	background: #eee9dd;
	color: #6d675b;
}

#basket-free-shipping-v170.is-international .basket-v170-track {
	display: none;
}

/*
 * Confetti is completely independent of XootiX.
 * No canvas.
 * No CSS keyframes.
 * Movement is calculated in JavaScript with requestAnimationFrame.
 */
#basket-confetti-v170 {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	overflow: hidden;
	pointer-events: none;
	contain: strict;
}

#basket-confetti-v170 .basket-confetti-piece-v170 {
	position: fixed;
	left: 0;
	top: 0;
	display: block;
	width: 9px;
	height: 14px;
	border-radius: 2px;
	opacity: 1;
	pointer-events: none;
	will-change: left, top, transform, opacity;
}

@media (max-width: 600px) {
	#basket-free-shipping-v170 {
		margin: 8px 0 10px;
		padding: 10px;
	}

	#basket-free-shipping-v170 .basket-v170-message {
		font-size: 12px;
	}

	#basket-free-shipping-v170 .basket-v170-icon {
		width: 24px;
		height: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#basket-free-shipping-v170 .basket-v170-track > span {
		transition: none;
	}
}
