#loader {
  position: fixed;
  top: 20%;
  left: 40%;
  width: 200px;
  height: 200px;
  margin: -20px;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 9999;
  /*
  border: 10px solid #ccc;
  border-top-color: #2196f3;
  */
}
@keyframes spin {
  to { transform: rotate(360deg); }
}