:root{
  --shadow-primary: rgba(0,0,0,0.2)
}

#load-page{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: var(--shadow-primary);
}
.loader-spin{
  width: 50px;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 50%;
  background: #0096cc;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

@media (max-width: 500px) {
  .loader-spin{
    padding: 4px;
    width: 35px;
  }
}