@charset "utf-8";
.menu {
	background-color: #ccc;
	width: 100%;
	/* [disabled]height: auto; */
	text-align: center;
	/* [disabled]position: fixed; */
	/* [disabled]z-index: 999; */
}
nav   {
	/* [disabled]position: absolute; */
	text-align: left;
	top: 118px;
	/* [disabled]left: 0; */
	background-color: #ccc;
	width: 100%;
	display: none;
}
nav ul  {
	padding: 0;
	margin: 0;
	list-style: none;
}
nav ul li {
	margin-bottom: 1em;
	margin-left: 1em;
}
nav ul li a {
	color: black;
	text-decoration: none;
	font-size: 1.2rem;
}
nav ul li a:hover {
	cursor: pointer;
	color: #022DB5;
}
.container .nav_toggle {
	display: none;
	cursor: pointer;
}

.nav_toggle:checked ~nav   {
	display: block;
}
.container .nav_toggle_label {
	top: 0;
	height: 100%;
	/* [disabled]border-color: red; */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 2px; */
	margin-left: 1em;
	cursor: pointer;
	margin-top: 14px;
}
.container .nav_toggle_label span{
	display: block;
	background: red;
	height: 2px;
	width: 2em;
	border-radius: 2px;
	margin-bottom: 0px;
	position: relative;
	cursor: pointer;
	/* [disabled]line-height: 34em; */
}
.container .nav_toggle_label span::before{
	display: block;
	background: red;
	height: 2px;
	width: 2em;
	border-radius: 2px;
	content: '';
	margin-top: 0px;
	padding-top: 0px;
	bottom: 7px;
	position: absolute;
}
.container .nav_toggle_label span::after{
	display: block;
	background: red;
	height: 2px;
	width: 2em;
	border-radius: 2px;
	content: '';
	margin-top: 0px;
	position: absolute;
	top:7px;
}
