.progress-container {
    position: fixed;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #eee;
    z-index: 9999;
}

/* Position classes added by JavaScript */
body.bprbwo-top .progress-container {
    top: 0;
    bottom: auto;
}

body.bprbwo-bottom .progress-container {
    bottom: 0;
    top: auto;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #50bcb6;
    transition: width 0.1s linear;
}


/* Example style for the custom class */
.progress-bar.purple-style {
    background-color: purple;
}