/******************************************************************
 * MOVIE RECORDS — LANGUAGE SWITCHER
 ******************************************************************/

.mr-language-switcher {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 38px;
	min-height: 38px;
	padding: 0 4px;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	line-height: 1;
	opacity: 0.88;
	transition: opacity 160ms ease, color 160ms ease;
}

.mr-language-switcher:hover,
.mr-language-switcher:focus-visible {
	opacity: 1;
}

.mr-language-switcher:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 3px;
	border-radius: 4px;
}

.mr-language-switcher__icon {
	display: inline-flex;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.mr-language-switcher__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.mr-language-switcher__code {
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
}

@media (max-width: 620px) {
	.mr-language-switcher {
		gap: 3px;
		min-width: 34px;
		padding: 0 2px;
	}

	.mr-language-switcher__icon {
		width: 18px;
		height: 18px;
	}

	.mr-language-switcher__code {
		font-size: 9px;
	}
}
