#hamburger{
	position: fixed;
	display: block;

	top: 2px;
	left: 2px;
	width: 90px;
	height: 75px;

	/*
	background-color: white;
	*/

	background-image: url("../menu_b.svg");
	background-position: center;
	background-repeat: no-repeat;
	z-index: 18;

	cursor: pointer;
}

#up-box{
	position: absolute;
	top: 0px;
	left: 10px;
	width: calc(100% - 20px);

	height: 100px;
	/*
	background-color: aqua;
	*/
}

#menu-box{
	position: absolute;
	top: 10px;
	left: 0px;
	width: calc(100% - 20px);
	margin-left: 10px;
	
	height: auto;
	/*
	background-color: aquamarine;
	*/
}

#menu-lat{
	position: fixed;
	display: inline-block;
	top: 0px;
	/*
	left: 0px;
	*/
	left: -100%;
	width: 300px;
	bottom: 0px;

	font-family: RobotoSlab_bold;
	font-size: 1em;

	padding: 10px;

	border-right: 2px solid black;
	background-color: rgb(235, 235, 235,0.95);	

	z-index: 20;

	overflow: auto;

	box-shadow: 10px -10px 25px rgba(0, 0, 0, 0.3);
}

#menu-lat .itemsA{
	position: relative;
	display: inline-block;

	font-family: RobotoSlab_medium;
	width: fit-content;

	font-size: 1em;
	margin-bottom: 0px;
	margin-top: 10px;
	padding-top: 3px;
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 2px;
	
	color: black;
	text-decoration: none;
	
	background-color: white;
	cursor: pointer;
}

#menu-lat .itemsA:hover{
	transition: 0.5s;
	background-color: rgba(0, 0, 0, 1);
	color: white;
}

#menu-lat .itemsB{
	position: relative;
	display: inline-block;
	
	font-family: RokkittM;
	font-size: 0.94em;
	width: fit-content;
	
	margin-bottom: 0px;
	padding-top: 3px;
	padding-left: 5px;
	padding-right: 4px;

	margin-left: 14px;

	color: black;
	text-decoration: none;

	background-color: white;
	cursor: pointer;
}

#menu-lat .itemsB:hover{
	transition: 0.5s;
	background-color: rgba(0, 0, 0, 1);
	color: white;
}