.progress-bar {
    display: block;
    width: 100%;
    position: relative;
    background: var(--input-bg);
    border: 1px solid var(--input-border-color);
    box-shadow: 0 1px 2px rgb(0, 0, 0, 0.1);
    border-radius: var(--rounded-circle);
    height: 20px;
}
.progress-bar .progress {
    position: absolute;
    background: var(--info-600);
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgb(0, 0, 0, 0.2);
    border-radius: var(--rounded-circle);
}
