/* Transposh frontend header language switcher (dropdown with flags) */
.tp-header-switcher {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 1.3;
}

.tp-header-switcher .tp-header-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: transparent;
	border: 1px solid #b2d6d1 !important;
	border-radius: 4px;
	color: #1e2939 !important;
	cursor: pointer;
	font: inherit;
}

.tp-header-switcher .tp-header-toggle img {
	width: 18px;
	height: 12px;
	object-fit: cover;
	border-radius: 1px;
}

.tp-header-switcher .tp-header-caret {
	font-size: 10px;
	opacity: 0.7;
}

.tp-header-switcher .tp-header-list {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 999;
	min-width: 150px;
	margin: 4px 0 0;
	padding: 4px 0;
	list-style: none;
	background: #ffffff;
	border: 1px solid #109bdc;
	border-radius: 4px;
	box-shadow: 0 6px 20px rgba(16, 155, 220, 0.18);
	display: none;
}

.tp-header-switcher.open .tp-header-list {
	display: block;
}

.tp-header-switcher .tp-header-list li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	color: #1e2939;
	text-decoration: none;
	white-space: nowrap;
}

.tp-header-switcher .tp-header-list li a:hover {
	background: rgba(16, 155, 220, 0.08);
	color: #109bdc;
}

.tp-header-switcher .tp-header-list li.active a {
	font-weight: 600;
	color: #109bdc;
}

.tp-header-switcher .tp-header-list li img {
	width: 18px;
	height: 12px;
	object-fit: cover;
	border-radius: 1px;
}
