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

#page-footer {
	position: absolute;
	z-index: 9;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	text-align: center;
	direction: rtl;
}
@media (min-width : 1200px) {
	#page-footer {
		position: relative;
		height: 0;
		padding: 0;
	}
}



/* Back-to-top button */
#up-btn {
	display: block;
	position: fixed;
	z-index: 99;
	bottom: 10px;
	right: 10px;
	width: 44px;
	height: 44px;
	border: 1px solid #c5c4c4;
	border-radius: 28px;
	background: #888 url('../img/buttons.png') -8px -63px no-repeat;
	opacity: 0.6;
	-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: 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 {
		right: 20px;
		bottom: 20px;
	}
	#up-btn:hover {
		opacity: 0.8;
	}
}
/***/



/* Sharpen link */
#sharpen-link {
	margin-top: 60px;
}
@media ( min-width : 1200px ) {
	#sharpen-link {
		position: absolute;
		bottom: 70px;
		left: -30px;
		margin: 0;
		-webkit-transform: rotate(-90deg);
				transform: rotate(-90deg);
	}
}
/***/