.login_form {
	padding: 20px;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	border: 1px solid #ccc;
}

.login_form label {
	margin-bottom: 30px;
}
.login_form input {
	width: 300px;
}

ul#acts {
	/*list-style: none;*/
	padding: 0;
	counter-reset: my;
	list-style-type: none;
}

ul#acts li {
	position: relative;
	background: #fff5db;
	margin:     10px 0;
	padding:    10px 10px;
	cursor:     pointer;
	font-weight: bold;
	text-transform: uppercase;
}
ul#acts li::before {
	counter-increment: my;
	content: '['counter(my)']' ;
	margin-right: 10px;
}

.sortable-ghost {
	opacity: .6;
}

.my-handle {
	margin: 0 20px 0 0;
}