.table_sort {
    border-collapse: collapse;
	width: 100%;
}

.table_sort th {
    color: white;
    background: #644b9e;
    cursor: pointer;
}

.table_sort tr:hover {
	background: #ceebc2;
}

.table_sort td,
.table_sort th {
    height: 40px;
    text-align: center;
    border: 1px solid #846868;
}

/*.table_sort tbody tr:nth-child(even) {
    background: #e3e3e3;
}*/

th.sorted[data-order="1"],
th.sorted[data-order="-1"] {
    position: relative;
}

th.sorted[data-order="1"]::after,
th.sorted[data-order="-1"]::after {
    right: 8px;
    position: absolute;
}

th.sorted[data-order="-1"]::after {
	content: "▼"
}

th.sorted[data-order="1"]::after {
	content: "▲"
}

a {
	color: #644b9e;
}
a:visited {
	color: #644b9e;
}

div.scroll-table {
  overflow: auto;
  height: 600px;
}