.dropzone {
  position: relative;
  min-height: 350px;
  border: 2px dashed #8228BB;
  background: #f4f5fa;
  border-radius: 15px;
}

.dropzone .dz-message {
  position: absolute;
  width: 100%;
  color: #8228BB;
  text-align: center;
  font-size: 2rem;
  top: 27%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dropzone .dz-message:before {
  content: "\f0ee";
  font-family: 'fontawesome';
  font-size: 80px;
  position: absolute;
  top: 48px;
  width: 80px;
  height: 80px;
  display: inline-block;
  left: 50%;
  margin-left: -40px;
  line-height: 1;
  z-index: 2;
  color: #8228BB;
  text-indent: 0px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

.dropzone .dz-preview.dz-image-preview {
  background: transparent;
}

.dropzone .dz-preview .dz-remove {
  font-size: 1.1rem;
  color: #ff4961;
  line-height: 2rem;
}

/* .dropzone .dz-preview .dz-remove:before {
  content: "\f00d";
  font-family: 'fontawesome';
  display: inline-block;
  line-height: 1;
  z-index: 2;
  text-indent: 0px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
} */

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: none;
  color: #ff1635;
}