:root {
    font-size: 12px;
}

/* LOADING SCREEN */
.loading-circle {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* LOADING SCREEN end */