.sdv2-price-table {
	overflow: hidden;
	max-width: 1120px;
	margin: 0 auto;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(0, 95, 146, 0.08);
}

.sdv2-price-table__head,
.sdv2-price-table__row {
	display: grid;
	grid-template-columns: repeat(var(--sdv2-price-columns, 3), minmax(0, 1fr));
	align-items: center;
}

.sdv2-price-table--legacy .sdv2-price-table__head,
.sdv2-price-table--legacy .sdv2-price-table__row {
	grid-template-columns: 1.3fr 1fr 1fr;
}

.sdv2-price-table--dynamic {
	overflow-x: auto;
}

.sdv2-price-table--dynamic .sdv2-price-table__head,
.sdv2-price-table--dynamic .sdv2-price-table__row {
	min-width: 720px;
}

.sdv2-price-table__head {
	min-height: 52px;
	background: var(--sdv2-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.sdv2-price-table__head div,
.sdv2-price-table__row div {
	padding: 0 26px;
}

.sdv2-price-table__row {
	min-height: 76px;
	border-bottom: 1px solid #eef6fb;
	color: #333;
	font-size: 15px;
}

.sdv2-price-table__row:nth-child(odd) {
	background: #f6fbff;
}

.sdv2-price-table__row:last-child {
	border-bottom: 0;
}

.sdv2-price-table__row strong {
	display: block;
	color: #333;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.sdv2-price-table__cell--price strong,
.sdv2-price-table__row div:nth-child(2) strong {
	color: var(--sdv2-blue);
	font-size: 15px;
}

.sdv2-price-table__row span {
	display: block;
	margin-top: 3px;
	color: var(--sdv2-muted);
	font-size: 12px;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.sdv2-price-table,
	.sdv2-price-table--dynamic {
		max-width: 100%;
		overflow: hidden;
		width: 100%;
	}

	.sdv2-price-table--dynamic .sdv2-price-table__head,
	.sdv2-price-table--dynamic .sdv2-price-table__row {
		min-width: 0;
	}

	.sdv2-price-table__head,
	.sdv2-price-table__row {
		grid-template-columns: repeat(var(--sdv2-price-columns, 3), minmax(0, 1fr));
		align-items: stretch;
	}

	.sdv2-price-table--legacy .sdv2-price-table__head,
	.sdv2-price-table--legacy .sdv2-price-table__row {
		grid-template-columns: 1.15fr 0.95fr 0.9fr;
	}

	.sdv2-price-table__head {
		min-height: 42px;
		font-size: 11px;
		line-height: 1.25;
	}

	.sdv2-price-table__row {
		min-height: 0;
		font-size: 12px;
		line-height: 1.35;
	}

	.sdv2-price-table__head div,
	.sdv2-price-table__row div {
		min-width: 0;
		padding: 10px 7px;
		overflow-wrap: anywhere;
		white-space: normal;
	}

	.sdv2-price-table__row strong {
		font-size: 12px;
		line-height: 1.35;
	}

	.sdv2-price-table__cell--price strong,
	.sdv2-price-table__row div:nth-child(2) strong {
		font-size: 13px;
	}

	.sdv2-price-table__row span {
		font-size: 10px;
		line-height: 1.25;
	}
}
