.bundle-product-{
	gap: 30px;
}
.check-selected-bundle{
	display: flex;    
	align-items: center;
	gap:10px;
}
.check-selected-bundle .check-selected{
	width: 20px;
	height: 20px;
	background: #EBEBEB;
	display: flex;
	justify-content: center;
	align-items: center;
}
.check-selected-bundle .check-selected i{
	opacity: 0;
	color: #fff;
	font-size: 15px;
}
.check-selected-bundle.active .check-selected{
	background: var(--bzo-main-color);
}
.check-selected-bundle.active .check-selected i{
	opacity: 1;
}
.check-selected-bundle .label-selected{
	display: none;
}
.check-selected-bundle.active .label-selected{
	display: inline-block;
}
.check-selected-bundle.active .label{
	display: none;
}