.price-list .discount-banner {
	background: #e63946;
	color: #fff;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
	padding: 0.75rem;
	margin-bottom: 1rem;
}
.price-list table {
	background-color: var(--light-gray);
	font-size: clamp(0.9rem, 0.795rem + 0.561vw, 1.3rem);
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	margin-bottom: 3rem;
}
.price-list table caption {
	font-weight: 700;
}
.price-list table thead {
	background-color: var(--orange);
	color: var(--white);
}
.price-list table th,
.price-list table td {
	border: 1px solid var(--white);
	font-weight: normal;
	padding: 0.3rem 1rem;
}
.price-list table .old-price {
	text-decoration: line-through;
}
.price-list table .new-price {
	color: #e63946;
	font-weight: 700;
}
.price-list .second-part img {
	width: 100%;
	height: auto;
}
.price-list ul {
	list-style: none;
	padding: 0;
}
.price-list ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1rem;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	margin-bottom: 1rem;
}
.price-list ul li i::before {
	color: var(--orange);
	font-weight: 700;
	font-size: 1.5rem;
	margin: 0;
}
@media screen and (min-width: 800px) {
	.price-list .first-part,
	.price-list .second-part {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-column-gap: 1rem;
		-moz-column-gap: 1rem;
		column-gap: 1rem;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.price-list .second-part img {
		width: 50%;
		height: 100%;
	}
}
@media screen and (min-width: 1200px) {
	.price-list .first-part,
	.price-list .second-part {
		-webkit-column-gap: 2rem;
		-moz-column-gap: 2rem;
		column-gap: 2rem;
	}
}
