/* Scroll to top wrapper */
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(95, 58, 252, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  background: #fff; /* optional background */
}

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

/* Progress circle SVG */
.progress-circle path {
  stroke: var(--clr-theme-1); /* progress color */
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 307;
  stroke-dashoffset: 307;
  transition: stroke-dashoffset 0.3s linear;
}

/* Centered arrow icon */
.progress-wrap i {
  position: absolute;
  font-size: 18px;
  color: var(--clr-theme-1);
  pointer-events: none; /* icon won't interfere with clicks */
  transition: color 0.3s ease;
}

.progress-wrap:hover i {
  color: #fff;
}

/* Optional: hover effect on circle */
.progress-wrap:hover {
  background: var(--clr-theme-1);
  box-shadow: inset 0 0 0 2px var(--clr-theme-1);
}

/* .progress-wrap::after {
  position: absolute;
  content: "\e901";
  text-align: center;
  line-height: 50px;
  font-size: 17px;
  color: #1c2c71;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-family: "icomoon" !important;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
} */

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

.progress-wrap svg.progress-circle path {
  stroke: #1c2c71;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
