.spinner-loader {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(farthest-side,#f1437a 94%,#0000) top/6.4px 6.4px no-repeat,
         conic-gradient(#0000 30%,#f1437a);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 6.4px),#000 0);
  animation: spinner-c7wet2 0.6s infinite linear;
}

@keyframes spinner-c7wet2 {
  100% {
     transform: rotate(1turn);
  }
}