* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; height: 100%; overflow: hidden; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
::-webkit-scrollbar-track { background: transparent; }

@keyframes iosOpen {
  0%   { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes iosClose {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.4); opacity: 0; }
}
.ios-open  { animation: iosOpen 0.28s cubic-bezier(0.2,0.8,0.2,1) both; }
.ios-close { animation: iosClose 0.26s cubic-bezier(0.4,0,0.6,1) both; }

.tabular-nums { font-variant-numeric: tabular-nums; }

select option { background: #1a1a1a; color: #fff; }
</parameter>