*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	
}

.menu_container{
	display:flex;position:fixed;
	background-color:rgba(170,170,170,0.55);
	justify-content: space-between;
	align-items: center;
	padding: 5px 20px;
	width:100%;
	margin:0px auto;
	backdrop-filter: blur(2px);
    flex-wrap: wrap;
}

.menu{
	display: flex;
	flex:2;
	order:2;
	background-color: rgba(17,17,17,0.9);
	border-radius:5px;

}


#menu_toggle{
	display:none;
}

.menu_logo{
	color:GOLD;
	padding:5px;
	text-align:left;
	flex:1;
}

.menu_logo img{
		height:60px;
		width:auto;}

.menu_item{
	padding:15px;
	flex: 1;
	text-align:right;
	display:block;
	width:auto;
	font-size:18px;
	}

.menu_item a{
	color:white;
	text-decoration: none;
	white-space: nowrap;
	
}

.toggle_label{
	order:1;
	display:none;
	}


.hamburger_menu{
	cursor:pointer;
	width:32px;
	height:28px;
	border-radius:2px;
	display:flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease-in-out;
	box-sizing:border-box;
}

.hamburger_element{
	width:22px;
	height:4px;
	background-color: #666;
	border-radius:2px;
	transition:all .5s ease-in-out;
}

.hamburger_element::before,
.hamburger_element::after{
	content:'';
	position:absolute;
	width:22px;
	height:4px;
	background-color: #666;
	border-radius:2px;
	transition:all .5s ease-in-out;
}


.hamburger_element::before{
	transform: translateY(-8px);
}

.hamburger_element::after{
	transform: translateY(8px);
}


@keyframes roll_in_menu{
		0% {opacity:0;height:0px;}
		100% {opacity:1.0;height: 55px;}
	}


@keyframes roll_out_menu{
		0% {opacity:1.0;height: 55%;transform:translateY(0);}
		100% {opacity:0;height:0px;transform:translateY(-100);}
}

@media only screen and (max-width:941px) and (min-width:731px){
	
	.menu_logo{
		display:block; 
		min-width:100%;
		text-align: center;
		flex:1;
	}
	
	.menu_logo img{
		height:60px;
		width:auto;
	}
	
	.menu_item{
		text-align:center;
		padding:4px;
		font-size:16px;
	}
	
	.menu_container{
		padding:5px 10px;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.menu{
		padding:5px;
	}
}


@media only screen and (max-width:730px){
	
	

	.menu_container{
		padding:0px;
		position:fixed;
		justify-content: space-between;
		flex-wrap: wrap;
		height:100%;
		align-content: flex-start;
		align-items: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		pointer-events:none;
		z-index: 999;
		}
	
	.menu_container *{
		pointer-events: auto;
	}
	
	.menu{
		flex-direction: column;
		flex:1;
		align-content: space-around;
		overflow:hidden;
		align-items: center;
		background-color:#111;
		transition: 0.3s ease-in-out;
		opacity:0.0;
		position:absolute;
		
		width:0;
		height:94%;
		right:0;
		top:6%;
		background-image:url("images/menu_bg.jpg");
		background-size:cover;
		background-position:bottom center;

	}
	
	.menu_logo{
		flex:1;
		background-color: rgba(17,17,17,0.85);
		height:6%;
	
	}
	
	.menu_logo img{
		
		height:100%;
		width:auto;
		opacity:1.0;
		
	}
	
	.toggle_label{
		display:inline;
		padding:3%;
		background-color: rgba(17,17,17,0.85);
		
		height:6%;
	
	}
	
	
	
	.menu_item{
		display: flex;
  		align-items: center;
		transition: 0.5s ease-in-out;
		justify-content:center;
		width:100%;
		white-space: nowrap;
		flex:1;
		padding:0;
		
	}
	
	
	
	

	
	#menu_toggle:checked ~ .menu{
		display:flex;
		min-height:90%;
		opacity:1.0;
		width:100%;
			}
	
	
	
	#menu_toggle:checked~ .toggle_label .hamburger_menu .hamburger_element{
		transform:translateX(-5px) rotate(90deg);
		background-color:transparent;
	}
	
	#menu_toggle:checked~ .toggle_label .hamburger_menu .hamburger_element::before{
		transform: rotate(45deg) ;
	}
	
	#menu_toggle:checked~ .toggle_label .hamburger_menu .hamburger_element::after{
		transform: rotate(-45deg);
	}

	#menu_toggle:checked~.menu_label{
		/*display:none;*/
	}
	
	
}
	