.tls-switcher {
	display: inline-flex;
}

.tls-switcher button {
	border: none;
	background: transparent;
	padding: 0.15rem;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
	opacity: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tls-switcher button:hover {
	transform: scale(1.1);
	opacity: 0.9;
}

.tls-switcher__button:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

.tls-flag {
	display: block;
	width: 38px;
	height: 24px;
	border-radius: 2px;
	box-shadow: 0 0 4px rgb(0 0 0 / 15%);
}

.tls-align-left {
	justify-content: flex-start;
}

.tls-align-center {
	justify-content: center;
}

.tls-align-right {
	justify-content: flex-end;
}


