@charset "UTF-8";

.languages {
	position: relative;
}
.languages .language-toggle {
	width: 42px;
	height: 32px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 6px;
	background: transparent;
	padding: 0;
	overflow: hidden;
}
.languages .language-toggle i {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.languages[data-current="en"] .language-toggle i { background-image: linear-gradient(#012169 33%, #fff 33% 66%, #c8102e 66%); }
.languages[data-current="de"] .language-toggle i { background-image: linear-gradient(#000 33%, #dd0000 33% 66%, #ffce00 66%); }
.languages[data-current="es"] .language-toggle i { background-image: linear-gradient(#aa151b 25%, #f1bf00 25% 75%, #aa151b 75%); }

.languages .switcher {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: #fff;
	color: #111;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0,0,0,0.25);
	min-width: 140px;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease, max-height .2s ease;
}
html[data-lgc="1"] .languages .switcher {
	max-height: 200px;
	opacity: 1;
	pointer-events: all;
}
.languages .switcher a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
}
.languages .switcher a:hover { background: #f2f2f8; }
