/* Button mobile Navi Start */
#btnMobileMenu{
	position: absolute;
	top: -11px;
	padding:17px 17px 17px 0;
	cursor:pointer;
	display: none;
}
#btnMobileMenu .inner{
	position:relative;
	width:26px;
	height:20px;
	float: left;
}
#btnMobileMenu .text{
	float: left;
	text-transform: uppercase;
	font-size: 20px;
	padding-left: 15px;
	position: relative;
}
.sb-slidebar #btnMobileMenu .text{
	color: #1a1a18;
	top:-2px;
}
#btnMobileMenu span.pipe{
	display: block;
	position: absolute;
	left: 0;
	height: 4px;
	width: 100%;
	background-color: #9f2843;
	opacity: 1;
}
#btnMobileMenu span.pipe:nth-child(1) { top: 0px; }
#btnMobileMenu span.pipe:nth-child(2) { top: 8px; width: 20px;}
#btnMobileMenu span.pipe:nth-child(3) { top: 16px; }
/* Button mobile Navi Ende */

/*** Mobile Navi Button ***/
#btnMobileMenu span.pipe,
#btnMobileMenu{
	-o-transition:all ease .3s;
	-ms-transition:all ease .3s;
	-moz-transition:all ease .3s;
	-webkit-transition:all ease .3s;
	transition:all ease .3s;
}
#btnMobileMenu span.pipe{
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}
#btnMobileMenu.open span.pipe{
	background-color:#fff;
}
#btnMobileMenu.open span.pipe:nth-child(1){
	top: -3px;
	left: 4px;
	-moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#btnMobileMenu.open span.pipe:nth-child(2){
	width: 0%;
	opacity: 0;
}
#btnMobileMenu.open span.pipe:nth-child(3){
	top: 15px;
	left: 4px;
	-moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}