.sp-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid #0073aa;
  border-radius: 50%;
  animation: sp-spin 0.6s linear infinite;
  vertical-align: middle;
}

.sp-added {
  color: #fff !important; /* Forces white text */
}

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