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

.dropzone_form {
  position: relative; }
  .dropzone_form .dz-preview {
    position: relative;
    display: inline-block;
    width: 82px;
    margin: 5px;
    text-align: center;
    vertical-align: top;
    overflow: hidden;
    font-family: Verdana, Arial;
    font-size: 10px;}
    .dropzone_form .dz-preview div{
      text-align: center; }
    .dropzone_form .dz-preview .dz-image {
      width: 82px;
      height: 82px;
      line-height: 82px;}
      .dropzone_form .dz-preview .dz-image img{
        max-width: 100%;
        max-height: 100%;
      }
    .dropzone_form .dz-preview .dz-progress {
      display: block;
      height: 10px;
      border: 1px solid #aaa; }
      .dropzone_form .dz-preview .dz-progress .dz-upload {
        display: block;
        height: 100%;
        width: 0;
        background: green; }
    .dropzone_form .dz-preview .dz-error-message {
      color: red;
      display: none; }
    .dropzone_form .dz-preview.dz-error .dz-error-message, .dropzone_form .dz-preview.dz-error .dz-error-mark {
      display: block; }
    .dropzone_form .dz-preview.dz-success .dz-success-mark {
      display: block; }
    .dropzone_form .dz-preview .dz-error-mark, .dropzone_form .dz-preview .dz-success-mark {
      position: absolute;
      display: none !important;
      left: 30px;
      top: 22px;
      width: 54px;
      height: 58px;
      left: 50%;
      margin-left: -27px; }
  .dropzone_form .dropzone-title {
     }
  .dropzone_form .dropzone-clickable {
    margin: 10px 0 15px 0;
    padding: 5px;
    min-height: 100px;
    background-color: #f2f2f2;
    border: 1px dashed #ccc;
    cursor: pointer; }
  .dropzone_form .dz-preview .dz-action{
    margin-top:5px; }
  .dropzone_form .dz-preview .dz-action .dz-remove {
    width: 80px;
    background-color: #ddd;
    border: 1px solid #e2e2e2;
    font-size: 11px;
    padding: 1px 2px;
    vertical-align: top;
    text-align: center;
    cursor: pointer; }
  .dropzone_form .dz-preview .dz-action .dz-remove:hover {
    background-color: #d5d5d5; }
