/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */




/* ========= UPLOAD ========= */

#actions {
    margin: 2em 0;
}


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



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

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

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

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

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


.fallzone{
    background: #ddd;
    width: 100%;
    height: 100px;
    margin-top: 10px;
    border: 4px;
    border-color: #777;
    border-style: dashed;
    transition: border-color .2s ease-in-out;
}
.fallzone p{
    text-align: center;
    font-size: 20px;
    padding-top: 30px;
}
.dz-drag-hover{
    border-color: #5f5;
}

.tablenav.top {
    visibility: hidden;
    height: 0px;
}

button.toggle-row {
    visibility: hidden;
}

button.btn.btn-primary.start {
    visibility: hidden;
}

button.btn.btn-warning.cancel {
    line-height: unset;
}

span.status_error {
    color: red;
    font-weight: bold;
}