.compare {
	display: grid;
	grid-template-columns: 1fr;
}

.section {
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
	color: #555555;
	text-align: center;
}

@media (min-width: 984px) {
    .compare {
		grid-template-columns: 1fr 1fr;
		column-gap: 30px;
		row-gap: 0;
		grid-auto-rows: auto;
		justify-items: stretch;
		align-items: stretch;
		justify-content: space-between;
		align-content: stretch;
		grid-auto-flow: column;
	}

	.left {
		grid-column: 1 / 2;
	}

	.right {
		grid-column: 2 / 3;
	}

	.section {
		margin-top: 50px;
		margin-bottom: 20px;
		font-size: 35px;
	}
}

.box-title {
	box-sizing: border-box;
	width: 100%;
	height: 49px;
	padding: 15px 30px;
	font-size: 15px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
	border: 2px solid;
	border-bottom: 0;
}

.box-title.pink {
	background: #DFC2C3;
	border-color: #DFC2C3;
}

.box-title.purple {
	background: #B3B0C4;
	border-color: #B3B0C4;
}

.box-content {
	box-sizing: border-box;
	width: 100%;
	padding: 20px 30px;
	border: 2px solid;
	border-top: 0;
	border-bottom: 0;
	font-size: 15px;
	text-align: center;
	color: #555555;
}

.box-content.pink {
	border-color: #DFC2C3;
}

.box-content.purple {
	border-color: #B3B0C4;
}

.box-content p {
	margin: 0 0 5px 0;
}

.icon {
	margin-bottom: 10px;
}

.small {
	font-size: 14px;
}

.asterisk {
	font-size: 12px;
	color: #999999;
	text-align: right;
}

.box-end {
	box-sizing: border-box;
	width: 100%;
	padding: 20px 30px 30px;
	border-radius: 0 0 10px 10px;
	border: 2px solid;
	border-top: 0;
	font-size: 15px;
	text-align: center;
}

.box-end.pink {
	border-color: #DFC2C3;
}

.box-end.purple {
	border-color: #B3B0C4;
}

.box-end .btn {
	width: 100%;
	margin-top: 15px;
}

.box-end .btn:first-child {
	margin-top: 0;
}
