.scroll-horizontal {
  height: calc(var(--height) * 1px);
  border: 0px solid #ffbe9a;
  border-width: calc(var(--border) * 1px);
  border-color: var(--borderColor);
  border-radius: 8px;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.scroll-horizontal .animation {
  animation: item_horizontal_move var(--duration) linear infinite;
  display: flex;
  white-space: nowrap;
  align-items: center;
}
@keyframes item_horizontal_move {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.j-scroll-vertical-1 {
  height: calc(var(--height) * 1px);
  border: 0px solid #ffbe9a;
  border-width: calc(var(--border) * 1px);
  border-color: var(--borderColor);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.j-scroll-vertical-1 .animation {
  animation: item_move var(--duration) linear infinite;
}
@keyframes item_move {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}
