.atf-progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    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;
}

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

.atf-progress-wrap::after {
    position: absolute;
    content: '↑';
    font-family: "Font Awesome 6 Free";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: var(--thm-base);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-weight: 700;
}

.atf-progress-wrap svg path {
    fill: none;
}

.atf-progress-wrap svg.atf-progress-circle path {
    stroke: var(--thm-base);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*contact start*/
.atf-progress-contact {
    position: fixed;
    right: 50px;
    bottom: 100px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 2px rgba(85, 198, 239, 0.68);
    color: var(--thm-base);
    opacity: 0;
    visibility: hidden;
}

.atf-progress-contact > i {
    font-size: 25px;
    color: var(--thm-base);
}

/*contact end*/
  