/* ************************************** */
/* Mandatory CSS required for ng-sortable */
/* ************************************** */
.as-sortable-item, .as-sortable-placeholder {
	display: block;
}
.as-sortable-item {
	-ms-touch-action: none;
	touch-action: none;
	/* to disable context menu on iOS devices */
	-webkit-touch-callout: none;
}
.as-sortable-item-handle {
	cursor: move;
}
.as-sortable-placeholder {
}
.as-sortable-drag {
	position: absolute;
	pointer-events: none;
	z-index: 9999;
}
.as-sortable-hidden {
	display: none !important;
}
.as-sortable-un-selectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/* ************************************** */
/* Style */
/* ************************************** */
.as-sortable-placeholder {
	padding:10px;
	margin-bottom:15px;
	border:2px dashed darkgrey;
	box-sizing:border-box;
	background-color:#ddd;
}