.menuBox {
	font-size: 35px;
	font-family: Times New Roman;
	font-weight: normal;
	position: absolute;
	top: 60px;
	left: 15px;
}

.menuIcon {
	width:30px;
	height:30px;
	cursor:pointer;
}




.menu{
	transition-duration: .3s;
	position: absolute;
    left: -340px;
    width: 320px;
    height: 100%;
    background-color: #fff;
}

.menuflyin{

	transform: translateX(340px);
	
}

.menuListHolder{
	border-top: 1px solid #93c9ff;
	padding: 20px 10px 10px 20px;
	
}

.menuTitle{
	font-size: 35px;
	font-family: Times New Roman;
	font-weight: bold;
	}
	
.menuSubTitle{
	font-size: 20px;
	font-family: Times New Roman;
	font-weight: normal;
	color: darkslategrey;
}

.linksMenuDiv{
	
}

.linksMenuDivList{
	list-style:none;
}

.menuListItem{
	
	
}

.btnMenu{
	background: transparent;
	border:0;
	cursor:pointer;
	width:100%;
	text-align:left;
	
}

.linkIcon{
	height:20px;
	width:20px;
	cursor:pointer;
}

.linkLabel{
	margin-left:55px;
	cursor:pointer;
}

.coming_soon{
	color:grey;
}

.menuManipulationList{
	list-style:none;
}

.rgbBox{
	width:30px;
	margin-left:5px;
	
	
}

.randomColorBoxShower{
	margin-left:5px;
	width:20px;
	height:20px;
	border: 1px solid #93c9ff;
	display:inline-block;
}

.randomColorBox{
	margin-left:5px;
	background: transparent;
	border:0;
	cursor:pointer;
	text-align:left;
}

#divColorCountries2{
	margin-left: 75px;
	
}


@media (min-height: 600px) {
		  .menuListItem {
			font-size: 18px;
		  }
		  #menu {
			  height:590px;  
		  }
		  
		  
		}

@media (min-height: 900px) {
		  .menuListItem {
			font-size: 35px;
		  }
		  #menu {
			  height:75%;  
		  }
		  
		}




/* TODO: check out how to manipulate icon with animation */
/* Icon Magic */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 60px;
  height: 45px;
  position: relative;
  margin: 50px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 18px;
}

#nav-icon1 span:nth-child(3) {
  top: 36px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


/* Icon Magic */








/* The About Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
    padding: 2px 16px;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);

}


/* The Close Button */
.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Modal Header */
.modal-header {
  padding: 2px 16px;
  background-color: #fefefe;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  width:80%;
  margin: auto;
}

/* Modal Footer */
.modal-footer {
  padding: 2px 16px;
  background-color: #fefefe;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  width:80%;
  margin: auto;
}