.id-table-width{
	width: 30px;
}

.order-table-width {
	width: 40px;
}

.table-container {
	overflow-x: auto;
	max-height: 100%;
}

.table-responsive {
	overflow-x: initial;
}

.table > thead > tr > th, .th {
	background-color: #2e323a !important;
	color: #fff;
	font-size: 12px;
    font-weight: 600;
	text-transform: none;
}

.table-hover > tbody > tr:hover {
	background-color: #e3e6e9;
}

.table tbody tr {
    background-color: rgba(0, 0, 0, 0);
	color: #000000;
	--data-background-color: rgba(0, 0, 0, 0);
	--data-color: #000000;
}

.table tbody tr:nth-of-type(2n+1) {
    background-color: rgba(0, 0, 0, 0.05);
	--data-background-color: rgba(0, 0, 0, 0.05);
}

.table.table-detail tbody tr:nth-of-type(4n+1) {
    background-color: rgba(0, 0, 0, 0.05);
	--data-background-color: rgba(0, 0, 0, 0.05);
}

.table.table-detail tbody tr:nth-of-type(4n+2) {
    background-color: rgba(0, 0, 0, 0.05);
	--data-background-color: rgba(0, 0, 0, 0.05);
}

.table tbody tr td:not(.id-table-width) {
    background-color: var(--data-background-color);
	color: var(--data-color);
	border: 1px solid var(--data-border-color);
}

.table-bordered th, .table-bordered tr:not(.border-has-warning):not(.border-has-success):not(.border-has-error) td {
    border: 1px solid #ffffff;
	--data-border-color: #ffffff;
}

.table tbody tr td {
	text-align: left;
	vertical-align: middle;
}

.table tbody tr td.id-table-width, .table thead tr th.id-table-width{
	text-align: center;
}

.table thead tr th {
	text-align: left;
	vertical-align: middle;
}

.text-wrap {
	word-break: unset !important;
	white-space: unset !important;
}

.table:not(.table-bordered) th, .table:not(.table-bordered) td {
	border: none;
}

tr.background-has-success {
	background-color: rgba(77,189,116,0.5) !important;
	--data-background-color: rgba(77,189,116,0.5) !important;
}

tr.background-has-warning {
	background-color: rgba(255,128,1,0.5) !important;
	--data-background-color: rgba(255,128,1,0.5) !important;
}

tr.background-has-error {
	background-color: rgba(248,108,107,0.5) !important;
	--data-background-color: rgba(248,108,107,0.5) !important;
}

tr.border-has-success {
	border-color: rgba(77,189,116,0.5) !important;
	--data-border-color: rgba(77,189,116,0.5) !important;
}

tr.border-has-warning {
	border-color: rgba(255,128,1,0.5) !important;
	--data-border-color: rgba(255,128,1,0.5) !important;
}

tr.border-has-error {
	border-color: rgba(248,108,107,0.5) !important;
	--data-border-color: rgba(248,108,107,0.5) !important;
}

.table.grid {
	min-width: 100%;
	width: auto;
	flex: 1;
	display: grid;
	border-collapse: collapse;
}

.table.grid thead,
.table.grid tbody,
.table.grid tr {
	display: contents;
}

.table.grid th,
.table.grid td {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.table.grid th {
	top: 0;
	font-weight: normal;
	position: relative;
}

.table.grid tr.sticky > th {
	position: sticky;
}

.table.grid .resize-handle {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: white;
	opacity: 0;
	width: 15px;
	cursor: col-resize;
}

.table-important {
	background-color: rgba(255,128,1,0.1) !important;
}

.table tbody tr.hide > td {
	display: none;
}
