.kw-free-shipping {
	display: grid;
	gap: 10px;
}

.kw-free-shipping-bar__container {
	background: var(--fs-color-primary);
	margin-top: -30px;
	margin-left: -30px !important;
	margin-right: -30px !important;
	padding: 30px;
	margin-bottom: 50px;
}

.nav-dropdown .kw-free-shipping {
	min-width: 300px;
}

.kw-free-shipping__bar {
	background: #ddd;
	border-radius: 5px;
	height: 8px;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 30px;
}

.kw-free-shipping__bar {
	position: relative;
	height: 8px;
	background-color: #82a521;
}

.kw-free-shipping__bar::before,
.kw-free-shipping__bar::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background-color: #82a521;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px;
}

.kw-free-shipping__bar::before {
	left: 0;
	background-color: #fff;
	background-image: url("images/paw.svg");
}

.kw-free-shipping__bar::after {
	right: 0;
	background-image: url("images/truck-white.svg");
}

.kw-free-shipping__bar[data-value="0"]:before{
	background-color: #82a521;
	background-image: url("images/paw-white.svg");
}

.kw-free-shipping__bar[data-value="100"]:after{
	background-color: #FFF;
	background-image: url("images/truck.svg");
}

.kw-free-shipping__bar--striped {
	background-color: #82a521;
}

.kw-free-shipping__bar-progress {
	background: #fff;
	border-radius: 5px;
	display: block;
	height: 8px;
}

.kw-free-shipping__notice {
	font-weight: 500;
	font-size: 17px;
	line-height: 21px;

	background: #82a521;
	padding: 14px 50px;
	width: 100%;
	border-radius: 50px;
	margin-bottom: -50px;

	color: #fff;
	font-weight: 600;
}

.kw-free-shipping__notice span.amount {
	color: #fff;
}

.kw-free-shipping__bar--numbers {
	display: flex;
	justify-content: space-between;
	color: #929292;
	font-weight: 500;
	font-size: 17px;
	line-height: 21px;
	margin-bottom: 36px;
}

@media only screen and (max-width: 549px){
	.kw-free-shipping__notice{
		margin: 0 -30px !important;
		margin-bottom: -50px !important;
		width: calc(100% + 60px);
		border-radius: unset;
		padding: 14px 30px;
		font-size: 13px;
		line-height: 16px;
	}
	
	.kw-free-shipping-bar__container{
		margin-bottom: 30px;
	}
}
