.prices_headband {
  background-color: #FFFFFF;
	overflow: hidden;
	display: flex;
}

header + .prices_headband {
	margin-top: -50px;
	margin-bottom: 20px;
}

.prices_headband ~ h1:first-of-type {
	margin-top: 0; /* faire remonter le premier h1 se trouvant juste après la barre de défilement des prix */
}

.prices_headband .prices_container {
	display: inline-block;
	white-space: nowrap;
}

.start_animation {
	animation: start_scroll 50s linear;
}

.infinite_animation {
	animation: infinite_scroll 30s infinite linear;
}

.prices_container .price_container {
	display: inline-block;
	margin-right: 20px;
	width: max-content;
}

.price_container .price {
	display: inline-flex;
	align-items: center;
}

.price_container .price span:not(:last-child) {
	margin-right: 10px;
}

.price_container .price img {
	width: 40px;
}

@keyframes start_scroll {
	from {
		transform: translateX(100vw);
	}
	to {
		transform: translateX(-100%);
	}
}

@keyframes infinite_scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}