/* [project]/apps/web/src/styles/shell.css [app-client] (css) */
.app {
  --side-w: 248px;
  grid-template-columns: var(--side-w) 1fr;
  height: 100vh;
  display: grid;
  overflow: hidden;
}

.app-main {
  flex-direction: column;
  min-width: 0;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.app .tb-logo {
  display: none;
}

.side {
  border-right: 1px solid var(--line-soft);
  background: none;
  flex-direction: column;
  padding: 16px 12px 12px;
  display: flex;
  overflow: hidden;
}

.brand {
  align-items: center;
  gap: 10px;
  padding: 4px 8px 16px;
  display: flex;
}

.side-profile {
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  flex-direction: column;
  align-items: center;
  margin: 0 2px 10px;
  padding: 2px 8px 16px;
  display: flex;
}

.sp-avwrap {
  margin-bottom: 11px;
  position: relative;
}

.sp-av {
  color: #fff;
  background: linear-gradient(145deg, #2c2c2c, #111);
  border-radius: 50%;
  place-items: center;
  width: 56px;
  height: 56px;
  font-size: 19px;
  font-weight: 700;
  display: grid;
}

.sp-gear {
  background: var(--gold);
  color: #1a1400;
  border: 2.5px solid var(--sidebar);
  width: 25px;
  height: 25px;
  transition: filter .18s var(--ease);
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  bottom: -3px;
  right: -3px;
}

.sp-gear svg {
  stroke-width: 2px;
  width: 13px;
  height: 13px;
}

.sp-gear:hover {
  filter: brightness(1.06);
}

.sp-nm {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.sp-rl {
  color: var(--faint);
  margin-top: 3px;
  font-size: 11.5px;
}

.nav {
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  flex-direction: column;
  flex: 1;
  gap: 3px;
  margin-top: 2px;
  display: flex;
  overflow-y: auto;
}

.nav::-webkit-scrollbar {
  width: 6px;
}

.nav::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.nav-sec {
  color: var(--faint);
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 15px 10px 6px;
  font-size: 9.5px;
  font-weight: 700;
}

.nav-item {
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: background-color .18s var(--ease), color .18s var(--ease);
  border-radius: 11px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.nav-item svg {
  stroke-width: 1.85px;
  opacity: .6;
  width: 18px;
  height: 18px;
  transition: opacity .18s var(--ease);
  flex: none;
}

.nav-item:hover {
  color: var(--ink);
  background: rgba(20, 20, 20, .043);
}

.nav-item:hover svg {
  opacity: 1;
}

.nav-item.active {
  color: var(--ink);
  background: #f0f0f2;
  font-weight: 700;
}

.nav-item.active svg {
  color: var(--gold-deep);
  opacity: 1;
}

.nav-item .count {
  color: var(--muted);
  text-align: center;
  background: rgba(20, 20, 20, .05);
  border-radius: 20px;
  min-width: 20px;
  margin-left: auto;
  padding: 1px 7px;
  font-size: 10.5px;
  font-weight: 700;
}

.nav-item.active .count {
  color: var(--ink);
  background: rgba(20, 20, 20, .1);
}

.nav-parent {
  width: 100%;
}

.grp-chev {
  opacity: .55;
  width: 15px;
  height: 15px;
  transition: transform .22s var(--ease);
  margin-left: auto;
}

.nav-group.open > .nav-parent {
  color: var(--ink);
}

.nav-group.open > .nav-parent .grp-chev {
  transform: rotate(180deg);
}

.nav-children {
  transition: grid-template-rows .24s var(--ease);
  grid-template-rows: 0fr;
  display: grid;
}

.nav-group.open > .nav-children {
  grid-template-rows: 1fr;
}

.nav-children-in {
  min-height: 0;
  overflow: hidden;
}

.nav-child {
  color: var(--muted);
  padding-left: 38px;
  font-size: 12.5px;
  font-weight: 500;
}

.nav-child:before {
  content: "";
  background: var(--faint);
  width: 4px;
  height: 4px;
  transition: background .18s var(--ease);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateY(-50%);
}

.nav-child:hover {
  color: var(--ink);
  background: rgba(20, 20, 20, .043);
}

.nav-child.active {
  color: var(--ink);
  font-weight: 600;
}

.nav-child.active:before {
  background: var(--gold);
}

.side-foot {
  border-top: 1px solid var(--line-soft);
  margin-top: 6px;
  padding-top: 10px;
}

.cr-card {
  background: linear-gradient(160deg, #1c1c1c, #272727);
  border-radius: 14px;
  padding: 13px 14px;
}

.cr-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  display: flex;
}

.cr-lbl {
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.cr-val {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.cr-bar {
  background: rgba(255, 255, 255, .14);
  border-radius: 20px;
  height: 5px;
  margin-bottom: 11px;
  overflow: hidden;
}

.cr-bar span {
  background: linear-gradient(90deg, #f3c300, #ffda4a);
  border-radius: 20px;
  height: 100%;
  display: block;
}

.cr-btn {
  background: var(--gold);
  color: #1a1400;
  width: 100%;
  transition: filter .2s var(--ease);
  border-radius: 9px;
  padding: 7px;
  font-size: 12px;
  font-weight: 700;
}

.cr-btn:hover {
  filter: brightness(1.06);
}

.brand {
  align-items: center;
}

.s-logowrap {
  flex: auto;
  align-items: center;
  min-width: 0;
  height: 30px;
  display: flex;
  position: relative;
}

.brand .s-logo {
  width: auto;
  height: 21px;
  color: var(--ink);
  flex: none;
  transition: opacity .25s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

.brand .s-logo-mini {
  opacity: 0;
  flex: none;
  width: 30px;
  height: 30px;
  transition: opacity .25s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand .s-pin {
  width: 30px;
  height: 30px;
  color: var(--faint);
  transition: background-color .18s var(--ease), color .18s var(--ease);
  border-radius: 9px;
  flex: none;
  place-items: center;
  margin-left: auto;
  display: grid;
}

.brand .s-pin:hover {
  background: var(--panel-2);
  color: var(--ink);
}

.brand .s-pin svg {
  width: 16px;
  height: 16px;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

.app:not(.unpinned) .brand .s-pin {
  color: var(--gold-deep);
}

.app.unpinned .brand .s-pin svg {
  transform: rotate(45deg);
}

.app {
  padding-left: 248px;
  transition: padding-left .32s cubic-bezier(.4, 0, .2, 1);
  grid-template-columns: 1fr !important;
}

.app > .main, .app > .app-main {
  grid-column: 1;
  min-width: 0;
}

.app .side {
  z-index: 60;
  width: 248px;
  transition: width .32s cubic-bezier(.4, 0, .2, 1), box-shadow .32s cubic-bezier(.4, 0, .2, 1), background-color .3s var(--ease);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--sidebar) !important;
  border-right: none !important;
}

.app.unpinned {
  padding-left: 64px;
}

.app.unpinned .side {
  width: 64px;
}

.app.unpinned .side:hover {
  width: 248px;
  box-shadow: 0 24px 64px -22px rgba(0, 0, 0, .4);
}

.nav-item {
  white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease), font-size .24s cubic-bezier(.4, 0, .2, 1), padding .3s cubic-bezier(.4, 0, .2, 1), gap .26s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.nav-child {
  white-space: nowrap;
  overflow: hidden;
}

.sp-nm, .sp-rl {
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: opacity .2s var(--ease);
  overflow: hidden;
}

.sp-gear {
  transition: opacity .18s var(--ease);
}

.side-foot {
  transition: opacity .22s var(--ease);
}

.cr-card {
  overflow: hidden;
}

.cr-top {
  white-space: nowrap;
  flex-wrap: nowrap;
}

.cr-lbl, .cr-val, .cr-btn {
  white-space: nowrap;
}

.app.unpinned .side:hover .side-foot {
  transition: opacity .2s var(--ease) .16s;
}

.app.unpinned .side:not(:hover) .s-logo {
  opacity: 0;
}

.app.unpinned .side:not(:hover) .s-logo-mini {
  opacity: 1;
}

.app.unpinned .side:not(:hover) .s-pin {
  display: none;
}

.app.unpinned .side:not(:hover) .sp-nm, .app.unpinned .side:not(:hover) .sp-rl, .app.unpinned .side:not(:hover) .sp-gear {
  opacity: 0;
}

.app.unpinned .side:not(:hover) .nav-item {
  font-size: 0;
}

.app.unpinned .side:not(:hover) .nav-item .count {
  display: none;
}

.app.unpinned .side:not(:hover) .nav-sec {
  font-size: 0;
}

.app.unpinned .side:not(:hover) .grp-chev {
  display: none;
}

.app.unpinned .side:not(:hover) .nav-children {
  grid-template-rows: 0fr !important;
}

.app.unpinned .side:not(:hover) .side-foot {
  opacity: 0;
  pointer-events: none;
}

.sp-avwrap {
  justify-content: center;
  align-items: center;
  height: 56px;
  display: flex;
}

.sp-av {
  transition: width .32s cubic-bezier(.4, 0, .2, 1), height .32s cubic-bezier(.4, 0, .2, 1), font-size .3s cubic-bezier(.4, 0, .2, 1);
}

.app.unpinned .side:not(:hover) .sp-av {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.sp-av, .sp-nm, .nav-sec {
  font-weight: 600;
}

.nav-item {
  font-weight: 500;
}

.nav-item.active, .nav-item .count {
  font-weight: 600;
}

.nav-child {
  font-weight: 400;
}

.nav-child.active, .cr-lbl {
  font-weight: 500;
}

.cr-val {
  font-weight: 700;
}

.cr-btn {
  font-weight: 600;
}

@media (max-width: 820px) {
  .app, .app.unpinned {
    padding-left: 0 !important;
  }
}

/*# sourceMappingURL=apps_web_src_styles_shell_8c06fe1b.css.map*/