/*
 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 {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: url("https://www.skipbooker.co.uk/wp-content/uploads/2026/04/skip-booker-banner-shape-scaled.png");
  background-position: 50% 0;
  background-repeat: no-repeat;
}

body::after {
  content: "";
  position: fixed;
  width: 35rem;
  height: 20rem;
  top: -2.25rem;
  right: -12rem;
  z-index: -1;

  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--linear-orange-one) 70%, transparent) 0%,
    color-mix(in srgb, var(--linear-orange-two) 50%, transparent) 45%,
    transparent 100%
  );

  -webkit-filter: blur(120px);
  filter: blur(120px);
  
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;

  opacity: 0.85;
  border-radius: 50%;
  pointer-events: none;
}