/* Mini Nav Classes
----------------------------------------------- */
.miniNav {
	width: 50px;
	height: 50px;
	color: rgb(255,255,255);
	display: block;
	background: rgb(1,90,148);
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9998;
	display: none;
	}
		
.miniNav:hover {
	cursor: pointer;
	background: rgb(239,76,35);
	-webkit-transition: background 0.5s linear;
	-moz-transition: background 0.5s linear;
	-ms-transition: background 0.5s linear;
	-o-transition: background 0.5s linear;
	transition: background 0.5s linear;
	}
		
.miniNav .material-icons {
	font-size: 50px;
	color: rgb(255,255,255);
	padding-top: 25px;
	}
		
.miniNavFrame {
	text-align: right;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,89,149,1) 75%);
	-webkit-transition: background 0.5s linear;
	-moz-transition: background 0.5s linear;
	-ms-transition: background 0.5s linear;
	-o-transition: background 0.5s linear;
	transition: background 0.5s linear;
	background-position: 0 0;
	background-repeat: no-repeat;
	position: fixed;
	bottom: 4em;
	right: 0;
	z-index: 9998;
	display: none;
	}
		
.miniNavFrame a,
.miniNavFrame a:visited {
	color: rgb(255,255,255);
	display: block;
	padding: 6px 0;
	}
		
.miniNavFrame a:hover,
.miniNavFrame a:hover span {
	color: rgb(239,76,35);
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	-webkit-transition: all 0.3s ease; 
	transition: all 0.3s ease; 
	}
		
.miniNavFrame ul,
.miniNavFrame li {
	list-style: none;
	}
	
.miniGrid {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	grid-gap: 0;
	grid-auto-flow: column;
	justify-content: space-evenly;
	background: rgba(0,89,149,0.8)
	}

.miniUL {
	margin: 1em;
	}
	
@media handheld, only screen and (max-width: 600px) {
	.miniGrid {
		font-size: 0.8em;
		}
}