.file_upload, .file_upload_multi {
	background-color: #eee !important;
}

.ready_for_drop {
	border-color: #fff !important;
}

.not_allowed_for_drop {
	cursor: no-drop !important;
}

#uploaded_files_ul ul, #output_files_ul ul {
	list-style-type: none !important;
}

#uploaded_files_ul, #output_files_ul {
	list-style-type: none !important;
	margin: 0;
	margin-left: 2px;
	padding: 0;
}

#loadingoverlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

/* Remove margins and padding from the parent ul */
/* Style the caret/arrow */
.caret-symbol {
	cursor: pointer;
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.caret-symbol::before {
	list-style-type: none;
	content: "\25B6";
	color: black;
	display: inline-block;
	margin-right: 6px;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
	-ms-transform: rotate(90deg); /* IE 9 */
	-webkit-transform: rotate(90deg); /* Safari */
	transform: rotate(90deg);
}

/* Hide the nested list */
.nested {
	display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.nested.active {
	display: block;
}

.nested.active > .dragged {
	opacity: 0.3;
}

.nested.active > .default {
	font-style: italic;
	font-weight: lighter;
	color: #555555;
}
