
	/**
	* Initial state, hidden off screen
	*/

	
	.clicky-menu div.js-dropdown {
		position: absolute;
		top: 66px;
		transform: translateX(100%);
		z-index: 0;
		visibility: hidden; /*[1]*/
	}

	@media screen and (min-width: 1280px) {
		.clicky-menu div.js-dropdown {
			position: fixed;
			top: 92px;
			top: -100%;
			transform: translateX(0);
		}
	}

	/**
	* No JS fallback
	*
	* Triggers menus on hover rather than click. Supports keyboard navigation in modern browsers.
	*/
	.clicky-menu.no-js li:hover > div.js-dropdown {
		visibility: visible;
	}
	.clicky-menu.no-js li:focus-within > div.js-dropdown { /*[2]*/
		visibility: visible;
	}

	/**
	* Open/Close Menu Behavior with JS
	*/
	.clicky-menu div.js-dropdown[aria-hidden="false"] {
		visibility: visible;
		z-index: 20;
		top: 66px;
		transform: translateX(0);
	}

	@media screen and (min-width: 1280px) {
		.clicky-menu div.js-dropdown[aria-hidden="false"] {
			z-index: -10;
			top: 92px;
		}
	}


	button.js-megamenu-toggle[aria-expanded=true] .fa-chevron-down {
		transform: rotate(180deg);
	}

button.js-megamenu-toggle[aria-expanded=true] span.tab-indicator {
	/*background: rgba(250,165,25,1);*/
}

	@media screen and (min-width: 1280px) {
		.personabar-visible .js-dropdown {
			padding-left: 80px;
		} 
	}
