.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 {
    width: 0;
    height: 100%;
    -webkit-transition: width 1s ease;
    -moz-transition: width 1s ease;
    transition: width 1s ease;
    background: var(--theme-secondary-color);
}
.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 {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
}

.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;
}


