@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Regular.ttf");
}
:root {
  --block-size: 1rem;
  --size-1: calc(var(--block-size) / 4);
  --size-2: calc(var(--block-size) / 2);
  --size-4: calc(var(--block-size) * 1);
  --size-6: calc(var(--block-size) * 1.5);
  --size-8: calc(var(--block-size) * 2);
  --size-16: calc(var(--block-size) * 4);
  --size-20: calc(var(--block-size) * 5);
  --size-24: calc(var(--block-size) * 6);
  --size-28: calc(var(--block-size) * 7);
  --size-32: calc(var(--block-size) * 8);
  --size-64: calc(var(--block-size) * 16);
  --color-primary: #0066cc;
  --color-danger-soft: #ef4444;
  --color-success: #22c55e;
  --color-warning: #FBBF24;
  --color-warning-darker: #9F4F1C;
  --color-warning-text: #44350F;
  --color-info: #EFF6FF;
  --color-info-text: #1E3A8A;
  --color-danger: #FEE2E2;
  --color-danger-text: #991B1B;
  --color-danger-darker: #DC2626;
  --color-disabled: #eeeeee;
  --color-disabled-text: #777777;
  --color-gray: #999999;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero {
  padding-top: var(--size-32);
  padding-bottom: var(--size-32);
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

.container-lg {
  max-width: 1000px;
  margin: 0 auto;
}

.centered-layout {
  display: grid;
  place-items: center;
  height: 100dvh;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--size-4);
  place-items: left;
}

