/* 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%;
}
/*# sourceMappingURL=style.css.map */