.sm-dropzone{
  border: 2px dashed #cfd4dc;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: .15s;
    display: flex;
  align-items: center;
  justify-content: center;
}

.sm-dropzone.drag-over{
  border-color: #0d6efd;
  background: rgba(13,110,253,.05);
}

.sm-dropzone .dz-title{
  font-weight: 600;
}

.sm-dropzone img.dz-img{
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 6px;
}