.customer-carousel-outer {
  position: relative;
}

.customer-carousel {
  opacity: 0;
  z-index: 10;
}
.customer-carousel .splide__slide {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px) {
  .customer-carousel .splide__slide {
    padding: 0 0.25rem;
  }
}
.customer-carousel .splide__slide img {
  display: block;
  margin: 0;
  width: 9rem;
}
@media (min-width: 1024px) {
  .customer-carousel .splide__slide img {
    width: 12rem;
  }
}

.customer-carousel-fade-left {
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 3rem;
  z-index: 20;
}
@media (min-width: 768px) {
  .customer-carousel-fade-left {
    width: 5rem;
  }
}
@media (min-width: 1024px) {
  .customer-carousel-fade-left {
    width: 7rem;
  }
}

.customer-carousel-fade-right {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  z-index: 20;
}
@media (min-width: 768px) {
  .customer-carousel-fade-right {
    width: 5rem;
  }
}
@media (min-width: 1024px) {
  .customer-carousel-fade-right {
    width: 7rem;
  }
}

.customer-carousel-loading {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 30;
}
.customer-carousel-loading svg {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
@media (min-width: 768px) {
  .customer-carousel-loading svg {
    height: 2rem;
    width: 2rem;
  }
}
.customer-carousel-loading svg path {
  fill: #1a1a1a;
}
