/*--------------------------------------------------
	Uncomment the style below for hoverable menus
----------------------------------------------------*/
/*.dropdown:hover .dropdown-menu {
    display: block;
}*/ /*uncomment for hoverable menus*/

/*------------------------2nd Tier Nav*/
#nav_menu .nav li {
	position: relative;
	float: left;
	list-style-type: none;
}
.open>.dropdown-menu {
	display: block;
}
.men-level-1{
	top: 0px;
}
/*--------------------End-2nd Tier Nav*/

/*--------------------------------------------------
				MMS Member Icons Menu
----------------------------------------------------*/
@media (min-width: 1200px){
	.nav-tabs li.dropdown { width: 190px; }
}
@media (min-width: 990px) and (max-width: 1200px) {
	.nav-tabs li.dropdown { width: 155px; }
}
@media (min-width: 767px) and (max-width: 990px) {
	.nav-tabs li.dropdown { width: 120px; }
}


/*------------------------------------------------------------------------------------
							Main Menu CSS
--------------------------------------------------------------------------------------*/


.nav-container {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}
#nav_menu {
    padding-left: 0px;
    padding-right: 0px;
}
.navbar-nav {
    width: 100%;
    padding: 0;
    margin: 0;
}
.navbar-nav>li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Muli', sans-serif;
    transition: background-color .3s;
    padding-top: 20px;
    padding-bottom: 15px;
}

.navbar-nav>li>a:hover, .navbar-nav>li>a:focus,
.navbar-nav .open>a, .navbar-nav .open>a:focus, .navbar-nav .open>a:hover {
	background: transparent;
    color: #fff;
}
.caret {
    margin-left: 4px;
}


/*------------------------------------------------------------------------------------
							Dropdown Menus - full/collapsed
--------------------------------------------------------------------------------------*/

.dropdown-menu {
    background-color: #fff;
    padding: 0px;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    background-clip: padding-box;
    padding: 4px 0;
}
.dropdown-menu li{
	width: 100%;
}
.dropdown-menu li a {
    color: #464849;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 0;
    font-weight: normal;
    font-size: 14px;
    padding-left: 20px;
}
.dropdown-menu li a:hover, .dropdown-menu li a:focus {
	background: #1b75bb;
	color: #fff;
}

/*---------------------------------------------
		Mobile Menu
---------------------------------------------*/

/*-----------------toggle--------------------*/
button#mobile-toggle{
	width: 37px;
	height: 37px;
	display: none;
	position: absolute;
	right: 15px;
	bottom: 30px;
	border: 2px solid #002857;
	border-radius: 4px;
	padding: 8px 5px;
	background-color: white;
	box-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}
@media (max-width: 990px) {
	button#mobile-toggle{
		display: inline-block;
	}
}
button#mobile-toggle svg *{
	fill: #002857;
}
/*-----------end--toggle---------------------*/
#mobile-menu>li#triggerClose {
    display: inline;
    float: right;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 30px;
    cursor: pointer;
    color: #1b75bb;
    margin-bottom: 0px;
}
#mobile-menu>li#mobile-logo{
	position: relative;
	left: -15px;
	top: -10px;
}
#mobile-menu>li#mobile-logo>a{
	display: inline;
	max-width: 80%;
}
#mobile-menu>li #q{
	width: 100%;
}
#mobile-menu>li>a{
	width: 174px;
	min-height: 32px;
	border-radius: 3px;
	background-color: transparent;
	padding-left: 8px;
	padding-top: 9px;
	padding-bottom: 9px;
	padding-right: 8px;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: #5485A3;
	-webkit-transition: color .25s;
	transition: color .25s;
	text-decoration: none;
}
#mobileMenuWrapper {
	/*
	The menu wrapper is the div that surrounds the mobile menu.
	You'll want to make sure this has a background of some sort so the text shows up/doesn't appear over other text
	Setting bottom:0px; is needed to make a long menu scroll-able.
	
	/* REQUIRED */
	position: fixed;
	top:0px;
	bottom: 0px;		/* If having the menu slide in from the top or bottom, comment out this line */
	z-index: 200;
	overflow-y: auto;
	overflow-x: hidden;
	
	/* CHANGEABLE-ISH */
	left: -120%;			/* Change this to left, right, top, or bottom.  You'll also have to make a change in the open state */
	width: 300px;		/* The mobile menu works best with a pre-defined width. Percentages also work great here. */
	
	/* CHANGEABLE */
	background-color: #fff;
	border-right: 3px solid #1b75bb;
	
	/* Transition - bump */
	transition: left .3s; /* ##DIRECTION-02 */
	-webkit-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); /* older webkit */
	-webkit-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
   	-moz-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
    -o-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
    transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
}
#mobileMenuWrapper.open{
	left: 0px;		/* This is required.  If you changed the direction attribute above, change it here too. */
	bottom: 0px;	/* This line is here for bottom/top slide-ins.  See note on bottom above.*/
}

