/*SLIDINGMENU.CSS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*THIS CSS FILE CONTAINS STYLE RULES FOR SLIDING MENU*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 	THEME NAME 		: NAZ-RESPONSIVE SIMPLE ONE PAGE
* 	THEME URL		: http://www.naz1.naztemplate.com/
* 	AUTHOR			: NAZ
* 	AUTHOR URL		: http://www.naztemplate.com/
* 	VERSION			: 1.0
* 	COPYRIGHT		: (C) 2014
*/
/*-------------------------------------------------------------------------------------------------------------------------------*/


.sm-wrap .site-name {
	font-size: 24px;
	line-height: 31px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	padding: 15px 0px;
}

.menu {
	position: fixed;
	right: -190px;
	width: 190px;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: right;
	background: transparent;
    /*-moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);*/


}

.menu.menu-open {
	right: 0px;
}

.sm-wrap {
	position: absolute;
	top: 0;
	left: 0px;
	background: #f60861;
	width: 190px;
	height: 100%;
}

.menu h1.sm-logo{
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 40px;
	text-transform: uppercase;
	color: #fff;
	margin: 20px 10px;
}


.menu img.sm-logo {
	margin: 20px 0;
	max-width: 160px;
}

.menu a {
	margin:0px;
	margin-bottom: 2px;
	color: #fff;
	display: block;
	font-size: 12px;
	line-height: 23px;
	padding: 10px;
	text-transform: uppercase;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.menu a:hover {
	color: #ffffff;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.menu a:active {
	color: #ffffff;
}

.menu-close {
	cursor: pointer;
	display: block;
	position: absolute;
	font-size: 14px;
	color: #808080;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 20px;
	right: 5px;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

.menu-close:hover {
	color: #ffffff;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

/* PUSH THE BODY AFTER CLICKING THE MENU BUTTON */
.sliding {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.sliding-toright {
	left: 160px;
}

.sliding-toleft {
	left: -160px;
}

.menu,
.sliding {
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		 -o-transition: all .3s ease;
			transition: all .3s ease;
}

#sm-trigger {
	position: absolute;
	top: 5px;
	left: -36px;
	z-index: 11;
	display: block;
	text-align: center;
	color: #ffffff;
	width: 30px;
	height: 30px;
	line-height: 40px;
	cursor: pointer;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

#sm-trigger:before {
	content: "\f0c9";
	font-family: FontAwesome;
	font-size: 18px;
}

#sm-trigger:hover {
	color: #ffffff;
	background: #f60861;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

