.plg-uikit-loading {
  position: relative;
  min-height: 48px; /* чтобы не схлопывалось */
}

/* полупрозрачный фон сверху */
.plg-uikit-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  z-index: 99;
}

/* сам спиннер */
.plg-uikit-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  margin-left: -13px;
  border: 3px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: plg-uikit-spin 0.7s linear infinite;
  z-index: 100;
}

@keyframes plg-uikit-spin {
  to {
    transform: rotate(360deg);
  }
}
