/* BlockGlow: bg-uoz7llmjv */
.loader{
  position: relative;
}

.loader:before{
  content: 'Loading Results';
  background: #dcf0ff;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--berkshire-swash) !important;
    color: #646603;
    font-size: 20px;
  left: 0;
  top: 0;
}

/* Animated dots */
.loader:after {
  content: '';
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(95px, -50%);
  width: 24px;
  text-align: left;
  color: #646603;
  font-size: 20px;
  font-family: inherit;
  animation: loadingDots 1.5s infinite steps(4);
}

@keyframes loadingDots {
  0% {
    content: '';
  }
  25% {
    content: '.';
  }
  50% {
    content: '..';
  }
  75% {
    content: '...';
  }
  100% {
    content: '';
  }
}