@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Neuton:wght@400;700;800&display=swap");
@import url("https://fonts.cdnfonts.com/css/berlin-sans-fb-demi");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
.m-0 {
  margin: 0rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.p-0 {
  padding: 0rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.gap-0 {
  gap: 0rem !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.h-0 {
  height: 0rem !important;
}

.h-1 {
  height: 0.25rem !important;
}

.h-2 {
  height: 0.5rem !important;
}

.h-3 {
  height: 1rem !important;
}

.h-4 {
  height: 1.5rem !important;
}

.h-5 {
  height: 3rem !important;
}

.w-0 {
  width: 0rem !important;
}

.w-1 {
  width: 0.25rem !important;
}

.w-2 {
  width: 0.5rem !important;
}

.w-3 {
  width: 1rem !important;
}

.w-4 {
  width: 1.5rem !important;
}

.w-5 {
  width: 3rem !important;
}

.w-30 {
  width: 10rem;
}

.h-30 {
  height: 10rem;
}

.block {
  display: block;
}

.flex {
  display: flex;
}
@media only screen and (min-width: 960px) {
  .flex--on-medium {
    display: flex;
  }
}

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

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

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

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

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

.justify-start {
  justify-content: flex-start;
}

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

.flex-row {
  flex-direction: row;
}
@media only screen and (min-width: 960px) {
  .flex-row--on-medium {
    flex-direction: row !important;
  }
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-equal-width {
  flex: 1 1 0;
}

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

.font-size--small {
  font-size: 0.8rem;
}
.font-size--large {
  font-size: 1.5rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.visually-hidden {
  visibility: hidden;
}

.hidden {
  display: none !important;
}
@media only screen and (min-width: 960px) {
  .hidden--on-medium {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hidden--on-mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .hidden--on-small {
    display: none !important;
  }
}

.no-link-style, .back-link, .pagy-nav .page a {
  text-decoration: none;
  color: inherit;
}

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

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 1rem !important;
}

.text-md {
  font-size: 1.25rem;
}

.text-lg {
  font-size: 1.5rem !important;
}

.text-xl {
  font-size: 2rem !important;
}

.text-2xl {
  font-size: 4rem !important;
}

.text-3xl {
  font-size: 6rem !important;
}

.text-4xl {
  font-size: 8rem;
}

.text-bold {
  font-weight: 700;
}

.text-danger {
  color: #B91C1C;
}

.text-success {
  color: #34D399;
}

.text-warning {
  color: #FBBF24;
}

.overflow-hidden {
  overflow: hidden;
}

.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;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .w-full--on-small {
    width: 100%;
  }
}

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

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

ul {
  padding: 0;
  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.landing:focus-within {
  scroll-behavior: smooth;
}

html.landing {
  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;
  margin: 0;
}

/* 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;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.breadcrumbs {
  display: flex;
  list-style: none;
}
.breadcrumbs__crumb {
  display: flex;
  font-size: 0.875rem;
  line-height: 1.25rem;
  align-items: center;
}
.breadcrumbs__crumb--link {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.breadcrumbs__separator {
  margin-inline: 0.5rem;
  width: 1rem;
  height: 1rem;
  color: #111111;
}

.btn {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #1D4ED8;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.btn[disabled], .btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn--tile {
  min-width: 7rem;
  min-height: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  align-items: center;
}
.btn--tile svg {
  font-size: 2rem;
}
.btn--disabled {
  pointer-events: none;
  opacity: 0.6;
}
.btn--small {
  font-size: 0.8rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.btn--large {
  font-size: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.btn--extra-large {
  font-size: 1.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.btn:hover {
  background-color: #1E40AF;
}
.btn--inverse {
  color: #1D4ED8;
  border: 1px solid #1D4ED8;
  background-color: white;
}
.btn--inverse:hover {
  color: #112f82;
  border: 1px solid #112f82;
  background-color: white;
}
.btn--clear {
  color: #1E40AF;
  background-color: transparent;
}
.btn--clear:hover {
  color: #173083;
  background-color: transparent;
}
.btn--danger {
  background-color: #B91C1C;
}
.btn--danger:hover {
  background-color: #991B1B;
}
.btn--success {
  background-color: #34D399;
}
.btn--success:hover {
  background-color: #26af7d;
}
.btn--warning {
  background-color: #FBBF24;
}
.btn--warning:hover {
  background-color: #F59E0B;
}
.btn--with-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.btn--icon-only {
  display: inline-flex;
  text-align: center;
  align-items: center;
}

.card {
  padding: 2rem;
  background-color: #ffffff;
  width: 100%;
  max-width: 28rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  align-self: flex-start;
  max-height: 40rem;
  overflow-y: auto;
}
.card--disabled {
  opacity: 0.6;
}
.card--grow {
  max-width: 100%;
  max-height: 100%;
}
.card--grow-h {
  max-height: 100%;
}
.card--grow-w {
  max-width: 100%;
}
.card__body-list li {
  border-top: 1px solid #e5e7eb;
  padding: 0.5rem 0;
}
.card__body-list--selectable li:hover {
  cursor: pointer;
  background-color: #e5e7eb;
}
.card__body-list--selectable li a {
  display: block;
}
.card__body-list--header:hover {
  cursor: default !important;
  background-color: unset !important;
}
.card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 960px) {
  .card__header {
    border-bottom: none;
  }
}
.card__title {
  color: #111827;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.field {
  padding: 1rem;
  width: 100%;
}
.field--required .field__label:after {
  padding-left: 0.25rem;
  font-size: 1rem;
  content: "*";
  color: red;
}
.field--normal-width {
  width: unset;
}
.field__checkbox {
  background-color: #F3F4F6;
  color: #2563EB;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border-color: #D1D5DB;
}
.field__checkbox--large {
  width: 1.5rem;
  height: 1.5rem;
}
.field__radio {
  width: 1rem;
  height: 1rem;
}
.field__radio--large {
  width: 1.5rem;
  height: 1.5rem;
}
.field__input {
  display: block;
  padding: 0.625rem;
  background-color: #F9FAFB;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #D1D5DB;
}
.field__input:disabled {
  background-color: #ccd5de;
  opacity: 0.5;
  cursor: not-allowed;
}
.field__input-icon + .field__input {
  padding-left: 2.5rem;
}
.field__input-icon {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-left: 0.75rem;
  align-items: center;
  pointer-events: none;
}
.field__input-icon svg {
  color: #6B7280;
  width: 1.25rem;
  height: 1.25rem;
}
.field__label {
  display: block;
  margin-bottom: 0.5rem;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.field .tag-container {
  padding: 1rem 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.field .tag {
  align-items: center;
  background-color: #F9FAFB;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.75rem;
  justify-content: center;
  line-height: 1.5;
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
  padding: 0.5rem 1rem;
}
.field .tag::after {
  content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M10 1.6a8.4 8.4 0 1 0 0 16.8a8.4 8.4 0 0 0 0-16.8zm4.789 11.461L13.06 14.79L10 11.729l-3.061 3.06L5.21 13.06L8.272 10L5.211 6.939L6.94 5.211L10 8.271l3.061-3.061l1.729 1.729L11.728 10l3.061 3.061z"%2F%3E%3C%2Fsvg%3E');
  position: relative;
  right: -0.75rem;
  top: -0.75rem;
}

.form-layout {
  display: flex;
  width: 100%;
  padding: 0 1rem;
}
.form-layout > * {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .form-layout {
    padding: 0 15rem;
  }
}

.page__main {
  margin-top: 6rem;
  padding: 1rem;
}
@media only screen and (min-width: 1280px) {
  .page__inset {
    padding-inline: 10rem;
  }
}
@media only screen and (min-width: 1280px) {
  .page__inset--narrow {
    padding-inline: 25rem;
  }
}
.page__title {
  margin-bottom: 1rem;
}

.pagy-info {
  padding-top: 1rem;
  text-align: center;
}

.pagy-nav {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}
.pagy-nav .page {
  background-color: #ffffff;
  color: #6B7280;
  line-height: 1.25;
  border: solid 1px #e5e7eb;
  cursor: pointer;
  display: none;
}
@media only screen and (min-width: 960px) {
  .pagy-nav .page {
    display: initial;
  }
}
.pagy-nav .page:hover {
  background-color: #F3F4F6;
  color: #374151;
}
.pagy-nav .page.active {
  background-color: #EFF6FF;
  color: #2563EB;
  display: block;
  padding: 1rem;
  display: none;
}
@media only screen and (min-width: 960px) {
  .pagy-nav .page.active {
    display: initial;
  }
}
.pagy-nav .page.disabled {
  display: block;
  padding: 1rem;
  opacity: 0.7;
  pointer-events: none;
}
.pagy-nav .page.gap {
  display: block;
  padding: 1rem;
  opacity: 0.7;
  pointer-events: none;
  display: none;
}
@media only screen and (min-width: 960px) {
  .pagy-nav .page.gap {
    display: initial;
  }
}
.pagy-nav .page.prev {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  display: initial;
}
.pagy-nav .page.next {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  display: initial;
}
.pagy-nav .page a {
  display: block;
  padding: 1rem;
}

.indicator-dot {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
}
.indicator-dot--inactive, .indicator-dot--danger {
  background-color: #EF4444;
}
.indicator-dot--active, .indicator-dot--success {
  background-color: #34D399;
}
.indicator-dot--pending, .indicator-dot--warning {
  background: #f59e0b;
}

.timeline {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.timeline__event {
  display: flex;
  position: relative;
  min-height: 70px;
}
.timeline__event:last-of-type .timeline__connector {
  display: none;
}
.timeline__event-content {
  text-align: left;
  flex: 1;
  padding: 0 1rem;
  line-height: 1;
}
.timeline__event-content--opposite {
  text-align: right;
}
.timeline__separator {
  display: flex;
  flex: 0;
  align-items: center;
  flex-direction: column;
}
.timeline__marker {
  border: 2px solid #3B82F6;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  background-color: #ffffff;
}
.timeline__connector {
  width: 2px;
  background-color: #dee2e6;
  flex-grow: 1;
}

.stacked-table tr, .stacked-table .table__row {
  display: block;
}
.stacked-table tr th:first-of-type, .stacked-table tr th:last-of-type, .stacked-table tr .table__header:first-of-type, .stacked-table tr .table__header:last-of-type, .stacked-table .table__row th:first-of-type, .stacked-table .table__row th:last-of-type, .stacked-table .table__row .table__header:first-of-type, .stacked-table .table__row .table__header:last-of-type {
  flex: 0;
}
.stacked-table tr td, .stacked-table tr .table__cell, .stacked-table .table__row td, .stacked-table .table__row .table__cell {
  justify-content: space-between;
  display: flex;
  flex: 1 1 auto;
}
.stacked-table tr td:first-of-type, .stacked-table tr td:last-of-type, .stacked-table tr .table__cell:first-of-type, .stacked-table tr .table__cell:last-of-type, .stacked-table .table__row td:first-of-type, .stacked-table .table__row td:last-of-type, .stacked-table .table__row .table__cell:first-of-type, .stacked-table .table__row .table__cell:last-of-type {
  flex: 0;
}
@media only screen and (min-width: 960px) {
  .stacked-table tr, .stacked-table .table__row {
    display: flex;
    flex-direction: row;
  }
  .stacked-table tr td, .stacked-table tr th, .stacked-table .table__row td, .stacked-table .table__row th {
    flex: 1 1 0;
    display: table-cell;
  }
  .stacked-table tr .table__cell, .stacked-table tr .table__header, .stacked-table .table__row .table__cell, .stacked-table .table__row .table__header {
    flex: 1 1 0;
    display: table-cell;
  }
}
.stacked-table--not-collapsed tr th:first-of-type, .stacked-table--not-collapsed tr th:last-of-type, .stacked-table--not-collapsed tr .table__header:first-of-type, .stacked-table--not-collapsed tr .table__header:last-of-type, .stacked-table--not-collapsed .table__row th:first-of-type, .stacked-table--not-collapsed .table__row th:last-of-type, .stacked-table--not-collapsed .table__row .table__header:first-of-type, .stacked-table--not-collapsed .table__row .table__header:last-of-type {
  flex: 1 1 0;
}
.stacked-table--not-collapsed tr td:first-of-type, .stacked-table--not-collapsed tr td:last-of-type, .stacked-table--not-collapsed tr .table__cell:first-of-type, .stacked-table--not-collapsed tr .table__cell:last-of-type, .stacked-table--not-collapsed .table__row td:first-of-type, .stacked-table--not-collapsed .table__row td:last-of-type, .stacked-table--not-collapsed .table__row .table__cell:first-of-type, .stacked-table--not-collapsed .table__row .table__cell:last-of-type {
  flex: 1 1 0;
}
.stacked-table thead, .stacked-table .table__head {
  display: none;
}
@media only screen and (min-width: 960px) {
  .stacked-table thead, .stacked-table .table__head {
    display: block;
  }
}
.stacked-table__cell-header {
  display: block;
  font-weight: 700;
}
@media only screen and (min-width: 960px) {
  .stacked-table__cell-header {
    display: none;
  }
}

.table {
  border-collapse: collapse;
  display: flex;
  flex-direction: column;
}
.table--bordered th, .table--bordered td {
  border: 1px solid #e5e7eb;
}
.table__header {
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: bold;
}
.table__cell {
  padding: 0.5rem 0;
  flex-wrap: wrap;
}
@media only screen and (min-width: 960px) {
  .table__cell--id {
    max-width: 2rem;
  }
}
.table__cell--disabled {
  background-color: #e9eff5;
}
@media only screen and (min-width: 960px) {
  .table__cell {
    text-align: center;
    padding: 1rem;
  }
}
.table__head {
  background-color: #F9FAFB;
  color: #374151;
  line-height: 1rem;
  text-transform: uppercase;
}
.table__head th, .table__head .table__header {
  padding: 0.5rem 1rem;
}
.table__row {
  border-bottom: 1px solid #d1d1d1;
}
.table__row--danger {
  background-color: rgba(255, 0, 0, 0.1725490196);
}
.table__row--warning {
  background: #f59e0b;
}

body {
  font-family: "Lato", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Neuton", serif;
}

.autocomplete-list {
  display: flex;
  flex-direction: column;
}
.autocomplete-list__item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.autocomplete-list__item:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.autocomplete-list__item:hover {
  background-color: #F9FAFB;
}

.success {
  color: #14523b;
}

.danger {
  color: #c63737;
}

.badge {
  border-radius: 2px;
  padding: 0.25em 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}
.badge--active, .badge--success {
  background-color: #c8e6c9;
  color: #14523b;
}
.badge--inactive, .badge--danger {
  background-color: #ffcdd2;
  color: #c63737;
}
.badge--pending, .badge--warning {
  background-color: #feedaf;
  color: #8a5340;
}

.back-link {
  display: inline-flex;
  padding: 0.75rem;
  background-color: #F9FAFB;
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  gap: 1rem;
}
.back-link:hover {
  background-color: #F3F4F6;
  color: #111827;
}

.flash {
  text-align: center;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 0.5rem;
}
.flash-container {
  display: flex;
  justify-content: center;
}
.flash--alert {
  background-color: #FEE2E2;
  color: #B91C1C;
}
.flash--notice {
  background-color: #D1FAE5;
  color: #047857;
}

.link {
  text-decoration: none;
  font-weight: 700;
}
.link:hover {
  text-decoration: underline;
}
.link--icon {
  padding: 1rem;
  display: inline-flex;
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.link--icon--primary {
  background-color: #1D4ED8;
}
.link--icon--grey {
  background-color: #F9FAFB;
}

.signup__large-button {
  height: 5rem;
  width: 5rem;
  background-color: #1D4ED8;
  color: white;
}
.signup__form {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  max-width: 30rem;
}
.signup__form > * {
  width: 100%;
}

.custom-shape-divider-top-1707235525 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1707235525 svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 100px;
}
@media only screen and (min-width: 960px) {
  .custom-shape-divider-top-1707235525 svg {
    height: 155px;
  }
}

.custom-shape-divider-top-1707235525 .shape-fill {
  fill: #1348BF;
}

.landing-page {
  font-family: "Public sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu;
  margin: 0 auto;
  padding-top: 10rem;
  max-width: 100%;
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4, .landing-page h5 {
  font-family: Rubik, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu;
}
@media only screen and (min-width: 960px) {
  .landing-page {
    max-width: 90%;
  }
}
@media only screen and (min-width: 1280px) {
  .landing-page {
    max-width: 80%;
  }
}
.landing-page-background {
  position: relative;
}
.landing-page__nav-image {
  width: 80vw;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .landing-page__nav-image {
    width: 50rem;
  }
}
.landing-page__nav-image svg {
  width: 100%;
  height: 100%;
}
.landing-page__actions {
  display: flex;
  padding: 2rem;
  gap: 2rem;
  justify-content: space-evenly;
}
.landing-page__actions > * {
  flex: 1 1 0;
}
.landing-page__hero h1 {
  text-align: center;
  font-size: 3rem;
}
@media only screen and (min-width: 960px) {
  .landing-page__hero h1 {
    font-size: 4rem;
  }
}
.landing-page__hero p {
  font-size: 2rem;
}
.landing-page__hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.landing-page__tags {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0;
}
@media only screen and (min-width: 960px) {
  .landing-page__tags {
    padding: 2rem;
    padding-bottom: 4rem;
  }
}
.landing-page__tags .tag {
  border: 1px solid #000;
  border-radius: 500px;
  background: rgba(0, 79, 255, 0.3019607843);
  font-weight: bold;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(150deg, rgb(243, 244, 247) 19%, rgb(255, 255, 255) 150%);
  border-bottom-color: rgb(227, 230, 238);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: rgb(227, 230, 238);
  border-left-style: solid;
  border-left-width: 1px;
  border-right-color: rgb(227, 230, 238);
  border-right-style: solid;
  border-right-width: 1px;
  border-top-color: rgb(227, 230, 238);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top-style: solid;
  border-top-width: 1px;
  box-shadow: rgba(9, 11, 17, 0.01) 0px 6px 3px 0px, rgba(9, 11, 17, 0.01) 0px 4px 2px 0px, rgba(9, 11, 17, 0.02) 0px 2px 2px 0px, rgba(9, 11, 17, 0.03) 0px 0px 1px 0px;
  color: rgb(80, 93, 132);
  transition: transform 100ms;
}
.landing-page__tags .tag a {
  display: block;
  padding: 1rem;
}
.landing-page__tags .tag:hover {
  transform: translateY(-2px);
  border-color: black;
}
.landing-page-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 960px) {
  .landing-page-feature {
    flex-direction: row;
  }
  .landing-page-feature--reversed {
    flex-direction: row-reverse;
  }
}
.landing-page-feature__title {
  flex: 1 1 0;
}
.landing-page-feature__title h2 {
  font-size: 3rem;
}
@media only screen and (min-width: 960px) {
  .landing-page-feature__title h2 {
    font-size: 4rem;
  }
}
.landing-page-feature__title p {
  font-size: 1.5rem;
  max-width: 40ch;
}
.landing-page-feature__image {
  flex: 1 1 0;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: auto;
  max-width: 30rem;
}
.landing-page-feature__image img {
  border-radius: 0.5rem;
}
.landing-page__footer {
  display: flex;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  border: 1px solid #e6e6e6;
}
.landing-page__footer p {
  margin: 0;
}

.public-enrolment > * {
  margin-bottom: 1rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background-color: #ffffff;
  width: 100%;
  border-bottom: 1px solid black;
  border-color: #E5E7EB;
}
.navbar a {
  text-decoration: none;
  color: inherit;
}
.navbar__body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.navbar__image {
  height: 50px;
  width: 50px;
}
.navbar__list-wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .navbar__list-wrapper {
    display: flex !important;
    width: auto;
  }
}
.navbar__list {
  list-style: none;
  display: flex;
  padding: 1rem;
  margin-top: 1rem;
  background-color: #F9FAFB;
  flex-direction: column;
  border-radius: 0.5rem;
  border-width: 1px;
  border-color: #F3F4F6;
}
@media only screen and (min-width: 768px) {
  .navbar__list {
    margin-top: 0;
    margin-left: 2rem;
    background-color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    flex-direction: row;
    border-width: 0;
  }
}
.navbar__link {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 1rem;
  color: #374151;
  border-radius: 0.25rem;
  text-decoration: none;
}
.navbar__link:hover {
  background-color: #F3F4F6;
}
.navbar__menu-toggle {
  display: inline-flex;
  padding: 0.5rem;
  margin-left: 0.75rem;
  background-color: transparent;
  font-size: 0.875rem;
  line-height: 1.25rem;
  align-items: center;
  border-radius: 0.5rem;
  border: none;
}
.navbar__menu-toggle:hover {
  background-color: #F9FAFB;
}
@media only screen and (min-width: 768px) {
  .navbar__menu-toggle {
    display: none;
  }
}
.navbar__menu-toggle svg {
  height: 1rem;
  width: 1rem;
}
.navbar__title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  white-space: nowrap;
  align-self: center;
  padding-left: 0.5rem;
}
.navbar__user {
  display: flex;
  align-items: center;
}
.navbar__user-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
}
.navbar__menu {
  display: none;
  z-index: 50;
  background-color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  border-radius: 0.25rem;
  border-top-width: 1px;
  border-color: #F3F4F6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.navbar__menu[data-show] {
  display: block;
}
.navbar__menu ul {
  list-style-type: none;
}
.navbar__menu ul:first-child {
  padding-top: 0rem;
}
.navbar__menu ul li {
  padding: 0.75rem;
}
.navbar__menu ul li:hover {
  background-color: #F9FAFB;
}
.navbar__menu-button {
  display: flex;
  margin-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
}
