/*
 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
*/


/*** 
Pulse Effect
=========================================================== ***/

.pulse:hover,
.pulse:focus {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em transparent
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--primary-trans-20)
    }
}

[class*=btn--] {
    transition: all .3s ease
}

[class*=btn--]:hover,
[class*=btn--]:focus {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em transparent
}