@charset "UTF-8";
.loaderSpinner {  
/*top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
} 

.c-spinner-sgv::after {
      content: '';
      position: absolute !important;
      top: -100%;
      left: calc(50% - (1em / 2));
      margin-top: 50%;
      display: block;
      width: 1em;
      height: 1em;
      border-width: 0.125em;
      border-style: solid;
      border-color: 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); }
  }
  


  