.cms_rt_progress { display: flex; flex-direction: column; gap: 13px; width: 100%; }
.cms_rt_progress_text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--progressBar-text-color);
    text-align: left;
}
.cms_rt_progress_bar { position: relative; width: 100%; height: 16px; border-radius: var(--progressBar-border-radius); background: var(--progressBar-default-color); }
.cms_rt_progress_bar_value {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 0%;
    height: 16px;
    border-radius: var(--progressBar-border-radius);
    background: var(--progressBar-active-color);
    transition: var(--transition);
}
@media screen and (max-width: 767px) { .cms_rt_progress_text { font-weight: 400 !important; font-size: 18px !important; line-height: 22px !important; } }