
#navstrip-holder
{
	height: 4rem;
	width: 100%;
	position: relative;
	display: block;
	background-image: url('../images/board.jpeg');
	background-repeat: repeat;
	background-attachment: fixed;
	background-size: 50%;
	background-position: left top;
}
#navstrip-holder .navstrip
{
	height: 4rem;
	width: 100%;
	position: fixed;
	display: block;
	background: black;
	z-index: 1;
}
#navstrip-holder .navstrip .nav-logo
{
	background-image: url('../images/logo-white2.svg');
	float: left;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	text-indent:-99999em;
	white-space: nowrap;
	overflow: hidden; 
	height: 3rem;
	width: 8rem;
	margin-top: 0.5rem;
}

#navstrip-holder .navstrip ul
{
	float: right;
	margin: auto 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	display: block;
	margin-top: 1rem;
	font-size: 1.25rem;
	text-transform: none;
	
}

#navstrip-holder .navstrip ul li
{
	display: inline-block;
	border-radius: 1rem;
	margin-left: 1rem;
	background: #181818;
	background-repeat: no-repeat;
	transition: background-color .5s;
}
#navstrip-holder .navstrip ul li.selected
{
	color: white;
	background: none;
	padding: 0 1rem;
}

#navstrip-holder .navstrip ul li a
{
	display: flex;
    align-items: center;
    justify-content: center; 
    height: 100%;
	padding: 0 1rem;
    color: #636363;
    transition:.5s;
}

#navstrip-holder .navstrip ul li.play
{
	background: rgb(124,13,54);
	background: linear-gradient(0deg, rgba(124,13,54,1) 0%, rgba(129,75,21,1) 100%);
}
#navstrip-holder .navstrip ul li.play a
{
    color: black;
}
#navstrip-holder .navstrip ul li.unselected:hover
{
	background: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(78,78,78,1) 100%);
}
#navstrip-holder .navstrip ul li a:hover
{
    color: white;
}
#navstrip-holder .navstrip ul li.play:hover
{
	background: rgb(208,24,92);
	background: linear-gradient(0deg, rgba(208,24,92,1) 0%, rgba(255,146,38,1) 100%);
}
#navstrip-holder .navstrip ul li.play a:hover
{
    color: white;
}
@media screen and (max-width: 640px) 
{
	#navstrip-holder .navstrip ul
	{
		font-size: 0.85rem !important;
		margin-top: 1.5rem;
	}
	#navstrip-holder .navstrip ul li a, #navstrip-holder .navstrip ul li.selected
	{
		padding: 0 0.5rem !important;
	}
	#navstrip-holder .navstrip ul li
	{
		margin-left: 0.15rem !important;
	}
	#navstrip-holder .navstrip ul li a
	{
		color:#AAA;
	}
/*
	#navstrip-holder .navstrip ul li.unburger
	{
		display: none;
	}
	#navstrip-holder .navstrip ul li.play
	{
		background: rgb(208,24,92);
		background: linear-gradient(0deg, rgba(208,24,92,1) 0%, rgba(255,146,38,1) 100%);
	}
	#navstrip-holder .navstrip ul li.play a
	{
	    color: white;
	}
*/
}