﻿.progressContent {
    padding: 15px 25px 30px;
    background-color: #1b4065;
    color: #f5f5f5;
    margin-bottom: 10px;
}
.progress {
    display: flex;
    height: 4px;
    overflow: hidden;
    font-size: .75rem;
    background-color: white;
    border-radius: 0.25rem;
    margin-bottom: 0px;
}
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease;
}
.progress-percent {
    position: relative;
    margin: 0;
}
.progress-percent span {
    transform: translatex(-1.5rem);
    display: inline-block;
    position: absolute;
    width: 3rem;
    content: attr(data-percentage);
    text-align: center;
}