.nav-button { display: none; } /* hide the navigation button by default */

@media only screen and (max-width: 996px) {
	.navSticky{ position:static; }
	.navBG{display:none;}
	
	/* Navigation Button
	-------------------------------------------------------- */
	
	.mobile-nav{
	display:block;
}

	.topNavContainer, .underNavContainer{
		display:none;
	}
	
	.mobile-nav .sealantsLogo{
		position: absolute;
		top: 0px;
		left: 0px;
		
		z-index: 1000;
		height:70px;
		width:auto;
		padding:10px;
	}

	.mobile-nav button, .mobile-nav i{
		display:inline-block;
	}
	
	.mobile-nav .searchBox{
		    position: relative;
    padding: 10px 5%;
    width: 100%;
    background-color: #e1e1e1;
		top:0;
	}
	
	.search-button{
		color: #f05a1f;
    	font-size: 30px;
    	vertical-align: middle;
		margin-right:10px;
		display:none !important;
	}
	
	.mobile-nav .right{
		position: absolute;
    	right: 10px;
    	top: 10px;
    	z-index: 1000;
	}
	
	.mobile-nav .ip2{
		/* margin-top:10px; */
	}
	
	.mobile-nav .subButton{
		right:5px;
	}
	
	.mobile-nav .searchIcon{
		left: 50%;
		right:auto;
  		top: 50%;
  		transform: translate(-50%, -50%);
	}
	
	.nav-button {
		display: block;
		/*position: absolute;
		top: 12px;
		right: 10px;*/
		width: 50px;
		height: 45px;
		background: url('../images/menu-icon-large.png');
		background-color: #215A6D !important;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
		cursor: pointer;
		border: 0 none;
		border-bottom: 1px solid rgba(255,255,255,.1);
		box-shadow: 0 0 4px rgba(0,0,0,.7) inset;
		border-radius: 5px;
		z-index: 999;
		text-indent: -9999px;
	}
	.nav-button:hover {
		background-color: #215A6D;
	}
	.nav-button.open {
		background: url('../images/close-icon-large.png'), #215A6D;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
	}

	/* Navigation Bar
	-------------------------------------------------------- */

	body { padding-top: 50px; }

	.primary-nav {
		width: 100%;
		float: none;
		background-color: #eaeaea; /* change the menu color */
		display: block;
		height: 70px;
		margin: 0;
		padding: 0;
		overflow: hidden;
		box-shadow: 0 1px 2px rgba(0,0,0,.6);
		position: absolute;
		top: 0px;
		left: 0px;
		z-index: 998;
		clear: both;
	}
	.primary-nav li {
		display: none;
		width: 100%;
		font-family: Arial;
	}
	.primary-nav li a {
		display: block;
		background: #ffffff;
		width: 100%;
		padding: 10px 5%;
		font-size: 14px;
		font-weight: bold;
		text-shadow: -1px -1px 0 rgba(0,0,0,.15);
		color: #545454;
		text-decoration: none;
		border-bottom: 1px solid rgba(0,0,0,.2);
		border-top: 1px solid rgba(255,255,255,.1);
	}
	.primary-nav li.open a {
		background-color: transparent;
		border-top-color: transparent;
	}
	
	.parent ul li a{
		background-color:#eaeaea;
	}
	/*
	.parent:hover{
		background-color:#fff;
	}*/
	
	/* Toggle the navigation bar open  */

	.primary-nav.open {
		height: auto;
		padding-top: 70px;
	}
	.primary-nav.open li {
		display: block;
	}

	/* Submenus – optional .parent class indicates dropdowns */

	.primary-nav > li:hover > a {
		/* background: transparent; */
		cursor:pointer;
	}
	.primary-nav li.parent > a:after {
		content:url(../images/baseline-keyboard_arrow_down-grey.png);
		color: rgba(255,255,255,.5);
		float: right;
	}
	.primary-nav li.parent.open > a:after {
		content:url(/media/2200/tcpg_icon_arrowup.png?width=9&height=9);
	}
	.primary-nav li ul {
		display: none;
		background: #eaeaea;
		border-top: 0 none;
		padding: 0;
	}
	.primary-nav li ul a {
		border: 0 none;
		font-size: 12px;
		padding: 10px 5%;
		font-weight: normal;
	}
	
	.primary-nav li.open ul {
		display: block;
		border-top: 0 none;
	}

} /* End Mobile Styles */