/**
 * Initial state, hidden off screen
 */
 .clicky-menu ul {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden; /*[1]*/
}

/**
 * No JS fallback
 *
 * Triggers menus on hover rather than click. Supports keyboard navigation in modern browsers.
 */
.clicky-menu.no-js li:hover > ul {
	visibility: visible;
}
.clicky-menu.no-js li:focus-within > ul { /*[2]*/
	visibility: visible;
}

/**
 * Open/Close Menu Behavior with JS
 */
.clicky-menu ul[aria-hidden="false"] {
	visibility: visible;
}

/* Prevent offscreen-submenus */
.clicky-menu .sub-menu--right {
	left: auto !important;
	right: 0 !important;
}

/**
 * Footnotes
 *
 * [1] Using visibility instead of display allows for easier transitions and animation of submenus
 * [2] Must be a separate ruleset so that hover works in non-modern browsers
 */


/* DEMO CSS */
body {
	margin: 0;
	min-height: 100vh;
	background-color: #000033;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
				 Roboto, Oxygen-Sans, Ubuntu, Cantarell,
				 "Helvetica Neue", sans-serif;
} 

/* Hidden SVG used for down arrows */
svg[hidden] {
	display: none;
	position: absolute;
}

.logo {
	display: block;
	width: 150px;
	height: 60.5px;
	object-fit: cover;
	object-position: bottom;
	margin: 0px 0px 0px 0px;
}

	.logo:hover {
		object-position: top;
	}


.site-navigation {
	width: 160px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -160px;
    overflow-y: scroll;
	margin: 0px 0px 10px 5px;
	background-color: #000033;
    z-index: 100;
    transition: transform .5s;
}

.clicky-menu {
	justify-content: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* General Link & butttton Styles */
.clicky-menu a,
.clicky-menu butttton {
	margin-left: .25rem;
	padding: .25rem;
	background: transparent;
	color: white;
	font-weight: 600;
	text-decoration: none;
	font-family: inherit;
    text-transform: uppercase;
}

.clicky-menu a:hover,
.clicky-menu butttton:hover {
	background: #4b71b7;
    color: orange;
    display: inline-block;
}

.clicky-menu a:focus,
.clicky-menu butttton:focus {
	/* outline: .125rem dotted purple;
	outline-offset: -.125rem; */
    color: orange;
}

/* Top Level Items */

/* .clicky-menu > li {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	justify-content: stretch;
	flex-wrap: wrap;
} */

.clicky-menu > li > a,
.clicky-menu > li > butttton {
	flex: 1 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: 0;
	font-size: inherit;
	line-height: 1.5;
	cursor: pointer;
}

.clicky-menu li.activeOrange a {
	color: orange;
}

/* @media (min-width: 540px) {
	.clicky-menu > li > a,
	.clicky-menu > li > butttton {
		justify-content: center;
	}	
} */

/* Icon */

.clicky-menu svg {
	width: 1rem;
	height: 1rem;
	margin-left: .5rem;
}

.clicky-menu [aria-expanded="true"] svg {
	transform: scaleY(-1);
}

/* Submenu Styles */
.clicky-menu ul {
	min-width: 100%;
	width: 12rem;
	/* margin-top: .25rem; */
	padding: 0px;
	list-style-type: none;
	background-color: #000033;
	/* border-radius: 3px; */
    /* padding-left: 15px; */
}

.clicky-menu ul a {
    padding-left: 15px;
    font-size: .85rem;
}

/* @media (min-width: 540px) {
	.clicky-menu {
		box-shadow: 2px 4px 4px rgba(0,0,0,.2);
	}
} */

/* Responsive Submenu Behavior */
.clicky-menu ul[aria-hidden="false"] {
	position: static;
	width: 100%;
	flex: 0 0 auto;
}

/* @media (min-width: 540px) {
	.clicky-menu ul[aria-hidden="false"] {
		position: absolute;
		width: auto;
	}
} */

/* Submenu Links */
.clicky-menu ul a {
	display: block;
	padding-top: .375rem;
	padding-bottom: .375rem;
}
/* @media (min-width: 540px) {
	.clicky-menu ul a {
		padding: .375rem 1rem;
		white-space: nowrap;
	}
} */

.inform_page {
	padding-top: 30%;
}

