:root{
	--progress_bar_out_bg: #f7f7f7;
	--progress_bar_bg: #578a25;
	--option_cart:#F9F9F9;
	--option_cart_active:#E2FEE9;
	--option_cart_circle:#ccc;
	--option_cart_circle_active:#578a25;
}

.offers_cart{
	max-width:500px!important;
	width:100%;
	margin:auto;
	text-align:center;
	margin-top:30px;
	padding:0px 20px;
}
.progress-info p{
	font-weight:600;
	font-size:16px;
	font-weight: bold;
}
.progress-bar{
	border-radius: 15px;
    background: var(--progress_bar_out_bg);
	height: 13px;
    margin: 0px auto;
	margin-bottom:20px;
	max-width:80%;
	width:100%;
}
.progress-bar span{
	  background-color: var(--progress_bar_bg);
	  width:20%;
	  height:13px;
	  box-shadow: 0px 10px 13px -6px rgb(44 62 80);
	  display:block;
	  border-radius:15px;
}
.option_cart{
	font-size:14px;
	font-weight:bold;
	background:var(--option_cart);
	padding:10px 20px;
	margin-bottom:10px;
	position:relative;
	border-radius:5px;
	padding-left: 40px;
}
.cart_text{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:15px;
}
.option_cart:before{
	content:"";
	position:absolute;
	width:30px;
	height:30px;
	background:var(--option_cart_circle);
	left:10px;
	top:0;
	bottom:0;
	margin:auto;
	border-radius:100%;
}
.option_cart:after{
	content:"×";
	position:absolute;
	color:#fff;
	font-size:40px;
	left:16px;
	top:0;
	bottom:0;
	margin:auto;
	height:45px;
}
.option_cart.active{
	background: var(--option_cart_active);
}
.option_cart.active:before{
	background:var(--option_cart_circle_active)
}
.option_cart.active:after{
	content:"\2713";
	font-size:30px;
	height:30px
}
@media(max-width:540px){
	.option_cart{
		padding-right: 5px;
	}
	.page-id-552 h2.has-text-align-center{
		margin: 30px 0 42px 0;
        font-size: 20px!important;
	}
	.product-name a{font-size:18px;}
}