/* Back to Top Progress Button CSS */
.progress-wrap {
    position: fixed;
    bottom: 50px;
    right: 50px;
    height: 50px;
    width: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.progress-wrap svg path {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s linear;
}

.progress-wrap:hover {
    background: rgba(0, 0, 0, 0.8);
}
.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '^';
    text-align: center;
    line-height: 52px;
    font-size: 24px;
    font-weight: 900;
    opacity: 0;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '^';
    text-align: center;
    line-height: 52px;
    font-size: 24px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}