@keyframes progressAnimation {
	from {
		width: 0%;
	}

	to {
		width: 100%;
	}
}

.animate-progress {
	width: 100%;
	animation: progressAnimation 6s linear;
}

/* Usuń rozmycie z miniatury, gdy przycisk wewnątrz niej otrzymuje fokus klawiatury,
   aby wskaźnik fokusa był wyraźnie widoczny */
.carousel-thumb:has(:focus-visible) {
	filter: none;
}