/* Auto Logo Slider Pro - frontend */
.als-slider{
  --als-height: 100px;
  --als-gap: 24px;
  --als-speed: 40s;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.als-track{
  display:flex;
  align-items:center;
  gap: var(--als-gap);
  width:max-content;
  animation: als-scroll var(--als-speed) linear infinite;
  will-change: transform;
}
.als-slider[data-pause="true"] .als-track:hover{ animation-play-state: paused; }
.als-slide{ flex:0 0 auto; height: var(--als-height); display:flex; align-items:center; justify-content:center; }
.als-slide img{ height: var(--als-height); width:auto; display:block; object-fit:contain; }
@keyframes als-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%);} }

/* Kill third-party lazy spinners */
.als-slide img{ background: none !important; }
.als-link{ display:inline-flex; }
.als-link:focus-visible{ outline:2px solid currentColor; outline-offset:4px; }
