/* Contents            | Shortcut
 * --------------------|-----------
 * root/style.scss     | MAIN
 * root/searchbox.scss | SEARCHBOX
 * root/spinner.scss   | SPINNER
 * --------------------------------
*/
.loading-skeleton {
  --lskal-height: 100px;
  --lskal-radius: 10px;
  --lskal-start: hsla(var(--base-hue), 0%, 10%, 100%);
  --lskal-middle: hsla(var(--base-hue), 0%, 15%, 40%);
  --lskal-duration: 1.5s;
  --lskal-size: 50px;
  position: relative;
  width: 100%;
  height: var(--lskal-height);
  background-color: var(--lskal-start);
  border-radius: var(--lskal-radius);
  overflow: hidden;
  backdrop-filter: blur(5px);
}
.loading-skeleton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--lskal-start) 0%, var(--lskal-middle) 50%, var(--lskal-start) 100%);
  animation: loading-skeleton var(--lskal-duration) infinite;
}
@keyframes loading-skeleton {
  0% {
    transform: translateX(calc(-100% - var(--lskal-size)));
  }
  100% {
    transform: translateX(calc(100% + var(--lskal-size)));
  }
}
/* root/style.scss | MAIN */
.screen-banner {
  padding: 2rem;
  cursor: default;
}
.screen-banner .loading-title .lds-ellipsis {
  scale: 0.5;
  margin-right: -1.5rem;
}
.screen-banner .top.usage-instructions {
  height: 85%;
  width: 100%;
  padding-inline: 15%;
  overflow-y: auto;
}
.screen-banner .top.usage-instructions .markup li {
  margin-top: 0.25rem;
  line-height: 1.2;
}
.screen-banner > .bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.screen-banner > .bg-animation > .dot {
  position: absolute;
  top: 50%;
  left: 70%;
  --size: 0.5rem;
  background: hsla(var(--base-hue), 100%, 60%);
}
.proposal-md, .markup {
  color: #bbb;
}
.proposal-md *, .markup * {
  line-height: 1.5;
}
.proposal-md h1, .markup h1 {
  font-size: 1.55em;
}
.proposal-md h2, .markup h2 {
  font-size: 1.4em;
}
.proposal-md h3, .markup h3 {
  font-size: 1.25em;
}
.proposal-md h1, .proposal-md h2, .proposal-md h3, .markup h1, .markup h2, .markup h3 {
  padding-top: 0.9em;
}
.proposal-md p, .markup p {
  font-size: 1.1em;
  font-weight: normal;
}
.proposal-md strong, .markup strong {
  color: #eee;
}
.proposal-md ul, .proposal-md ol, .markup ul, .markup ol {
  margin-left: 3ch;
}
.proposal-md blockquote, .markup blockquote {
  padding-left: 0.5rem;
  border-left: 3px solid hsla(var(--base-hue), 30%, 50%);
}
.proposal-md .card-info, .markup .card-info {
  width: clamp(210px, 90%, 400px);
}
.proposal-md .stripe-container, .markup .stripe-container {
  width: 100%;
}
.bcard.vercel-card {
  width: 15rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  font-size: 1.25rem;
  cursor: default;
}
.bcard.vercel-card .markup p {
  font-weight: 600;
}
.bcard.vercel-card .markup strong {
  font-weight: 700;
}
.bcard.spread.proposal-success {
  backdrop-filter: none;
}
.bcard.spread.proposal-success, .bcard.spread.proposal-success * {
  cursor: default;
}
.bcard.spread.proposal-success > h1 {
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.6666666667);
  width: 69%;
  opacity: 0;
  position: relative;
  text-align: center;
  line-height: 1.2;
  font-size: 2.75rem;
  animation: 1s ani-proposal-h1 forwards;
  animation-timing-function: cubic-bezier(0.29, 0.77, 0.13, 1.42);
}
.bcard.spread.proposal-success .problem-solution {
  overflow: auto;
  position: sticky;
  top: 0;
  z-index: 1;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.bcard.spread.proposal-success .problem-solution > * {
  text-align: center;
}
.bcard.spread.proposal-success .problem-solution .problem {
  width: 30%;
}
.bcard.spread.proposal-success .problem-solution .problem .markup {
  color: white;
}
.bcard.spread.proposal-success .problem-solution .problem .markup p {
  font-weight: 550;
  font-size: 1.2em;
}
.bcard.spread.proposal-success .problem-solution .solution {
  width: 70%;
}
.bcard.spread.proposal-success .problem-solution .solution ul {
  list-style: none;
}
.bcard.spread.proposal-success .problem-solution .solution li {
  border-bottom: 2px solid #bbb;
  width: max-content;
  padding-bottom: 0.25rem;
  margin: auto;
  margin-bottom: 1rem;
}
.bcard.spread.proposal-success .problem-solution .solution .bcard.vercel-card {
  width: 40%;
}
.bcard.spread.proposal-success .problem-solution ~ :not(.problem-solution) {
  position: sticky;
  top: 0;
}
.bcard.spread.proposal-success .first-step > .left {
  width: 40%;
  text-align: center;
}
.bcard.spread.proposal-success .first-step > .left h2 {
  font-size: 3.5rem;
}
.bcard.spread.proposal-success .first-step > .right {
  width: 60%;
  font-size: 1.1rem;
  font-weight: 300;
}
.bcard.spread.proposal-success .first-step > .right strong {
  font-weight: 500;
}
.bcard.spread.proposal-success .cta {
  padding-block: 2rem;
  margin-top: 2rem;
  border-top: 3px solid 3px solid hsla(var(--base-hue), 100%, 60%, 50%);
}
.bcard.spread.proposal-success .cta h1 {
  font-size: 3rem;
  text-align: center;
}
.bcard.spread.proposal-success .cta h1 i {
  font-style: normal;
  color: hsla(var(--base-hue), 100%, 70%);
}
.bcard.spread.proposal-success .cta h1 u {
  text-decoration: none;
  color: aquamarine;
}
.bcard.spread.proposal-success .cta .code {
  margin-bottom: 1.5rem;
}
.bcard.spread.proposal-success .cta .code span {
  font-size: 2rem;
  color: hsla(var(--base-hue), 100%, 70%);
  font-weight: 500;
}
.bcard.spread.proposal-success .cta .code button {
  background: black;
  padding: 0.2rem 0.3rem;
  position: relative;
  top: 2px;
}
.bcard.spread.proposal-success .cta .code button svg {
  position: relative;
  top: 2px;
  --size: 1.5rem;
}
.bcard.spread.proposal-success .cta a button {
  background: #333;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  cursor: pointer;
}
@media (orientation: portrait) {
  .screen-banner {
    padding-inline: 0;
  }
  .screen-banner .top.usage-instructions {
    padding: 1rem;
  }
  .screen-banner .top.usage-instructions .advisor-benefits {
    flex-wrap: wrap;
  }
  .screen-banner .top.usage-instructions .advisor-benefits .bcard.vercel-card {
    padding: 0.25rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  .bcard.spread.proposal-success {
    width: 100%;
  }
  .bcard.spread.proposal-success > h1 {
    font-size: 2.1rem;
    width: 100%;
  }
  .bcard.spread.proposal-success .description {
    text-align: center;
  }
  .bcard.spread.proposal-success .problem-solution {
    flex-direction: column;
    backdrop-filter: none;
    position: static;
    background: linear-gradient(155deg, #111, #333 150%);
    border-radius: 1.4rem;
  }
  .bcard.spread.proposal-success .problem-solution > .problem, .bcard.spread.proposal-success .problem-solution > .solution {
    width: 100%;
  }
  .bcard.spread.proposal-success .problem-solution .solution .bcard.vercel-card {
    width: 100%;
  }
  .bcard.spread.proposal-success .first-step {
    flex-direction: column;
  }
  .bcard.spread.proposal-success .first-step > .left, .bcard.spread.proposal-success .first-step > .right {
    width: 100%;
  }
}
@keyframes ani-proposal-h1 {
  from {
    filter: blur(10px);
    opacity: 0;
    top: 1rem;
  }
  to {
    filter: blur(0px);
    opacity: 1;
    top: 0rem;
  }
}
@font-face {
  font-family: "Geist";
  src: url("/data/Geist-VariableFont_wght.ttf") format("truetype");
}
/* root/searchbox.scss | SEARCHBOX */
.ms-searchbox {
  background: linear-gradient(#333 -70%, #000);
  border-radius: 1rem;
  border: 2px solid #333;
  width: 80%;
  padding-block: 0.5rem;
}
.ms-searchbox > * {
  width: 100%;
  padding-inline: 2rem;
}
.ms-searchbox > textarea {
  background: linear-gradient(#1c1c1c -20%, transparent);
  border: none;
  outline: none;
}
.ms-searchbox button.control {
  padding: 0.2rem 0.3rem;
  background: #333;
  border: 1px solid rgba(136, 136, 136, 0.6666666667);
  gap: 0.3rem;
}
.ms-searchbox button.control svg {
  --size: 1.5rem;
}
.ms-searchbox button.go {
  background: white;
  padding: 0.1rem 0;
  position: relative;
  top: -5px;
}
.ms-searchbox button.go svg {
  --size: 2rem;
  --lighter: #333;
  height: 1.5rem;
  position: relative;
  top: 1px;
  left: 1px;
}
.page-pop-up .past-button {
  position: absolute;
  border: 1px solid rgba(136, 136, 136, 0.5333333333);
}
.page-pop-up .past-button > div {
  border: 1px solid transparent;
  scale: 1;
}
.page-pop-up .past-button > div:hover {
  border: 1px solid rgba(136, 136, 136, 0.5333333333);
  scale: 1.01;
  transition-timing-function: cubic-bezier(0.16, 0.56, 0.31, 0.93);
}
.page-pop-up .past-button > div:active {
  scale: 0.98;
}
@media (orientation: portrait) {
  .ms-searchbox {
    width: 90%;
  }
  .ms-searchbox textarea {
    min-height: 5rem;
  }
}
/* root/spinner.scss | SPINNER */
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

