/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
.dropzone,.dropzone * {
	box-sizing: border-box;
	font-family: Verdana;
}
/* */
.dropzone {
	position: relative;
	min-height: 120px;
}

.dropzone .dz-message {
	margin: 3em 0;
}

/* * /
.dropzone .dz-preview {
	position: relative;
	display: inline-block;
	width: 100px;
	margin: 0.5em;
}
/* */
.dropzone .dz-preview {
	margin: 0.4em;
}

.dropzone .dz-preview.dz-image-preview {
	background: transparent;
}

.dropzone .dz-preview .dz-image {
	width: 100px;
	height: 100px;
}

.dropzone .dz-preview .dz-image img {
	display: block;
	width: 100px;
	height: 100px;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
	border-radius: 2px;
}

.dropzone .dz-preview .dz-details .dz-size {
	font-size: 14px;
}

.dropzone .dz-preview .dz-progress {
	top: 72%;
}
.dropzone .dz-preview .dz-details {
	padding: 1.75em 1em;
	line-height: 125%;
}

/* * /
.dropzone .dz-preview .dz-progress {
	display: block;
	height: 15px;
	border: 1px solid #aaa;
}
/* */
/* * /
.dropzone .dz-preview .dz-progress .dz-upload {
	display: block;
	height: 100%;
	width: 0;
	background: green;
}
/* */
/* * /
.dropzone .dz-preview .dz-error-message {
	color: red;
	display: none;
}
/* * /
.dropzone .dz-preview.dz-error .dz-error-message,.dropzone .dz-preview.dz-error .dz-error-mark {
	display: block;
}
/* * /
.dropzone .dz-preview.dz-success .dz-success-mark {
	display: block;
}
/* */

.dropzone .dz-preview .dz-remove {
	font-size: 12px;
	color: #aa0000;
	text-decoration: none;
}

/* * /
.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark {
	position: absolute;
	display: none;
	left: 30px;
	top: 30px;
	width: 54px;
	height: 58px;
	left: 50%;
	margin-left: -27px;
}
/* */

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
	margin-top: -37px;
}

/* Custom decoration code */
.decoration {
	border: 1px dashed #999;
	background: #f2f2f2; /* f2f2f2 */
	padding: 10px;
	font-size: 13px;
}
