/* Base styles for ZB Beloftebalk */
/* style.css */

:root {
  /* default-waarden, kunnen overschreven worden */
  --zb-text-color: #777777;
  --zb-icon-color: #999999;
  --zb-speed: 30s;
}

.belofte-scroll-plugin {
  color: var(--zb-text-color);
  max-width: 100%;
  width: 100%;
  margin: 1em auto;
  overflow: hidden;
  background: transparent;
  font-family: sans-serif;
  font-size: 1rem;
}

.belofte-scroll-plugin i {
  color: var(--zb-icon-color);
}

.belofte-scroll-track {
  white-space: nowrap;
}

.belofte-scroll-content {
  display: inline-block;
  animation: belofte-scroll var(--zb-speed) linear infinite;
}

.belofte-scroll-content span {
  display: inline-block;
  padding-right: 2rem;
}

@keyframes belofte-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
