/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  position: relative; }
.dropzone .dz-preview {
	position: relative;
	display: block;
	width: 120px;
	margin: auto;
}
    .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-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 {
	border: 3px dashed #eee;
	background-color: #fafafa;
	margin-bottom: 10px;
	border-radius: 5px;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	transition: 0.5s all;
	color: #aaa;
}
.dropzone:hover {
	background-color: #f9f9f9;
}
.dc-dz-icon-wrapper i {
	font-size: 30px;
}
.dz-preview .fa-times {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: #fff;
  cursor: pointer;
  z-index: 999;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	transition: 0.5s all;
}
.dz-preview .fa-times:hover {
  background-color: #000;
}
.dz-image img {
	max-width: 100%;
	height: auto;
	width: auto;
}