.wpufa-upload-area
{
	width: 100%;
	height: 500px;
}

.drop-zone {
max-width: 100%; /* 200px*/ /*max to make it responsive*/
height: auto;
min-height: 200px;
padding: 25px;
display: flex;
align-items: center;
justify-items: center;
text-align: center;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
font-weight: 500;
font-size: 20px;
cursor: pointer;
color: lightgrey;
border: 2px dashed #dedede;
border-radius: 10px;
flex-flow: row wrap;
overflow: auto;
margin: 10px 0px 10px 0px;
}
.drop-zone--over {
border-style: solid;
}
.drop-zone__input {
display: none !important;
}
.drop-zone__thumb
{
width: 150px;
height: 150px;
border-radius: 10px;
overflow: hidden;
background-color: #ccc;
background-size: cover;
position: relative;
margin:5px;
max-width: 150px;
cursor: default;
}
.drop-zone__thumb::after 
{
content: attr(data-label); /*  displays text of data-label*/
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 5px 0;
color: white;
background: rgba(0, 0, 0, 0.75);
text-align: center;
font-size: 14px;
}
.drop-zone__thumb-close_button 
{
	position: absolute;
	color: #e74c3c;
	font-weight: bold;
	top: 5px;
	right: 0px;
	width: 40px;
	height: 40px;
	font-size: 24px;
	cursor: pointer;
}
.drop-zone__prompt 
{
	margin: auto;
}
.wpufa-upload-button
{
	display: none;
	cursor: pointer;
	margin-top: 15px;
}
.wpufa_after_upload_container
{
	text-align: center;
	font-size: 20px;
	display:block;
	margin: 10px 0px 10px 0px;
	display:none;
}