/*
{
  background: #020304;
}
*/

input#burger {
	display: none;
}

#burgerlabel {
	margin-top: 46px;
	transition: .5s;
}

input#burger+label {
	position: fixed;
	right: 4%;
	height: 24px;
	width: 40px;
	z-index: 90005;
}

input#burger+label span {
	position: absolute;
	width: 100%;
	height: 4px;
	top: 50%;
	left: 0;
	display: block;
	background: #646364;
	transition: .5s;
	backdrop-filter: blur(10px);
}

input#burger+label span:first-child {
	top: 0px;
}

input#burger+label span:last-child {
	top: 24px;
}

label:hover {
	cursor: pointer;
}

input#burger:checked+label span {
	opacity: 0;
	top: 50%;
	background: #FFFFFF;
}

input#burger:checked+label span:first-child {
	opacity: 1;
	transform: rotate(405deg);
}

input#burger:checked+label span:last-child {
	opacity: 1;
	transform: rotate(-405deg);
}

input#burger~nav {
	background: rgba(99, 99, 99, 0.9);
	position: fixed;
	top: 0;
	width: 320px;
	height: 100%;
	z-index: 90003;
	transition: .5s;
	transition-delay: .5s;
	overflow: hidden;
	right: -320px;
	opacity: 1;
	box-shadow: 0 0 30px rgba(2, 2, 2, 0.18);
	overflow: visible;
	color: #FFFFFF;
	overflow: auto;
	padding: 110px 0 40px 0;
}

input#burger~nav>ul {
	position: relative;
	padding: 0 20px 0 60px;
}

input#burger~nav>ul>ul {
	position: relative;
	top: 15%;
	left: 0;
	right: 0;
	margin: 0;
}

input#burger~nav>ul li {
	opacity: 0;
	transition: .5s;
	transition-delay: 0s;
	display: block;
	text-indent: 0;
	margin: 1em 0 0 0;
}

input#burger~nav>ul>li {
	font-size: 20pt;
	font-weight: bold;
}

input#burger~nav>ul>li>ul>li {
	margin: .5em 0 0 0;
	font-size: 14pt;
	font-weight: normal;
}

input#burger~nav>ul li>a {
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	border-bottom: inherit;
}

input#burger:checked~nav {
	height: 100%;
	transition-delay: 0s;
	width: 320px;
	right: 0;
}

input#burger:checked~nav>ul li {
	opacity: 1;
	transition-delay: .5s;
}

@media (max-width: 550px) {
	input#burger:checked~nav {
		height: 100%;
		transition-delay: 0s;
		width: 100%;
		right: 0;
	}
	input#burger~nav {
		background: #646364;
	}
}
