.animated-carousel.images .wrap {
  width: 100%;
  height: 110px;
  background-color: transparent;
  border-radius: 0;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}
.animated-carousel.images .overflow-effect {
  z-index: 1;
  background-image: linear-gradient(270deg, rgba(233, 243, 254, 0) 85%, #F7F9FB 95%), linear-gradient(270deg, #F7F9FB 5%, rgba(255, 255, 255, 0) 15%);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.animated-carousel.images .images-row {
  position: relative;
  align-items: center;
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: scrollText 30s linear infinite;
}
.animated-carousel.images .images-row .carousel-grid {
  height: auto;
  max-height: none;
  max-width: none;
  justify-content: space-between;
  width: fit-content;
  object-fit: fill;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  justify-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  display: flex;
  position: static;
  overflow: visible;
}
.animated-carousel.images .images-row .carousel-grid img {
  max-height: 40px;
  max-width: 200px;
  padding: 0 35px;
  filter: grayscale(1);
  border-radius: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .animated-carousel.images .images-row .carousel-grid img {
    max-width: 150px;
    padding: 0 20px;
  }
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=hf-animated-carousel.css.map */
