/* Ticker superior (1.7.2): barra fina navy a todo lo ancho, encima del header. */
.fms-ticker{
	position:relative;
	display:flex;
	align-items:center;
	width:100%;
	background:#121A6B;
	color:#e8eaf6;
	font-size:13px;
	line-height:1.3;
	min-height:34px;
	padding:0 8px;
	box-sizing:border-box;
	z-index:999;
}
.fms-ticker-inner{
	position:relative;
	flex:1 1 auto;
	min-width:0;
	height:34px;
	overflow:hidden;
	max-width:1200px;
	margin:0 auto;
	width:100%;
}
.fms-ticker-item{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:6px;
	color:#e8eaf6;
	text-decoration:none;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	padding:0 34px 0 12px;
	opacity:0;
	transition:opacity .5s ease;
	pointer-events:none;
}
.fms-ticker-item.on{
	opacity:1;
	pointer-events:auto;
}
.fms-ticker-item:hover{color:#ffffff;text-decoration:underline;}
.fms-ticker-icon{flex:0 0 auto;}
.fms-ticker-label{
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.fms-ticker-close{
	flex:0 0 auto;
	background:transparent;
	border:0;
	color:#9aa3d8;
	font-size:17px;
	line-height:1;
	cursor:pointer;
	padding:6px 8px;
	margin-left:4px;
}
.fms-ticker-close:hover{color:#ffffff;}
@media (max-width:680px){
	.fms-ticker{font-size:12px;min-height:30px;}
	.fms-ticker-inner{height:30px;}
}
