#ProgressionBar {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100%;
    z-index: 100;
}

#ProgressionBar.fx {
    background: rgba(255, 255, 255, 0.95);
    transition: background 0.5s ease-out 0.5s;
}

#ProgressionBar .ProgressionBarWrapper {
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    width: 500px;
    max-width: calc(100% - 32px);
    height: 60px;
    border-radius: 10px;
    transform: translate(-50%,-50%) scale(0.9);
    opacity: 0;
}

#ProgressionBar.fx .ProgressionBarWrapper {
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
    transition: opacity 1s ease-out 0.5s, transform 0.5s ease-out 0.5s;
}

#ProgressionBar .messageWindow {
    position: relative;
    width: calc(100% - 32px);
    padding: 0;
    padding-left: 16px;
    padding-right: 16px;
    height: 40px;
    line-height: 40px;
}

#ProgressionBar .messageWindow .busyText {
    position: relative;
    width: calc(100% - 60px);
    overflow: hidden;
    float: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#ProgressionBar .messageWindow .percentage {
    position: relative;
    float: right;
    width: 60px;
    text-align: right;
    overflow: hidden;
}

#ProgressionBar .theBar {
    position: relative;
    width: 100%;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f0f0f0;
}

#ProgressionBar .theBar .innerProgressionBar {
    width: 0%;
    height: 100%;
    transition: width 0.25s ease-out;
    background: linear-gradient(to right, #00a9cd 10%,#4bc5af 90%);
}