#accounts-window-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

#accounts-window-loading::after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border: 3px solid #C08FFF;
  border-radius: 20px;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0 100%, 0 20%, 50% 50%);
  -webkit-clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0 100%, 0 20%, 50% 50%);
  animation: loading-rotate 1.5s infinite;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
}
#onetap_google_intermediate_iframe {
  border-radius: 8px;
}
@keyframes loading-rotate {
  from {
    transform: rotate(0deg);
  } to {
    transform: rotate(360deg);
  }
}
