.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 80px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(95, 58, 252, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;    
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .progress-wrap {
      right: 20px;
      bottom: 80px;
    }
  }
  @media (max-width: 767px) {
    .progress-wrap {
        right: 20px;
        bottom: 100px;
    }
  }

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dddddd'%3E%3Cpath d='M12 5l7 7-1.4 1.4L13 8.8V20h-2V8.8L6.4 13.4 5 12z'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #B79F4F;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}