.back-to-top {
	@include fixed();
	bottom: 40px;
	right: 15px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	z-index: 2;
	color: #fff;
	background-color: var(--g5-color-accent);
	@include transform(translateX(100px));
	@include transition05();
	i {
		font-size: 20px;
	}
	&:hover {
		text-decoration: none;
		color: #fff;
		background-color: var(--g5-color-secondary);
	}
	&:focus{
		color: #fff;
	}
}

.back-to-top.in {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}