/*  FONTS  */
/*  COLORS  */
/*  BORDERS  */
/*  PADDING  */
/*  BOX SHADOW  */
/*  ICONS  */
.loading-wrapper {
  display: none;
}

.loading-wrapper.visible {
  display: flex;
  justify-content: center;
}

.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2F3F4C;
  --_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: loader 1s infinite linear;
}

@keyframes loader {
  to {
    transform: rotate(1turn);
  }
}

/*# sourceMappingURL=loading-icon.css.map */