﻿

#menu-button {
	/* hiding responsive menu button */
	display: none;
}

.overlay{
	display:none;
	width:100%;
	height: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.4);
	pointer-events: none;
}


.logo{
	width: 150px;
}

nav.mobile {
	/* hiding responsive menu */
	display: none;

}

nav.mobile ul{
	padding: 0 30px 0px 30px;
}


ul.secondary{
	margin-top: 3rem;
	
}


.listing-option-bar.sticky-top-menu{
	top:50px !important;
}



 
	nav.primary ul li a {
		font-size: 14px;
		padding: 15px 8px;
	}



	nav.primary ul li a {
		font-size: 12px;
		padding: 15px 7px;
	}

	nav.primary {
		display: none;
	}

.icon-close {
    width: 32px;
	stroke: black;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}


/******** Start of Toggle Overlay ***************/


.mobile:not(.open) + .menu-toggle.exit-click {
display: none;
}
.mobile.open + .menu-toggle.exit-click {
position: fixed !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
z-index: 499;
pointer-events: none;
background: rgba(36, 32, 33, 0.5);
opacity: 0;
transition: ease opacity 0.3s;
-moz-backdrop-filter: blur(3px);
-o-backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
backdrop-filter: blur(3px);
}

.mobile.open + .menu-toggle.exit-click {
pointer-events: auto;
opacity: 1;
box-shadow: 0 0 10px 2px rgba(0,0,0,.4);
}

body.menu-toggle.exit-click{
	overflow: hiden !important;
}

/******** End of Toggle Overlay ***************/
	
	/*==============================
Mobile Nav Styles			
================================*/
	
	.mobile-nav{
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		background: white;
		width: 100%;
		padding: 9px 1.75rem;
		z-index: 9999999999999999999;
	}
	
	#menu-button {
		/* initially will need to be hidden */
		display: inline-block;
		font-size: 25px;
		position: relative;
		z-index: 999;
		/* needs to be lower than nav.mobile, adjust as needed */
		padding: 0.5% 1% 0.5% 3%;
		font-family: 'Work Sans', sans-serif;
		text-align: right;
		font-size: 15px;
		font-weight: 500;
	}
	
	#menu-button a{
	background: rgba(0,0,0,.1);
		padding: 0.4rem 1rem !important;
		border-radius: 10px;

	}
	
	a#menu-toggle{
			    color: black;
		text-decoration: none !important;
		
	}
	


	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		right: -300px;
		width: 300px;
		height: 100%;
		background: #fff;
		z-index: 999999999999999999;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: hidden;
		font-family: 'Work Sans', sans-serif;

	}

	nav.mobile h3 {
		/* Menu header styles */
		position: relative;
		padding: 12px 10px;
		color: #fff;
		font-size: 22px;
		letter-spacing: .25px;
		font-weight: 700;
		font-family: 'Work Sans', sans-serif;
		text-align: left
	}
	
	.nav-close{
	position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    padding: 0;
    border-radius: 50%;
    transition: background .33s ease;
	}

	.icon-close-path{
		width: 32px;
		fill: black;
	}
	
	nav.mobile .menu-toggle {
		/* Menu close button */
		position: absolute;
		top: 12px;
		right: 10px;
		display: inline-block;
		padding: 1px;
		font-family: 'Work Sans', sans-serif;
		font-weight: bold;
		line-height: 1;
		color: black;
		text-decoration: none;
		vertical-align: top;
	}

	nav.mobile .menu-toggle:hover {
		/* Menu close button on hoveer */
		background: rgba(0,0,0,.1);
		border-radius: 30px;
	}

	nav.mobile ul {

	}

	nav.mobile ul li {
		padding: 3px 0px;
    width: 100%;

	}

	nav.mobile ul li a {
display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: var(--black);
    text-decoration: none;
    border-radius: 10px;
    padding: 5px 14px;
    transition: background .33s ease;
    font-weight: 500 !important;
		font-size: 15px;
	}

	nav.mobile ul li a:hover {
		background:rgba(0,0,0,.1);
	}

	nav.mobile ul li li a {
		/* appearance of the sub-level links */
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		color: #ccc;
		text-decoration: none;
		font-size: 14px;
		font-family: 'Work Sans', sans-serif;
	}

	nav.mobile ul li li li a {
		/* appearance of third level sub-level links if needed */
		background: #666;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #fff;
		text-decoration: none;
		font-size: 14px
	}

	nav.mobile ul li span.click {
		/* dropdown menu idicator arrow be sure to include this image with your image files */
		background: url(../siteart/arrow.png) 10px 12px no-repeat;
		background-size: 55%;
		position: relative;
		display: block;
		float: right;
		margin: -44px 0 0 0;
		cursor: pointer;
		z-index: 12399994;
		width: 44px;
		height: 44px;
		-webkit-transition: background-size .3s ease-in-out;
		-moz-transition: background-size .3s ease-in-out;
		transition: background-size .3s ease-in-out;
	}

	nav.mobile ul li span.click:hover {
		background-size: 60%;
	}
