.progress-wrap {
    position: fixed;
    right: 76px;
    bottom: 17px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 9999;
    cursor: pointer;
    text-decoration: none;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:hover,
.progress-wrap:focus-visible {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    outline: none;
}

.progress-wrap__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.progress-wrap__icon img {
    display: block;
    width: 20px;
    height: 20px;
}

.progress-circle {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.progress-circle__bg,
.progress-circle__path {
    fill: none;
    stroke-width: 4;
}

.progress-circle__bg {
    stroke: rgba(238, 45, 56, 0.2);
}

.progress-circle__path {
    stroke: #EE2D38;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 767px) {
    .progress-wrap {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .progress-wrap,
    .progress-circle__path {
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}
