/* DROP ZONE */
.droppable {
    border: #ccc 3px dashed;
    border-radius: 8px;
    background: #f5f5f5;
    color: #999;
    padding: 20px;
    clear: both;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.droppable.hover {
    background: #f4fced;
    opacity: 1;
}

.droppable a {
    color: #6090f5;
    cursor: pointer;
}


.uploadList {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    padding-top: 20px;
}

.uploadItem {
    overflow: hidden;
    padding: 12px 20px;

    border: 1px solid #00000029;
    border-radius: 5px;
    display: inline-block;
    background: white;
    color: #303030;
}

.uploadItem span {
    overflow: hidden;
    float: left;
    display: block;
}

.uploadList .uploadItemContainer {
    padding: 0;
    margin: 0;
    position: relative;
}

.uploadItemContainer + .uploadItemContainer {
    margin-left: 15px;
}

.uploadItem a {
    display: block;
}

.uploadItem a::before {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    font-size: 22px;
    content: '\f057';
    position: absolute;
    color: #f05050;
    right: -9px;
    top: -9px;
    width:18px;
    height:18px;
    background: white;
    border-radius: 9px;
}

.progress {
    margin: 5px 0;
    height: 15px;
    border-radius: 3px;
    background: #545A74;
}

