@charset "utf-8";
/* CSS Document */

#sortingSortable li
{
	background-color: #a00e04;
	list-style-type: none;
	padding: 5px 10px;
	color: #fff;
	cursor: move;
	height: 90px;
	position: relative;
	font-size: 16px;
	margin-bottom: 5px;
}

#sortingSortable li span
{
	position: absolute; 
	left: 0;
	top: 0;
	height: 90px;
	background-color: #C12217;
	width: 100%;
	text-align: center;
	padding: 5px 10px;
	font-size: 16px;
	margin-bottom: 5px;
}

.element.being-dragged
{
	background-color: #C12217;
    -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;
}

#order li
{
	background-color: #CFCFCF;
	color: #000;
	list-style-type: none;
	padding: 5px 10px;
	font-size: 16px;
	height: 90px;
	margin-bottom: 5px;
}

.feedback, .allCorrect
{
	display: none;
}