@charset "UTF-8";

.error {
	color: var(--danger);
}
#loader_main {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#ffa516 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#ffa516);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% { transform: rotate(1turn); }
}
#overlay {
  background: rgba(255,255,255,0.75);
  position: fixed;        /* important */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;

  display: flex;
  align-items: center;    /* vertical center */
  justify-content: center;/* horizontal center */
}
.hide {
	display: none;
}