.bulles_flottantes {
	font-size: var(--vef-nav-bulles-fs, 2.2rem);
	position: fixed;
	z-index: 99;
	right: var(--vef-nav-padding, 10px);
	right: 5px;
	bottom: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.25em;
	opacity: 100;

}

.has_sticky_footer .bulles_flottantes.bubbles {
	bottom: 8rem;
}

.bulles_flottantes > a,
.bulles_flottantes > .qcd {
	background-color: var(--vef-couleur-dominante, #393939);
	color: white;
	transition: opacity 750ms;
}

.bulles_flottantes > a:hover,
.bulles_flottantes > a:focus-visible,
.bulles_flottantes > .qcd:hover,
.bulles_flottantes > .qcd:focus-visible {
	background-color: #393939;
	color: white;
	text-decoration: none;
}

.bulles_flottantes > a.comments {
	position: relative;
}

.bubble .badge {
	position: absolute;
	display: flex;
	align-items: center;
	font-size: 0.55em;
	font-weight: bold;
	line-height: 1em;
	top: -5px;
	right: 0;
	color: black;
	background-color: white;
	padding: 1px;
	border-radius: 2px;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);

	/* aspect-ratio: 1/1;*/
}


.bulles_flottantes > .qcd.hidden {
	opacity: 0;
	transition: opacity 500ms;
}


@media screen and (min-width:800px) {
	.bulles_flottantes {
		right: 1rem;
	}
}

@media (min-width:1380px) {
	.bulles_flottantes {
		right: calc((100% - 1360px)/2);
	}
}