/* Mise à jour 22/09/2025 14:15:08 */
#bubble {
	position:absolute;
	top:1em;
	right:5em;
	
}
#bubble > button {
	width:1.5em;
	height:1.5em;
	background:rgb(196, 74, 39);
	color: white;
	font-size: 1em;
	border:none;
	border-radius:50%;
	cursor: pointer;
}
#bubble div {
	display: none;
}
#bubble div.active {
	display: block;
	position:absolute;
	top:0;
	right:0;
	background: yellow;
	padding:0.5em;
	font-size:0.6em;
	border: 1px solid darkred;
	border-radius:1em;
}
#bubble div h3 {
	padding:0.5em 1em;
	padding-top: 1.5em;
	white-space: nowrap;
}
#bubble div ul {
	list-style: none;
	display: flex;
	flex-direction: column;
}
#bubble div li {
	display: flex;
	justify-content: space-between;
	padding:0 2em;
}

#bubble div li span {
	display: block;
	color:blackred;
}
#bubble div li span:first-of-type::after {
	content:"\A0:";
}
#bubble div button {
	display: block;
	margin:0.5em auto 0;
	font-size: 1em;
	padding:0.2em;
	background-color: lightgray;
	border:1px solid darkred;
	border-radius:0.5em;
	cursor:pointer;
}