/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .keepscrolling .placeholder {
     display: none;
 }

 .keepscrolling.fetching .placeholder {
     display: block;
 }

 .keepscrolling .spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

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