.progress-parent {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    place-items: center;
    z-index: 999;
}

.progress-parent.active {
    display: grid;
}

.progress-circle {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-circle path {
    fill: none;
    stroke: var(--orange);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 307.919, 307.919;
    stroke-dashoffset: 307.919;
    transition: stroke-dashoffset 10ms linear;
}

.back-to-top-icon {
    position: relative;
    z-index: 2;
    font-size: 20px;
    color: #ffffff;
    background-color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s ease-in-out;
}

.progress-parent:hover .back-to-top-icon {
    transform: scale(1.1);
}