.prgoress_indicator {
	position: fixed;
	right: 15px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(95, 58, 252, 0.2);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.prgoress_indicator.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

	.prgoress_indicator::after {
		position: absolute;
		content: "\f106";
		font-family: "FontAwesome";
		text-align: center;
		line-height: 46px;
		font-size: 18px;
		color: var(--primary-color-one);
		left: 0;
		top: 0;
		height: 46px;
		width: 46px;
		cursor: pointer;
		display: block;
		font-weight: 900;
		z-index: 1;
		transition: all 200ms linear !important;
	}

.prgoress_indicator svg path {
	fill: none;
}

.prgoress_indicator svg.progress-circle path {
	stroke: #2467ec;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
