.mobile-topnav {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  height: 70px;
  padding: 0 1rem;
  padding-left: 0.5rem;
  background-color: #f3f2f7;
}

.mobile-topnav.--visible ~ .ci-main {
  margin-top: 70px;
  padding-top: 1rem;
}

@media (min-width: 1040px) {
  .mobile-topnav {
    display: none;
  }
}

.mobile-topnav .ci-account-dropdwon {
  margin-right: 0;
}

.mobile-topnav .ci-profile-img {
  width: 36px !important;
  height: 36px !important;
}

.mobile-topnav .ci-logo-wrap {
  margin-top: 0;
}

/*== SIDEBAR */

.mobile-sidebar-container {
  --open: none;
}

.mobile-sidebar {
  --open: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 80%;
  height: 100%;
  box-shadow: 4px 0 1rem rgba(61, 61, 61, 0.35);
  background-color: var(--bg-white);
  overflow: hidden;
  display: var(--open);
  /* display: none; */
}

.mobile-sidebar-bg {
  --open: none;
  display: var(--open);
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 900;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
}

.--open + .mobile-sidebar-bg {
  --open: block;
}

.mobile-sidebar.--open {
  --open: block;
}

@media (min-width: 960px) {
  .mobile-sidebar,
  .mobile-sidebar.--open {
    --open: none;
  }

  .--open + .mobile-sidebar-bg {
    --open: none;
  }

}

.ci-sidebar-content {
  height: 100%;
  height: calc(100% - 53px);
  overflow: auto;
  padding-left: 1rem;
  padding-bottom: 0;
}

.ci-sidebar-content > :last-child:not(.ci-project-exit-btn, app-sidebar)  {
  padding-bottom: 4rem;
}

.mobile-sidebar :not(.sidebar-top) a {
  padding: 8px 1rem;
}

.exit-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  color: var(--text-dark);
  text-decoration: none !important;
  border-radius: 2rem;
  padding: 0.5rem;
}

.exit-btn:hover {
  color: var(--text-dark);
}

.sidebar-menu-item {
  padding-top: 1rem;
}

.sidebar-menu-item:not(:first-of-type) {
  padding-top: 1.5rem;
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  border-bottom: var(--border);
}

.sidebar-menu-title {
  font-size: 70%;
  font-weight: var(--font-bold);
  text-transform: uppercase;
}

.sidebar-credits {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ci-credit-wrap {
  display: flex;
  align-items: center;
  font-weight: var(--font-bold);
  line-height: 0;
}

.mobile-sidebar .ci-credit-wrap {
  font-size: 12px;
}

.ci-menu-wrap-1 {
  margin-top: 1rem;
}

.ci-profile-menu-item {
  margin: 0;
}

.mobile-sidebar .ci-profile-menu-item-active,
.mobile-sidebar .active-menu-item {
  background: var(--bg-primary);
  color: #fff
}

.mobile-sidebar .active-menu-item .ci-menu-text {
    color: #fff;
}

.mobile-sidebar .active-menu-item path {
    fill: #fff;
    stroke: #fff;
}

.mobile-sidebar .active-menu-item rect {
    fill: #fff;
    stroke: #fff;
}
