/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.bricks-button {width: 250px; max-width: 100%; transition: all 0.3s ease;}
.pswp__content {border: 21px solid #FFF;}

.texto-movimiento-1 { white-space: nowrap; width: 100%;}
.texto-movimiento-1 p { display: inline-block; padding-left: 20%; animation: scroll-left 1300s linear infinite; margin: 0;}

/* Animación de derecha a izquierda */
@keyframes scroll-left {
  0% {
    transform: translateX(0); 
  }
  100% {
    transform: translateX(-100%);
  }
}


@media (max-width: 767px) {
	.bricks-button {width: 100%;}
}