.dropzone {
  border: 1px dashed #c2c2c2;
  background: #f9f9f9;
  padding: 20px;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 500;
}
.dropzone.active {
  border-color: #198754;
  background: #ffffff;
  color: #198754;
}
.dropzone .files-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: center;
  font-weight: 400;
  margin-top: 10px;
}
.dropzone .files-list > * {
  flex: 0 0 auto;
  padding: 5px 10px;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dropzone .files-list > * .remove-file {
  position: relative;
  width: 16px;
  height: 16px;
}
.dropzone .files-list > * .remove-file::before,
.dropzone .files-list > * .remove-file::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: black;
  transform-origin: center;
}
.dropzone .files-list > * .remove-file::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.dropzone .files-list > * .remove-file::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.file-input-hidden {
  opacity: 0;
  padding: 0;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
}
/*# sourceMappingURL=dropzone.css.map */