.site {
	--footer-height: 46px;
}

footer.site {
	background-color: var(--theme-2);
	width: 100%;
	height: var(--footer-height);
	position: absolute;
	bottom: 0;
	display: block;
	box-shadow: 0px -5px 10px var(--shadow);
	overflow: hidden;
}

footer.site div.legal,
footer.site div.copyright {
	position: absolute;
	display: block;
	left: 20px;
	bottom: 12px;
}
footer.site div.copyright {
	left: auto;
	right: 20px;
}

footer.site div.legal a,
footer.site div.copyright a {
	position: relative;
	display: inline;
	text-align: left;
	text-decoration: none;
	text-transform: capitalize;
	color: var(--contrast-2);
	font-size: small;
}
footer.site div.copyright a {
	cursor: none;
	text-align: right;
}
footer.site div.legal a:first-child::after {
	content: "\007c";
	color: var(--contrast-2);
}

@media (hover: hover) and (pointer: fine) {
	footer.site div.legal a:hover {
		color: var(--contrast-1);
	}
	footer.site div.copyright a:hover {
		cursor: default;
	}
}

@media only screen and (max-width: 600px) {

	.site {
		--footer-height: 76px;
	}

	footer.site div.legal,
	footer.site div.copyright {
		left: auto;
		right: 20px;
		top: 12px;
	}
	footer.site div.copyright {
		top: auto;
		bottom: 12px;
	}

	footer.site div.legal a {
		text-align: right;
	}
	footer.site div.copyright a {
		font-size: x-small;
	}

}
