@charset "utf-8";

#sortingSortable li
{
	background-color: #EFEFEF;
	list-style-type: none;
	padding: 5px 10px;
	color: #fff;
	cursor: pointer;
	position: relative;
	border-bottom: solid 2px #fff;
	font-size: 16px;
	height: 40px;
	left: 0;
}

#sortingSortable li span
{
	position: absolute; 
	left: 0;
	top: 0;
	background-color: #53B2CF;
	width: 100%;
	text-align: center;
	padding: 5px 10px;
	font-size: 16px;
	border-bottom: solid 2px #fff;
	height: 40px;
}

.element.being-dragged
{
	background-color: #53B2CF;
    -webkit-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
    -moz-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
    box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
	z-index:1;
}