/***
ModEl Framework
Draggable Ordering Style
***/

[data-draggable-cont]{
	position: relative;
}

.dragging-order{
	position: absolute;
	opacity: 0.7;
	z-index: 50;
}

.dragging-placeholder{
	background: rgba(255, 184, 70, 0.3);
	transition: opacity 0.5s ease-out;
}

@media (prefers-reduced-motion: reduce){
	.dragging-placeholder{
		transition: none;
	}
}
