/* Container the marquee will run inside */
.vm-marquee {
  overflow: hidden;
  position: relative;
}

/* The belt (created automatically if you don’t supply one) */
.vm-belt {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

/* Individual items. You can override in your theme. */
.vm-item {
  height: 80px;
  margin-bottom: 12px; /* default; can be overridden by data-gap */
  background: #4f46e5;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
