/* Dropzone css */
/* ------------ */
.dropzone {
  min-width: 190px;
  min-height: 300px;
  border: 2px dashed #5A8DEE;
  background: #F2F4F4;
}

.dropzone .dz-message {
  /* dropzone message customization */
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  margin-top: 200px;
  color: #5A8DEE;
  text-align: center;
  z-index:1;
}

.dropzone .dz-message:before {
  /* dropzone message icon */
  font-family: "Font Awesome 5 Free";
  content: "\f093";
  font-size: 2rem;
  position: absolute;
  top: -50px;
  width: 80px;
  height: 60px;
  display: inline-block;
  left: 50%;
  margin-left: -40px;
  line-height: 1;
  z-index: 2;
  color: #5A8DEE;
  text-indent: 0px;
  font-weight: 900;
}

.dropzone .dz-preview {
  background: transparent;
  width: 90%;
  text-align: center;
}

.dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
  background-image: url("spritemap.png");
  top: 10px;
  right: 5px;
  transform: translateX(-50%);
}

.dropzone .dz-preview .dz-error-message {
  /* dropzone error message */
  width: 100px;
  top: 0;
}

.dropzone .dz-preview .dz-remove {
  font-size: .8rem;
  color: #FF5B5C;
  line-height: 1.2rem;
}

.dropzone .dz-preview .dz-remove:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1f8";  
  display: inline-block;
  line-height: 1;
  z-index: 2;
  text-indent: 0px;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: none;
  color: #ff2829;
}

/* For Small Screen drop Logo */
@media (max-width: 576px) {
  .dropzone .dz-message:before {
    top: -2rem;
  }
}