$default-background-color: var(--main-elements);
$default-width-icon: 44;
$default-height-icon: 44;

.qb-loader {
  animation: spin 2s linear infinite;
  svg path {fill: $default-background-color};
  min-width: $default-width-icon;
  min-height: $default-height-icon;
}

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