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

body{
	overflow-x:hidden;
}

body{
	background-image: url(//petranca.ch/wp-content/uploads/bg-gradient.svg);
	background-attachment: fixed;
	background-size: cover;
}


body,
.ptr-bg-animation{
  animation: changeColor 10s infinite;
}

body::-webkit-scrollbar {
	width: 5px;
}
body::-webkit-scrollbar-track {
	animation: changeColor 10s infinite;
}
body::-webkit-scrollbar-thumb {
	background-color: var(--bricks-color-kfbeqt);   
}

::selection {
  color: white;
  background: var(--bricks-color-kfbeqt);
}

@keyframes changeColor {
  0%,100% {
    background-color: var(--bricks-color-ttvpbl);
  }
  33% {
    background-color: var(--bricks-color-cmeyts);
  }
  66% {
    background-color:var(--bricks-color-rsbsud); 
  }
}

address{
	font-style:normal;
}
#spotlight {
    position: fixed;
	pointer-events:none;
    width: 100%;
    height: 100%;
    inset:0;
    background: radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), #48e9e310 0px, #373b4715 200px);
}