#file_space{
	position: relative;
	width: 100%;
	height: 160px;
	text-align: center;
	border: 1px dotted #808080;
	border-radius: 4px;
	background: #fafafa;
	color: #808080;
}
#file_space.spin{
	background: #808080 url(./spinner.svg) no-repeat center center;
}
#file_space span{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
#file_space #droper{
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translateX(0) translateY(0);
	opacity: 0;
}
#file_space .counter{
	position: absolute;
	right: 30px;
	bottom: 10px;
	text-align: right;
	font-size: 75%;
	color: #808080;
}
.note{
	margin-top: 1em !important;
	font-size: 90%;
}
#fileList{
	position: relative;
	width: 100%;
	height: 100px;
	text-align: center;
	border: 1px solid #2271b1;
	border-radius: 4px;
	color: #808080;
}
#fileList p{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
#fileList ul{
	margin: 10px 0;
	width: 100%;
	height: 80px;
	list-style: none;
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	grid-auto-rows: 80px;
	justify-items: center;
}
#fileList ul li{
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	text-align: center;
	font-size: 75%;
}
#fileList ul li img{
	width: 60px;
	height: 60px;
	margin: 0 auto;
	object-fit: contain;
}
#fileReset{
	float: right;
	padding: .25em 1em;
	text-align: center;
	font-size: 75%;
	color: #808080;
}