<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.loadingwrapper{
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
  display: none;
  flex: 0 1 auto;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  z-index: 2500;
}

.loadingwrapperGrid{
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  /*flex: 0 1 auto;*/
  /*flex-direction: column;*/
  /*flex-grow: 1;*/
  /*flex-shrink: 0;*/
  align-items: center;
  justify-content: center;
  z-index: 2500;
}

.ball-clip-rotate&gt;div {
  border-radius: 100%;
  margin: 2px;
  border: 6px solid #fff;
  border-bottom-color: transparent;
  height: 66px;
  width: 66px;
  background: 0 0!important;
  display: inline-block;
  -webkit-animation: rotate 1.5s 0s linear infinite;
  animation: rotate 2s 0s linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(.6);
    transform: rotate(180deg) scale(.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
</pre></body></html>