.dz-preview:before,
.dz-upload {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}
.dz-filename,
.dz-size,
.dz-upload {
    margin-right: 6px;
}
.dz-filename a {
    text-decoration: none;
    color:inherit;
}
.dz-error-message,
.dz-preview:before {
    content: "";
}
.dropzone,
.dropzone * {
    box-sizing: border-box;
}
.dropzone {
    min-height: 120px;
    border: 2px dashed #ced4da;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropzone.dz-clickable {
    cursor: pointer;
}
.dropzone.dz-clickable * {
    cursor: default;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
    cursor: pointer;
}
.dropzone.dz-started .dz-message {
    display: none;
}
.dropzone.dz-drag-hover {
    border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5;
}
.dropzone .dz-message {
    text-align: center;
}
.dropzone .dz-message .dz-button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.dropzone-preview {
    margin-top: 16px;
}
.dz-preview {
    display: flex;
    margin-top: 6px;
    align-items: center;
    padding: 2px 0;
}
.dz-preview:hover {
    background: #f5f5f5;
}
.dz-preview:before {
    background: url(../../img/icons/download.svg) no-repeat;
    background-size: 24px 24px;
}
.dz-progress {
    display: none;
}
.dz-processing:not(.dz-complete) .dz-progress {
    display: block;
}
.dz-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: radial-gradient(closest-side, #fff 70%, transparent 80% 100%), conic-gradient(gray var(--progress, 0), #d3d3d3 0);
    font-size: 8px;
}
.dz-error-message {
    display: none;
    background: url(../../img/icons/invalid.svg) no-repeat;
    background-size: 32px 32px;
    min-width: 32px;
    height: 32px;
    cursor: pointer;
}
.dz-remove,
.dz-remove:hover {
    width: 24px;
    height: 24px;
    margin-left: 16px;
}
.dz-error .dz-error-message {
    display: block;
}
.dz-remove {
    background: url(../../img/icons/close.svg) no-repeat;
}
.dz-remove:hover {
    background: url(../../img/icons/close-red.svg) no-repeat;
    opacity: 0.7;
}
.dz-left-part {
    flex: 1;
    display: flex;
    align-items: center;
}