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


 /* Root Settings */
:root {
	--border-radius: 4rem;
}

.brxe-image {
	border-radius: var(--border-radius);
}


.accent-heading{
	background: linear-gradient(90deg, #FFD6FF, #E7C6FF, #C8B6FF, #B8C0FF, #BBD0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
	font-weight: 500;
}

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