/*
 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-background-primary path{
  fill: var(--light)!important;
}

.bricks-color-secondary path{
    fill: var(--color-3)!important;

}


/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-2) var(--light-30);
}

/* WebKit/Blink */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-5);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb {
  background: var(--color-2);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--light);
}