.header {
	z-index: 50;
	position: fixed;
	display: flex;
	top: 0;
	inset-inline-start: 0;
	inset-inline-end: unset;
	width: 100%;
	height: 64px;
	overflow: hidden;
	background-color: var(--bg-color);
	border-bottom: 1px solid var(--vvlight-color);
	touch-action: none;
	user-select: none;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none;
}


.header > div {
	height: 64px;
	overflow: hidden;
	padding: 20px;
	padding-inline-start: 10px;
	padding-inline-end: 10px;
	box-sizing: border-box;
	cursor: pointer;
}


.header_menu {
	display: none;
	flex: 0 0 54px;
	padding-inline-start: 20px !important;
}

@media (max-width: 600px) {
	.header_menu {
		display: block;	
	}
}

.header_logo {
	flex: 1 0 auto;
	cursor: unset !important;
	padding-inline-start: 20px !important;
}

@media (max-width: 600px) {
	.header_logo {
		padding-inline-start: 10px !important;
	}
}

.header_logo > svg {
	height: 24px;
	fill: var(--main-color);
}

.header_lang, .header_theme {
	flex: 0 0 44px;
}

.header_auth {
	flex: 0 0 54px;
	padding-inline-end: 20px !important;
}

.header_auth > img {
	display: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid var(--vlight-color);
}