.custom-table {
	padding: 10px 28px;
	margin-right: 50%;
}

.custom-table header,
.custom-table .row {
	display: flex;
}

.custom-table .col {
	flex: 1;
	padding: 10px;
	border: 1px solid #ccc;
	border-top: none;
	border-left: none;
}

.custom-table header .col {
	background-color: #eee;
	border-top: 1px solid #ccc;
	font-weight: 600;
}

.custom-table .row:nth-child(2n) .col {
	background-color: #fff;
}

.custom-table header .col:first-child,
.custom-table .row .col:first-child {
	border-left: 1px solid #ccc;
}

.custom-table code {
	background-color: #eee;
}

@media (max-width: 1359px)
{
	.custom-table header
	{
		display: none;
	}

	.custom-table .row {
		display: block;
	}

	.custom-table .col {
		border-left: 1px solid #ccc;
		overflow-wrap: break-word;
	}

	.custom-table .row:first-of-type .col:first-child {
		border-top: 1px solid #ccc;
	}

	.custom-table .row:nth-child(2n) .col {
		background-color: #eee;
	}

	.custom-table .row:nth-child(2n-2) .col {
		background-color: #fff;
	}
}

@media (max-width: 700px)
{
	.custom-table {
		margin-right: 0;
	}
}
