@keyframes spin {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}

.wtps-loadButton {
    
    .wtps-loadButton__spinner {

        display: none;

        &.active {
            display: flex;
            width: var(--buttonglobalfontsize, 16px);
            animation: spin 1s linear infinite;
            fill: currentColor;
        }
    }
}