/* #Progress BTN
================================================== */
:root {
    font-size: 20px;
    --red: #da2c4d;
    --yellow: #f8ab37;
    --green: #2ecc71;
    --white: #ffffff;
    --grey-light: #f2f7f9;
    --grey: #ecedf3;
    --black: #080808;
    --black-blue: #1f2029;
    --black-blue-light: #353746;
    --black-blue-light-2: #404255;
    --black-blue-light-3: #4b4d64;
    --black-light: #424455;
}

.progress-top-btn {
    position: fixed;
    right: 20px;
    bottom: 60px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #6ac4c1;
    border: 2px solid #245d5c;
    box-shadow: 0 0 10px rgb(255 255 255 / 65%), inset -5px -5px 15px rgb(7 7 7 / 45%);
    border-radius: 2rem;
    margin: 0 auto;
}

.progress-top-btn svg {
    border-radius: 50%;
}

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

.progress-top-btn::after {
    position: absolute;
    content: '';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--grey);
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-top-btn:hover::after {
    opacity: 0;
}

.progress-top-btn::before {
    position: absolute;
    content: '';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: block;

    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-top-btn:hover::before {
    opacity: 1;
}

.progress-top-btn svg path {
    fill: none;
}

.progress-top-btn .arrow {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
    transition: all .3s linear;
    color: #fff;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.progress-top-btn:hover .arrow {
    transform: translate(-50%, 50%) rotate(45deg) scale(.8);
}

.progress-top-btn svg.progress-circle path {
    stroke: var(--grey);
    stroke-width: 6;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

@media screen and (max-width: 750px) {
    .progress-top-btn {
        right: 15px;
        top: auto;
        bottom: 60px;
        width: 63px;
        height: 63px;
    }

    .progress-top-btn::before,
    .progress-top-btn::after {
        width: 30px;
        height: 30px;
    }

    .progress-top-btn .arrow {
        top: 20px;
        width: 10px;
        height: 10px;
    }
}

/* #Progress BTN AND
================================================== */