/*Nav*/
.navArea {
	position: relative;
	transition: top 0.3s;
}

.navContainer {
	margin: 0 auto;
	max-width: 1024px;
	position: relative;
}

button.hamburger {
	border: none;
	display: block;
	position: absolute;
	top: 8px;
	z-index: 30;
}

nav {
	background-size: auto 75px; 
    font-size: 1em;
    height: 60px;
    list-style: none;    
	position: absolute;
	width: 100%;
	z-index: 1;
}

.navBtn h5 {
	text-shadow: 0 0 5px #000;
}

.logo {
	display: none;
	height: 55px;
	margin: 3px 0 0 3px;
}

.hamMenuTitle {
	color: #FFF;	
	display: block;
	font-size: 26px;
	font-style: italic;
	position: absolute;
	right: 65px;
	text-transform: uppercase;
	top: 50%;
	transform: translate(0, -50%);	
	z-index: 20;	
}

/*See app.js for transitions and changes to hamUL in the navigation portion of the file*/
.hamUL {    
    background-color: rgba(23,26,24,.85);
	display: none;
	height: 100vh!important;
	position: absolute;
	text-align: center;
	transition: transform .3s ease;
    width: 100%;
	z-index: 10;
}
.hamUL .container {    
    color: #FFF;
	margin: 60px auto 25px;
    position: relative;
	width: 100%;
}
.hamUL li {
	background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .75);
	display: block;
	text-align: center;
    text-transform: uppercase;
}
.hamUL li a {
    outline: none;
    text-decoration: none;
}
.hamUL li a h5 {
    padding: 2%;
}
.noFlag {
	display: none!important;
}
.purchaseNavBtn {
    background-color: #ffcd0d;
	border: 2px solid #000;
	color: #000;
	cursor: pointer;
    display: inline-block;
	margin: 0 2.5px;
	padding: 4px 10px;	
	text-transform: uppercase;
	white-space: nowrap;
}
.navSm {
	display: inline-block;
}
.navLg {
	display: none;
	position: absolute;
    right: 75px;
    top: 15px;
}
/*combined with app.js this allows you to create sticky nav*/
.navStick{
	background-color: rgb(0, 0, 0);
	height: 60px;
  	position: fixed;
	top: -80px;	
    width: 100%;
    z-index: 2;
}
@media screen and (min-width: 400px) {
	.purchaseNavBtn {
		padding: 4px 15px;	
	}
}
@media screen and (min-width: 880px) {
	button.hamburger, .hamMenuTitle, .ps4MenuLogo, .hamUL > a .social_icon, .navSm {
		display: none;
	}
	.navContainer {
		margin: 10px auto;
	}
	.logo {
		display: inline-block;
	}
	.hamUL {
		background-color: transparent;		
		display: inline-block!important;
		height: 60px!important;	
		position: initial;	
		text-align: inherit;
		vertical-align: middle;
		width: 450px;	
		z-index: 10;
	}
	.hamUL .container {
		margin: 0 auto;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);		
		vertical-align: middle;
		/* width: 500px; */
		margin-left: 15px;
	}
	.hamUL li {
		border-bottom: none;
		display: inline-block;
		margin-right: 25px;
		/* max-width: 200px; */
		padding: 1%;
		/* width: 30%;		 */
		white-space: nowrap;
	}
	.navLg {
		display: inline-block;
	}
}
@media screen and (min-width: 950px) {
	.purchaseNavBtn {
		padding: 4px 30px;	
	}
}
/*END NAV*/