.data-table-wrapper {
	display: block;
	height: 100%;
	position: relative;
	overflow: auto;
	border: 1px solid #ddd;
}

.data-table {
	font-size: 12px;
	width: 0px;
	white-space: nowrap;
	border-collapse: separate;
	border-left: 10px solid #fff;
	border-right: 10px solid #fff;
	background-color: #fff;
	width: 90%;
}

.data-table-wrapper > .data-table tbody:before {
	content: '';
	display: table-row;
	height: 3px;
	background: transparent;
	width: 100%;
}

.data-table th {
	background-color: #EEEEEE;
	padding: 5px 10px 3px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-overflow: ellipsis;
	user-select: none;
	-webkit-user-select: none;
	letter-spacing: var(--unnamed-character-spacing-0);
	color: var(--unnamed-color-32363b);
	text-align: left;
	letter-spacing: 0px;
	color: #32363B;
	opacity: 1;
}

.data-table:not(.frozen-header-table) th:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #ddd;
}

.data-table:not(.frozen-header-table) th:not(:last-child):before {
	content: '';
	position: absolute;
	width: 1px;
	top: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, #ccc 20%, #fff 95%);
	z-index: 10;
}

.data-table tr {
	cursor: default;
	background-color: #fff;
	
}

.data-table td {
	padding: 0 10px;
	border-style: solid;
	border-color: transparent;
	border-width: 1px 0px;
	height: 25px;
	overflow: hidden;
	text-overflow: ellipse;
	line-height: 24px;
	background-color: inherit;
	text-overflow: ellipsis;
	user-select: none;
	width:50px;
}

.data-table td:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	border-left-width: 1px;
}

.data-table td:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border-right-width: 1px;
}

.data-table tr:nth-child(even) {
	background-color: #EEEEEE;
}


.data-table.selectable-rows tr.active td {
	border-color:#FFF;
	background: #006D89 0% 0% no-repeat padding-box;
	color:#FFF;
}

.data-table.selectable-rows tr:not(.active):hover td {
	border-color:#FFF;
	background: #006D89 0% 0% no-repeat padding-box;
	color:#FFF;
}

.data-table.selectable-rows-orange tr.active td {
	border-color: rgba(245, 123, 20, .9);
	background: linear-gradient(0deg, rgba(245, 123, 20, .3), rgba(245, 123, 20, .2));
}

.data-table.selectable-rows-orange tr:not(.active):hover td,
.data-table.selectable-rows-orange tr:not(.undeselectable):hover td {
	border-color: rgba(245, 123, 20, .3);
	background: linear-gradient(0deg, rgba(245, 123, 20, .1), rgba(245, 123, 20, .05));
}

.data-table.selectable-rows tr.active:not(.undeselectable):hover td,
.data-table.selectable-rows-orange tr.active:not(.undeselectable):hover td {
	background: #ececec;
	color: black;
}

.data-table tr.active + tr.active > td,
.data-table tr.active + tr:hover > td {
	border-top-width: 0px !important;
	padding-top: 1px;
	
}

.data-table .number-data-cell {
}

.data-table .empty-data-cell:after {
	content: '- - - -';
	display: inline;
	height: auto;
	width: auto !important;
	color: #888;
}

.frozen-header-table.data-table:not(.file-preview) td:before {
	content: " ";
	display: inline;
	height: auto;
	width: 0;
}

.data-table th .sizer-handle {
	position: absolute;
	width: 11px;
	top: 0;
	bottom: 0;
	right: 0px;
	cursor: ew-resize;
	z-index: 10;
}

.data-table th .sizer-handle:before {
	content: '';
	position: absolute;
	width: 1px;
	top: 0;
	bottom: 0;
	right: 5px;
	cursor: ew-resize;
	z-index: 10;
}

.data-table th.sorted {
	padding-right: 18px !important;
}

.data-table th > i {
	position: absolute;
	top: 4px;
	right: 7px;
}

.data-table-sorted::after {
	content: "\25BC";
	position: absolute;
	right: 0px;
	bottom: 7px;
	font-size: .85em;
	padding-right: 2px;
	background-color: #fff;
	color: #5e5e5e;
}

.data-table-sorted-asc .data-table-sorted::after {
	content: "\25B2";
	bottom: 6px;
}

.data-table .action-btns {
	width: auto;
	padding: 2px 10px 1px;
	font-size: 14px;
	text-align: right;
}

.data-table .action-btn {
	width: auto;
	display: inline-block;
	cursor: pointer;
}

.data-table .action-btn:hover {
	color: #006D89;
}

.file-preview {
	font-family: "Courier New", Courier, monospace;
	width: auto;
	border-left-width: 0;
	border-right-width: 0;
}

.file-preview td {
	white-space: pre;
}

.file-preview td, 
.file-preview th {
	width: auto;
}

.file-preview td:first-child,
.file-preview th:first-child {
	background: #ececec;
}

.file-preview td:last-child, 
.file-preview th:last-child {
	width: 100%;
}

.data-table-pages {
	background-color: white;
	font-size: 0px;
}

.data-table-pages-button {
	display: inline-block;
	font-size: 17px;
	padding: 0px 4px;
	cursor: pointer;
}

.data-table-pages-button:hover {
	color: #00CF4E;
}

.data-table-pages-button-disabled {
	color: #AAA;
	cursor: default;
}

.data-table-pages-button-disabled:hover {
	color: #AAA;
}

.data-table-pages-current {
	color: black;
	font-weight: bold;
	cursor: default;
}

.data-table-pages-current:hover {
	color: black;
}

.inner-data-table {
	font-size: 12px;
	width: 0px;
	white-space: nowrap;
	border-collapse: collapse;
}

.inner-data-table td {
	border:0px;
	border-spacing:0px;
	border-width: 0px;
	line-height: 18px;
	padding: 0;
	 margin: 0;
}

.data-table.btn-rows tbody tr {
	background: transparent;
	cursor: pointer;
}

.data-table.btn-rows tbody tr:hover > td {
	box-shadow: 1px 1px 11px rgba(0,0,0,.3);
	background: #fff;
	border-color: #aaa;
}

.data-table.btn-rows tbody tr:active > td {
	box-shadow: 1px 1px 4px rgba(0,0,0,.3);
	background: #fff;
	border-color: #aaa;
}

.td-content-wrapper {
	position: relative;
}

.data-table.btn-rows tr:hover td:not(:last-child) .td-content-wrapper:after {
	content: ' ';
	position: absolute;
	background: #fff;
	top: -2px;
	bottom: -2px;
	width: 9px;
	right: -16px;
}

.cell-data {
	overflow: hidden;
	text-overflow: ellipsis;
}

.td-addon {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0px;
	display: none;
}

tr:hover .td-addon,
.td-addon.dragging {
	display: inline-block;
	line-height: 24px;
}

[draggable].td-addon {
	background: #fff;
	font-size: 13px;
	white-space: nowrap;
	padding-left: 20px;
}

.td-addon.dragging {
	box-shadow: 1px 1px 12px rgba(0,0,0,.2);
	padding-right: 10px;
	border: 1px solid #aaa;
	border-radius: 3px;
}

.td-addon .grippy:after {
	top: 4px;
	bottom: 4px;
}

