.js--scroll-to-top {
	
	z-index: 10000002;
	
	position: fixed;
	bottom: 95px;
	right: 20px;
	
	border-radius: 50%;
	width: 48px;
	height: 48px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	background: #00558c;
	color: #fff!important;
	
	text-decoration: none!important;
	
	transition: .34s ease;
	
	transform: translateY(120px);
	opacity: 0;
	pointer-events: none;
	
	line-height: 1;
	font-size: 24px;
}

.js--scroll-to-top i {
	transition: .34s ease-in-out;
}
.js--scroll-to-top:hover {
	background: #0074bf;
}
.js--scroll-to-top:hover i {
	transform: scale(1.1);
}

.js--scroll-to-top.show-scroll {
	pointer-events: all;
	opacity: 1;
	transform: none;
}