/*--------------------------
	FileDrop Element
--------------------------*/

.fd-zone {				/* Essential FileDrop zone element configuration: */
	position: relative;
	overflow: hidden;
	width: 100px;
	height: 100%;			/* this setting doesn't seem to affect the object */
	z-index: 2;
}
.fd-zone.over { }			/* Provides visible feedback when use drags a file over the drop zone: */


.fd-file {				/* Hides <input type="file"> while simulating "Browse" button: */
	visibility: hidden;		/* this is what actually gets clicked, so we just render this so it does NOT interfere with visuals */
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}


.dropbox {				/* this is the object that is actually shown and interacted with */
	position: relative;
	width: 100%;
	height: 50px;
	background-color: rgba(0,0,0,0.1);
	cursor: pointer;
	border: 1px solid rgba(0,0,0,0.2);
	overflow: auto;
}

.dropbox #imgClose {
	position: absolute;
	right: 10px;
	margin-top: 5px;
	cursor: pointer;
	z-index: 1000;
}

.dropbox .message {
	position: absolute;
	left: 0;
	top: 15px;
	width: 100%;
	text-align: center;
}

.dropbox .multiple {
	display: none;
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 11;
}

.dropbox #spanHashes {
	display: none;
	position: absolute;
	margin-top: -25px;
	width: 100%;
	height: 20px;
	font-size: 0;
}




/*--------------------------
	Uploaded Items
--------------------------*/

.dropbox .divFileDrop {
	display: absolute;
	left: 0;
	right: 0;
	height: 10px;
}

.dropbox .divFileDrop img { display: none; }




/*--------------------------
	Progress Bars
--------------------------*/

.dropbox .divFileDrop .spanProgressBar {
	display: block;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}

