.wpk-sort {
	position: relative;
	border-left: 1px solid rgba( 255,255,255, 0.4 );
	display: inline;
	height: 80%;
	padding: 0 20px 0 18px;
	margin-left: 20px;
	flex-wrap: wrap;
	width: 16px;
	align-items: center;
}

.wpk-sort span {
	position: absolute;
	cursor: pointer;
}

.wpk-sort .up {
	top: 3px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;

	border-bottom: 8px solid rgba( 255,255,255, 0.6 );
}
.wpk-sort .up:hover {
	border-bottom-color: rgba( 255,255,255, 0.9 );
}

.wpk-sort .down {
	bottom: 3px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;

	border-top: 8px solid rgba( 255,255,255, 0.6 );
}
.wpk-sort .down:hover {
	border-top-color: rgba( 255,255,255, 0.9 );
}