#small-menubar {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000000;
	/* width: 100%; */
	background-color: transparent;
	display: inline-block;
	text-align: right;
}
#small-menubar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	/* width: 100%; */
	display: inline-block;
}
#small-menubar ul li {
	/* float: right; */
	margin: 0px 0px 0px 10px;
	height: 40px;
	width: auto;
	display: inline-block;
	background: #2b647a;
	padding: 7px 24px;
	text-align: center;
	color: #fff;
	border-radius: 20px;
	border: 2px solid white;
}
#small-menubar ul li:hover {
	background-color: #103d4e;
}
#small-menubar ul li a,
#small-menubar ul li a:hover {
	display: block;
	text-decoration: none;
	color: white;
}
#small-menubar-overlay {
	background-color: #b97b1d;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999999;
	display: none;
}
