.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
}

.progress-bar {
  transition: width 0.4s ease;
}

.category-card:hover {
  background: linear-gradient(to bottom right, #6610f2, #ffc107, #6f42c1);
}

.logo-section {
  background-color: #e4ecec;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  /* nad tłem, pod tekstem */
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  50% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}
	.special-card:hover .special-text {
		text-decoration: underline;
	}

