.tf-progress-bar {
    position: relative;
}
.tf-progress-bar .title,
.tf-progress-bar .perc {
    margin: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
.tf-progress-bar.inner .perc {
    position: relative;
    width: 100% !important;
}
.tf-progress-bar .progress-animate {
    margin: 0;
    width: 0;
    height: calc(100% - 0px);
    -webkit-transition: width 1s ease;
    -moz-transition: width 1s ease;
    transition: width 1s ease;
    background: linear-gradient(90deg, #005DE0 0%, #00B0FC 100%);
}
.tf-progress-bar .progress-bar {
    width: 100%;
    margin-top: 10px;
}
.tf-progress-bar .perc {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}

.tf-progress-bar .progress-wrap {
    background: #AEAEAE;
    border-radius: 50px;
}

.tf-progress-bar .progress-animate {
    background: var(--theme-primary-color);
    border-radius: 50px;
}

.tf-progress-bar .progress-wrap {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
}

.tf-progress-bar .title,
.tf-progress-bar .number-perc {
    font-family: 'Red Hat Display';
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.23999999463558197px;
}

.tf-progress-bar.outer2 .perc .number-perc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tf-progress-bar.outer2 .perc .number-perc::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 10%;
    transform: translateY(100%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid;
}


