.side-menu {
	position: fixed;
	/* top: 70px; */
	top: 5px;
	left: -285px;
	width: 280px;
	/* height: 70vh; */
	height: 98vh;
	background-color: royalblue;
	color: white;
	border-radius: 10px;
	padding: 8px;
	transition: all 0.3s ease-in-out;
	z-index: 4002;
}
.side-menu-shown {
	left: 5px;
	top: 5px;
	height: 98vh;
}
.side-menu-title {
	font-size: 18pt;
	font-weight: 700;
	text-align: center;
	padding: 10px 0 30px 0;
	position: relative;
}
.side-menu-close {
	position: absolute;
	top: 10px;
	right: 20px;
	cursor: pointer;
}
.side-menu-item {
	font-size: 13pt;
	font-weight: 700;
	color: lightyellow;
	/* text-transform: uppercase; */
	margin-bottom: 15px;
	cursor: pointer;
}
.side-menu-item a {
	text-decoration: none;
	color: lightyellow;
	display: flex;
}
.side-menu-item a:hover { color: yellow; }
.side-menu-item a:active { color: orange; }
.side-menu-item a:visited { color: lightyellow; }
.side-shade {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 4001;
}
.side-icon {
	flex: 0 1 50px;
	text-align: center;
}
.side-text {
	flex: 1;
}