/* [project]/src/components/sidebar/HomePageSidebar.css [app-client] (css) */
:root {
  --sidebar-expanded-width: 248px;
  --sidebar-collapsed-width: 84px;
}

.homepage-with-sidebar {
  --sidebar-width: var(--sidebar-expanded-width);
  box-sizing: border-box;
  width: 100%;
}

.homepage-with-sidebar.is-collapsed {
  --sidebar-width: var(--sidebar-collapsed-width);
}

@media (min-width: 1201px) {
  html:has(.homepage-with-sidebar) {
    --sidebar-width: var(--sidebar-expanded-width);
    background-color: #000;
  }

  html:has(.homepage-with-sidebar.is-collapsed) {
    --sidebar-width: var(--sidebar-collapsed-width);
  }

  html:has(.homepage-with-sidebar) body {
    background-color: #000;
  }

  html:has(.homepage-with-sidebar) .navbar-main-div {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    transition: margin-left .22s, width .22s;
  }

  html:has(.homepage-with-sidebar) .navbar-main-div .sub-div-nav > a.d-flex {
    display: none !important;
  }

  html:has(.homepage-with-sidebar) .navbar-main-div .log-img {
    display: none !important;
  }
}

.homepage-sidebar {
  height: 100dvh;
  width: var(--sidebar-width);
  z-index: 2147483647;
  background-color: #0a0a0a;
  border-right: 1px solid #1a1a1a;
  flex-direction: column;
  transition: width .22s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.homepage-main-content {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

@media (min-width: 1201px) {
  .homepage-main-content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    max-width: calc(100% - var(--sidebar-width));
    transition: margin-left .22s, width .22s;
  }

  :is(html:has(.homepage-with-sidebar) .homepage-main-content .main-profile, html:has(.homepage-with-sidebar) .homepage-main-content .dashboard-carousel-main-div-collection, html:has(.homepage-with-sidebar) .homepage-main-content .dashboard-carousel-main-div) {
    min-width: 0;
    max-width: 100%;
  }

  html:has(.homepage-with-sidebar) .homepage-main-content .service-page-flex {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
  }
}

.homepage-sidebar__header {
  background-color: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  min-height: 68px;
  padding: 0 14px;
  display: flex;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__header {
  justify-content: center;
  padding: 0 8px;
}

.homepage-sidebar__brand-wordmark {
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 1;
  width: auto;
  min-width: 0;
  max-width: 100%;
  height: 20px;
}

.homepage-sidebar__brand-favicon {
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.homepage-sidebar__collapsed-toggle-logo .homepage-sidebar__brand-favicon {
  -o-object-fit: cover;
  object-fit: cover;
  width: 32px;
  height: 32px;
  display: block;
}

.homepage-sidebar__brand {
  cursor: pointer;
  flex: 1;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.homepage-sidebar__toggle {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  transition: color .15s, background-color .15s;
  display: flex;
}

.homepage-sidebar__toggle:hover {
  color: #fff;
  background-color: #1f1f1f;
}

.homepage-sidebar__collapsed-toggle {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.homepage-sidebar__collapsed-toggle-logo, .homepage-sidebar__collapsed-toggle-icon {
  justify-content: center;
  align-items: center;
  transition: opacity .15s, transform .15s;
  display: flex;
  position: absolute;
  inset: 0;
}

.homepage-sidebar__collapsed-toggle-logo {
  opacity: 1;
}

.homepage-sidebar__collapsed-toggle-icon {
  opacity: 0;
  pointer-events: none;
  transform: scale(.92);
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__collapsed-toggle:hover, .homepage-with-sidebar.is-collapsed .homepage-sidebar__collapsed-toggle:focus-visible {
  color: #fff;
  background-color: #1f1f1f;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__collapsed-toggle:hover .homepage-sidebar__collapsed-toggle-logo, .homepage-with-sidebar.is-collapsed .homepage-sidebar__collapsed-toggle:focus-visible .homepage-sidebar__collapsed-toggle-logo {
  opacity: 0;
  transform: scale(.92);
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__collapsed-toggle:hover .homepage-sidebar__collapsed-toggle-icon, .homepage-with-sidebar.is-collapsed .homepage-sidebar__collapsed-toggle:focus-visible .homepage-sidebar__collapsed-toggle-icon {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.homepage-sidebar__workspace {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  margin: 12px 12px 8px;
  padding: 8px 10px;
  display: flex;
  overflow: hidden;
}

.homepage-sidebar__workspace-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  display: flex;
}

.homepage-sidebar__workspace-brand-mark {
  -o-object-fit: contain;
  object-fit: contain;
  width: 22px;
  height: 22px;
  display: block;
}

.homepage-sidebar__workspace-label {
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 1;
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  transition: opacity .15s;
  overflow: hidden;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__workspace {
  display: none;
}

.homepage-sidebar__workspace-chevron {
  color: #888;
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.homepage-sidebar__nav {
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
  flex: 1;
  padding: 4px 10px 12px;
  overflow: hidden auto;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__nav {
  padding: 4px 4px 12px;
}

.homepage-sidebar__link-wrap {
  position: relative;
}

.homepage-sidebar__section-label {
  color: #888;
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: 1;
  padding: 14px 10px 6px;
  font-size: 12px;
  font-weight: 500;
  transition: opacity .15s;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__section-label {
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.homepage-sidebar__link {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 2px;
  padding: 9px 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: color .15s, background-color .15s;
  display: flex;
  overflow: hidden;
}

.homepage-sidebar__link:hover {
  color: #fff;
  background-color: #161616;
}

.homepage-sidebar__link.is-active {
  color: #fff;
  background-color: #1f1f1f;
  font-weight: 500;
}

.homepage-sidebar__link-icon {
  width: 18px;
  height: 18px;
  color: inherit;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.homepage-sidebar__link-icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 18px;
  height: 18px;
}

.homepage-sidebar__link-label {
  text-overflow: ellipsis;
  opacity: 1;
  flex: 1;
  transition: opacity .15s;
  overflow: hidden;
}

.homepage-sidebar__link-label-collapsed, .homepage-with-sidebar.is-collapsed .homepage-sidebar__link-label, .homepage-with-sidebar.is-collapsed .homepage-sidebar__link-badge, .homepage-with-sidebar.is-collapsed .homepage-sidebar__link-external {
  display: none;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__link-label-collapsed {
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 72px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.15;
  display: block;
  overflow: hidden;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  margin-bottom: 4px;
  padding: 8px 4px;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__link.is-active .homepage-sidebar__link-label-collapsed, .homepage-with-sidebar.is-collapsed .homepage-sidebar__link:hover .homepage-sidebar__link-label-collapsed {
  color: #fff;
}

.homepage-sidebar__link-badge {
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(var(--global-color-main-1, var(--primary-color)), var(--global-color-main-2, var(--primary-color)));
  -webkit-text-fill-color: transparent;
  color: #0000;
  background-color: #7c3aed26;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 600;
}

.homepage-sidebar__link-external {
  color: #fff;
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.homepage-sidebar__footer {
  border-top: 1px solid #1a1a1a;
  flex-shrink: 0;
  justify-content: end;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 6px 8px;
  display: flex;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__footer {
  flex-direction: column;
  gap: 6px;
  padding: 4px 0 6px;
}

.homepage-sidebar__footer-btn {
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  transition: color .15s, background-color .15s;
  display: flex;
}

.homepage-sidebar__footer-btn:hover {
  color: #fff;
  background-color: #161616;
}

.homepage-with-sidebar.is-collapsed .homepage-sidebar__footer-btn {
  width: 30px;
  height: 30px;
}

.homepage-sidebar__flyout {
  top: var(--flyout-top, 0px);
  left: var(--sidebar-width);
  z-index: 2147483647;
  width: min(420px, calc(100vw - var(--sidebar-width)  - 24px));
  pointer-events: auto;
  background-color: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  max-height: calc(100vh - 24px);
  padding: 16px 18px;
  position: fixed;
  overflow-y: auto;
  box-shadow: 0 12px 40px #0000008c;
}

.homepage-sidebar__flyout:before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10px;
}

.homepage-sidebar__flyout-title {
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}

.homepage-sidebar__flyout-columns {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.homepage-sidebar__flyout-columns.is-split {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.homepage-sidebar__flyout-col-heading {
  color: #888;
  letter-spacing: .02em;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
}

.homepage-sidebar__flyout-item {
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: default;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  padding: 8px;
  text-decoration: none;
  transition: background-color .15s;
  display: flex;
}

.homepage-sidebar__flyout-item.is-link {
  cursor: pointer;
}

.homepage-sidebar__flyout-item:hover {
  background-color: #1f1f1f;
}

.homepage-sidebar__flyout-item-icon {
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: flex;
}

.homepage-sidebar__flyout-item-text {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.homepage-sidebar__flyout-item-label-row {
  flex: 1;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.homepage-sidebar__flyout-item-label {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.homepage-sidebar__flyout-item-desc {
  color: #888;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .homepage-sidebar {
    display: none;
  }

  .homepage-main-content {
    width: 100%;
    margin-left: 0;
  }

  html:has(.homepage-with-sidebar) .navbar-main-div {
    width: 100%;
    margin-left: 0;
  }

  html:has(.homepage-with-sidebar) .navbar-main-div .sub-div-nav > a.d-flex {
    display: flex !important;
  }

  html:has(.homepage-with-sidebar) .navbar-main-div .log-img {
    display: block !important;
  }
}

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