@charset "utf-8";
/**
 * FR|EN language switcher — header + mobile fixed bar
 * Load in Empire CMS public header: /css/lang-switch.css
 */

.lang-switch {
	display: inline-block;
	margin-left: 12px;
	font-size: 14px;
	vertical-align: middle;
	white-space: nowrap;
	font-weight: 600;
}

.lang-switch a {
	color: #c80203 !important;
	text-decoration: none;
	padding: 2px 4px;
}

.lang-switch a.is-active {
	color: #c80203 !important;
	font-weight: 700;
	text-decoration: underline;
}

.lang-switch .sep {
	margin: 0 4px;
	color: #999;
}

.lang-switch-bar-inline {
	display: inline-block;
	margin-left: 8px;
}

/* Header switcher: hide when .right column is hidden on mobile */
@media (max-width: 768px) {
	.pg_3_78 .right .lang-switch {
		display: none;
	}
}

/* Mobile fixed bar (#lang-switch-bar is injected by lang-switch.js) */
#lang-switch-bar {
	display: none;
}

@media (max-width: 768px) {
	#lang-switch-bar {
		display: block;
		position: fixed;
		top: 12px;
		right: 12px;
		z-index: 2147483646;
		background: #fff;
		border: 2px solid #c80203;
		border-radius: 6px;
		padding: 8px 14px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
		font-size: 15px;
		line-height: 1.2;
	}

	#lang-switch-bar a {
		color: #333 !important;
		text-decoration: none;
		padding: 2px 6px;
		font-weight: 700;
	}

	#lang-switch-bar a.is-active {
		color: #c80203 !important;
		text-decoration: underline;
	}

	#lang-switch-bar .sep {
		margin: 0 4px;
		color: #999;
	}
}
