body .ls-badge-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

body .ls-badge-marquee {
  width: 100%;
  overflow: hidden;
}

body .ls-badge-track {
  display: flex;
  width: max-content;
  animation: lsBadgeScroll var(--ls-badge-speed, 42s) linear infinite;
  will-change: transform;
}

body .ls-badge-set {
  display: flex;
  align-items: center;
  gap: var(--ls-badge-gap, 50px);
  padding-right: var(--ls-badge-gap, 50px);
  flex: 0 0 auto;
}

body .ls-badge-item {
  width: auto;
  min-width: auto;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 8px;
}

body .ls-badge-icon {
  width: var(--ls-badge-size, 74px);
  height: var(--ls-badge-size, 74px);
  display: flex;
  align-items: center;
  justify-content: center;
}

body .ls-badge-text {
  max-width: var(--ls-badge-size, 74px);
}

body .ls-badge-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.55;
}

body .ls-badge-text {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(24, 38, 70, 0.62);
  max-width: 95px;
}

body .ls-badge-marquee-wrap::before,
body .ls-badge-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 74px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

body .ls-badge-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

body .ls-badge-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

body .ls-badge-marquee-wrap.is-pausable:hover .ls-badge-track {
  animation-play-state: paused;
}

body .ls-badge-marquee-wrap.is-reverse .ls-badge-track {
  animation-direction: reverse;
}

@keyframes lsBadgeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  body .ls-badge-marquee-wrap {
    padding: 10px 0;
  }

  body .ls-badge-set {
    gap: 34px;
    padding-right: 34px;
  }

  body .ls-badge-item {
    width: 72px;
    min-width: 72px;
  }

  body .ls-badge-icon {
    width: 32px;
    height: 32px;
  }

  body .ls-badge-text {
    font-size: 11px;
  }

  body .ls-badge-marquee-wrap::before,
  body .ls-badge-marquee-wrap::after {
    width: 36px;
  }
}
