@import url("https://fonts.googleapis.com/icon?family=Material+Icons");@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
#SuperLocalFanModule-container,
#SuperLocalFan-root {
  font-family: "Nunito", sans-serif;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multiline_truncate {
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.preview strong {
  font-weight: 700;
}
.preview ul {
  list-style: initial;
}
.preview ul li {
  list-style-type: inherit;
}
.preview ol li {
  list-style-type: inherit;
}
.safe-height {
  height: calc(100dvh - env(safe-area-inset-bottom) - env(safe-area-inset-top));
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  transition: visibility 0.3s ease;
}
::-webkit-scrollbar-track {
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.scrollbar-on-hover {
  overflow: hidden;
  scrollbar-gutter: stable;
}
.scrollbar-on-hover:hover {
  overflow-y: auto;
}
.thin-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}