
.compare-v2 {
	padding: 50px 0 50px 0;
}

.compare-v2 .block-title {
	font-size: 40px;
	font-weight: 400;
	line-height: 52px;
	text-align: left;
	margin-bottom: 12px;
}

.compare-v2 .block-descr {
	color: #5e5e5e;
	font-size: 17px;
	font-weight: 300;
	line-height: 29.92px;
	text-align: left;
	margin-bottom: 40px;
	max-width: 760px;
}

.compare-v2 .compare-v2-table-header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.compare-v2 .compare-v2-table-header-cell {
	padding: 24px 16px;
}

.compare-v2 .compare-v2-table-header-cell span {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	line-height: 38.72px;
	text-align: left;
}

.compare-v2 .compare-v2-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	min-height: 115px;
}

.compare-v2 .compare-v2-row:nth-child(odd) {
	background-color: #f4f5f7;
}

.compare-v2 .compare-v2-row:nth-child(even) {
	background-color: #f0f4fb;
}

.compare-v2 .compare-v2-row:not(:last-child) {
	border-bottom: 2px solid #d8d8e6;
}

.compare-v2 .compare-v2-cell {
	padding: 24px 16px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.compare-v2 .compare-v2-cell:first-child {
	font-size: 22px;
	font-weight: 600;
	line-height: 38.72px;
	text-align: left;
	color: #313131;
	border-right: 2px solid #d8d8e6;
}

.compare-v2 .compare-v2-cell:nth-child(2) {
	border-right: 2px solid #d8d8e6;
}

.compare-v2 .compare-v2-cell:not(:first-child) {
	font-size: 19px;
	font-weight: 400;
	line-height: 33.44px;
	text-align: left;
	color: #5e5e5e;
}

@media screen and (max-width: 768px) {
	.compare-v2 {
		padding: 24px 0 34px 0;
	}
	
	.compare-v2 .block-title {
		font-size: 32px;
		font-weight: 400;
		line-height: 41.6px;
		margin-bottom: 12px;
	}
	
	.compare-v2 .block-descr {
		font-size: 15px;
		font-weight: 400;
		line-height: 26.4px;
		margin-bottom: 24px;
	}
	
	.compare-v2 .compare-v2-table-header {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.compare-v2 .compare-v2-table-header-cell:first-child {
		display: none;
	}
	
	.compare-v2 .compare-v2-table-header-cell {
		padding: 12px 8px;
		text-align: center;
	}
	
	.compare-v2 .compare-v2-table-header-cell span {
		font-size: 17px;
		font-weight: 600;
		line-height: 29.92px;
	}
	
	.compare-v2 .compare-v2-row {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas: "feature feature" "theme-1 theme-2";
	}
	
	.compare-v2 .compare-v2-cell:not(:first-child) {
		padding: 12px 8px;
		font-size: 17px;
		font-weight: 300;
		line-height: 29.92px;
		text-align: left;
		min-height: 144px;
		align-items: start;
	}
	
	.compare-v2 .compare-v2-row:not(:last-child) {
		border-bottom: none;
	}
	
	.compare-v2 .compare-v2-cell:first-child {
		grid-area: feature;
		font-size: 17px;
		font-weight: 600;
		line-height: 29.92px;
		justify-content: center;
		padding: 12px 8px;
		background-color: #d7d7d7;
	}
	
	.compare-v2 .compare-v2-cell:nth-child(2) {
		grid-area: theme-1;
		border-right: 2px solid #d8d8e6;
	}
	
	.compare-v2 .compare-v2-cell:last-child {
		grid-area: theme-2;
	}
}
