/*
NAME: Orion Responsive Menu 
AUTHOR PAGE: http://codecanyon.net/user/marcoarib
ITEM PAGE: http://codecanyon.net/item/orion-responsive-menu/5268749
*/

/*
	Contents:
		01 - General
		02 - Drop down
		03 - Drop down arrows
		04 - Search form
		05 - Social icons
		06 - Collapsible bar
		07 - Styles
		08 - Effects
		09 - Responsive behavior
*/



/* 01 - General
----------------------------------------------------------------------*/
.orion-menu{
	width: 100%;
	padding: 0;
	position: relative;
	float: left;
	list-style: none;
	background-color: #6d6f71;
	font-family: "Raleway", Arial, Helvetica, sans-serif;
	margin: 0px;
}
.orion-menu li {
	color: #FFFFFF;
	display: inline-block;
	font-size: 15px;
	margin: 0;
	padding: 0;
	float: left;
	line-height: 20px;
	position: relative;
}
.orion-menu li a {
	text-decoration: none;
	display: inline-block;
	-o-transition: color .3s linear, background .3s linear;
	-webkit-transition: color .3s linear, background .3s linear;
	-moz-transition: color .3s linear, background .3s linear;
	transition: color .3s linear, background .3s linear;
	padding-right: 14px;
	padding-left: 14px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;
	color: #FFFFFF;
}
.orion-menu li a.selected {
	color: #FFFFFF;
	text-decoration: none;
	-o-transition: color .3s linear, background .3s linear;
	-webkit-transition: color .3s linear, background .3s linear;
	-moz-transition: color .3s linear, background .3s linear;
	transition: color .3s linear, background .3s linear;
	background-color: #9fcb3f;
}

.orion-menu li:hover > a{
	color: #fff;
	background-color: #F19100;
}
.orion-menu li.active > a{
	background-color: #D27E00;
}
.orion-menu > li > a {
	text-transform: none;
}
.orion-menu > li > a.last {
	background-color: #D8EBFA;
	color: #165F9A;
	}
.orion-menu > li > a.last:hover {
	background-color: #B0D6F4;
	color: #1c3f94;
	}
/* 02 - Drop down
----------------------------------------------------------------------*/
.orion-menu ul, 
.orion-menu ul li ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	z-index: 999;
	width: auto;
	background-color: #6d6f71;
}
.orion-menu ul{
	top: 40px;
	left: 0;
}
.orion-menu ul li ul{
	top: 0;
}
.orion-menu ul li{
	clear:both;
	width:100%;
	
}
.orion-menu ul li a {
	width:100%;
	padding:12px 14px;
	display:inline-block;
	float:left;
	clear:both;
	box-sizing:border-box;
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box;
}
.orion-menu ul li:hover > a{
	background-color: #F19100;
}

/* 03 - Drop down arrows
----------------------------------------------------------------------*/
.orion-menu .indicator{
	color: #F00;
	position: absolute;
	right: 0px;
	top: 10px;
	font-family: FontAwesome;
	font-size: 14px;
}
.orion-menu .indicator:before{
	content: "\f0d7";
}
.orion-menu ul li .indicator{
	right: 0px;
	top: 0px;
}
.orion-menu ul li .indicator:before{
	content: "\f0da";
}

/* 06 - Collapsible bar
----------------------------------------------------------------------*/
.orion-menu > li.showhide{
	display: none;
	width: 100%;
	height: 50px;
	padding-top: 10px;
	cursor: pointer;
	color: #FFFFFF;
	background-color: #6D6F71;
}
.orion-menu > li.showhide:hover {
	-o-transition: color .3s linear, background .3s linear;
	-webkit-transition: color .3s linear, background .3s linear;
	-moz-transition: color .3s linear, background .3s linear;
	transition: color .3s linear, background .3s linear;
	background-color: #F19100;
}
.orion-menu > li.showhide span.title{
	margin: 11px 0 0 4%;
	font-size: 16px;
	float: left;
	font-weight: bold;
}
.orion-menu> li.showhide span.icon{
	margin: 12px 4%;
	float: right;
}
.orion-menu > li.showhide .icon em{
	margin-bottom: 3px;
	display: block;
	width: 20px;
	height: 2px;
	background-color: #FFF;
}


