/**
 * /assets/css/language-switch.css
 */

/* LANGUAGE SWITCH - MINIMAL (REFINED) */
.lang-switch{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:14px;
	margin:6px auto 14px auto;
	font-size:11px;
	letter-spacing:1.6px;
	font-weight:500;
}

.lang-switch a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
	color:#7a8896;
	padding:4px 2px;
	border-radius:4px;
	transition:all .2s ease;
	text-transform:uppercase;
	font-size:11px;
	letter-spacing:1.8px;
	font-weight:500;
	position:relative;
	text-align:center;
	display:inline-block;
}

.lang-switch a:hover{
	color:#2f5d73;
	background:rgba(47,93,115,0.08);
	transform:translateY(-1px);
}

.lang-switch a.active{
	color:#1c2b38;
	font-weight:700;
	background:none;
	box-shadow:none;
}

.lang-switch a.active::after{
	content:"";
	position:absolute;
	bottom:-4px;
	left:0;
	width:100%;
	height:2px;
	background:#2f5d73;
	border-radius:2px;
	opacity:0.8;
}

.lang-switch a.active:hover{
	background:rgba(47,93,115,0.16);
}

.lang-switch img{
	width:20px;
	height:auto;
	display:block;
}