/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 16 2025 | 19:50:52 */
.ticker-container {
  width: 100%;
  overflow: hidden;
  background:transparent!important;
  border: 0px solid #ccc!important;
  white-space: nowrap;
  box-sizing: border-box;
  padding-bottom: 5px;
  padding-top: 5px;
  font-family: sans-serif;
  font-size: 16px;
  font-family: Poppins, sans-serif!important;
}

/* Estático por defecto */
.ticker-text {
  display: inline-block;
  transform: none;
  animation: none;
}

/* Solo animado en resoluciones móviles */
@media screen and (max-width: 768px) {
  .ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 15s linear infinite;
  }

  @keyframes scroll-text {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}