.popup-wrapper-file-upload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: rgba(0,0,0,.8);
}

.popup-wrapper-file-upload .popup-file-upload {
    width: 85%;
    height: 85%;
    background: white;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
    justify-content: center;

}

.popup-file-upload .popup-controls {
    width: 100%;
    text-align: right;
}

.popup-file-upload div[id^=container] {
    padding: 10px;
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
    height: calc(100% - 30px);
}

.popup-file-upload div[id^=container] > form{
    width: calc(100% - 5px);
}

div[id^=document-controls_] > button {
    background-color: rgb(75, 75, 75);
    color: white;
    padding: 7px;
    border: 0;
    border-radius: 5px;
}

.popup-controls {
    margin: 5px;

}

.popup-controls > button {
    background-color: rgb(75, 75, 75);
    color: white;
    padding: 7px;
    border: 0;
    border-radius: 5px;
}


div[id^=loading-overlay] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

div[id^=loading] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    z-index: 9999;
}
