.box-header.has-error h3 {
    color: #dd4b39;
}




#dzactions {
    margin: 2em 0;
}

/* Mimic table appearance */
div.dztable {
    display: table;
}
div.dztable .file-row {
    display: table-row;
}
div.dztable .file-row > div {
    display: table-cell;
    vertical-align: top;
    border-top: 1px solid #ddd;
    padding: 8px;
}
div.dztable .file-row:nth-child(odd) {
    background: #f9f9f9;
}

/* The total progress gets shown by event listeners */
#dztotal-progress {
    opacity: 0;
    transition: opacity 0.3s linear;
}

/* Hide the progress bar when finished */
#dzpreviews .file-row.dz-success .progress {
    opacity: 0;
    transition: opacity 0.3s linear;
}

/* Hide the delete button initially */
#dzpreviews .file-row .delete {
    display: none;
}

/* Hide the start and cancel buttons and show the delete button */

#dzpreviews .file-row.dz-success .start,
#dzpreviews .file-row.dz-success .cancel {
    display: none;
}
#dzpreviews .file-row.dz-success .delete {
    display: block;
}