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

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