/*
 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.0
 Text Domain:  bricks
*/

:is( .brxe-image, img) {
	user-select:none
}

:is(input, select, textarea){
  outline: none !important;
}

:is([disabled]){
	opacity:0.5!important
}

body{
	    --ss-border-radius: var(--std-border-radius)
}


/* Animação de entrada */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação de saída */
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Aplica ao elemento */
.brxe-woocommerce-notice [class*=woocommerce] {
  animation: fadeInUp 0.2s ease 0s forwards,
    fadeOutDown 0.2s ease 5s forwards;
}