/* Chips horizontal */
.chips{
  display:flex;
  gap:10px;
  align-items:center;
  overflow-x:auto;
  white-space:nowrap;
  padding:10px 2px 14px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.chips::-webkit-scrollbar{height:8px}
.chips::-webkit-scrollbar-thumb{
  background: rgba(10,20,40,.12);
  border-radius:999px
}

.chip{
  scroll-snap-align: start;
  border:1px solid rgba(10,20,40,.12);
  background: rgba(255,255,255,.62);
  padding:9px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  user-select:none;
}

.chip.is-active{
  border-color: rgba(73,179,255,.45);
  box-shadow: 0 10px 28px rgba(73,179,255,.18);
  background: linear-gradient(135deg, rgba(73,179,255,.20), rgba(124,92,255,.14));
}