
#progress-bar {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 0px;
    height: 25px;
    border: 1px solid rgba(0,0,0,0.8);
    background: #F5F5F5;
    border-radius: 1em;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

#inner-pb {
    position: relative;
    border: 1px solid rgba(0,0,0,0.8);
    width: 0;
    height: 18px;
    margin-left: 5px;
    margin-top: 2px;
    background: repeating-linear-gradient(-45deg, #0077CC, #0077CC 20px, #0099FF 20px, #0099FF 40px);
    border-radius: 0.8em;
    animation: roll 5s linear infinite;
    box-shadow: inset 0 10px 10px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -5px 3px rgba(0,0,0,0.2), 0 3px 2px rgba(0,0,0,0.3);
}

.progressTitle {
    color: black;
    font-size: 15px;
    text-align: center;
    height: 35px;
    padding-top: 10px;
    margin: auto;
}

@-moz-keyframes roll {
    0% {
        width: 0;
    }

    100% {
        width: 95%;
    }
}

@-webkit-keyframes roll {
    0% {
        width: 0;
    }

    100% {
        width: 95%;
    }
}

@media screen and (max-width: 300px) {
    .progressTitle {
        font-size: 14px;
        text-align: center;
        height: auto;
        padding-top: 0px;
        margin: auto;
    }
}