.sucloading {
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top: 8px solid #0463fb;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.c, .sucloading {
    display: flex;
    justify-content: center; /_ Horizontally center the items _/
