* { -webkit-tap-highlight-color: transparent; }
body { margin: 0; background: #0d0d0f; }

@keyframes eq {
  0% { height: 20%; }
  100% { height: 100%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinslow { to { transform: rotate(360deg); } }
@keyframes fadein {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.apk-range {
  -webkit-appearance: none;
  height: 3px;
  border-radius: 3px;
  background: #444;
  outline: none;
}
.apk-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #33B5E5;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(51,181,229,0.6);
}
.apk-range::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
  background: #33B5E5;
  cursor: pointer;
}

::-webkit-scrollbar { width: 0; }