@charset 'utf-8';

/*  ABOUT page
*/
.footer-container-1	{
        top:		calc(var(--menubar-height) + calc(var(--mb-border-width) * 2) + var(--ap1-height)  +
			var(--ap2-height) + var(--ap3-height) + calc(var(--container-bwidth) * 6));
}
/*  BOOKS page
*/
.footer-container-2	{
	top:		calc(var(--menubar-height)   + calc(var(--mb-border-width) * 2)        +
			     var(--titlecard-height) + calc(var(--trending-title-height) * 2)  +
			     calc(var(--trend-container-height) * var(--num-trend-containers)) +
			     var(--purchase-height)  + calc(var(--trend-border-width) * 8));
}
div[class^="footer-container"]	{
	position:	absolute;
	left:		0;
	width:		100%;
	height:		var(--footer-height);
	clear: 		both;
	float:		left;
}
/*  btt = back to top
*/
.btt-container		{
	position:	absolute;
	top:		0;
	left:		0;
	opacity:	0;
	width:		calc(100% - calc(var(--titlecard-bwidth) * 4));
	text-align:	center;
	vertical-align: middle;	
	border-radius:	2vw;
	border:		10px solid #a67ff7;
	background:	linear-gradient(70deg,
				white 0%,
				white 50%,
				#a05884 75%,
				#a67ff7 100%
				);
	background-size:	300% auto;
	background-clip:	border-box;
	transition:		all 0.5s ease-out;
}
.btt-container:hover		{
	opacity:		1;
 	background-position:	99%;
}
.btt-container:hover > a	{
	color: 			white;
        text-shadow: 		1px 1px #9E9999;
}
.btt				{
	font-size:		2vw;
	vertical-align:		middle;
	color:			white;
	text-decoration:	none;
	transition:		all 0.5s ease-out;
}

