.id-table-width{
	width: 30px;
}

.order-table-width {
	width: 40px;
}

.table-container {
	overflow-x: auto;
	max-height: 100%;
}

.table-responsive {
	min-height: .01%;
	overflow-x: auto;
}

.table > thead > tr > th, .th {
	color: #3a3a3a;
	font-size: 13px;
    font-weight: 700;
	text-transform: none;
	padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-left: 0;
	border-right: 0;
}

.table-hover > tbody > tr:hover {
	background-color: #e3e6e9;
}

.table tbody tr {
	background-color: rgba(0, 0, 0, 0);
	--data-background-color: rgba(0, 0, 0, 0);
}

table.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(0, 0, 0, 0.03);
	--data-background-color: rgba(0, 0, 0, 0.03);
}

table.table-striped tbody tr {
    background-color: rgba(0, 0, 0, 0);
	--data-background-color: rgba(0, 0, 0, 0);
}

table.table-striped-detail tbody tr:nth-of-type(4n+1) {
    background-color: rgba(0, 0, 0, 0.03);
	--data-background-color: rgba(0, 0, 0, 0.03);
}

table.table-striped-detail tbody tr:nth-of-type(4n+2) {
    background-color: rgba(0, 0, 0, 0.03);
	--data-background-color: rgba(0, 0, 0, 0.03);
}

table.table-striped-detail tbody tr {
    background-color: rgba(0, 0, 0, 0);
	--data-background-color: rgba(0, 0, 0, 0);
}

.table tbody tr td {
    background-color: var(--data-background-color) !important;
}

.table tbody tr td {
    border: 1px solid var(--data-border-color) !important;
}

.table thead tr.blue {
	--data-background-color: #008ecc;
	--data-color: #fff;
}

.table thead tr th {
    background-color: var(--data-background-color);
	color: var(--data-color);
}

.table-bordered th, .table-bordered tr:not(.border-has-warning):not(.border-has-success):not(.border-has-error) td {
    border: 1px solid rgba(0, 0, 0, 0.02);
	--data-border-color: rgba(0, 0, 0, 0.02);
}

.table tbody tr td {
	padding: 0.5rem 0.75rem;
    vertical-align: top;
	font-size: 12px;
}

.table tbody tr td.id-table-width, .table thead tr th.id-table-width{
	text-align: center;
	position: relative;
	z-index: 1;
}

.table tbody tr td.id-table-width input[type="checkbox"], .table tbody tr td.id-table-width input[type="radio"]{
	position: relative;
	z-index: -1;
}

.table thead tr th {
	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-info {
	background-color: #cce8f5 !important;
	--data-background-color: #cce8f5 !important;
}

tr.background-has-success {
	background-color: #ccf5d8 !important;
	--data-background-color: #ccf5d8 !important;
}

tr.background-has-warning {
	background-color: #ffe5ca !important;
	--data-background-color: #ffe5ca !important;
}

tr.background-has-error {
	background-color: #f5d6d6 !important;
	--data-background-color: #f5d6d6 !important;
}

tr.border-has-info {
	border-color: #cce8f5 !important;
	--data-border-color: #cce8f5 !important;
}

tr.border-has-success {
	border-color: #ccf5d8 !important;
	--data-border-color: #ccf5d8 !important;
}

tr.border-has-warning {
	border-color: #ffe5ca !important;
	--data-border-color: #ffe5ca !important;
}

tr.border-has-error {
	border-color: #f5d6d6 !important;
	--data-border-color: #f5d6d6 !important;
}

table.grid {
	min-width: 100%;
	width: auto;
	flex: 1;
	display: grid;
	border-collapse: collapse;
}

table.grid thead.grid ,
table.grid tbody.grid ,
table.grid tr.grid  {
	display: contents;
}

table.grid th,
table.grid td {
	overflow: hidden;
	text-overflow: ellipsis;
}

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;
}
