
.container {
	max-width: 70vw;
	margin: 0 auto;
}

.dropzone { 
	background: #f4f5f5;
	&.dz-drag-hover {
		background: #03A9F4;
	}
}
.dropzone-uploads{  
    width: 100%;
    background: white;
    border: 1px solid #323232;
}
.dropzone-uploads__title{
	background:#323232;
	text-align:center;
	padding:0.3rem;
	color:white;
	font-size:80%;
}
.dropzone-uploads__inner {
  padding: 15px;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

.upload-item {
  margin: 10px;
  cursor: move;
}

.upload-item__error-message {
	min-width: 150px;
	text-align: center;
	display: none;
}

.progress {
	 position: relative;
	 height: 5px;
	 display: block;
	 width: 100%;
	 background-color: #acece6;
	 border-radius: 2px;
	 margin: 1rem 1rem 1rem 1rem;
	 overflow: hidden;
}

.progress__inner {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #26a69a;
	transition: width .3s linear;
}