/* src/page/style.css */
#page-loader:has(.spinner.s32).overlay {
  padding-top: 24px;
  background-color: transparent;
}
.page-error {
  padding: 20px;
  text-align: center;
}
.page-error .icon {
  font-size: 48px;
  margin-bottom: 10px;
}
.page-error .topic {
  font-size: 18px;
  color: var(--color-red);
  font-weight: 500;
  line-height: 1.5;
  font-family: "Prompt";
}
.page-error .text {
  line-height: 1.5;
}
.page-full-load {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-full-load .spinner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 12px solid #D1D5DB;
  border-color: #D1D5DB #0891B2 #D1D5DB #0891B2;
  animation: spin 2s linear infinite;
}
.page-full-load .text {
  position: absolute;
  color: #0891B2;
  font-family: "Prompt";
  text-align: center;
}
.page-not-found {
  width: fit-content;
  margin: 70px auto;
  text-align: center;
  font-family: "Montserrat";
}
.page-not-found h1 {
  margin: 0;
  color: #6B7280;
  font-size: 100px;
  letter-spacing: .1em;
  text-shadow: .05em .05em 0 rgba(0, 0, 0, .25);
}
.page-not-found h1 i {
  color: #528cce;
  display: inline-block;
  animation: spooky 2s alternate infinite linear;
}
.page-not-found h2 {
  color: #6B7280;
  font-size: 19px;
  margin: 14px 0 7px 0;
}
.page-not-found p {
  margin: 0;
  color: #9CA3AF;
}
@keyframes spooky {
  from {
    transform: translatey(.15em) scaley(.95);
  }
  to {
    transform: translatey(-.15em);
  }
}
.page-inform {
  width: 250px;
  padding: 10px;
  margin: 70px auto;
  border-radius: 10px;
  font-family: "Prompt";
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.page-inform.red {
  color: var(--color-red);
}
.page-inform.orange {
  color: var(--color-orange);
}
.page-inform.green {
  color: var(--color-green);
}
.page-inform.blue {
  color: var(--color-blue);
}
.page-inform .icon {
  font-size: 100px;
}
.page-inform .msg {
  line-height: 2.75;
}
.page-inform button {
  width: 100%;
}

/* src/page/desktop/layout.css */
:root {
  --topbar-color: #FFFFFF;
  --topbar-text: var(--text-color);
  --topbar-logo-bg: #155E75;
  --sidebar-color: #164E63;
  --sidebar-button: #0E7490;
}
#app {
  position: fixed;
  inset: 0;
  top: 50px;
  padding: 10px;
  overflow-x: auto;
  overflow-y: scroll;
  transition: 0.4s;
}
#app-content {
  display: none;
  position: relative;
  min-width: calc(750px - 50px - 25px);
  animation: fade-in 0.4s forwards;
}
#app.full-page {
  top: 0;
  overflow: auto;
  transition: unset;
}
#app.full-page #app-content {
  min-width: unset;
  max-width: unset;
}
#app:not(.full-page) .overlay {
  top: 50px;
}
#topbar {
  position: fixed;
  inset: 0;
  height: 50px;
  min-width: 350px;
  color: var(--topbar-text);
  background-color: var(--topbar-color);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  z-index: 1;
}
#topbar .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
  min-width: 80px;
  padding: 0 5px;
  font-size: 14px;
  line-height: 1.5;
}
#topbar .box.left {
  border-right: 1px solid #E5E7EB;
}
#topbar .box.right {
  border-left: 1px solid #E5E7EB;
}
#topbar .box div:first-child {
  font-size: 17px;
  line-height: 1.25;
}
#topbar .box.offline {
  color: var(--color-red);
}
#topbar .box .icon {
  line-height: normal;
}
#topbar .box .sup-title {
  font-size: 16px;
  font-weight: 500;
}
#topbar #box-logo {
  width: 50px;
  min-width: unset;
  border: none;
  padding: 0;
  transition: 0.4s;
}
#topbar #box-logo .max {
  display: none;
  font-style: italic;
  font-family: "Prompt";
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
}
#topbar #box-logo .max div:first-child {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
#topbar #box-logo .max div:last-child {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
}
#topbar #box-logo #nav-menu {
  border-right: 1px solid #E5E7EB;
}
#topbar #box-logo #nav-menu::before {
  content: "\f0c9";
  font-weight: 400;
}
#topbar button {
  display: block;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 300;
  font-family: var(--font-icon);
  color: var(--text-color);
  background-color: transparent;
}
#topbar button.left {
  border-right: 1px solid #E5E7EB;
}
#topbar button.right {
  border-left: 1px solid #E5E7EB;
}
#topbar button:hover {
  color: var(--link-hover);
  background-color: #F3F4F6;
}
#topbar button:active {
  color: var(--link-active);
}
#topbar #drop-user .drop-content {
  top: 55px;
  right: 10px;
  width: 200px;
}
#topbar #drop-user .drop-content a {
  line-height: 2.75;
  font-family: "Prompt";
}
#topbar #drop-user .drop-content a .icon {
  width: 24px;
  font-size: 20px;
  text-align: center;
  margin-right: 8px;
}
#topbar #drop-user .profile {
  padding: 5px 0;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #E5E7EB;
  background-color: #f3f4f6;
}
#topbar #drop-user .profile #image {
  margin: auto;
  width: 90px;
  height: 90px;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background-color: #fff;
}
#topbar #drop-user .profile #image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#topbar #drop-user .profile .text {
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px 1px 5px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sidebar {
  position: fixed;
  inset: 0;
  top: 55px;
  left: -200px;
  width: 200px;
  height: fit-content;
  overflow-x: hidden;
  border-radius: 0 10px 10px 0;
  background-color: var(--sidebar-color);
  transition: 0.4s;
  z-index: 1;
}
#sidebar::-webkit-scrollbar {
  width: 3px;
}
#sidebar::-webkit-scrollbar-track {
  background-color: transparent;
}
#sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
}
#sidebar .side-link {
  padding: 3px 5px;
}
#sidebar .side-link hr {
  margin: 5px 0;
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.15);
}
#sidebar .side-link button {
  display: flex;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 6px;
  align-items: center;
  justify-content: left;
  margin: 2px 0;
  padding: 0 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
}
#sidebar .side-link button .icon {
  margin: 0;
  width: 32px;
  font-size: 21px;
  font-weight: 300;
  text-align: left;
}
#sidebar .side-link button .text {
  margin: 0;
  display: block;
  font-style: normal;
  font-family: "Prompt";
  white-space: nowrap;
  overflow: hidden;
}
#sidebar .side-link button:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
#sidebar .side-link button.active {
  color: #fff;
  background-color: var(--sidebar-button);
}
#sidebar .side-link button.active .icon {
  font-weight: 900;
}
#sidebar .side-link button:disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: default;
}
#sidebar .side-link button:disabled:hover {
  background-color: transparent;
}
#sidebar .side-link .group .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
#sidebar .side-link .group .grp-btn.active {
  border-radius: 10px 0;
  border-right: 3px solid transparent;
}
#sidebar .side-link .group .grp-btn.active.bar {
  border-right-color: var(--color-teal);
}
#sidebar .side-link .group .sub-btn {
  margin: 0;
  height: 40px;
  border-radius: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  border-right: 3px solid transparent;
}
#sidebar .side-link .group .sub-btn .text {
  font-weight: 300;
  font-style: italic;
}
#sidebar .side-link .group .sub-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
#sidebar .side-link .group .sub-btn.active {
  border-right-color: var(--color-teal);
  background-color: rgba(0, 0, 0, 0.08);
}
#sidebar .side-link .group .sub-btn.active::before {
  border-radius: 0;
  background-color: var(--color-teal);
}
#sidebar.menu-in {
  animation: slide-in-left 0.4s forwards;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#sidebar.menu-out {
  animation: slide-out-left 0.4s forwards;
  box-shadow: unset;
}

