/************************************************************
//
//	NAV BUTTON
//
************************************************************/

/* MAIN CONTAINER */

#navButton {

	position: absolute;
	
	padding: 0;
	
	right: 5px;
	top: 10px;
	
	width: 30px;
	height: 30px;
	
	cursor: pointer;
	
	border: none;
	background: none;
	
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	
}

	/* MAIN CONTAINER OPEN */

	body.navOpen #navButton {
		
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
		transform: scale(0.8);
	  
	}

/* MIDDLE LINE */

#navButtonLines {
	
	position: relative;
	display: inline-block;
	
	top: -3px;
	
	width: 30px;
	height: 3px;
	
	background: white;
	
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px
	
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
  
}

/* MIDDLE LINE OPEN */
	
	body.navOpen #navButtonLines {
		
	  background: transparent;
	  
	}

/* TOP & BOTTOM LINES */

#navButtonLines:before, #navButtonLines:after {
	
	position: absolute;
	display: inline-block;
	
	left: 0;
	
	width: 30px;
	height: 3px;
	
	background: white;
	
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px
	
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	
	content: '';

}

/* TOP LINE */

#navButtonLines:before {
	
  top: -6px;
  
}

/* TOP LINE OPEN */

body.navOpen #navButtonLines:before {
	
	top: 0;
	
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	
}

/* BOTTOM LINE */

#navButtonLines:after {
	
  top: 6px;
  
}

/* BOTTOM LINE OPEN */

body.navOpen #navButtonLines:after {
	
	top: 0;
	
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	
}

/************************************************************
//
//	NAV BUTTON - MEDIA QUERIES
//
************************************************************/

/* SCREEN WIDTH GREATER THAN 720px */

@media only screen and (min-width :720px) {
	
	/* MAIN CONTAINER HIDDEN */
	
	#navButton {
		opacity: 0;
		right: -40px;
	}
	
}
