﻿DragHandler
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	pointer-events: none;

	.dragging
	{
		position: absolute;
		pointer-events: none;

		.drag-icon
		{
			width: 64px;
			height: 64px;
			background-size: contain;
			background-position: center;
			background-repeat: no-repeat;
			border-radius: 4px;
			background-color: rgba( 0, 0, 0, 0.5 );
			backdrop-filter: blur( 5px );
			border: 1px solid rgba( #5e94ff, 0.4 );
			box-shadow: 0px 0px 20px rgba( #5e94ff, 0.3 );
		}
	}
}
