/* =====================================================================================
 *  Walk-In Kiosk (.ks) — PUBLIC / ANONYMOUS full-screen tablet self-check-in.
 *  Verbatim Signal-design translation of docs/design/queue/Walk-In Kiosk.dc.html.
 *  Tokens are applied via the rootStyle data-bind (light only, per the design);
 *  this file carries the font @import + scoped reset/keyframes only.
 * ===================================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

.ks-root * { box-sizing: border-box; }
.ks-root ::selection { background: #C2CCFB; }
.ks-root button { font-family: 'Plus Jakarta Sans', sans-serif; }

@keyframes ks-pop   { 0% { transform: scale(.96); opacity: 0 } 100% { transform: scale(1); opacity: 1 } }
@keyframes ks-pulse { 0%, 100% { opacity: 1 } 50% { opacity: .5 } }
@keyframes ks-rise  { 0% { transform: translateY(10px); opacity: 0 } 100% { transform: translateY(0); opacity: 1 } }
