.trp-language-switcher-container {
	box-sizing: border-box;
}

#trp-floater-ls {
	background-color: #1f1f1f;
	border-radius: 3px 3px 0 0;
	bottom: 0;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
	line-height: 0;
	max-height: 48px;
	overflow: hidden;
	padding: 9px;
	position: fixed;
	right: 200px;
	transition: max-height 180ms ease;
	z-index: 99999;
}

#trp-floater-ls:hover,
#trp-floater-ls.is-open {
	max-height: 340px;
}

#trp-floater-ls-current-language,
#trp-floater-ls-language-list {
	display: grid;
	grid-template-columns: repeat(4, 18px);
	gap: 8px;
}

#trp-floater-ls-current-language {
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
}

#trp-floater-ls-language-list {
	display: none;
	flex-direction: column;
	align-items: center;
}

#trp-floater-ls:hover #trp-floater-ls-language-list,
#trp-floater-ls.is-open #trp-floater-ls-language-list {
	display: flex;
}

#trp-floater-ls:hover  #trp-floater-ls-current-language {
	display: none;
}

#trp-floater-ls a,
.boh-language-switcher a {
	display: inline-flex;
	/* height: 12px; */
	line-height: 12px;
	text-decoration: none;
	width: 25px;
}

.trp-flag-image {
    display: block;
    height: 20px;
    width: 25px;
    object-fit: cover;
}

.boh-language-code {
	background: #fff;
	border: 1px solid #d7d7d7;
	color: #111;
	display: inline-block;
	font-size: 8px;
	line-height: 10px;
	text-align: center;
	width: 18px;
}

.boh-language-switcher {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}

@media (max-width: 768px) {
	#trp-floater-ls {
		right: 10px;
	}
}
