@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid #e8e8e8;
  border-top-color: #bfe870;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
}

.badge-pulse { animation: pulse 1.5s ease-in-out infinite; }

::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #c4c9b4; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #747967; }
