

div.mobile_menu_v2{
	display: none;
}


@media screen and (max-width: 880px){
	div.mobile_menu_v2{
		display: flex;
		justify-content: space-around;
		flex-flow: row wrap;
		
		background-color: black;
		width: 100%;
		height: 100%;
		
		text-align: center;
	}
	
	div[class*="mobile_menu_v2_item_"]{
		width: 40px;
		height: 40px;
		
		background-position: center;
		background-repeat: no-repeat;
		background-size: 40px 40px;
		
		/*background-color: red;*/
		margin-left: 5px;
	}
	
	div[class*="mobile_menu_v2_item_"] a img{
		width: auto;
		height: 40px;
	}
	
	div.mobile_menu_v2_item_up{
		background-image: url('/img/theme/old/arrow_flat_u.svg');
	}
	
	div.mobile_menu_v2_item_back{
		background-image: url('/img/theme/old/arrow_flat_l.svg');
	}
	
	div.mobile_menu_v2_item_menu{
		background-image: url('/img/theme/old/menu.png');
	}
	
	div.mobile_menu_v2_item_logo{
		/*background-image: url('/img/theme/old/logo.png');*/
	}
}