.vc_progress_bar{
  .vc_label{
    color: inherit;
    font-size: inherit;
    display: block;
  }
  .vc_general.vc_single_bar{
    height: 3px;
    margin-bottom: 45px;
    margin-top: 20px;
    font-size: inherit;
    color: inherit;
    background-color: #cfcfcf;
    @include box-shadow(none);
    &,
    .vc_bar{
      @include border-radius(0);
    }
    .vc_bar{
      &:after{
        content: attr(data-text);
        position: absolute;
        bottom: 20px;
        right: -1em;
        opacity: 0;
        @include single-transition(all, 500ms);
      }
      &[style]{
        &:after{
          opacity: 1;
        }
      }
    }
  }
}
.vc_progress_bar.vc_progress-bar-color-black .vc_general.vc_single_bar{
  background-color: #cfcfcf;
  .vc_bar{
    background-color: #232324;
  }
}

.la-circle-progress{
  text-align: center;
  min-width: 100px;
  width: 200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  .sc-cp-canvas {
    display: block;
    padding-bottom: 100%;
    width: 100%;
  }
  canvas{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    max-width: 100%;
    max-height: 100%;
  }
  .la-circle-wrap{
    position: relative;
    display: inline-block;
    margin: 0 auto;
    width: 100%;
  }
  .la-circle-wrapper{
    width: 100%;
    @extend %absolute-center;
  }
  .sc-cp-t,
  .sc-cp-v{
    display: block;
    line-height: 1;
    @extend %text-color-secondary;
  }
  &.la-progress-2{
    font-weight: 300;
    .sc-cp-v{
      font-size: 30px;
      font-weight: bold;
    }
    .sc-cp-t{
      font-size: 16px;
      margin-top: 12px;
    }
  }
}