/* AIAM language selector shortcode: [iia_language_switcher] */
.iia-language-switcher-wrap {
	box-sizing: border-box;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 16px 7px;
	background: #ffffff;
}

.iia-language-switcher {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.2;
	white-space: nowrap;
}

.iia-language-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #075f91;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.iia-language-link:hover,
.iia-language-link:focus {
	color: #f5b800;
	text-decoration: none;
}

.iia-language-link.is-current {
	font-weight: 700;
	color: #073f63;
}

.iia-language-link img {
	display: block;
	width: 24px;
	height: 16px;
	object-fit: cover;
	border: 1px solid rgba(0, 0, 0, 0.14);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.iia-language-separator {
	color: #9aa7af;
	font-weight: 400;
}

@media (max-width: 480px) {
	.iia-language-switcher-wrap {
		padding: 7px 10px 6px;
	}

	.iia-language-switcher {
		gap: 7px;
		font-size: 12px;
	}

	.iia-language-link {
		gap: 5px;
	}

	.iia-language-link img {
		width: 22px;
		height: 15px;
	}
}
