.data-table {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	background-color: rgba(0, 0, 0, 0.05);
}
.data-table .table-cols,
.data-table .cols {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.data-table .fixed,
.data-table .cols {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.data-table .fixed {
	min-width: 100px;
}
.data-table .fixed .cell {
	font-weight: bold;
}
.data-table .cols {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	max-width: 100%;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
.data-table .cols::-webkit-scrollbar,
.data-table .cols::-webkit-scrollbar-thumb {
	overflow: visible;
	border: solid 1px rgba(0, 0, 0, 0.25);
	-webkit-border-radius: 0.25rem;
	border-radius: 0.25rem;
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.25)), color-stop(100%, rgba(0, 0, 0, 0.05)));
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 100%);
	background-color: var(--white);
}
.data-table .cols::-webkit-scrollbar,
.data-table .cols::-webkit-scrollbar-thumb {
	height: 0.5rem;
	-webkit-box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05) inset, 1px 0 0 0 rgba(0, 0, 0, 0.75);
	box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.1);
}
.data-table .cols::-webkit-scrollbar-button {
	display: block;
	height: 0;
	background-color: transparent;
}
.data-table .col {
	min-width: 60px;
	max-width: 100px;
	-webkit-box-flex: auto;
	-moz-box-flex: auto;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
}
.data-table .cell {
	font: normal 0.75rem var(--font-sans);
	line-height: 30px;
	height: 30px;
	-webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-ms-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	background-color: var(--white);
}
.data-table .cell:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
}
.data-table .col:hover .cell {
	color: var(--green);
	background-color: var(--silver);
}
.data-table .col .cell:hover {
	color: #033;
	background-color: #b3c4c4;
}
