/*********Progress Bar Styling*******/
.progress {
    margin-bottom: 1rem;
    height: 1.25rem;
}

.progress-bar {
    background-color: #62b654;
    font-size: 0.9375rem;
    transition: none;
}

.progress-bar-vertical {
    width: 16px;
    min-height: 100px;
    display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;  /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
    align-items: flex-end;
    -webkit-align-items: flex-end; /* Safari 7.0+ */
    transform: rotate(180deg);
}

.progress-bar-vertical .progress-bar {
    width: 100%;
    height: 0;
    transition: none;
}