.rte table {
	width: 100%;
	display: block;
	max-width: 100%;
	margin: 4rem 0;
	border: 1px solid #d9dde8;
	border-radius: 1.6rem;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	box-shadow: 0 1.2rem 3.2rem rgba(53, 55, 70, 0.08);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.rte thead th,
.rte tbody th {
	padding: 1.6rem 2rem;
	font-family: HKGrotesk-Bold, Arial, sans-serif;
	font-size: 1.5rem;
	line-height: 1.4;
	text-align: left;
	vertical-align: middle;
	color: #353746;
	background: rgba(34, 228, 171, 0.14);
	border-bottom: 0.2rem solid #22e4ab;
	white-space: nowrap;
}

.rte td {
	padding: 1.6rem 2rem;
	font-size: 1.6rem;
	line-height: 1.7;
	text-align: left;
	vertical-align: middle;
	color: #717593;
	border-bottom: 1px solid #e8ebf3;
}

.rte tbody tr:nth-child(even) {
	background: #f7f9fc;
}

.rte tbody tr:hover {
	background: #eefcf7;
}

.rte tbody tr:last-child td,
.rte tfoot tr:last-child td,
.rte tfoot tr:last-child th {
	border-bottom: 0;
}

.rte caption {
	padding: 0 0 1.2rem;
	font-size: 1.4rem;
	line-height: 1.5;
	font-style: italic;
	text-align: left;
	color: #717593;
	caption-side: top;
}

@media only screen and (min-width: 768px) {
	.rte table {
		display: table;
		overflow: hidden;
	}
}

@media only screen and (max-width: 767px) {
	.rte table {
		min-width: 64rem;
		margin: 3.2rem 0;
	}

	.rte thead th,
	.rte tbody th,
	.rte td {
		padding: 1.4rem 1.6rem;
	}
}

