#drop-zone {
	position: absolute;
	outline: none;
	text-align: center;
	width: 435px;
	height: 340px;
	margin: 10px;
	border-radius: 20px;
	line-height: 280px;
	font-size: 20px;
	color: rgb(87, 86, 86);
	border: 2px dashed rgba(74, 74, 74, 0.5);
}

#drop-zone input {
	position: absolute;
	left: 0px;
	top: 0px;
	opacity:0;
}

/*Important*/
#drop-zone.mouse-over {
	border: 2px dashed rgba(74, 74, 74, .5);
	color: rgb(87, 86, 86);
}


/*If you dont want the button*/
#clickHere {
	position: absolute;
	cursor: pointer;
	left: 50%;
	top: 50%;
	margin-left: -50px;
	margin-top: 20px;
	line-height: 26px;
	color: white;
	font-size: 12px;
	width: 100px;
	height: 26px;
	border-radius: 4px;
	background-color: #3b85c3;

}

#clickHere:hover {
	background-color: #4499DD;
}

#file {
	cursor: pointer;
	cursor: hand;
}



#progress-bar {
  width: 150px;
  background-color: #ddd;
  border: none;
  border-radius: 15px;
  cursor: hand;
  cursor: pointer;
  font-family: 'Harabara', serif;
  transition: background-color .5s;
  outline: none;
  margin-inline-start: 10px;
  margin-inline-end: 10px;
  margin-block-start: 5px;
  position: relative;
  float: left;
  margin: 15px 0 0 49px;
  display: none;
}

#bar {
  width: 0%;
  height: 20px;
  background-color: #f9be0c;
  border: none;
  border-radius: 15px;
  cursor: hand;
  cursor: pointer;
  transition: background-color .5s;
  outline: none;
  margin-inline-start: 0px;
}

