    .container-circle {
      width: 1.92rem;
      height: 1.92rem;
      margin: .1867rem .64rem 0 0;
/*      margin: 100px auto;*/
      /* border: 1px solid #000; */
    }
    .circle-progressbar .icon{
      
      border-width: 0;
      box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
/*      margin: .1867rem .64rem 0 0;*/
      width: 1.0rem;
      height: 1.0rem;
      margin-top: 0.46rem;
      margin-left: 0.46rem;
      border-radius: 20%;
    }
    .circle-progressbar {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .circle-progressbar .title {
      margin: 0;
      text-align: center;
      line-height: 300px;
    }

    .circle-progressbar div {
      box-sizing: border-box;
    }

    .circle-progressbar .wrapper {
      position: absolute;
      top: 0;
      width: 0.96rem;
      height: 1.92rem;
      /* border: 1px solid red; */
      overflow: hidden;
    }

    .circle-progressbar .wrapper.left-wrapper {
      left: 0;
    }

    .circle-progressbar .wrapper.right-wrapper {
      right: 0;
    }

    .circle-progressbar .wrapper .circle-bar {
      position: absolute;
      width: 1.92rem;
      height: 1.92rem;
      border: 2px solid transparent;
      border-radius: 50%;

      transform: rotate(-135deg);
      transition: transform .3s;
    }

    .circle-progressbar .left-wrapper .circle-bar {
      left: 0;
      border-left-color: #000;
      border-bottom-color: #000;
    }

    .circle-progressbar .right-wrapper .circle-bar {
      right: 0;
      border-right-color: #000;
      border-top-color: #000;
    }
