* {
  box-sizing: border-box;
}

html {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  flex-flow: column nowrap;
  align-items: stretch;
  background-color: var(--bg-base);
  color: var(--fg-primary);
  font-family: system-ui, sans-serif;
  font-size: 14px;
}
body s-header {
  display: flex;
  position: relative;
  width: 100%;
  height: 4rem;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  background-color: var(--bg-header);
  padding: 0;
  margin: 0;
}
body s-header t-platform {
  display: block;
  position: relative;
  width: 4rem;
  height: 100%;
  background-color: var(--bg-header);
  cursor: pointer;
}
body s-header t-platform:hover {
  background-color: var(--bg-hover);
}
body s-header t-context {
  display: flex;
  position: relative;
  width: 25%;
  height: 100%;
  min-width: 10rem;
  max-width: 20rem;
  flex-flow: column nowrap;
  align-items: stretch;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-header);
  color: var(--fg-muted);
}
body s-header t-context:hover {
  background-color: var(--bg-hover);
  color: var(--fg-primary);
}
body s-header t-system {
  display: flex;
  position: relative;
  flex: 1;
  height: 100%;
  flex-flow: row nowrap;
  justify-content: end;
  align-items: stretch;
  background-color: var(--bg-header);
  overflow: hidden;
}
body s-header t-user {
  display: flex;
  position: relative;
  width: 25%;
  height: 100%;
  min-width: 10rem;
  max-width: 20rem;
  flex-flow: row nowrap;
  align-items: stretch;
  flex-shrink: 0;
  background-color: var(--bg-header);
  overflow: hidden;
  cursor: pointer;
}
body s-header t-user:hover {
  background-color: var(--bg-hover);
}
body s-header t-user img {
  display: flex;
  position: relative;
  width: 4rem;
  height: 100%;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 2rem;
  color: var(--fg-muted);
}
body s-header t-user section {
  display: flex;
  position: relative;
  width: auto;
  height: 100%;
  padding: 0.5rem;
  margin: 0;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: start;
  flex-grow: 1;
}
body s-header t-user section span:first-child {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  line-height: 1em;
}
body s-header t-user section span:last-child {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1em;
}
body s-main {
  display: flex;
  position: relative;
  flex: 1;
  padding: 0;
  margin: 0;
  overflow: auto;
  color: var(--fg-muted);
  align-items: flex-start;
}
body s-main s-nav {
  display: flex;
  position: relative;
  width: 4rem;
  height: 100%;
  flex-flow: column nowrap;
  align-items: stretch;
  flex-shrink: 0;
  background-color: var(--bg-sidebar);
}
body s-main s-activity {
  display: flex;
  position: relative;
  width: 25%;
  height: 100%;
  min-width: 10rem;
  max-width: 20rem;
  flex-flow: column nowrap;
  align-items: stretch;
  flex-shrink: 0;
  padding: 0.5rem 0 0.5rem 0;
  background-color: var(--bg-surface);
  overflow: hidden;
}
body s-main s-activity s-block {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 0.75rem 0 0 0;
  font-weight: bold;
}
body s-main s-activity s-block:first-child {
  margin: 0;
}
body s-main s-activity b-ascend {
  display: flex;
  position: relative;
  width: auto;
  height: 2rem;
  flex-flow: row nowrap;
  justify-content: start;
  align-items: center;
  padding: 0 0.75rem 0 0.75rem;
  margin: 0 0.5rem 0.125rem 0.5rem;
  border-radius: 0.5rem;
  opacity: 0.5;
  cursor: pointer;
}
body s-main s-activity b-ascend:hover {
  opacity: 1;
  background-color: var(--bg-hover);
}
body s-main s-activity s-entry {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  flex-flow: column nowrap;
  align-items: stretch;
}
body s-main s-activity s-group {
  display: flex;
  position: relative;
  width: auto;
  height: auto;
  flex-flow: column nowrap;
  align-items: stretch;
  padding: 0 0 0 0.75rem;
}
body s-main s-content {
  display: flex;
  position: relative;
  flex: 1;
  height: 100%;
  flex-flow: column nowrap;
  align-items: stretch;
  background-color: var(--bg-base);
  overflow: hidden;
}
