<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* TODO: WORKING FILE ONLY - MOVE INTO co-ui-style.css */

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

    border: 1px dashed var(--lightGrey);
    border-radius: 1rem;
    background-color:var(--light);
    transition:all 0.2s;
}
.GeccoUploadHeading {
    color: #606060;
    width: 100%;
    font-size: 1rem;
    text-align: center;
    margin-top: 1.4rem;
}
.GeccoUploadCurrent {
    width: 100%;
}
.GeccoUploadList {
    padding-left: 0;
    padding-right: 0;
    margin-left: -1rem;
    margin-right: -1rem;
}

.GeccoUploadList &gt; li {
    padding: 0.25rem 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.2) !important;
}


.GeccoUploadBrowse {
    font-size:0.8rem;
    margin-bottom: 0.5rem;
}
.GeccoUploadInput {
    display: none;
}


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

.GeccoUploadContainer .gecco-upload-thumbnail-container {
    width: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.GeccoUploadContainer img.gecco-upload-thumbnail {
    max-height: 4rem;
    max-width: 4rem;
}

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

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

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

.GeccoUploadCurrent.has-values .current-files {
    display:block;
    padding-left:1rem;
    padding-right:1rem;
    font-size:0.8rem;
}
</pre></body></html>