	/* #Progress BTN
================================================== */
:root {
	font-size: 20px;
	--red: #da2c4d;
	--yellow: #f8ab37;
	--green: #2ecc71;
	--white: #ffffff;
	--grey-light: #f2f7f9;
	--grey: #ecedf3;
	--black: #080808;
	--black-blue: #1f2029;
	--black-blue-light: #353746;
	--black-blue-light-2: #404255;
	--black-blue-light-3: #4b4d64;
	--black-light: #424455;
}

.progress-top-btn {
	position: fixed;
	right: 10px;
	bottom: 20px;
	height: 79px;
	width: 79px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	background: #094143;
	border: 2px inset rgb(10 10 10 / 57%);
	margin: 0 auto;
}

.progress-top-btn.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-circle{
	border-radius: 50%;
}

.progress-top-btn::after {
	position: absolute;
	content: '';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: var(--grey);
	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-top-btn:hover::after {
	opacity: 0;
}

.progress-top-btn::before {
	position: absolute;
	content: '';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	-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-top-btn:hover::before {
	opacity: 1;
}

.progress-top-btn svg path {
	fill: none;
}

.progress-top-btn .arrow {
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translate(-50%, 50%) rotate(45deg);
	transition: all .3s linear;
	color: #fff;
	margin: 0 auto;
	width: 15px;
	height: 15px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
}

.progress-top-btn:hover .arrow {
	transform: translate(-50%, 50%) rotate(45deg) scale(.8);
}

.progress-top-btn svg.progress-circle path {
	stroke: var(--grey);
	stroke-width: 6;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

@media screen and (max-width: 979px) {
	.progress-top-btn{
		width: 63px;
		height: 63px;
		right: 10px;
		bottom: 20px;
	}
	.progress-top-btn .arrow{
		top: 18px;
	}
}
@media screen and (max-width: 750px) {
	.progress-top-btn {
		width: 63px;
		height: 63px;
	}
	.progress-top-btn .arrow{
		top: 22px;
	}

	.progress-top-btn::before,
	.progress-top-btn::after {
		width: 30px;
		height: 30px;
	}

	.progress-top-btn .arrow {
		width: 10px;
		height: 10px;
	}
}

/* #Progress BTN AND
================================================== */