pragma-loader-ui {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
pragma-loader-ui #modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
pragma-loader-ui #content {
  width: 25rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
pragma-loader-ui #content svg {
  width: 3rem;
  height: 3rem;
}
pragma-loader-ui #content button {
  background: white;
}
pragma-loader-ui #content p {
  padding: 1rem;
  margin: 0;
  text-align: center;
  color: var(--c-text);
}
@media screen and (max-width: 25rem) {
  pragma-loader-ui #content {
    width: 100%;
  }
}
