#rightMenu {
	display: none;
}

.overlayMenu {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 100vh;
  width: 220px;
  position: fixed; /* Stay in place */
  z-index: 9999999999; /* Sit on top */
  right: 6%;
  top: 1%;
bottom: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.92); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
	color:aliceblue !important;
}

.overlayMenu ul li
{
	list-style-type: none;
	color:aliceblue !important;
	padding: 5px; 
	margin: 4px;
}

.overlayMenu ul li a, .overlayMenu .cell-full
{
	color:aliceblue !important;
}

.menuOpen
{
	height: 50px;
	width: 50px;
	border-radius: 50%;
	border:2px solid grey;
	background-color: #151414;
	color: aquamarine;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	line-height: 50px;
	cursor: pointer;
	z-index: 9999;
}

.closeOverlay {
	position: absolute;
	top:10px;
	right: 10px;
}
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
