/** Shopify CDN: Minification failed

Line 22:12 Expected identifier but found whitespace
Line 22:25 Unexpected "4s"
Line 26:2 Unexpected "0%"
Line 29:2 Unexpected "50%"
Line 32:2 Unexpected "100%"

**/

/* Para cambiar el color de fondo del título H1 de la página Nosotros */

#shopify-section-template--23937578238294__main {
  background-color: #ffffff;
}



/* Para activar el parpadeo de color en la barra de anuncios */
/*.utility-bar {
  background-color: black; /* Color inicial */
  animation: colorChange 4s infinite; /* Animación de 4 segundos que se repite infinitamente */
}

@keyframes colorChange {
  0% {
    background-color: black;
  }
  50% {
    background-color: #02a9c4;
  }
  100% {
    background-color: black;
  }
}


.ubicacion-envios {
  text-align: center;
}


/* Para animar el degradado de la barra superior de anuncios */
.announcement-bar__message span {
  display: inline-block;
  background: linear-gradient(90deg, #444 0%, #484848 25%, #aaa 50%, #484848 75%, #444 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grayscaleGradient 3s linear infinite;
}


@keyframes grayscaleGradient {
  0% {
    background-position: 200% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
