.universal-loader-container {
  inset: 0px;
  /* Margins is something that sometimes can be styled out with a lot
  * of specificity (and target descendants). We need to force an override with !important.
  */
  margin: 0 !important;
}
.universal-loader-target-mask {
  inset: 0px;
  background: #fff;
}
.universal-loader-target-inner {
  inset: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.universal-loader-animate-spin {
  animation: universal_loader_spin 1s linear infinite;
}

@keyframes universal_loader_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
