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

.brx-popup-content {
  overflow: hidden;
}
.brx-popup-backdrop {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

:root {
  --balloon-border-radius: 2px;
  --balloon-color: rgba(16, 16, 16, 0.95);
  --balloon-text-color: #fff;
  --balloon-font-size: 12px;
  --balloon-move: 4px;
}

*:focus {
  outline: none !important;
}

/* width */
::-webkit-scrollbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 8px;
  background: transparent;
  border-radius: 0px;
  opacity: 0;
}

/* Track */
::-webkit-scrollbar-track {
  position: absolute;
  opacity: 0;
  z-index: 1;
  background: transparent;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity 0.5s 0.5s ease-out;
  transition: opacity 0.5s 0.5s ease-out;
}

/* Handle */
::-webkit-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 8px;
  background-color: #EEEEEE;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -3px;
  left: -3px;
  bottom: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #DADADA;
}