.fileWrapper {
	width: 100%;
	height: 30px;
	margin-top: 15px;
}

.progressInfo {
	width: 100%;
	margin-bottom: 2px;
	font-size: 13px;
	font-family: Verdana;
	color: #a28059;
}

.fileInfo {
	display: inline-block;
	width: 88%;
	margin-bottom: 1px;
}

.fileInfoName {
	display: inline-block;
	max-width: 50%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: -3px;
}

.fileInfoSize {
	display: inline-block;
}

.filePercent {
	//display: flex;
  //justify-content: right;
}

.progressBarWrapper {
	width: 100%;
	height: 6px;
	background: #000;
	border-radius: 30px;
	border: 1px solid #444;
}

.progressBar {
	width: 0%;
	height: 6px;
	background: #a28059;
	border-radius: inherit;
}

body {
  display: flex;
  //align-items: center;
  justify-content: center;
  min-height: 100vh;
	margin: 0px;
	padding: 0px;
	background-color: #000;
	overflow-x: hidden;
	overflow-y: auto;
}

.wrapper {
  width: 430px;
  padding: 30px;
}

.title {
	color: #F29069;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

.uploadArea {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 2px dashed #F29069;
	height: 80px;
	margin-top: 10px;
}

.uploadArea.dragover {
  background-color: #1a1a1a;
}

p {
  margin-top: 16px;
  font-size: 16px;
	color: #F29069;
	text-align: center;
	line-height: 1.4em;
}

.textInput {
	padding: 4px;
	font-size: 16px;
	width: 250px;
	color: #8f553e;
	background: #000;
	border: 1px solid #8f553e;
}

.textInput:focus {
	outline: none !important;
	border: 1px solid #d27049;
	color: #d27049;
}

.btnInput {
	font-size: 16px;
	margin-top: 20px;
	width: 95px;
	height: 37px;
	color: #F29069;
	background: #000;
	border: 1px solid #b25029;
	cursor: pointer;
}

.btnInput:disabled {
	color: #444;
	background: #000;
	border: 1px solid #444;
	cursor: not-allowed;
}