/* navigation */
nav.fg-navbar {
	position: relative;
	border: 1px solid rgb(224,224,224);
}
a.fg-navbar-brand {
	box-sizing: content-box;
	display: block;
	height: 20px;
	padding: 16px;
	color: rgb(0,48,135);
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	text-decoration: none;
}
a.fg-navbar-brand:hover {
	text-decoration: underline;
}
/* toggle button */
button.fg-navbar-toggler {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	border: 0;
	padding: 16px;
	background-color: transparent;
	color: rgb(0,48,135);
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	text-decoration: none;
}
button.fg-navbar-toggler:hover {
	cursor: pointer;
}
button.fg-navbar-toggler.fg-active {
	background-color: rgb(0,48,135);
	color: rgb(250,70,22);
}
span.fg-navbar-toggler-icon::after {
	content: '\F14A';
	font-family: 'sidearm-icons';
}
button.fg-navbar-toggler.fg-active span.fg-navbar-toggler-icon::after {
	content: '\F11F';
	font-family: 'sidearm-icons';
}
/* top level navigation bar */
div.fg-navbar-collapse {
	display: none;
}
div.fg-navbar-collapse.fg-show {
	box-sizing: content-box;
	display: block;
	position: absolute;
	right: 0;
	width: 240px;
	border: 1px solid rgb(224,224,224);
	background-color: white;
}
ul.fg-navbar-nav {
	box-sizing: content-box;
	display: flex;
	flex-direction: column;
	margin: 0 !important;
	padding: 0 !important;
}
ul.fg-navbar-nav > li {
	padding: 0;
	list-style: none;
}
/* dropdown button, nav link */
button.fg-dropdown-toggle,
li.fg-nav-item > a {
	box-sizing: content-box;
	display: block;
	width: 208px;
	margin: 0;
	border: 0;
	border-bottom: 4px solid transparent;
	padding: 16px;
	background-color: white;
	color: rgb(0,48,135);
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	text-align: left;
	text-decoration: none;
}
button.fg-dropdown-toggle:hover,
button.fg-dropdown-toggle.fg-active,
li.fg-nav-item > a:hover {
	border-bottom-color: rgb(250,70,22);
	background-color: rgb(0,48,135);
	color: white;
	cursor: pointer;
}
button.fg-dropdown-toggle::after {
	content: '\F10F';
	margin-left: 4px;
	color: rgb(250,70,22);
	font-family: 'sidearm-icons';
	font-size: 13px;
	line-height: 1;
}
button.fg-dropdown-toggle.fg-active::after {
	content: '\F112';
	margin-left: 4px;
	color: white;
	font-family: 'sidearm-icons';
	font-size: 13px;
	line-height: 1;
}
/* drop down menu */
ul.fg-dropdown-menu {
	display: none;
	flex-direction: column;
	padding: 0 !important;
}
ul.fg-dropdown-menu.fg-show {
	display: flex;
}
ul.fg-dropdown-menu > li {
	border-bottom: 1px solid rgb(224,224,224);
	background-color: white;
	list-style: none;
}
a.fg-dropdown-item {
	display: block;
	padding: 16px;
	color: rgb(0,48,135);
	font-size: 13px;
	text-decoration: none;
}
a.fg-dropdown-item:hover {
	background-color: rgb(249,249,249);
}
/* media queries */
/* tablet */
@media (min-width: 1024px) {
	nav.fg-navbar {
		display: flex;
	}
	ul.fg-navbar-nav {
		flex-direction: row;
	}
	button.fg-navbar-toggler {
		display: none;
	}
	div.fg-navbar-collapse {
		display: block;
	}
	li.fg-dropdown {
		position: relative;
	}
	button.fg-dropdown-toggle,
	li.fg-nav-item > a {
		width: auto;
	}
	ul.fg-dropdown-menu {
		width: 240px;
		position: absolute;
		border: 1px solid rgb(224,224,224);
	}
	ul.fg-dropdown-menu > li:last-of-type {
		border-bottom: 0;
	}
	li.fg-nav-item:last-of-type ul.fg-dropdown-menu {
		right: 0;
	}
}