/*
 * Stellarnav.js 2.5.0
 * Responsive, lightweight, multi-level dropdown menu.
 * Copyright (c) 2018 Vinny Moreira - http://vinnymoreira.com
 * Released under the MIT license
 */
/* all nav */
.stellarnav ul { font-size: 150%; font-weight: 500; }
.stellarnav { display: table-cell; vertical-align: middle; }
	.stellarnav li a { vertical-align: middle; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; transition: all .3s ease-out; }

	/* main level */
	.stellarnav > ul > li { display: block; padding: 10px 0px; }

	/* first level dd */
	.stellarnav ul ul:not(.none) { font-size: 80%; font-weight: 400; display: none; }
	.stellarnav li:not(.none) li:last-child { padding-bottom: 20px; }
	.stellarnav li:not(.none) li:first-child { padding-top: 20px; }

	.stellarnav .dd-toggle { margin-left: 10px; width: 26px; height: 26px; line-height: 26px; z-index: 9999; font-size: 12px; display: inline-block; vertical-align: middle; }
		.stellarnav .dd-toggle i { -webkit-transition: transform .3s ease-out; -moz-transition: transform .3s ease-out; transition: transform .3s ease-out; }
	.stellarnav li.open > .dd-toggle i { -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); }
