@charset "UTF-8";
.loaderSpinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}


.c-spinner-sgv::after {
  content: '';
  position: absolute;
  top: 0; /* Antes estaba en -100% */
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 1em;
  border: 0.125em solid currentColor;
  border-radius: 9999px;
  border-right-color: transparent;
  border-top-color: transparent;
  animation: spinAround 500ms infinite linear;
}

    
    @keyframes spinAround {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  


  