.sorted_table tr {
	cursor: pointer;
}
.sorted_table tr.placeholder {
	display: block;
	background: red;
	position: relative;
	margin: 0;
	padding: 0;
	border: none;
}
.sorted_table tr.placeholder:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left-color: red;
	margin-top: -5px;
	left: -5px;
	border-right: none;
}
.sorted_head th {
	cursor: pointer;
}
.sorted_head th.placeholder {
	display: block;
	background: red;
	position: relative;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
}
.sorted_head th.placeholder:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: red;
	top: -6px;
	margin-left: -5px;
	border-bottom: none;
}
.dragged {
	position: absolute;
	top: 0;
	opacity: 0.5;
	z-index: 2000;
}