﻿DragHandler
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	pointer-events: none;

	.dragging
	{
		position: absolute;
		pointer-events: none;
		width: 64px;
		height: 64px;
		background-size: contain;
		background-position: center 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 );
		justify-content: flex-end;
		align-items: center;

		.drag-title
		{
			font-size: 11px;
			font-weight: 600;
			font-family: Poppins;
			color: rgba( white, 0.9 );
			text-align: center;
			text-shadow: 0 1px 4px black;
			padding: 0 4px 4px 4px;
		}
	}
}
