.oh-customers {
  position: relative;
  padding: 0;
  --oh-customers-fade-color: #f5f8ff;
}

.oh-customers::before,
.oh-customers::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 9vw, 140px);
  pointer-events: none;
  z-index: 2;
}

.oh-customers::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--oh-customers-fade-color, #f5f8ff) 0%,
    rgba(245, 248, 255, 0)
  );
}

.oh-customers::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--oh-customers-fade-color, #f5f8ff) 0%,
    rgba(245, 248, 255, 0)
  );
}

.oh-customers__toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: rgba(5,0,34,0.08);
  color: #050022;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.875rem;
  cursor: pointer;
  z-index: 3;
}

.oh-customers__list {
  overflow: hidden;
}

.oh-customers__list .swiper-wrapper {
  display: flex;
  align-items: center;
}

.oh-customers__item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--oh-height-mobile, 44px);
  width: auto !important;
}

.oh-customers__img {
  max-height: var(--oh-height-mobile, 44px);
  width: auto;
  display: block;
  filter: grayscale(0.1);
}

@media (min-width: 1024px) {
  .oh-customers__list .swiper-wrapper {
    justify-content: flex-start;
  }

  .oh-customers__item {
    height: var(--oh-height-desktop, 78px);
    width: auto !important;
  }

  .oh-customers__img {
    max-height: var(--oh-height-desktop, 78px);
  }
}

.oh-customers__empty {
  text-align: center;
  color: rgba(5,0,34,0.5);
  font-style: italic;
}
