/* css/modules/swap.css: the .swap-* module — split out of css/app.css by #360's sibling stage (#362).
   Load order is core.css, then every modules/*.css alphabetically; rules here
   are in their original relative order, and no selector in this file appears in
   any other (asserted in tests/css-split-check.js). */

/* swap picker */
.swap-opt{width:100%;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 14px;border:1px solid var(--line);border-radius:11px;background:#fff;margin-bottom:8px;cursor:pointer;font-family:var(--font)}
.swap-opt:hover{border-color:var(--blue);background:var(--panel-2)}
.swap-opt.is-cur{border-color:var(--blue);background:#e8effb}
.swap-opt.is-bad{opacity:.55;cursor:not-allowed}
.swap-opt__l{display:flex;flex-direction:column;text-align:left}
.swap-opt__l b{font-weight:800;font-size:15px}
.swap-opt__l small{color:var(--muted);font-weight:700;font-size:12px}
.swap-tag{font-size:11px;font-weight:800;color:var(--muted-2)}
.swap-opt.is-cur .swap-tag{color:var(--blue)}
