.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(135, 80, 247, 0.5);
    z-index: 99;
    transform: translateY(15px);
    transition: all 200ms linear;
    opacity: 0;
    overflow: hidden;
    /* background: white; */
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
    transition: stroke-dashoffset 200ms linear;
}

.progress-wrap .progress-circle path {
    stroke: var(--txt-color, #8750f7); /* Default color */
    stroke-width: 4;
    stroke-dasharray: 307.919px;
    stroke-dashoffset: 307.919px;
}

.progress-wrap svg {
    font-size: 20px;
    color: var(--txt-color, #8750f7);
    position: absolute;
    z-index: 2;
}
