/*
 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 {
  --focus-border-color: #ffc65c;
  --focus-background-color: var(--primary-ultra-light);
}
body.bricks-is-frontend.bricks-is-frontend :focus-visible {
    background-color: var(--focus-background-color);
}

.text--gradient {
  --gradient-top-color: #66D49F;
  --gradient-bottom-color: #81B3ED;

  background: var(--gradient-top-color, var(--primary)); /* fallback */
  background: linear-gradient(to top, var(--gradient-bottom-color, #81B3ED) 0%, var(--gradient-top-color, #66D49F) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}