<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
.langflags a {
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
	transition: all 100ms;
	position: relative;
	transform: scale(.7);
}

.langflags a.active {
	box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(0, 0, 0, .3);
	transform: scale(1);
}
.langflags a.inactive:hover {
	transform: scale(.8);
	box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(0, 0, 0, .2);
}
.langflags .flag.inactive:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	transition: all 300ms;
}
.langflags a.inactive:hover:before {
	opacity: 0;
}
.langflags a img {
	display: block;
	transition: all 400ms;
	width: 42px;
}</pre></body></html>