/* 08 - Effects
----------------------------------------------------------------------*/
/* zoom */
.zoom{
    -webkit-animation: zoom .3s ease both;
    -moz-animation: zoom .3s ease both;
    -o-animation: zoom .3s ease both;
    animation: zoom .3s ease both;
}
@-webkit-keyframes zoom {
    0% { -webkit-transform: scale(.6); }
    100% { -webkit-transform: scale(1); }
}
@-moz-keyframes zoom {
    0% { -moz-transform: scale(.6); }
    100% { -moz-transform: scale(1); }
}
@-o-keyframes zoom {
    0% { -o-transform: scale(.6); }
    100% { -o-transform: scale(1); }
}
@keyframes zoom {
    0% { transform: scale(.6); }
    100% { transform: scale(1); }
}

/* swing */
.swing {
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-o-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation: swing 600ms ease-out both;
	-moz-animation: swing 600ms ease-out both;
	-o-animation: swing 600ms ease-out both;
	animation: swing 600ms ease-out both;
}
@-webkit-keyframes swing {
	20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
	20% { -webkit-transform: rotate(15deg); }	
	40% { -webkit-transform: rotate(-10deg); }
	60% { -webkit-transform: rotate(5deg); }	
	80% { -webkit-transform: rotate(-5deg); }	
	100% { -webkit-transform: rotate(0deg); }
}
@-moz-keyframes swing {
	20% { -moz-transform: rotate(15deg); }	
	40% { -moz-transform: rotate(-10deg); }
	60% { -moz-transform: rotate(5deg); }	
	80% { -moz-transform: rotate(-5deg); }	
	100% { -moz-transform: rotate(0deg); }
}
@-o-keyframes swing {
	20% { -o-transform: rotate(15deg); }	
	40% { -o-transform: rotate(-10deg); }
	60% { -o-transform: rotate(5deg); }	
	80% { -o-transform: rotate(-5deg); }	
	100% { -o-transform: rotate(0deg); }
}
@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}

/* bounce */
.bounce{
    -webkit-animation: bounce 600ms ease both;
    -moz-animation: bounce 600ms ease both;
    -o-animation: bounce 600ms ease both;
    animation: bounce 600ms ease both;
}
@-webkit-keyframes bounce {
    0% { -webkit-transform: translateX(-2000px); }
    60% { -webkit-transform: translateX(30px); }
    80% { -webkit-transform: translateX(-10px); }
    100% { -webkit-transform: translateX(0); }
}
@-moz-keyframes bounce {
    0% { -moz-transform: translateX(-2000px); }
    60% { -moz-transform: translateX(30px); }
    80% { -moz-transform: translateX(-10px); }
    100% { -moz-transform: translateX(0); }
}
@-o-keyframes bounce {
    0% { -o-transform: translateX(-2000px); }
    60% { -o-transform: translateX(30px); }
    80% { -o-transform: translateX(-10px); }
    100% { -o-transform: translateX(0); }
}
@keyframes bounce {
    0% { transform: translateX(-2000px); }
    60% { transform: translateX(30px); }
    80% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

TABLET{}

/* 09 - Responsive behavior
----------------------------------------------------------------------*/

@media only screen and (max-width: 1010px) {
.orion-menu li {
	font-size: 14px;
}
}

@media only screen and (max-width: 880px) {
.orion-menu li {
	font-size: 13px;
}
.orion-menu li a {
	padding-right: 10px;
	padding-left: 10px;
}
}



@media only screen and (max-width: 770px) {
.orion-menu-wrapper.scrollable{
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.orion-menu{
	margin: 0;
	display: block;
	width: 100%;
	padding-left: 0;

	float: none;
}
.orion-menu li{
	display: block;
	width: 100%;
	font-size: 16px;
}
.orion-menu > li > a{
	text-align: left;
	border-top: solid 1px rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 4%;
	background-color: #6E6F72;
}
.orion-menu a{
		width: 100%;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box; 
}
.orion-menu ul, 
.orion-menu ul li ul{
	width: 100%;
	left: 0;
	position: static;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-indent: 0px;
	background-color: #F00;
}
.orion-menu ul li a{
	width: 100%;
	left: 0;
	position: static;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 4%;
	text-indent: 0px;
	background-color: #FFF;
	border-bottom: 1px solid #CCC;
	color: #444;
}
.orion-menu ul li a:hover{
	background-color: #CCC;
}
.orion-menu .indicator{
		right: 20px;
		top: 18px;
}
.orion-menu ul li .indicator{
		display: block;
}
	
.orion-menu ul li .indicator:before{
		content: "\f0d7";
}
.orion-menu > li.showhide{
		display: block;
}
}
