﻿.footerMenu {
	bottom: 0;
	z-index: 10;
	width: 100%;
	position: fixed;
	flex-direction: row;
	display: flex;
	justify-content: space-around;
	padding: 0.2em 0;
	margin-left: -18em;
}
#wrapper.toggled .footerMenu
{
	margin-left: 0;
}
.footerMenu .footer-link {
	color: black;
	font-weight: bold;
	text-align: center;
	font-size: 0.95em;
	line-height: 0.95em;
}
@media only screen and (max-width: 767px) {
	.footerMenu {
		padding: 0;
		margin: 0;
		flex-shrink: 0;
		flex-direction: column;
	}
	.footer-link {
		padding: 0.25em 0;
		border-top: 0.025em solid darkgrey
	}
	.wrapper {
		display: flex;
		flex-direction: column;
	}
	#content {
		flex: 1 0 auto;
	}
	body {
		height: 100vh;
	}
}