.upload-dropper{
	background-color:#e1e2e3;
	border-radius: 3px;
	border: 2px dashed #5b728a;
	width: 150px;
	height: 150px;
	transition: background-color 0.3s cubic-bezier(.46,.87,.2,1);
	float: left;
	transition: box-shadow 0.4s ease;
	cursor: pointer;
}

.upload-dropper:hover {
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
}

.image-upload-img{
	width: 150px;
	height: 150px;
	background-size: cover;
	background-position: center;
	border-radius: 3px;
	float: left;
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
	transition: box-shadow 0.4s ease;
	cursor: pointer;
	margin-bottom: 1rem;
	margin-right: 1rem;
}

.image-upload-img:hover {
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
}

.img-iu-wrapper{
	width:150px;
	height:150px;
	display: flex;
	background-color: #fff;
	position:absolute;
}

.img-image-upload{
	max-width:100%;
	max-height:100%;
}

.errormsg{
	color:red;
}

.main-selector-wrapper{
	position: absolute;
	width: 150px;
}

.main-selector{
	background-color: #8a8474;
	color:#fff;
	width: auto;
	text-align: center;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	position: relative;
}

.main-selector>strong{
	color:#fff !important;
}

.delete-icon-wrapper{
	width:150px;
	height:150px;
	position:absolute;
	border-radius: 3px;
	opacity:1;
	transition: opacity 0.3s cubic-bezier(.46,.87,.2,1);
}

.delete-icon{
	position:absolute;
	right: 5px;
	top:5px;
	width:20px;
}