/* TODO: WORKING FILE ONLY - MOVE INTO co-ui-style.css */

.GeccoUploadContainer {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;

    border: 2px dashed grey;
    border-radius: 2rem;
    background-color:transparent;
    transition:all 0.2s;
}
.GeccoUploadHeading {
    color: #606060;
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 0.75rem;
}
.GeccoUploadCurrent {
    width: 100%;
    padding-left: 1rem;
}
.GeccoUploadList {
    padding-left: 0.5rem;
    padding-right: 0.75rem;
}
.GeccoUploadBrowse {
    margin-bottom: 0.5rem;
}
.GeccoUploadInput {
    display: none;
}


.GeccoUploadContainer.dragover {
    background-color:var(--lightGrey);
}

.GeccoUploadCurrent {
    position:relative;
    min-height:60px;
}

.GeccoUploadCurrent .loading {
    display:none;
    position: absolute;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color:rgba(255,255,255,0.8);
    margin-left: -1rem;
    border-radius:0 0 2rem 2rem;
}
.GeccoUploadCurrent.loading .loading {
    display:flex;
}
.GeccoUploadCurrent .loading .description {
    margin-top:1rem;
}

.GeccoUploadCurrent .current-files {
    display:none;
}

.GeccoUploadCurrent.has-values .current-files {
    display:block;
}
