.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 22px;
  font-weight: bold;
  color: #03071E;
  cursor: pointer;
  z-index: 10000;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap .icon-arrow {
  font-size: 22px;
  color: #03071E;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 2;
  pointer-events: none;
}

.progress-wrap:hover .icon-arrow {
  transform: translateY(-4px);
  opacity: 0.85;
}

/* SVG progress circle styling */
.progress-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
}

.progress-wrap svg path {
  fill: none;
  stroke: #03071E;
  stroke-width: 4;
  stroke-dasharray: 307.819;
  stroke-dashoffset: 307.819;
  transition: stroke-dashoffset 200ms linear;
}
