/* [project]/src/components/Backgrounds/Orb/Orb.css [app-client] (css) */
.orb-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* [project]/src/components/ui/Dock/Dock.css [app-client] (css) */
.dock-outer {
  align-items: center;
  max-width: 100%;
  margin: 0 .5rem;
  display: flex;
}

.dock-panel {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #06001099;
  border: 1px solid #222;
  border-radius: 1rem;
  align-items: flex-end;
  gap: 1rem;
  width: fit-content;
  padding: 0 .5rem .5rem;
  display: flex;
  position: relative;
}

.dock-item {
  cursor: pointer;
  background-color: #060010cc;
  border: 1px solid #222;
  border-radius: 10px;
  outline: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: relative;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

.dock-icon {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.dock-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #ffffffe6;
  text-shadow: 0 1px 3px #0009;
  pointer-events: none;
  text-align: center;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: none;
  border-radius: 0;
  width: max-content;
  max-width: 80px;
  margin-top: 10px;
  padding: 0;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  top: 100%;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

/* [project]/src/components/ui/SideMenu/SideMenu.css [app-client] (css) */
.side-menu-overlay {
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  background-color: #00000080;
  justify-content: flex-end;
  transition: opacity .3s;
  display: flex;
  position: fixed;
  inset: 0;
}

.side-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu-container {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #060010d9;
  border-left: 1px solid #ffffff1a;
  flex-direction: column;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  transform: translateX(100%);
  box-shadow: -4px 0 24px #0009;
}

.side-menu-overlay.open .side-menu-container {
  transform: translateX(0);
}

.side-menu-header {
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.side-menu-title {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.side-menu-close-btn {
  color: #fff9;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  transition: all .2s;
  display: flex;
}

.side-menu-close-btn:hover {
  color: #fff;
  background: #ffffff1a;
}

.side-menu-content {
  color: #ffffffe6;
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.accordion-item {
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: .5rem;
}

.accordion-header {
  text-align: left;
  color: #ffffffe6;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem .5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: color .2s;
  display: flex;
}

.accordion-header:hover {
  color: #fff;
}

.accordion-icon {
  opacity: .7;
  transition: transform .3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  transition: max-height .3s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-content {
  color: #ffffffb3;
  padding: 0 .5rem 1.5rem;
  font-size: .95rem;
  line-height: 1.6;
}

.accordion-action-btn {
  color: #fff;
  cursor: pointer;
  background: #ffffff1a;
  border: 1px solid #ffffff1a;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  margin-top: 1rem;
  padding: .75rem;
  font-size: .9rem;
  transition: all .2s;
  display: flex;
}

.accordion-action-btn:hover {
  background: #fff3;
}

.side-menu-content::-webkit-scrollbar {
  width: 6px;
}

.side-menu-content::-webkit-scrollbar-track {
  background: none;
}

.side-menu-content::-webkit-scrollbar-thumb {
  background-color: #ffffff1a;
  border-radius: 3px;
}

@media (max-width: 640px) {
  .side-menu-container {
    width: 65vw;
    max-width: 260px;
  }
}

/*# sourceMappingURL=src_components_5585865c._.css.map*/