.abp-block-area {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

  .abp-block-area.abp-block-area-busy:before {
    content: "";
    width: 80px;
    height: 80px;
    background-image: var(--lpx-logo-icon);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: calc(50% + 10px);
    transform: translate(-50%, -50%) scale(1);
    animation: poopPulse 1s infinite ease-in-out;
    border: none !important;
    transform-origin: center center;
  }

@keyframes poopPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
