.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: #ffffff;
  border-right: 1px solid var(--border-base);
  z-index: 50;
}

.sidebar-inner {
  height: 100vh;
  min-height: 1024px;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.sidebar-top {
  width: 100%;
  flex: 0 0 auto;
}

.sidebar-logo {
  width: 282px;
  height: 88px;
  padding: 24px 24px 8px;
  display: flex;
  align-items: flex-start;
}

.logo-img {
  width: 51px;
  height: 56px;
  display: block;
}

.org-switcher-block {
  width: 282px;
  padding: 52px 16px 24px;
}

.sidebar-label {
  height: 29px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-family: var(--font-alt);
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
}

.org-switcher {
  width: 250px;
  height: 44px;
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow-small);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-base);
}

.org-avatar {
  width: 31px;
  height: 30.35px;
  border: 0.65px solid var(--border-base);
  border-radius: 5.17px;
  background: var(--bg-subtle);
  box-shadow: 0 0 3.875px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}

.org-name {
  margin-left: 8px;
  margin-right: auto;
  color: var(--text-base);
  font-size: 14px;
  line-height: 1;
}

.org-chevrons {
  width: 12px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.org-chevrons img {
  width: 12px;
  height: 12px;
  display: block;
}

.sidebar-nav {
  width: 282px;
  padding-right: 16px;
}

.nav-item {
  width: 282px;
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  color: var(--text-base);
  font-size: 14px;
  line-height: 1;
  border-radius: 8px;
}

.nav-img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: block;
  flex-shrink: 0;
}

.nav-caret-img {
  width: 16px;
  height: 16px;
  margin-left: auto;
  display: block;
  flex-shrink: 0;
}

.new-badge {
  width: 47px;
  height: 20px;
  margin-left: 11px;
  border: 1px solid #c1ffb7;
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    linear-gradient(87deg, rgba(168, 250, 155, 0.4) 20.56%, rgba(81, 213, 240, 0.4) 83.17%),
    #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-base);
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.submenu {
  width: 282px;
  height: 160px;
  padding: 0 8px;
}

.submenu a {
  width: 266px;
  height: 40px;
  padding-left: 44px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: var(--text-base);
  font-size: 14px;
  line-height: 1;
}

.submenu a.active {
  background: var(--bg-soft);
}

/* Bottom trusted portal */

.sidebar-lower {
  width: 282px;
  margin-top: auto;
  padding: 0 16px 24px;
  flex: 0 0 auto;
}

.trusted-toggle {
  width: 250px;
  height: 40px;
  margin: 0;
  padding: 8px 12px 8px 8px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow-small);
  display: flex;
  align-items: center;
  color: #343433;
  font-size: 14px;
  line-height: 1;
}

.trusted-img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: block;
  flex-shrink: 0;
}

.toggle-pill {
  margin-left: auto;
  width: 44px;
  height: 24px;
  padding: 2px;
  border: 1px solid #eaedf0;
  border-radius: 12px;
  background: #f4f5f7;
  display: flex;
  align-items: center;
}

.toggle-pill span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.06),
    0 1px 3px rgba(16, 24, 40, 0.1);
}

.toggle-pill img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Footer */

.sidebar-footer {
  width: 282px;
  height: 53px;
  flex: 0 0 53px;
  border-top: 1px solid var(--border-base);
  padding-top: 16px;
  display: flex;
  align-items: flex-start;
}

.footer-icon {
  height: 36px;
  border-radius: 6px;
  position: relative;
}

.footer-icon:first-child {
  width: 36px;
  margin-left: 0;
}

.footer-icon:last-child {
  width: 233px;
}

.footer-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-icon:first-child img {
  margin-left: 16px;
  margin-top: 8px;
}

.collapse-footer img {
  margin: 0;
}

.double-collapse-icon {
  width: 27px;
  height: 20px;
  margin-left: 24px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  position: relative;
}

.double-collapse-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.double-collapse-icon img + img {
  margin-left: -13px;
}

/* Topbar icons */

.circle-button img {
  width: 20px;
  height: 20px;
  display: block;
  margin: 9px auto;
}