.dropzone {
  padding: 0;
  border: 1px solid #cbcbcb;
  min-height: auto;
}
.dropzone .droparea {
  width: 100%;
  padding: 20px;
}
.dropzone .droparea span {
  text-align: center;
  display: block;
  padding: 20px;
  border: 2px dashed #cbcbcb;
  background-color: #FFFFFF;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.dropzone .droparea span a {
  color: #FFFFFF;
  background-color: #333;
  -webkit-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  -ms-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  cursor: pointer;
  display: inline-block;
  float: none;
}
.dropzone .droparea span a:hover {
  color: #000000;
  background-color: #cbcbcb;
  border-bottom: none;
}
.dropzone .droparea span:hover {
  border-color: #CCCCCC;
}
.dropzone .dz-preview.dz-file-preview .dz-image,
.dropzone .dz-preview .dz-image {
  border-radius: 0px;
}
.dropzone .dz-preview {
  position: relative;
  margin: 15px;
}
.dropzone .dz-preview .dz-image {
  border: 1px solid #cbcbcb;
  width: auto;
  height: auto;
}
.dropzone .dz-preview .dz-image img {
  border: none;
}
.dropzone .dz-preview .btn-remove {
  position: absolute;
  bottom: -10px;
  left: 0px;
  z-index: 20;
  width: 100%;
}
.dropzone .dz-previews-container {
  margin: 0;
}
.dropzone .dz-complete .dz-image img {
  background: transparent;
}
.dropzone .dz-preview.dz-error .dz-image {
  border-color: red;
}
.dropzone .dz-preview .dz-error-message {
  top: auto;
  bottom: -80px;
  left: 0;
  width: 136px;
}
