/* Back to top button */
.progress-wrap {
	display: flex;
	position: fixed;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	right: 10px;
	bottom: 10px;
	height: 50px;
	width: 50px;
	opacity: 0;
	border-radius: 5px;
	cursor: pointer;
	transform: translateY(15px);
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
	background-color: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

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

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

.progress-wrap svg.progress_outline .back_to_top_outline {
	stroke: white;
	stroke-width: 3;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap .fa-chevron-up {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 50px;
	width: 51px;
	line-height: 48px;
	text-align: center;
	color: white;
	transition: all 200ms linear;
}

.progress-wrap .fa-chevron-up:hover {
	transform: translateY(-4px);
}

@media (width <= 330px) {
	.progress-wrap {
		right: 7px;
		bottom: 7px;
		height: 40px;
		width: 40px;
	}
}