.bg-iframe,
.dz-iframe-box {
  position: relative;
}
.bg-iframe iframe,
.dz-iframe-box iframe {
  position: relative;
  z-index: 1;
}
.dz-iframe-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #334155;
  font-size: 15px;
  text-align: center;
  padding: 16px;
}
.dz-iframe-loading[hidden] {
  display: none !important;
}
.dz-iframe-loading .loader {
  border: 5px solid #e2e8f0;
  border-top-color: #7c51d1;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  animation: dzIframeSpin 0.8s linear infinite;
}
@keyframes dzIframeSpin {
  to {
    transform: rotate(360deg);
  }
}
