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

#page-footer {
	position: fixed;
	z-index: 99;
	bottom: 1em;
	left: 1em;
	direction: rtl;
}

/* Footer buttons */
#footer-btns {
	white-space: nowrap;
	color: var(--white-color); 
}
.footer-btn {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 0.25em;
	color: inherit;
	text-align: center;
	line-height: 40px;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.footer-btn:hover,
.footer-btn:active,
.footer-btn:visited {
	color: inherit;
}
.footer-btn:before {
	content: "";
	display: block;
	position: absolute;
	right: 50%;
	top: 50%;
	width: 0px;
	height: 0px;
	margin: 0 0 0 -12px;
	border-right: 12px solid var(--fancy-color);
	border-top: 6px solid transparent;
	border-left: 0;
	border-bottom: 6px solid transparent;
	-webkit-transform: rotate(-45deg);
			transform: rotate(-45deg);
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
.footer-btn:hover:before {
	right: 75%;
	top: 75%;
}
.footer-btn:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--fancy-color);
}
.footer-btn .fa {
	position: relative;
	z-index: 2;
}
/***/


/* Back-to-top button */
#up-btn {
	display: block;
	position: fixed;
	z-index: 99;
	bottom: 1em;
	right: 1em;
	width: 40px;
	height: 40px;
	border: 2px solid;
	border-radius: 50%;
	box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
	color: #f4f1ec;
	text-align: center;
	line-height: 36px;
	opacity: 0;
	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 {
	opacity: 0.8;
	-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;
}
#up-btn.on:hover {
	opacity: 1;
}
@media (min-width : 1200px) {
}
/***/


#sharpen-credits {
	position: fixed;
	z-index: 99;
	left: -40px;
	bottom: 55px;
	-webkit-transform: rotateZ(-90deg);
	        transform: rotateZ(-90deg);
}


@media (min-width : 1200px) {
}
@media (min-width : 1600px) {
}
