/*
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
		06 - Collapsible bar
		07 - Styles
		08 - Effects
		09 - Responsive behavior
*/

@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed);
@import "font-awesome.css";

/* 01 - General
----------------------------------------------------------------------*/
.main-menu{
	width: 100%;
	padding: 0;
	position: relative;
	float: left;
	background: #454545;
	list-style: none;
	font-family: 'Open Sans', sans-serif;
}
.main-menu li {
	display: inline-block;
	font-size: 16px;
	margin: 0;
	padding: 0;
	float: left;
	/* line-height: 20px; */
	position: relative;
}
.main-menu li a {
	font-weight: 300;
    padding: 1em 2em;
	color: #ffffff;
	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;	
}
.main-menu li:hover > a{
	color: #fff;
}
.main-menu li.active > a{
	background: #555555;
}
.main-menu > li > a {
	text-transform: capitalize;
}

/* 02 - Drop down
----------------------------------------------------------------------*/
.main-menu ul, 
.main-menu ul li ul {
	list-style: none;
    margin: 0;
    padding: 0;    
	display: none;
    position: absolute;
    z-index: 999;
	width: 180px;
	background: #454545;
}
.main-menu ul{
    top: 3em;
    left: 35px;
}
.main-menu ul li ul{
    top: 0;
    left: 150px;
}
.main-menu ul li{
	clear:both;
	width:100%;
	font-size:14px;
}
.main-menu ul li a {
	width:100%;
	padding:12px 22px;
	display:inline-block;
	float:left;
	clear:both;
	box-sizing:border-box;
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box;
}
.main-menu ul li:hover > a{
	background: #555555;
}

/* 03 - Drop down arrows
----------------------------------------------------------------------*/
.main-menu .indicator{
	color: #ffffff;
	position: absolute;
	right: 16px;
	/* top: 20px; */
	top:  18px;
	font-family: 'FontAwesome';
	font-size: 16px;
}
.main-menu .indicator:before{
	content: "\f0d7";
}
.main-menu ul li .indicator{
	right: 7px;
	top: 15px;
}
.main-menu ul li .indicator:before{
	content: "\f0da";
}


/* 06 - Collapsible bar
----------------------------------------------------------------------*/
.main-menu > li.showhide{
	display: none;
	width: 100%;
	height: 50px;
	cursor: pointer;
	color: #dedede;
	background: #454545;
}
.main-menu > li.showhide span.title{
	margin: 16px 0 0 18px;
	float: left;
}
.main-menu> li.showhide span.icon{
	margin: 17px 20px;
	float: right;
}
.main-menu > li.showhide .icon em{
	margin-bottom: 3px;
	display: block;
	width: 20px;
	height: 2px;
	background: #ccc;
}

/* 07 - Styles
----------------------------------------------------------------------*/
/*  Spritz Blue   */

.mblue, .mblue li ul, .mblue ul li ul, .mblue > li.showhide{ background: #1e70b9; }
.mblue li a, .main-menu li.social a{ color: #dedede; }
.mblue li.active > a, .mblue ul li:hover > a, .mblue li.social a .tooltip{ background: #267ac5; }
.mblue li.search form input.search:focus{ background-color: #267ac5; }
.mblue li.social a .tooltip:before, .mblue li.social a .tooltip:after{ border-top-color: #267ac5; }


/* black */
.black, .black li ul, .black ul li ul, .black > li.showhide{ background: #000; }
.black li a, .main-menu li.social a{ color: #bababa; }
.black li.active > a, .black ul li:hover > a, .black li.social a .tooltip{ background: #333; }
.black li.search form input.search:focus{ background-color: #333; }
.black li.social a .tooltip:before, .black li.social a .tooltip:after{ border-top-color: #333; }

/* turquoise */
.turquoise, .turquoise li ul, .turquoise ul li ul, .turquoise > li.showhide{ background: #008C9E; }
.turquoise li a, .main-menu li.social a{ color: #dedede; }
.turquoise li.active > a, .turquoise ul li:hover > a, .turquoise li.social a .tooltip{ background: #009fb4; }
.turquoise li.search form input.search:focus{ background-color: #009fb4; }
.turquoise li.social a .tooltip:before, .turquoise li.social a .tooltip:after{ border-top-color: #009fb4; }

/* dark-green */
.dark-green, .dark-green li ul, .dark-green ul li ul, .dark-green > li.showhide{ background: #036564; }
.dark-green li a, .main-menu li.social a{ color: #dedede; }
.dark-green li.active > a, .dark-green ul li:hover > a, .dark-green li.social a .tooltip{ background: #047c7a; }
.dark-green li.search form input.search:focus{ background-color: #047c7a; }
.dark-green li.social a .tooltip:before, .dark-green li.social a .tooltip:after{ border-top-color: #047c7a; }

/* green */
.green, .green li ul, .green ul li ul, .green > li.showhide{ background: #25570a; }
.green li a, .main-menu li.social a{ color: #ffffff; }
.green li.active > a, .green ul li:hover > a, .green li.social a .tooltip{ background: #307d06; }
.green li.search form input.search:focus{ background-color: #047c7a; }
.green li.social a .tooltip:before, .green li.social a .tooltip:after{ border-top-color: #307d06; }



/* 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); }
}

/* 09 - Responsive behavior
----------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
	.main-menu-wrapper.scrollable{
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.main-menu{
		margin: 0;
		display: block;
	}
	.main-menu li{
		display: block;
		width: 100%;
	}
	.main-menu > li > a{
		padding: 16px 70px 16px 18px;
		text-align: left;
		border-top: solid 1px rgba(255, 255, 255, 0.05);
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box;
	}
	.main-menu a{
		width: 100%;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box; 
	}
	.main-menu ul, 
	.main-menu ul li ul{
		width: 100%;
		left: 0;
		padding: 0 20px;
		position: static;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box; 
	}
	.main-menu .indicator{
		right: 20px;
		top: 18px;
	}
	.main-menu ul li .indicator{
		display: block;
	}
	.main-menu ul li .indicator:before{
		content: "\f0d7";
	}
	.main-menu > li.showhide{
		display: block;
	}
}










