#nav-trigger
{
	display: none;
	cursor: pointer;
}

#nav-mobile
{
	display: none;
}

#nav-main
{
	float: right;
	width: auto;
}

/* ==================================================
   Desktop - Level 1
================================================== */

#nav-main ul
{
	list-style-type: none;
	position: relative;
	float: right;
	margin: 0;
	padding: 0;
}

	#nav-main ul li
	{
		position: relative;
		float: left;
		margin: 0;
		padding: 0;
	}
	
	#nav-main ul li:hover > ul
	{
		display: block;
	}

		#nav-main ul a
		{
			display: block;
			color: var(--weavergrey);
			text-decoration: none;
			line-height: 42px;
			padding: 0 15px;
			font-size: 1.1em;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0em;
			font-family: inherit;
		}
		
			#nav-main ul li a span
			{
				margin-left: 5px;
				font-size: 0.8em;
				color: var(--weavergold);
			}
			
				#nav-main ul li.active a
				{
					background: var(--weavergold);
					color: var(--white);
				}
	
				#nav-main ul li:hover a,
				#nav-main ul li a:hover
				{
					background: var(--weavergold);
					color: var(--white);
				}
				
					#nav-main ul li.active a span, 
					#nav-main ul li.active a:hover span
					{
						color: var(--white);
					}
					
					#nav-main ul li:hover a span
					{
						color: var(--white);
					}
	
/* ==================================================
   Desktop - Level 2
================================================== */

#nav-main ul ul
{
	position: absolute;
	margin: 0;
	visibility: hidden;
	top: 42px;
	right: 0;
	z-index: 99999;
	opacity: 0;
	padding: 10px 0 0 0;
	
	-webkit-transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
    -moz-transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
    -o-transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
    transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
}

	#nav-main ul ul li
	{
		float: none;
		margin: 0;
		display: block;
		width: 300px;
	}

		#nav-main ul ul li a
		{    
			color: var(--white) !important;
			font-weight: 700;
			font-size: 1em;
			line-height: 1.1em;
			padding: 18px 24px;
			text-transform: uppercase;
            letter-spacing: 0.02em;
            background: var(--weavergold) !important;
		}
		
			#nav-main ul ul:hover a
			{
				color: var(--white);
			}
			
				#nav-main ul ul a:hover
				{
					color: var(--white) !important;
					background: var(--weavergold) !important;
				}
				
			#nav-main ul ul li:last-child a
			{
				border-bottom: 0;
			}
		
			#nav-main ul ul li.hasChild > a
			{
				padding-right: 20px;
			}
			
			#nav-main ul ul a span
			{
				position: absolute;
				top: 11px;
				right: 10px;
			}
			
			#nav-main ul ul li a span.fa-angle-down
			{
				display: none;
			}
			
			#nav-main ul li:not(:hover).hasChild ul
			{
				visibility: hidden;
				top: 52px;
			}

			#nav-main ul li:hover.hasChild > ul
			{
				visibility: visible;
				top: 42px;
				opacity: 1;

				-webkit-transition-delay: 0s;
				-moz-transition-delay: 0s;
				-o-transition-delay: 0s;
				transition-delay: 0s;
			}

/* ==================================================
   Media Queries
================================================== */

@media only screen and (max-width: 1200px)
{

	#nav-trigger
	{
		position: relative;
		display: block;
		float: right;
		text-align: center;
	}
	
        #nav-trigger .fa-solid
        {
        	color: var(--weavergold);
        	font-size: 2em;
        	margin-right: 0;
        }
        
        #nav-trigger .menutxt
        {
            position: relative;
            display: block;
            color: var(--weavergrey);
            font-size: 90%;
            font-family: inherit;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 0;
            padding-top: 10px;
        }

	#nav-main
	{
		display: none;
	}
	
}

