﻿/* upload file styling addons to bootstrap */
.upload-container {
	margin: 0px;
	padding: 0px;
}

.upload-area {
	padding: 0px 10px 0px 10px;
	width: 100%;
	height: auto;
	min-height: 200px;
	border: 2px dashed lightgray;
	margin: 0;
	text-align: center;
	overflow: auto;
	border-radius: 5px;
	font-size: 12px;
}

	.upload-area:hover {
		cursor: pointer;
	}

	.upload-area h3 {
		text-align: center;
	}

	.upload-area a,
	.upload-area a:focus,
	.upload-area a:hover {
		color: #2f3c48;
		text-decoration: underline;
	}

	.upload-area span.upload-error {
		color:red;
	}

.upload-thumbnail {
	margin-bottom: 10px;
}

/* input field styling addons to bootstrap */
#upload-file {
	display: none;
}

/* upload font size to show if the file size is greater than the allowed limit */
.upload-size {
	font-size: 12px;
}

/* upload font color to show if the accumulated file sizes are greater than the allowed limit */
.upload-alert {
	color: red;
}
