/* Drag and Drop */
.drag-drop {
}

.drag-drop .file-drop {
    text-align: center;
    padding: 54px;
    border: 1px dashed #ccc;
    height: 100%;
    min-height: 333px;
}

.drag-drop .file-drop {
    text-align: center;
    padding: 54px;
    border: 3px dashed #ccc;
    background-color: white;
}

.drag-drop .file-drop .text.header {
    font-size: 1.8em;
}

.drag-drop label.upload-button {
    position: relative;
    cursor: pointer;
}

.drag-drop label.upload-button input {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}

.drag-drop .file-display ul {
    padding: 0;
}

.drag-drop .file-display .panel .panel-body {
    height: 290px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.drag-drop .file-display ul li {
    list-style-type: none;
}

.drag-drop .file-display .file-info .file-index {
    font-weight: bold;
}

.drag-drop .file-display .file-info .file-size {
    color: #aaa;
    font-style: italic;
}

.drag-drop .file-display .error .file-info .file-status {
    color: salmon;
}

.drag-drop .file-display .success .file-info .file-status {
    color: #5cb85c;
}