#fixed-bottom-menu {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	line-height: 2rem;
	margin: 0;
	padding: 0;
	z-index: 30;
}
.fixed-bottom-menu-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-diretion: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-moz-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.fixed-bottom-menu-item {
	-webkit-flex-basis: 20%;
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	text-align: center;
	-webkit-align-self: baseline;
	-ms-flex-item-align: baseline;
	align-self: baseline;
}
.fixed-bottom-menu-item a {
	display: block;
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
	line-height: 1rem;
	text-decoration: none;
}