/* REQUIRED - Dropdown menu item transition states*/
#mobileMenuWrapper .mDropdown {
	display:none;
}
#mobileMenuWrapper .mDropdown.open{
	display: block;
}

/* REQUIRED - Sets the ULs to not have dots, or be spaced in the typical UL fashion. */
#mobileMenuWrapper ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

/* OPTIONAL-ISH - These are the settings for the base menu UL */
#mobileMenuWrapper #mobile-menu{
	overflow: auto;
	padding: 15px 15px 15px 10px;
}
/* OPTIONAL-ISH - This sets each link on its own line fo' sho' */
/*#mobileMenuWrapper a, #mobileMenuWrapper div{
	display: block;
}*/

/* OPTIONAL - The actual A's. Style them as you wish*/
/* Top Level / all*/
#mobileMenuWrapper #mobile-menu a {
	display: inline-block;
	width: 100%;
}

/* dropdown only */
#mobileMenuWrapper .mDropdown a {
	padding: 8px;
	margin-bottom: 10px;
}
#mobile-menu > li > ul {
	background-color: rgba(0,0,0,.04);
}

/* dropdown only */
#mobileMenuWrapper .mDropdown a {
    padding: 5px 5px;
}
#mobile-menu > li > ul {
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    padding: 0px 0;
    box-shadow: none;
    margin-bottom: 5px;
}
#mobileMenuWrapper .mDropdown a:hover, #mobileMenuWrapper .mDropdown a:focus {
	background: transparent;
	color: #8d1324;
	text-decoration: none;
}

svg#burger-menu {
    width: 33px;
    height: 20px;
}


/*--------------------------------------------------------
    MOBILE MENU
--------------------------------------------------------*/

#mobileMenuWrapper.open {
    left: 0px;
    bottom: 0px;
}
#mobileMenuWrapper #mobile-menu {
    overflow: unset;
    padding: 0px 15px;
}
#mobileMenuWrapper ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
#mobileMenuWrapper #mobile-menu a {
    color: #1b75bb;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Muli', sans-serif;
    background: transparent;
    padding-left: 0px;
    border-bottom: 1px solid #efefef;
}
#mobileMenuWrapper #mobile-menu a:hover, #mobileMenuWrapper #mobile-menu a:focus {
	background: transparent;
	color: #1b75bb;
}


.mobile-search-wrap a {
    border-bottom: 0px !important;
    width: 85% !important;
}
li.mobile-search-wrap a:hover, li.mobile-search-wrap a:focus {
    background: transparent !important;
}
a.become-mem-wrap {
    border-bottom: 0px !important;
}

#mobileMenuWrapper ul.mDropdown {
    display: none;
}
#mobileMenuWrapper .mDropdown.open {
    display: block;
}
#mobile-menu a {

}
#mobile-toggle {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}


#mobile-menu-col {
    display: inline-block;
    vertical-align: middle;
    padding-top: 10px;
}
	@media (min-width: 990px) and (max-width: 1199px) {
		#mobile-menu-col {
		    margin-left: 15px;
		}
	}
#mobile-menu .mobile-login a {
    color: #8d1324 !important;
    font-weight: bold !important;
}



/*------------------------------------------------------------------------------------
								@Media and Sizes
--------------------------------------------------------------------------------------*/
 /*------ Nav collapse @ Tablet size ------*/
 @media (max-width: 991px) {
	.navbar-header {
	float: none;
    }
    .navbar-toggle {
	display: block;
    }
    .navbar-collapse {
	border-top: 1px solid transparent;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
	display: none!important;
    }
    .navbar-nav {
	float: none!important;
	margin: 7.5px -15px;
    }
    .navbar-nav>li {
	float: none;
    }
    .navbar-nav>li>a {
	padding-top: 10px;
	padding-bottom: 10px;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in { 
	display: block!important;
    }
    .collapsing {
	overflow: hidden!important;
    }
}