@media (min-width: 1024px) {
  .grid-wrapper--two-columns-on-desktop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-wrapper--three-columns-on-desktop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.paragraph-reset p {
  margin: var(--size-4) 0;
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: var(--size-1);
}

.mb-2 {
  margin-bottom: var(--size-2);
}

.mb-4 {
  margin-bottom: var(--size-4);
}

.mb-8 {
  margin-bottom: var(--size-8);
}

.mb-16 {
  margin-bottom: var(--size-16);
}

.mt-2 {
  margin-top: var(--size-2);
}

.mt-16 {
  margin-top: var(--size-16);
}

.mt-32 {
  margin-top: var(--size-32);
}

.my-32 {
  margin-top: var(--size-32);
  margin-bottom: var(--size-32);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-8 {
  margin-top: var(--size-8);
}

.mt-4 {
  margin-top: var(--size-4);
}

.pr-2 {
  padding-right: var(--size-2);
}

.pr-4 {
  padding-right: var(--size-4);
}

.pt-8 {
  padding-top: var(--size-8);
}

.grid {
  display: grid;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-1 {
  grid-template-columns: minmax(0, 1fr);
}

.gap-4 {
  gap: var(--size-4);
}

.gap-8 {
  gap: var(--size-8);
}

.w-8 {
  width: var(--size-8);
}

.h-8 {
  height: var(--size-8);
}

.place-items-center {
  place-items: center;
}

.items-center {
  align-items: center;
}

.px-4 {
  padding-left: var(--size-4);
  padding-right: var(--size-4);
}

.py-8 {
  padding-top: var(--size-8);
  padding-bottom: var(--size-8);
}

.pb-20 {
  padding-bottom: var(--size-20);
}

.pb-8 {
  padding-bottom: var(--size-8);
}

.p-4 {
  padding: var(--size-4);
}

.p-2 {
  padding: var(--size-2);
}

.p-1 {
  padding: var(--size-1);
}

.hidden {
  display: none;
}

.border-tl-4 {
  border-top-left-radius: var(--size-4);
}

.border-tr-4 {
  border-top-right-radius: var(--size-4);
}

.border-tl-8 {
  border-top-left-radius: var(--size-8);
}

.border-tr-8 {
  border-top-right-radius: var(--size-8);
}

.flex {
  display: flex;
}

.flex-none {
  flex: none;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: var(--size-2);
}

.inline {
  display: inline;
}

.w-max {
  width: max-content;
}

.border-r-1 {
  border-right: 1px solid #eeeeee;
}

.w-full {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 16px;
}

.text-2xl {
  font-size: 40px;
}

.text-xl {
  font-size: 28px;
}

.text-lg {
  font-size: 20px;
}

.font-semibold {
  font-weight: 600;
}

.text-gray {
  color: #999999;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

.max-w-full {
  max-width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.w-max {
  width: max-content;
}

.w-4 {
  width: var(--size-4);
}

.w-8 {
  width: var(--size-8);
}

.min-w-0 {
  min-width: 0;
}

.min-w-full {
  min-width: 100%;
}

.text-green {
  color: var(--color-success);
}

.text-red {
  color: var(--color-danger-darker);
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-white {
  background-color: white;
}

.bg-gray {
  background-color: #dfdfdf;
}

.h-4 {
  height: var(--size-4);
}

.h-6 {
  height: var(--size-6);
}

.h-full {
  height: 100%;
}

.block {
  display: block;
}

.rounded-xs {
  border-radius: var(--size-1);
}

.rounded-full {
  border-radius: 9999px;
}

.justify-end {
  justify-content: end;
}

.mr-2 {
  margin-right: var(--size-2);
}

.text-white {
  color: white;
}

.relative {
  position: relative;
}

.italic {
  font-style: italic;
}

.font-semibold {
  font-weight: 600;
}

.list-none {
  list-style: none;
}

.pl-0 {
  padding-left: 0;
}

.leading-loose {
  line-height: 1.5;
}

.underline {
  text-decoration: underline;
}

.mb-20 {
  margin-bottom: var(--size-20);
}

@media (max-width: 768px) {
  .hidden-in-mobile {
    display: none;
  }
}

.my-4 {
  margin-top: var(--size-4);
  margin-bottom: var(--size-4);
}

.tilted {
  background-color: var(--color-primary);
  color: white;
  padding: 1px var(--size-2);
  border-radius: 4px;
  display: inline-block;
}

.tilted--left {
  transform: rotate(-1.5deg);
}

.tilted--right {
  transform: rotate(1.5deg);
}

.bg-transparent {
  background-color: transparent;
}

.border-b-0 {
  border-bottom: 0;
}

.border-gray {
  border-top: 1px solid #dfdfdf;
}

.border-none {
  border: none;
}

.shadow-none {
  box-shadow: none;
}

@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.progress-bar {
  animation: progressBar 1.25s ease-in-out;
  animation-fill-mode: both;
  border-radius: 9999px;
  height: 100%;
}

.border {
  border-width: 0;
  border-bottom-width: 1px;
  border-color: var(--color-disabled);
}

.border-dashed {
  border-style: dashed;
}

.inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) {
  .ml-8-on-desktop {
    margin-left: var(--size-64);
  }
}

.small-on-mobile {
  font-size: 14px;
}
@media (min-width: 768px) {
  .small-on-mobile {
    font-size: 16px;
  }
}

.button {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  display: block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button--primary {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: white;
}
.button--primary:hover {
  background-color: white;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.button--danger {
  background-color: var(--color-danger-darker);
  color: white;
}

.button--secondary {
  background-color: white;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.button--warning {
  background-color: var(--color-warning-darker);
  color: white;
}

.button--warning--secondary {
  color: var(--color-warning-darker);
  font-weight: 600;
  background-color: transparent;
  box-shadow: none;
}

.card {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
  width: 100%;
}

.navbar__bottom {
  max-width: 600px;
  border-top-left-radius: var(--size-4);
  border-top-right-radius: var(--size-4);
  border: 1px solid #eeeeee;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  place-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  background-color: white;
  position: fixed;
  bottom: 0;
}
.navbar__bottom a:hover, .navbar__bottom a.active {
  background-color: #eeeeee;
}

.navbar__top {
  position: fixed;
  z-index: 10;
  top: var(--size-4);
}

.navbar__top-wrapper {
  max-width: 1000px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: var(--size-2) var(--size-4);
  border: 1px solid var(--color-disabled);
  border-radius: var(--size-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/*# sourceMappingURL=main.css.map */