.fp-free-shipping-progress {
	--fp-fill: #1a5f4a;
	--fp-track: #e8e8e8;
	--fp-text: #222222;
	--fp-reached: #1a5f4a;
	--fp-excluded: #b45309;
	--fp-height: 10px;
	--fp-radius: 100px;
	--fp-font: 14px;
	box-sizing: border-box;
	margin: 1rem 0;
	padding: 0.85rem 1rem;
	color: var(--fp-text);
	font-size: var(--fp-font);
	line-height: 1.45;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 8px;
}

.fp-free-shipping-progress[hidden],
.fp-free-shipping-progress.fp-is-empty {
	display: none !important;
}

.fp-free-shipping-message {
	margin: 0;
	font-weight: 500;
}

.fp-free-shipping-progress.is-reached .fp-free-shipping-message {
	color: var(--fp-reached);
	font-weight: 600;
}

.fp-free-shipping-progress.is-excluded .fp-free-shipping-message {
	color: var(--fp-excluded);
	font-weight: 600;
}

.fp-free-shipping-track {
	height: var(--fp-height);
	margin-top: 0.65rem;
	overflow: hidden;
	background: var(--fp-track);
	border-radius: var(--fp-radius);
}

.fp-free-shipping-track[hidden] {
	display: none;
}

.fp-free-shipping-fill {
	width: var(--fp-pct, 0%);
	height: 100%;
	background: var(--fp-fill);
	border-radius: var(--fp-radius);
	transition: width 0.45s ease;
}

.fp-free-shipping-progress.is-reached .fp-free-shipping-fill {
	background: var(--fp-reached);
}

.fp-free-shipping-progress.is-excluded .fp-free-shipping-fill {
	background-color: var(--fp-excluded);
	background-image: repeating-linear-gradient(
		-45deg,
		rgba(255, 255, 255, 0.18),
		rgba(255, 255, 255, 0.18) 6px,
		transparent 6px,
		transparent 12px
	);
}

.fp-free-shipping-progress.is-mini {
	margin: 0.5rem 0 0.75rem;
	padding: 0.65rem 0.75rem;
	font-size: calc(var(--fp-font) - 1px);
}

.wp-block-woocommerce-cart > .fp-free-shipping-progress,
.wp-block-woocommerce-checkout > .fp-free-shipping-progress {
	margin-bottom: 1.25rem;
}

.fp-fsp-product-notice {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	box-sizing: border-box;
	margin: 0.35rem 0 0.85rem;
	padding: var(--fp-notice-pad-y, 9px) var(--fp-notice-pad-x, 13px);
	color: var(--fp-notice-text, #1a5f4a);
	font-size: var(--fp-notice-font, 14px);
	font-weight: var(--fp-notice-weight, 600);
	line-height: 1.35;
	background: var(--fp-notice-bg, #eef7f4);
	border: var(--fp-notice-border-width, 1px) solid var(--fp-notice-border, #cfe6de);
	border-radius: var(--fp-notice-radius, 6px);
}

.fp-fsp-product-notice__icon {
	flex: 0 0 auto;
	line-height: 1;
}

.fp-fsp-product-notice__text {
	min-width: 0;
}

.summary .fp-fsp-product-notice,
.entry-summary .fp-fsp-product-notice {
	max-width: 100%;
}
