.mv-image-file-upload-wrapper {
	width: 100%;
	border: solid 1px #666666;
	border-radius: 0px;
	padding-top: 0.35em;
	padding-bottom: 0.0em;
	padding-left: 0.75em;
	padding-right: 0.625em;
	
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	margin-bottom: 10px;
	box-sizing: border-box;
}

.mv-image-file-upload-fields-container {
	width: calc(100% - 120px);
	margin-right: 20px;
}

.mv-image-file-upload-preview-container {
	width: 120px;
}

.mv-image-file-upload-wrapper label {
	width: 100%;
	/* font-weight: bold;
	font-size: 0.90rem;
	margin-bottom: 8px; */
}

.mv-image-file-input-instructions {
	width: 100%;
	font-size: 0.90rem;
	font-style: italic;
	font-weight: normal;
}

.mv-image-file-upload-wrapper input[type=text] {
	width: 100%;
	border-radius: 0.5rem;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
	border: 1px solid #AAAAAA;
	box-shadow: none;
}

.mv-image-file-upload-wrapper input[type=file] {
	width: 100%;
	background-color: #EEEEEE;
	border-radius: 0.5rem;
	border: dashed 1px #0000CC;
	box-sizing: border-box;
}

.mv-image-file-upload-wrapper input[type=file]::-webkit-file-upload-button,
.mv-image-file-upload-wrapper input[type=file]::file-selector-button {
	background-color: #0000CC;
	color: #FFFFFF;
	padding: 8px 16px 10px 16px;
	border: solid 1px #0000CC;
	border-radius: 0.5rem;
	font-size: 0.90rem;
}

.mv-image-file-upload-wrapper input[type=file]::-webkit-file-upload-button:hover,
.mv-image-file-upload-wrapper input[type=file]::file-selector-button:hover {
	background-color: #0000AA;
	color: #FFFFFF;
	padding: 8px 16px 10px 16px;
	border: solid 1px #0000AA;
	border-radius: 0.5rem;
	cursor: pointer;
}

.mv-image-file-upload-wrapper > span {
	padding: 4px 8px;
	background-color: #EEEEEE;
	color: #666666;
	font-weight: bold;
	font-size: 0.90rem;
	text-align: center;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border: solid 1px #EEEEEE;
}

.mv-image-file-upload-wrapper ul {
	width: 100%;
	min-height: 120px;
	list-style: none;
	margin-top: -3px;
	margin-bottom: 4px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px;
	/* padding: 0px 4px 4px 4px; */
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	/* border: solid 1px #EEEEEE; */
	box-sizing: border-box;
	/* border-bottom-left-radius: 8px; */
	/* border-bottom-right-radius: 8px; */
}

.mv-image-file-upload-wrapper ul li {
	margin: 0;
	padding: 0;
	width: 120px;
	/* margin: 4px; */
}

.mv-image-file-upload-wrapper ul li img {
	width: 120px;
	height: auto;
	border: solid 1px #CCCCCC;
	margin-top: 8px;
}

.mv-image-file-upload-wrapper ul li span {
	font-size: 0.70rem;
}


.mv-image-file-input-button-delete {
	font-size: 0.70rem;
	line-height: 1.05rem;
	width: 120px;
	height: 32px;
	margin-top: 4px;
	padding: 0px;
}



.mv-image-file-input-info-progress-bar {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

	width: 100%;
	
	box-sizing: border-box;
}

.mv-image-file-input-progress-bar {
	width: calc(100% - 72px);
	margin-top: -8px;
	box-sizing: border-box;
}

.mv-image-upload-file-done {
	width: 64px;
	height: 16px;
	margin-top: -6px;
	margin-left: 8px;
	font-size: 0.75rem;
	line-height: 1.0rem;
	background-color: #CCCCCC;
	text-align: center;
	color: #FFFFFF;
	border-radius: 4px;
}


.mv-image-upload-file-done-uploaded {
	background-color: #00DD00;
	animation: mv-image-upload-file-done-animation 3s;
}

@keyframes mv-image-upload-file-done-animation {
	0%		{ background-color: #CCCCCC; }
	5%		{ background-color: #00DD00; }
	100%	{ background-color: #00DD00; }
}
