/**********************************************************
// Modal
**********************************************************/

.Nav-Modal-Wrapper { 
	display: none; 
	width: 100%; 
	position: fixed;
    height: 100vh;
	z-index: 4000;
	overflow-y: auto;
	top: 0;
	left: 0;
	height: 100%;
	background: rgba(24,49,100,.97);
}

.Nav-Modal {
	/*background: linear-gradient(163.85deg, rgba(108, 26, 68, 0.95) 0%, rgba(184, 29, 137, 0.95) 50%, rgba(57, 72, 158, 0.95) 100%);*/
	
	height: 100%;
    width: 100vw;
	margin: 0 0 0 auto;
	padding: 25px 20px;
	height: 100vh;
}

.Nav-Modal-Inner { padding: 20px 10px; text-align: center; }

.Menu-Close {
	height: 45px;
	width: 45px;
	margin: 0 0 0 auto;
}

.Menu-Close svg, .Menu-Close svg * { fill: #fff; }

.Nav-Modal-Logo {
	position: absolute;
  	top: 12px;
  	left: 0;
}

.Nav-Modal-Logo img { max-height: 75px; width: auto; }

.Nav-Modal-Nav { margin-top: 30px; }
.Nav-Modal-Nav li {
	text-transform: uppercase;
	position: relative;
	display: block;
	margin: 20px 0;
	text-align: left;
	}

.Nav-Modal-Nav ul.menu > li {
	border-bottom: 1px solid #fff;
  	padding-bottom: 20px;
}

.Nav-Modal-Nav li:first-child { margin-left: 0; }
.Nav-Modal-Nav li:last-child { margin-right: 0; }

.Nav-Modal-Nav li a:hover { color: var(--Yellow); }
.Nav-Modal-Nav li a {
	font-weight: bold; 
	text-transform: uppercase; 
	letter-spacing: 1px; 
	font-size: 14px;
	display: block;
	line-height: 1.3em;
	color: #fff;
	text-align: center;
	text-align: left;
	}

.Nav-Modal-Nav i { display: block; transition: transform .7s ease-in-out;}
.Nav-Modal-Nav i svg {
	width: 30px;
	fill: var(--Gold);
}

.Nav-Modal-Nav li.Nav-Modal-Button:hover { background: var(--Gradient1); color: #fff; }
.Nav-Modal-Nav li.Nav-Modal-Button {
	width: 100%;
	background: var(--Yellow);
	padding: calc(.667em + 8px) calc(1.333em + 14px);
	border-radius: 30px;
	text-align: center;
	margin-bottom: 30px;
}

.Nav-Modal-Nav li.Divider { margin: 30px 0 20px; }
.Nav-Modal-Nav li.Divider a {
	font-size: 0;
}

.Nav-Modal-Nav li.Divider:after {
	display: block;
	background: url(../Images/Squiggle-Small.svg);
    width: 100%;
    height: 10px;
    background-size: auto 100%;
	background-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-repeat: no-repeat;
    content: '';
}

/**********************************************************
// Accordion Accents
**********************************************************/

.Nav-Modal .submenu-toggle {
	background: none;
	border: none;
	font-size: 1.25rem;
	margin-left: 0.5rem;
	cursor: pointer;
	color: inherit;
	color: #fff;
	position: absolute;
  	right: 0;
  	top: -2px;
}

.Nav-Modal .menu-item-has-children {
	position: relative;
}

.Nav-Modal .menu-item-has-children a {
	display: inline-block;
}

.Nav-Modal .menu-item-open > .sub-menu {
	display: block;
}

.Nav-Modal .sub-menu {
	display: none;
	padding-left: 1rem;
}


/**********************************************************
// Mobile >> Nav
**********************************************************/
.Mobile-Nav {
	background: #1E3144;
	color: #FFF;
	}

/**********************************************************
// Mobile >> Nav >> Logo
**********************************************************/
.Mobile-Nav-Logo {
	padding: 20px 10px;
	background: #FFF;
	text-align: center;
	box-shadow: inset 1px 0 2px rgba(0, 0, 0, 0.2);
	}

.Mobile-Nav-Logo img {
	height: auto;
	max-height: 100px;
	}

/**********************************************************
// Mobile >> Nav >> Social
**********************************************************/
.Mobile-Nav-Social {
	padding: 10px;
	background: #555;
	}

.Mobile-Nav-Social li a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100%;
	background: #FFF;
	color: #555;
	}

.Mobile-Nav-Social li a:hover {
	background: #333;
	color: #FFF;
	}

/**********************************************************
// Mobile >> Nav >> Search
**********************************************************/
.Mobile-Nav-Search {
	padding: 10px 10px 10px 40px;
	position: relative;
	background: #777;
	color: #FFF;
	}

.Mobile-Nav-Search:before {
	content: "\f002";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 20px;
	position: absolute;
	left: 10px;
	top: 10px;
	}

.Mobile-Nav-Search .search-submit { display: none; }

.Mobile-Nav-Search .search-field {
	width: 100%;
	border: 0;
	height: 20px;
	line-height: 20px;
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 14px;
	background: transparent;
	color: #FFF;
	}

.Mobile-Nav-Search input::-webkit-input-placeholder { text-transform: uppercase; color: #FFF; }
.Mobile-Nav-Search input:-moz-placeholder           { text-transform: uppercase; color: #FFF; }
.Mobile-Nav-Search input::-moz-placeholder          { text-transform: uppercase; color: #FFF; }
.Mobile-Nav-Search input:-ms-input-placeholder      { text-transform: uppercase; color: #FFF; }

/**********************************************************
// Mobile >> Nav >> Links
**********************************************************/
.Mobile-Nav-Links {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	font-size: 12px;
	}

.Mobile-Nav-Links a { color: #FFF; }
.Mobile-Nav-Links li.current-menu-item > a {
	background-color: #FFF;
	font-weight: bold;
	color: #ECA758;
	}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 400px),
all and (max-device-width: 400px)
{
	.Menu-Close { right: 15px; }
}