.footer-pack__name-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-pack__container {
	padding: 20px;
	border: 2px solid var(--primary);
	border-radius: 10px;
	box-shadow: 0 0 6px #6e6e6e;
}
.footer-pack__name {
	font-size: 1.1rem;
	font-weight: 700;
}
.footer-pack__prices {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.footer-pack__products {
	display: flex;
	flex-wrap: wrap;
}
.product-list .footer-pack__product {
	width: 25%;
}
.footer-pack__product .product-name {
	padding: 8px 5px;
	text-align: center;
}
.footer-pack__product-prices {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-pack__prices .regular-price,
.footer-pack__product .regular-price {
	font-size: 1rem;
	font-weight: 700;
	text-decoration-color: var(--primary);
	margin: 0 6px;
}
.footer-pack__prices .price,
.footer-pack__product-prices .price {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--secondary);

}
.footer-pack__prices .product-discount + .product-price .price,
.product-discount + .price {
	background-color: var(--primary);
	color: #fff;
	padding: 2px 6px;
}
.footer-pack__prices .discount-amount {
	display: inline-block;
	margin-left: 10px;
}