table {
	border: 1px solid var(--green);
	width:100%;
	border-radius: var(--common-border-radius);
	border-collapse: separate;
	border-spacing: 0px;
}
table th {
	padding: 12px 0;
	background-color: var(--green);
	text-align: center;
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	border-right: 1px solid #fff;
}
table th:last-of-type {
	border-right: 0;
}

table td {
	padding: 12px 0;
	border-right: 1px solid var(--green);
	padding-left: 1rem;
	font-size: 14px;
	font-weight: 500;
}
table td:last-of-type {
	border-right: 0;
}

table tr td {
	border-bottom: 1px solid var(--green);
}
table tr:last-of-type td {
	border-bottom: 0;
}

table th a {
	color: white;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
}

table th a[data-sort]::after {
    font-family:'Bootstrap-icons';
    content: '\F283';
    margin-left: 8px;
    vertical-align: middle;
    font-size: 20px;
}
table th a[data-sort].asc::after {
    content: '\F282';
}
table th a[data-sort].desc::after {
    content: '\F286';
}