/********************************************************************************/
/* FOOTER 
/********************************************************************************/

#page-footer { 
	direction: rtl;
	position: relative;
}
/***/


/* Go to top button */
#up-btn {
	position: fixed;
	z-index: 99;
	bottom: 5px;
	right: 5px;
	width: 24px;
	height: 24px;
	background-image: url('../img/arrow-up.png');
	background-size: 100%;
	opacity: 0;
	-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 {
	opacity: 1;
	-webkit-transform: scale(1);
			transform: scale(1);
	-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 {
		width: 48px;
		height: 48px;
		bottom: 20px;
		right: 20px;
	}
}
/***/



/* Sharpen signature */
#sharpen-link {
	position: absolute;
	bottom: 10vh;
	left: 15px;
}
/***/


/********************************************************************************/

