/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 17 2026 | 15:12:27 */
/*
 *******************************************************
  Design du sélecteur de langue Polylang (associé au shortcode [polylang_language_switcher])
 *******************************************************
*/
/* === Language switcher === */
/* .language-switcher */
.wp-block-polylang-language-switcher {
    height: 100%;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* .language-switcher .lang-item */
.wp-block-polylang-language-switcher > .lang-item {
  	/*display: flex;*/
}

/* .language-switcher a */ 
.wp-block-polylang-language-switcher > .lang-item > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.45rem;
	border-radius: 6px;
	border: 1px solid transparent;
	background: transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

/* .language-switcher a:hover */
.wp-block-polylang-language-switcher > .lang-item > a:hover{
	background-color: rgba(0,0,0,0.05);
	border-color: rgba(0,0,0,0.08);
}

/* .language-switcher img */ 
.wp-block-polylang-language-switcher > .lang-item > a > img {
	display: block;
	width: 18px;
	height: auto;
}

/* langue active */
.wp-block-polylang-language-switcher > .current-lang a {
	background-color: rgba(0,0,0,0.08);
	border-color: rgba(0,0,0,0.15);
	cursor: default;
}

/* option : langues sans traduction */
.wp-block-polylang-language-switcher > .no-translation {
	opacity: 0.4;
	pointer-events: none;
}

