/********************************************************************************/
/* FOOTER 
/********************************************************************************/

#page-footer { 
	position: relative;
}



/* Back-to-top button */
#up-btn {
	display: block;
	position: fixed;
	z-index: 99;
	bottom: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	border: 2px solid;
	border-radius: 50%;
	color: #ccc;
	text-align: center;
	line-height: 32px;
	opacity: 0.8;
	will-change: transform, opacity;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-transition: -webkit-transform 0.5s ease 0s, opacity 0.4s ease;
			transition: 		transform 0.5s ease 0s, opacity 0.4s ease;
}
#up-btn.on {
	-webkit-transform: none;
			transform: none;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s, opacity 0.4s ease;
			transition: 		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s, opacity 0.4s ease;
}
@media (min-width : 1200px) {
	#up-btn {
		bottom: 25px;
		right: 30px;
	}
}
/***/



/* Sharpen link */
#sharpen-link {
	position: absolute;
	bottom: 60px;
	left: -35px;
	-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
}
@media ( min-width : 1200px ) {
	#sharpen-link {
		bottom: 120px;
		left: -40px;
	}
}
/***/

/********************************************************************************/

