.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform:translateY(15px);
transition:all 200ms linear;
}

.progress-wrap::after {
    content:"\f13a";
    position: absolute;
    font-family: flaticon_normal-icon !important;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.74);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50px;
    transition:all 200ms linear;
  }
.progress-wrap  svg path {
      fill: #18191b;
    }

    .progress-circle  path {
        fill: #2352A1;
        stroke: var(--secondary-color);
        stroke-width: 5;
        box-sizing: border-box;
        transition:all 200ms linear;
  }

  .active-progress {
    opacity: 1;
    visibility: visible;
    transition:all 200ms linear;
}
