:root {
  --prgc-main: #FF0040;
  --prgc-arrow: #FF0040;
  --prgc-arrow2: #FF0055;
  --prgc-line: rgb(255 0 43 / 20%);
}

.progress-wrap {
	position: fixed;
	right: 24px;
	bottom: 24px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
  box-shadow: inset  0 0 0 2px var(--prgc-line);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
	background: rgba(255, 255, 255, 0.2);
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	background: rgba(255, 255, 255, 0.2);
}
.progress-wrap::after {
	position: absolute;
	font-family: "Eva-Icons";
	content: '\ea27';
	text-align: center;
	line-height: 46px;
	font-size: 20px;
  color: var(--prgc-main);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: "Eva-Icons";
	content: '\ea27';
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--prgc-arrow), var(--prgc-arrow2));
	-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:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
  stroke: var(--prgc-main);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}