.mobile-inner-header {
	width: 100%;
	background-color: rgba(255,255,255,0.7);
	height: 50px;
	position:absolute;
	z-index:9999;
	top: 0px;
	left: 0px;
	box-shadow:0 0 3px black;
}
.mobile-inner-txt{
	float:left;
	margin:5px 0 0 5px;
}
.mobile-inner-txt img{
	float:left;
	height:40px;
}

.mobile-inner-header-icon {
	color: white;
	background-color: rgba(0,0,0,0.3);
	height: 50px;
	font-size: 25px;
	text-align: center;
	float: right;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-inner-header-icon:hover {
	background-color: rgba(255,0,0,0.5);
	cursor: pointer;
}
.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 1px;
	background-color: white;
}
.mobile-inner-header-icon span:nth-child(1) {
	transform: translateY(4px) rotate(0deg);
}
.mobile-inner-header-icon span:nth-child(2) {
	transform: translateY(-4px) rotate(0deg);
}
.mobile-inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}
.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}
 @keyframes clickfirst {
 0% {
 transform: translateY(4px) rotate(0deg);
}
 100% {
 transform: translateY(0) rotate(45deg);
}
}
 @keyframes clicksecond {
 0% {
 transform: translateY(-4px) rotate(0deg);
}
 100% {
 transform: translateY(0) rotate(-45deg);
}
}
.mobile-inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}
.mobile-inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}
 @keyframes outfirst {
 0% {
 transform: translateY(0) rotate(-45deg);
}
 100% {
 transform: translateY(-4px) rotate(0deg);
}
}
 @keyframes outsecond {
 0% {
 transform: translateY(0) rotate(45deg);
}
 100% {
 transform: translateY(4px) rotate(0deg);
}
}
.mobile-inner-nav {
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	position: absolute;
	z-index:999;
	top: 50px;
	left: 0px;
	padding: 3% 5% 5%;
	display: none;
}
.mobile-inner-nav a {
	display: block;
	line-height: 40px;
	text-decoration: none;
	color: white;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight:bold;
}
.mobile-inner-nav a:hover {
	color: rgba(255,255,255,0.4);
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
.mobile-inner-nav div{ border-bottom: solid 1px rgba(255,255,255,0.3); padding-bottom:2%;}
.mobile-inner-nav div a{ float:left; width:31%; margin:2% 0 0 2%; border:white 1px solid; border-radius:2px; padding:2% 0; text-align:center; line-height:normal;}
