/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  
  body {
    margin: 0;
    background-color: #fafbfc;
    background-color: var(--grey-lightest);
    color: #1b1f23;
    color: var(--black);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
      Noto Sans, sans-serif, BlinkMacSystemFont, Oxygen, Fira Sans, Droid Sans,
      Helvetica Neue;
    font-family: var(--font-family-sans-serif);
    font-size: 1rem;
  }
  
  main {
    display: block;
    min-height: calc(100vh - 14rem);
  }
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  
  pre {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  
  a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    color: #0366d6;
    color: var(--blue);
  }
  
  abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  
  b,
  strong {
    font-weight: bolder;
  }
  
  code,
  kbd,
  samp {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  
  small {
    font-size: 80%;
  }
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  img {
    border-style: solid;
    max-width: 100%;
    height: auto;
  }
  
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
  }
  
  button,
  input {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  [type='button'],
  [type='reset'],
  [type='submit'],
  button {
    -webkit-appearance: button;
  }
  
  [type='button']::-moz-focus-inner,
  [type='reset']::-moz-focus-inner,
  [type='submit']::-moz-focus-inner,
  button::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  [type='button']:-moz-focusring,
  [type='reset']:-moz-focusring,
  [type='submit']:-moz-focusring,
  button:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  fieldset {
    margin: 0;
    padding: 0;
  }
  
  legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
  }
  
  progress {
    vertical-align: baseline;
  }
  
  textarea {
    overflow: auto;
    resize: vertical;
  }
  
  [type='checkbox'],
  [type='radio'] {
    box-sizing: border-box;
    padding: 0;
  }
  
  [type='number']::-webkit-inner-spin-button,
  [type='number']::-webkit-outer-spin-button {
    height: auto;
  }
  
  [type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
  }
  
  [type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
  }
  
  details {
    display: block;
  }
  
  summary {
    display: list-item;
  }
  
  [hidden],
  template {
    display: none;
  }
  
  *,
  :after,
  :before {
    box-sizing: inherit;
    border: 0 solid #e1e4e8;
  }
  
  blockquote,
  dd,
  dl,
  figure,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  pre {
    margin: 0;
  }
  
  button {
    background: 0 0;
    padding: 0;
  }
  
  button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
  }
  
  ol,
  ul {
    margin: 0;
  }
  
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.5;
  }
  
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    color: inherit;
    opacity: 0.5;
  }
  
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: inherit;
    opacity: 0.5;
  }
  
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    color: inherit;
    opacity: 0.5;
  }
  
  input::placeholder,
  textarea::placeholder {
    color: inherit;
    opacity: 0.5;
  }
  
  [role='button'],
  button {
    cursor: pointer;
  }
  
  table {
    border-collapse: collapse;
  }
  
  .container {
    width: 100%;
  }
  
  @media (min-width: 576px) {
    .container {
      max-width: 576px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 768px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      max-width: 992px;
    }
  }
  
  .list-reset {
    list-style: none;
    padding: 0;
  }
  
  .rounded {
    border-radius: 0.25rem;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .rounded-t {
    border-top-left-radius: 0.25rem;
  }
  
  .rounded-r,
  .rounded-t {
    border-top-right-radius: 0.25rem;
  }
  
  .rounded-b,
  .rounded-r {
    border-bottom-right-radius: 0.25rem;
  }
  
  .rounded-b,
  .rounded-l {
    border-bottom-left-radius: 0.25rem;
  }
  
  .rounded-l {
    border-top-left-radius: 0.25rem;
  }
  
  .rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }
  
  .rounded-r-full {
    border-top-right-radius: 9999px;
  }
  
  .rounded-b-full,
  .rounded-r-full {
    border-bottom-right-radius: 9999px;
  }
  
  .rounded-b-full,
  .rounded-l-full {
    border-bottom-left-radius: 9999px;
  }
  
  .rounded-l-full {
    border-top-left-radius: 9999px;
  }
  
  .rounded-tl {
    border-top-left-radius: 0.25rem;
  }
  
  .rounded-tr {
    border-top-right-radius: 0.25rem;
  }
  
  .rounded-br {
    border-bottom-right-radius: 0.25rem;
  }
  
  .rounded-bl {
    border-bottom-left-radius: 0.25rem;
  }
  
  .rounded-tl-full {
    border-top-left-radius: 9999px;
  }
  
  .rounded-tr-full {
    border-top-right-radius: 9999px;
  }
  
  .rounded-br-full {
    border-bottom-right-radius: 9999px;
  }
  
  .rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }
  
  .border-0 {
    border-width: 0;
  }
  
  .border-2 {
    border-width: 2px;
  }
  
  .border {
    border-width: 1px;
  }
  
  .border-t-0 {
    border-top-width: 0;
  }
  
  .border-r-0 {
    border-right-width: 0;
  }
  
  .border-b-0 {
    border-bottom-width: 0;
  }
  
  .border-l-0 {
    border-left-width: 0;
  }
  
  .border-t-2 {
    border-top-width: 2px;
  }
  
  .border-r-2 {
    border-right-width: 2px;
  }
  
  .border-b-2 {
    border-bottom-width: 2px;
  }
  
  .border-l-2 {
    border-left-width: 2px;
  }
  
  .border-t {
    border-top-width: 1px;
  }
  
  .border-r {
    border-right-width: 1px;
  }
  
  .border-b {
    border-bottom-width: 1px;
  }
  
  .border-l {
    border-left-width: 1px;
  }
  
  .cursor-auto {
    cursor: auto;
  }
  
  .cursor-default {
    cursor: default;
  }
  
  .cursor-pointer {
    cursor: pointer;
  }
  
  .cursor-wait {
    cursor: wait;
  }
  
  .cursor-move {
    cursor: move;
  }
  
  .cursor-not-allowed {
    cursor: not-allowed;
  }
  
  .block {
    display: block;
  }
  
  .inline-block {
    display: inline-block;
  }
  
  .inline {
    display: inline;
  }
  
  .table {
    display: table;
  }
  
  .table-row {
    display: table-row;
  }
  
  .table-cell {
    display: table-cell;
  }
  
  .hidden {
    display: none;
  }
  
  .flex {
    display: -webkit-box;
    display: flex;
  }
  
  .inline-flex {
    display: -webkit-inline-box;
    display: inline-flex;
  }
  
  .flex-row {
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  
  .flex-row,
  .flex-row-reverse {
    -webkit-box-orient: horizontal;
  }
  
  .flex-row-reverse {
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }
  
  .flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  
  .flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  
  .flex-no-wrap {
    flex-wrap: nowrap;
  }
  
  .items-start {
    -webkit-box-align: start;
    align-items: flex-start;
  }
  
  .items-end {
    -webkit-box-align: end;
    align-items: flex-end;
  }
  
  .items-center {
    -webkit-box-align: center;
    align-items: center;
  }
  
  .items-baseline {
    -webkit-box-align: baseline;
    align-items: baseline;
  }
  
  .items-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  
  .self-auto {
    align-self: auto;
  }
  
  .self-start {
    align-self: flex-start;
  }
  
  .self-end {
    align-self: flex-end;
  }
  
  .self-center {
    align-self: center;
  }
  
  .self-stretch {
    align-self: stretch;
  }
  
  .justify-start {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  
  .justify-end {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  
  .justify-center {
    -webkit-box-pack: center;
    justify-content: center;
  }
  
  .justify-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  
  .justify-around {
    justify-content: space-around;
  }
  
  .content-center {
    align-content: center;
  }
  
  .content-start {
    align-content: flex-start;
  }
  
  .content-end {
    align-content: flex-end;
  }
  
  .content-between {
    align-content: space-between;
  }
  
  .content-around {
    align-content: space-around;
  }
  
  .flex-1 {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
  }
  
  .flex-auto {
    -webkit-box-flex: 1;
    flex: 1 1 auto;
  }
  
  .flex-initial {
    -webkit-box-flex: 0;
    flex: 0 1 auto;
  }
  
  .flex-none {
    -webkit-box-flex: 0;
    flex: none;
  }
  
  .flex-grow {
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  
  .flex-shrink {
    flex-shrink: 1;
  }
  
  .flex-no-grow {
    -webkit-box-flex: 0;
    flex-grow: 0;
  }
  
  .flex-no-shrink {
    flex-shrink: 0;
  }
  
  .font-sans {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
      Noto Sans, sans-serif, BlinkMacSystemFont, Oxygen, Fira Sans, Droid Sans,
      Helvetica Neue;
  }
  
  .font-mono {
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }
  
  .font-normal {
    font-weight: 400;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .hover\:font-normal:hover {
    font-weight: 400;
  }
  
  .hover\:font-medium:hover {
    font-weight: 500;
  }
  
  .hover\:font-semibold:hover {
    font-weight: 600;
  }
  
  .hover\:font-bold:hover {
    font-weight: 700;
  }
  
  .focus\:font-normal:focus {
    font-weight: 400;
  }
  
  .focus\:font-medium:focus {
    font-weight: 500;
  }
  
  .focus\:font-semibold:focus {
    font-weight: 600;
  }
  
  .focus\:font-bold:focus {
    font-weight: 700;
  }
  
  .h-4 {
    height: 1rem;
  }
  
  .h-5 {
    height: 1.25rem;
  }
  
  .h-6 {
    height: 1.5rem;
  }
  
  .h-10 {
    height: 2.5rem;
  }
  
  .h-64 {
    height: 16rem;
  }
  
  .h-auto {
    height: auto;
  }
  
  .h-full {
    height: 100%;
  }
  
  .leading-none {
    line-height: 1;
  }
  
  .leading-tight {
    line-height: 1.25;
  }
  
  .leading-normal {
    line-height: 1.5;
  }
  
  .m-0 {
    margin: 0;
  }
  
  .m-1 {
    margin: 0.25rem;
  }
  
  .m-2 {
    margin: 0.5rem;
  }
  
  .m-3 {
    margin: 0.75rem;
  }
  
  .m-4 {
    margin: 1rem;
  }
  
  .m-5 {
    margin: 1.25rem;
  }
  
  .m-6 {
    margin: 1.5rem;
  }
  
  .m-auto {
    margin: auto;
  }
  
  .my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  
  .mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  
  .my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  
  .my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  
  .my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  
  .my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  
  .my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .mt-0 {
    margin-top: 0;
  }
  
  .mr-0 {
    margin-right: 0;
  }
  
  .mb-0 {
    margin-bottom: 0;
  }
  
  .ml-0 {
    margin-left: 0;
  }
  
  .mt-1 {
    margin-top: 0.25rem;
  }
  
  .mr-1 {
    margin-right: 0.25rem;
  }
  
  .mb-1 {
    margin-bottom: 0.25rem;
  }
  
  .ml-1 {
    margin-left: 0.25rem;
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  .mr-2 {
    margin-right: 0.5rem;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .ml-2 {
    margin-left: 0.5rem;
  }
  
  .mt-3 {
    margin-top: 0.75rem;
  }
  
  .mr-3 {
    margin-right: 0.75rem;
  }
  
  .mb-3 {
    margin-bottom: 0.75rem;
  }
  
  .ml-3 {
    margin-left: 0.75rem;
  }
  
  .mt-4 {
    margin-top: 1rem;
  }
  
  .mr-4 {
    margin-right: 1rem;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .ml-4 {
    margin-left: 1rem;
  }
  
  .mt-5 {
    margin-top: 1.25rem;
  }
  
  .mr-5 {
    margin-right: 1.25rem;
  }
  
  .mb-5 {
    margin-bottom: 1.25rem;
  }
  
  .ml-5 {
    margin-left: 1.25rem;
  }
  
  .mt-6 {
    margin-top: 1.5rem;
  }
  
  .mr-6 {
    margin-right: 1.5rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .ml-6 {
    margin-left: 1.5rem;
  }
  
  .mt-auto {
    margin-top: auto;
  }
  
  .mr-auto {
    margin-right: auto;
  }
  
  .mb-auto {
    margin-bottom: auto;
  }
  
  .ml-auto {
    margin-left: auto;
  }
  
  .max-h-full {
    max-height: 100%;
  }
  
  .max-h-screen {
    max-height: 100vh;
  }
  
  .max-w-xs {
    max-width: 20rem;
  }
  
  .max-w-sm {
    max-width: 30rem;
  }
  
  .max-w-md {
    max-width: 40rem;
  }
  
  .max-w-screen {
    max-width: 100vw;
  }
  
  .opacity-0 {
    opacity: 0;
  }
  
  .opacity-25 {
    opacity: 0.25;
  }
  
  .opacity-50 {
    opacity: 0.5;
  }
  
  .opacity-75 {
    opacity: 0.75;
  }
  
  .opacity-100 {
    opacity: 1;
  }
  
  .focus\:outline-none:focus,
  .outline-none {
    outline: 0;
  }
  
  .overflow-auto {
    overflow: auto;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .overflow-visible {
    overflow: visible;
  }
  
  .overflow-scroll {
    overflow: scroll;
  }
  
  .overflow-x-auto {
    overflow-x: auto;
  }
  
  .overflow-y-auto {
    overflow-y: auto;
  }
  
  .overflow-x-hidden {
    overflow-x: hidden;
  }
  
  .overflow-y-hidden {
    overflow-y: hidden;
  }
  
  .overflow-x-visible {
    overflow-x: visible;
  }
  
  .overflow-y-visible {
    overflow-y: visible;
  }
  
  .overflow-x-scroll {
    overflow-x: scroll;
  }
  
  .overflow-y-scroll {
    overflow-y: scroll;
  }
  
  .scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }
  
  .scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }
  
  .p-0 {
    padding: 0;
  }
  
  .p-1 {
    padding: 0.25rem;
  }
  
  .p-2 {
    padding: 0.5rem;
  }
  
  .p-3 {
    padding: 0.75rem;
  }
  
  .p-4 {
    padding: 1rem;
  }
  
  .p-6 {
    padding: 1.5rem;
  }
  
  .p-8 {
    padding: 2rem;
  }
  
  .py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  
  .px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  
  .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .pt-0 {
    padding-top: 0;
  }
  
  .pr-0 {
    padding-right: 0;
  }
  
  .pb-0 {
    padding-bottom: 0;
  }
  
  .pl-0 {
    padding-left: 0;
  }
  
  .pt-1 {
    padding-top: 0.25rem;
  }
  
  .pr-1 {
    padding-right: 0.25rem;
  }
  
  .pb-1 {
    padding-bottom: 0.25rem;
  }
  
  .pl-1 {
    padding-left: 0.25rem;
  }
  
  .pt-2 {
    padding-top: 0.5rem;
  }
  
  .pr-2 {
    padding-right: 0.5rem;
  }
  
  .pb-2 {
    padding-bottom: 0.5rem;
  }
  
  .pl-2 {
    padding-left: 0.5rem;
  }
  
  .pt-3 {
    padding-top: 0.75rem;
  }
  
  .pr-3 {
    padding-right: 0.75rem;
  }
  
  .pb-3 {
    padding-bottom: 0.75rem;
  }
  
  .pl-3 {
    padding-left: 0.75rem;
  }
  
  .pt-4 {
    padding-top: 1rem;
  }
  
  .pr-4 {
    padding-right: 1rem;
  }
  
  .pb-4 {
    padding-bottom: 1rem;
  }
  
  .pl-4 {
    padding-left: 1rem;
  }
  
  .pt-6 {
    padding-top: 1.5rem;
  }
  
  .pr-6 {
    padding-right: 1.5rem;
  }
  
  .pb-6 {
    padding-bottom: 1.5rem;
  }
  
  .pl-6 {
    padding-left: 1.5rem;
  }
  
  .pt-8 {
    padding-top: 2rem;
  }
  
  .pr-8 {
    padding-right: 2rem;
  }
  
  .pb-8 {
    padding-bottom: 2rem;
  }
  
  .pl-8 {
    padding-left: 2rem;
  }
  
  .static {
    position: static;
  }
  
  .fixed {
    position: fixed;
  }
  
  .absolute {
    position: absolute;
  }
  
  .relative {
    position: relative;
  }
  
  .sticky {
    position: -webkit-sticky;
    position: sticky;
  }
  
  .pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  
  .pin {
    right: 0;
    left: 0;
  }
  
  .pin,
  .pin-y {
    top: 0;
    bottom: 0;
  }
  
  .pin-x {
    right: 0;
    left: 0;
  }
  
  .pin-t {
    top: 0;
  }
  
  .pin-r {
    right: 0;
  }
  
  .pin-b {
    bottom: 0;
  }
  
  .pin-l {
    left: 0;
  }
  
  .shadow {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }
  
  .shadow-md {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  }
  
  .shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }
  
  .table-auto {
    table-layout: auto;
  }
  
  .table-fixed {
    table-layout: fixed;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-justify {
    text-align: justify;
  }
  
  .text-sm {
    font-size: 0.875rem;
  }
  
  .text-base {
    font-size: 1rem;
  }
  
  .text-lg {
    font-size: 1.125rem;
  }
  
  .text-xl {
    font-size: 1.25rem;
  }
  
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .text-5xl {
    font-size: 3rem;
  }
  
  .align-baseline {
    vertical-align: baseline;
  }
  
  .align-top {
    vertical-align: top;
  }
  
  .align-middle {
    vertical-align: middle;
  }
  
  .align-bottom {
    vertical-align: bottom;
  }
  
  .align-text-top {
    vertical-align: text-top;
  }
  
  .align-text-bottom {
    vertical-align: text-bottom;
  }
  
  .w-4 {
    width: 1rem;
  }
  
  .w-5 {
    width: 1.25rem;
  }
  
  .w-6 {
    width: 1.5rem;
  }
  
  .w-2\/3 {
    width: 66.66667%;
  }
  
  .w-full {
    width: 100%;
  }
  
  .z-0 {
    z-index: 0;
  }
  
  .z-10 {
    z-index: 10;
  }
  
  .z-50 {
    z-index: 50;
  }
  
  .z-auto {
    z-index: auto;
  }
  
  :root {
    --transparent: transparent;
    --black: #1b1f23;
    --grey-darkest: #586069;
    --grey-darker: #6a737d;
    --grey-dark: #959da5;
    --grey: #d1d5da;
    --grey-light: #e1e4e8;
    --grey-lighter: #f6f8fa;
    --grey-lightest: #fafbfc;
    --white: #fff;
    --blue: #0366d6;
    --purple: #6f42c1;
    --green: #28a745;
    --orange: #f66a0a;
    --red: #d73a49;
    --yellow: #ffd33d;
    --font-family-sans-serif: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
      Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, -apple-system,
      Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
      Helvetica Neue, sans-serif;
    --font-family-monospace: Menlo, Monaco, Consolas, Liberation Mono, Courier New,
      monospace;
  }
  
  a:hover {
    color: #1b1f23;
    color: var(--black);
  }
  
  .btn {
    display: inline-block;
    border-radius: 0.25rem;
    font-weight: 500;
    border-width: 1px;
    padding: 0.5rem 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    color: #586069;
    color: var(--grey-darkest);
    background-color: #fff;
    background-color: var(--white);
    border-color: #e1e4e8;
    border-color: var(--grey-light);
  }
  
  .btn:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    color: #1b1f23;
    color: var(--black);
    border-color: #d1d5da;
    border-color: var(--grey);
  }
  
  .badge {
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
  }
  
  .badge,
  .popover {
    font-size: 0.875rem;
  }
  
  .popover {
    position: absolute;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin: 0.25rem;
    max-width: 20rem;
    text-align: center;
    color: #fff;
    color: var(--white);
    background-color: #586069;
    background-color: var(--grey-darkest);
  }
  