/**
 * Tables
 * =========================================== */


/*
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
	padding-top: 5px;
	padding-bottom: 5px;
}
.table > thead > tr > th {
	font-weight: 500;
}
.table-dark {
	color: #fff;
	background-color: #32373c;
}
.table .thead-light th,
.table .tfoot-light td {
	background-color: #d7dade;
}
.table-bordered:not(.table-report) > .tfoot-light > tr > td:not(:last-child) {
	border-right-color: #fff;
}
.table .thead-dark th {
	color: #e8eaeb;
	background-color: #32373c;
}
*/
/* Text Aligment */
/*
.table .thead-center th,
.table .tbody-center td,
.table .tfoot-center td {
	text-align: center;
}
.table thead .th-center,
.table tbody .td-center,
.table tfoot .td-center {
	text-align: center;
}
.table thead .th-left,
.table tbody .td-left,
.table tfoot .td-left {
	text-align: left;
}
.table thead .th-right,
.table tbody .td-right,
.table tfoot .td-right {
	text-align: right;
}
.table tr > .th-nowrap,
.table tr > .td-nowrap {
	white-space: nowrap;
}
*/
/* Column Sizes */
/*
.table tr > .td-date,
.table tr > .th-date {
	width: 85px;
}
.table tr > .th-cb {
	width: 85px;
}
.table tr > .th-status {
	width: 60px;
}
.table tr > .th-order {
	width: 40px;
}
*/
/* Table Report */
/*
.table-report tfoot > tr > td:not(:last-child) {
	border-right-color: transparent;
}
*/
.table-striped tbody tr:nth-of-type(odd) {
	background-color: var(--light-gray-200);
}