.wv-ScrollLoader {
   position: fixed;
   inset: 0;
   z-index: 9999999;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: white;

   .-loader {
      width: 5.208vw;
      height: 5.208vw;
      min-width: 48px;
      min-height: 48px;
      border: 3px solid black;
      border-bottom-color: transparent;
      border-radius: 50%;
      display: inline-block;
      box-sizing: border-box;
      animation: wv-ScrollLoader-loader-spin 1s linear infinite;      
   }

}

@keyframes wv-ScrollLoader-loader-spin {
    from { rotate: 0deg }
    to { rotate: 360deg }
}