@charset "utf-8";
/* CSS Document */
.langflags a {
	text-decoration: none;
	display: inline-block;
	vertical-align: bottom;
	padding: 1px;
	border-radius: 3px;
	transition: all 200ms;
	background-color: rgba(255,255,255,0.5);
	box-shadow: 0 0 3px rgba(0,0,0,0.5);
	overflow: hidden;
}

.langflags a,
.langflags a:before,
.langflags a img {
	width: 44px;
	height: 33px;
}

.langflags a.active {
	background: rgba(0,0,0,1);
}
.langflags a.inactive:hover {
	background: rgba(0,0,0,.7);
}
.langflags .flag.inactive:before {
	content: '';
	position: absolute;
	background: rgba(0,0,0,0.3);
	transition: all 300ms;
}
.langflags a.inactive:hover:before {
	background: rgba(0,0,0,0.05);
}
.langflags a img {
	display: block;
	transition: all 400ms;
}