
.language-switcher {
	display: none;
	position: absolute;
	right: 50px;
	top: 50px;
	z-index: 5;
}

.language-switcher ul {
	background-color: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 6px;
	box-shadow: 1px 2px 7px rgb(0 0 0 / 24%);
	list-style-type: none;
	margin: 0;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 0
}

.language-switcher a {
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

.language-switcher > a svg {
	margin-left: 5px;
	width: 10px;
}

.language-switcher > a:hover {
	color: #4f6d8d;
	fill: #4f6d8d;
}

.language-switcher > a.open + ul {
	opacity: 1;
	pointer-events: auto;
	z-index: 6;
}

.language-switcher ul a {
	display: block;
	padding: 9px 15px;
}

.language-switcher ul a:hover {
	background-color: #efefef;
}

@media screen and (max-width: 500px) {
	.language-switcher {
		right: 30px;
		top: 35px;
	}
}