.a-dropzone-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px;
    pointer-events: none;
    min-width: 100%;
}

.a-dropzone-progress-container {
    position: relative;
    min-width: 100%;
    border: 1px solid black;
    border-radius: 4px;
    min-height: 16px;
    overflow: hidden;
    background-color: #444444;
}

.a-dropzone-progress {
    background-color: #2196F3;
    height: 100%;
    position: absolute;
    left: 0;
}

.a-dropzone-filename {
    
}

.a-dropzone-errormessage {
    color: red;
    word-wrap: break-word;
}

.a-dropzone-success {
    display: none;
}

.a-dropzone-error {
    display: none;
}

.a-dropzone-info {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin: 4px;
    color: white;
    position: relative;
}

.a-dropzone-preview.dz-success .dz-success-mark {
    display: flex;
}

/* ERROR */
.a-dropzone-preview.dz-error .dz-error-mark {
    display: flex;
}