/* 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/mobile/style.css */
:root {
  --mobile-topbar-color: #64748B;
  --mobile-topbar-text: #FFFFFF;
}
#app {
  position: fixed;
  inset: 0;
  top: 44px;
  overflow: auto;
  scrollbar-gutter: stable both-edges;
}
#app-content {
  display: none;
  position: relative;
  margin: auto;
  min-width: 350px;
  max-width: 450px;
  animation: fade-in 0.4s forwards;
}
#app.full-page {
  inset: 0;
}
#app.tabbar {
  padding-bottom: 71px;
}
#app.tabbar .overlay {
  padding-bottom: 56px;
}
#app:not(.full-page) .overlay {
  top: 44px;
}
#topbar {
  position: fixed;
  inset: 0;
  height: 44px;
  min-width: 350px;
  color: var(--mobile-topbar-text);
  background-color: var(--mobile-topbar-color);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  z-index: 1;
}
#topbar .container {
  display: table;
  margin: auto;
  width: 100%;
  height: 100%;
  padding: 0 6px;
  max-width: 450px;
}
#topbar .container .box {
  display: flex;
  align-items: center;
  height: 100%;
}
#topbar .title {
  font-family: "Prompt";
  font-weight: 500;
}
#topbar .container button {
  margin: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--mobile-topbar-text);
  background-color: transparent;
}
#topbar .container button:hover {
  opacity: 1;
}
#topbar .container button:active {
  color: var(--link-active);
  transform: scale(1.1);
  transition: 0.1s;
}
#tabbar {
  position: fixed;
  inset: 0;
  top: unset;
  height: 56px;
  min-width: 350px;
  z-index: 1;
}
#tabbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  margin: auto;
  padding: 0 10px;
  max-width: 450px;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px -1px 4px;
}
#tabbar .container button {
  display: block;
  margin: 0;
  padding: 0;
  height: auto;
  border: none;
  border-radius: 0;
  color: var(--text-color);
  background-color: transparent;
}
#tabbar .container button .icon {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  padding: 3px;
  margin: 0;
}
#tabbar .container button .text {
  font-size: 12px;
  font-family: "Prompt";
  line-height: normal;
}
#tabbar .container button:hover {
  opacity: 1;
}
#tabbar .container button:active .icon {
  color: var(--link-active);
}
#tabbar .container button.active {
  color: var(--color-cyan);
}
#tabbar .container button.active .icon {
  font-weight: 900;
}
#tabbar.hide {
  top: 100%;
}
#tabbar.hide ~ #app {
  padding-bottom: 0 !important;
}
#tabbar.hide ~ #totop {
  display: none !important;
}
#side-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
#sidebar {
  position: fixed;
  inset: 0;
  left: -250px;
  width: 250px;
  height: fit-content;
  overflow-x: hidden;
  border-radius: 0 0 10px 0;
  background-color: #fff;
  z-index: 6;
}
#sidebar hr {
  margin: 5px;
  border: none;
  border-top: 1px solid #D1D5DB;
}
#sidebar .profile {
  padding: 10px;
  padding-bottom: 5px;
  background-color: #E5E7EB;
  border-bottom: 1px solid #D1D5DB;
}
#sidebar .profile #image {
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #F3F4F6;
}
#sidebar .profile #image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#sidebar .profile #name {
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
#sidebar #btn-close {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: transparent;
}
#sidebar .menu {
  padding-top: 5px;
  min-height: 55px;
}
#sidebar a {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  line-height: 2.5;
  font-family: "Prompt";
  text-decoration: none;
}
#sidebar a .icon {
  font-size: 22px;
  padding-right: 10px;
}
#sidebar.open {
  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.close {
  animation: slide-out-left 0.4s forwards;
  box-shadow: unset;
}
/*# sourceMappingURL=style.css.map */