.swiper-infinite-horizontal {
  position: relative;
}

.swiper-infinite-horizontal .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-infinite-horizontal .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: auto;
  white-space: nowrap;
}

.right-gradient,
.left-gradient {
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 1;
}

.right-gradient {
  left: 0;
  background: linear-gradient(
    to right,
    var(--wp--preset--color--white),
    transparent
  );
}

.left-gradient {
  right: 0;
  background: linear-gradient(
    to left,
    var(--wp--preset--color--white),
    transparent
  );
}
