.mww-progress-bar-container {
    background-color: #d1d1d1;
    padding: 5px;
    max-width: 600px;
    border-radius: 5px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

.mww-progress-bar-container * {
    box-sizing: border-box;
}

.mww-progress-bar {
    position: relative;
    background-color: #f9f9f9;
    height: 30px;
    border-radius: 5px;
}

.mww-progress-bar .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 30px;
    z-index: 12;
}

.mww-progress-bar .progress-amount {
    background-color: #ed8e49;
    height: 30px;
    width: 0%; /* % of Progress */
    animation-name: progress-amount;
    animation-duration: 1000ms;
    animation-timing-function: linear;
}

@keyframes progress-amount {
    from {width: 0%;}
}

.mww-progress-bar .progress-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-right: 10px;
    color: #3e4569;
    font-weight: bold;
    font-family: sans-serif;
    text-shadow:
        -1px 1px 2px #FFFFFF,
        1px 1px 2px #FFFFFF,
        1px -1px 2px #FFFFFF,
        -1px -1px 2px #FFFFFF;
    z-index: 13;
}