<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dropfile_dropzone
{
	border: 1px dashed #999999;
	box-sizing: border-box;
	border-radius: 4px;
	height: 120px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999999;
}

.dropfile_text
{
	margin: 16px 0;
}

.dropfile_filezone_item
{
	display: flex;
	line-height:18px;
}

.dropfile_filezone_item_cross
{
	display:inline-block;
	position:relative;
	
	margin-left: 10px;
	
	cursor:pointer
}

.dropfile_filezone_item_cross::before
{
	content:"";
	display:block;
	width:2px;
	height:9px;
	position:absolute;
	background: black;
	rotate: -45deg;
	top: 7px;
}

.dropfile_filezone_item_cross::after
{
	content:"";
	display:block;
	width:2px;
	height:9px;
	position:absolute;
	background: black;
	rotate: 45deg;
	top: 7px;
}</pre></body></html>