﻿.uploader-panel .fileinput-button {
	display: inline-block;
	padding: 3px 8px 3px 8px;
	margin-bottom: 0;
	font-size: 11px;
	font-weight: 400;
	color: #fff;
	background-color: #609C38;
	border: 1px solid #4cae4c;
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.uploader-panel .fileinput-button input[type="file"] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: inherit;
	display: block;
}

.uploader-panel .progress {
	height: 20px;
	background: #f5f5f5;
	border-radius: 4px;
	margin-top: 10px;
	overflow: hidden;
	display: none; /* Hide by default */
}

.uploader-panel .progress-bar-success {
	background-color: #609C38;
	height: 100%;
	width: 0;
	transition: width 0.4s;
}

.uploader-panel .files {
	border: 1px dashed #999999;
	color: #d9d9d9;
	min-height: 50px;
	width: 100%;
	max-width: 100%;
	margin: 0 0 2px 0;
	text-align: center;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	overflow-x: auto;
	overflow-y: hidden;
	box-sizing: border-box;
}
.uploader-panel .uploaded-file {
	display: inline-block;
	position: relative;
	margin: 5px 5px 0 0;
	vertical-align: top;
}
.uploader-panel .uploaded-file img {
	display: block;
}
.uploader-panel .remove-uploaded-file {
	position: absolute;
	top: 2px;
	right: 2px;
	z-index: 2;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #ccc;
	padding: 1px;
}
.uploader-panel .dragdrop-message {
	color: #d9d9d9;
    width: 100%;
    line-height: 45px;
}
