.dialog-wrapper{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);


    display: flex;
    justify-content: center;
    align-items: center;

    animation: fadeIn 0.5s alternate;
}

.dialog{
    width: 500px;
    max-height: 500px;
    padding: 16px;
    overflow-y: auto;

    background-color: white;
    animation: scaleUp 0.5s alternate;

}
.dialog *{
}

.dialog .progressWrap{
    display:inline-block;
    width: 100%;
    height: 15px;
    
    background-color: #e3a24d60;
}
#progressDialog .progressText{
    text-align: right;
}
#progressDialog .progressWrap .progress{
    display: inline-block;
    width: 0;
    height: 15px;
    background-color: #e3a34d;
    transition-duration: 0.5s;
    transition-property: width;
}
#progressDialog .progressLog{
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.8rem;
    color: #333333;
}