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

.dropzone2 {
  position: relative;
}
.dropzone2 .dz-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  margin: 0.5em;
}
.dropzone2 .dz-preview .dz-progress {
  display: block;
  height: 15px;
  border: 1px solid #aaa;
}
.dropzone2 .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: green;
}
.dropzone2 .dz-preview .dz-error-message {
  color: red;
  display: none;
}
.dropzone2 .dz-preview.dz-error .dz-error-message,
.dropzone2 .dz-preview.dz-error .dz-error-mark {
  display: block;
}
.dropzone2 .dz-preview.dz-success .dz-success-mark {
  display: block;
}
.dropzone2 .dz-preview .dz-error-mark,
.dropzone2 .dz-preview .dz-success-mark {
  position: absolute;
  display: none;
  left: 30px;
  top: 30px;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px;
}

.container {
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

.container > p {
  font-size: 1rem;
}

.container > em {
  font-size: 0.8rem;
}

.dropzone2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  border-width: 2px;
  border-radius: 2px;
  border-color: #eeeeee;
  border-style: dashed;
  background-color: #fafafa;
  color: #000000;
  outline: none;
  transition: border 0.24s ease-in-out;
}

.dropzone2:focus {
  border-color: #2196f3;
}

.dropzone2.disabled {
  opacity: 0.5;
}
