.imageuploadify {
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    background: #FFF;
	position: relative;
    height: 117px;
	min-width: 250px;
	max-width: 96.5%;
	display: flex;
	padding: 0;
	flex-direction: column;
	text-align: center;
	color: rgba(55, 63, 65, 0.5);
}

.imageuploadify .imageuploadify-overlay {
	z-index: 10;
	width: 100%;
	height: 100%;
	position: absolute;
	flex-direction: column;
	top: 0;
	left: 0;
	display: none;
    font-size: 14px;
    font-family: 'Proxima Nova';
    background: #FFF;
	text-align: center;
	pointer-events: none;
}

.imageuploadify .imageuploadify-overlay i {
	z-index: 10;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
    display: none;
}

.imageuploadify .imageuploadify-images-list {
	display: inline-block;
}

.imageuploadify .imageuploadify-images-list span.imageuploadify-message {
	font-size: 24px;
    font-family: 'Proxima Nova';
	padding: 10px;
    margin-top: 35px;
	display: inline-block;
}

.imageuploadify .imageuploadify-images-list button.btn-default {
	display: block;
	color: #373F41;
	margin: 25px auto;
	width: 100%;
	max-width: 500px;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container {
	width: 100px;
	height: 100px;
	position: relative;
	overflow: hidden;
	margin-bottom: 1em;
	float: left;
	border-radius: 12px;
	box-shadow: 0 0 4px 0 #888
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container button.btn-danger {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 20px;
	height: 20px;
	border-radius: 15px;
	font-size: 10px;
	line-height: 1.42;
	padding: 2px 0;
	text-align: center;
	z-index: 3;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container img {
	height: 100px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: auto;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details {
	position: absolute;
	top: 0;
	padding-top: 20px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: rgba(255, 255, 255, .5);
	z-index: 2;
	opacity: 0;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details span {
	display: block;
}