/* Menu */
.menu{
	display: flex;
	width: calc(100% - 10px);
	height: 55px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 0 5px;
	border-top: 4px solid rgb(var(--main-color));
	background-color: rgba(9,9,9,0.9);
	box-shadow: 0 3px 3px rgba(9,9,9,0.9);
	backdrop-filter: blur(2px);
	align-items: center;
	gap: 15px;
}
.menu a{
	cursor: pointer;
	text-decoration: none;
}

/* LOGO */
.menu-logo{
	display: flex;
	margin-right: auto;
	align-items: center;
}
.menu-logo > img{
	width: 120px;
}

/* Banner */
.menu-banner{
	display: none;
	padding: 3px 8px;
	background-color: #090808;
	border: 2px solid #eea800;
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	white-space: nowrap;
	font-family: 'DINPro-Regular';
	font-size: 12px;
	color: white;
}
.menu-banner > img{
	height: 22px;
}
.menu-banner:hover{
	background-color: #eea80010;
}

/* Langs */
.menu-lang{
	display: flex;
	align-items: center;
	gap: 10px;
}
.menu-lang > a{
	display: flex;
	align-items: center;
}
.menu-lang > a:hover{
	opacity: 0.8;
}
.menu-lang > a > img{
	width: 35px;
}

/* Menu buttons */
.menu-button{
	display: flex;
	position: relative;
	padding: 0;
	text-transform: uppercase;
	font-size: 24px;
	color: rgb(42,171,238);
	align-items: center;
	justify-content: center;
}
.menu-button > i{
	z-index: 1;
}
.menu-button:hover{
	opacity: 0.8;
}
.menu-button:active{
	opacity: 0.7;
}

.menu-button::before{
	content: "";
    display: inline-block;
    position: absolute;
    width: 0.65em;
    height: 0.65em;
    background-color: #fff;
    z-index: 0;
}