#bp-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bp-color);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bp-default-loader {
  display: flex;
  gap: 10px;
}

.brick {
  width: 20px;
  height: 20px;
  background: #ff4d4d;
  animation: bp-bounce 0.6s infinite alternate;
}

/* .bp-media{

} */


.brick:nth-child(2) {
  animation-delay: 0.2s;
}

.brick:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bp-bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-20px);
  }
}

#bp-media-url {
  display: none;
  border: none;
}