/* src/page/desktop/style.css */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #F3F4F6;
}
::-webkit-scrollbar-thumb {
  background: #D1D5DB;
}
#topbar .box:not(#box-logo) {
  display: none;
}
@media only screen and (min-width: 600px) {
  #topbar #box-logo {
    background-color: var(--topbar-logo-bg);
  }
  #topbar #box-logo #nav-menu {
    border: none;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
  }
  #topbar #box-logo #nav-menu::before {
    content: "\e027";
    font-weight: 300;
  }
  #topbar .box:not(#box-logo, #box-sup) {
    display: flex;
  }
  #sidebar {
    left: 0;
    top: 50px;
    width: 50px;
    height: unset;
    border-radius: unset;
  }
  #sidebar .side-link {
    padding: 0;
  }
  #sidebar .side-link hr {
    margin: 0;
  }
  #sidebar .side-link button {
    margin: 0;
    padding: 0;
    border-radius: unset;
    justify-content: center;
  }
  #sidebar .side-link button .icon {
    width: fit-content;
    font-size: 24px;
  }
  #sidebar .side-link button .text {
    display: none;
  }
  #sidebar .side-link .group .submenu {
    background-color: rgba(0, 0, 0, 0.15);
  }
  #sidebar .side-link .group .grp-btn.active {
    border-radius: 0;
    border: none;
  }
  #sidebar .side-link .group .sub-btn {
    border: none;
    padding: 0;
  }
  #sidebar .side-link .group .sub-btn::before {
    margin: 0;
  }
  #app:not(.full-page),
  #app:not(.full-page) .overlay {
    left: 50px;
  }
  #totop {
    left: calc(50% + 25px);
  }
}
@media only screen and (min-width: 900px) {
  #topbar #box-logo {
    width: 200px;
  }
  #topbar #box-logo .max {
    display: block;
  }
  #topbar #box-logo .min {
    display: none;
  }
  #sidebar {
    width: 200px;
  }
  #sidebar .side-link {
    padding: 5px;
  }
  #sidebar .side-link hr {
    margin: 5px 0;
  }
  #sidebar .side-link button {
    height: 40px;
    margin: 2px 0;
    padding: 0 12px;
    border-radius: 6px;
    justify-content: left;
  }
  #sidebar .side-link button .icon {
    width: 32px;
    font-size: 21px;
  }
  #sidebar .side-link button .text {
    display: block;
  }
  #sidebar .side-link .group .submenu {
    background-color: transparent;
  }
  #sidebar .side-link .group .grp-btn.active {
    border-radius: 10px 0;
    border-right: 3px solid transparent;
  }
  #sidebar .side-link .group .sub-btn {
    height: 34px;
    padding: 0 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    border-right: 3px solid transparent;
  }
  #sidebar .side-link .group .sub-btn::before {
    margin-right: 12px;
  }
  #app:not(.full-page),
  #app:not(.full-page) .overlay {
    left: 200px;
  }
  #totop {
    left: calc(50% + 100px);
  }
}
/*# sourceMappingURL=style.css.map */