/* frontend/styles/index.scss */
:root {
  --bg-color: #ffffff;
  --bg-secondary-color: #f3f3f6;
  --color-primary: #14854F;
  --color-lightGrey: #d2d6dd;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d43939;
  --color-success: #28bd14;
  --grid-maxWidth: 120rem;
  --grid-gutter: 2rem;
  --font-size: 1.6rem;
  --font-color: #333333;
  --font-family-sans:
    -apple-system,
    BlinkMacSystemFont,
    Avenir,
    "Avenir Next",
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  --font-family-mono:
    monaco,
    "Consolas",
    "Lucida Console",
    monospace;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: var(--font-size);
  color: var(--font-color);
  font-family:
    "Segoe UI",
    "Helvetica Neue",
    sans-serif;
  font-family: var(--font-family-sans);
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0.35em 0 0.7em 0;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.25em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.85em;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover:not(.button) {
  opacity: 0.75;
}
button {
  font-family: inherit;
}
p {
  margin-top: 0;
}
blockquote {
  background-color: var(--bg-secondary-color);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--color-lightGrey);
}
dl dt {
  font-weight: bold;
}
hr {
  border: none;
  background-color: var(--color-lightGrey);
  height: 1px;
  margin: 1rem 0;
}
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
table.striped tr:nth-of-type(2n) {
  background-color: var(--bg-secondary-color);
}
td,
th {
  vertical-align: middle;
  padding: 1.2rem 0.4rem;
}
thead {
  border-bottom: 2px solid var(--color-lightGrey);
}
tfoot {
  border-top: 2px solid var(--color-lightGrey);
}
code,
kbd,
pre,
samp,
tt {
  font-family: var(--font-family-mono);
}
code,
kbd {
  padding: 0 0.4rem;
  font-size: 90%;
  white-space: pre-wrap;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  background-color: var(--bg-secondary-color);
  color: var(--color-error);
}
pre {
  background-color: var(--bg-secondary-color);
  font-size: 1em;
  padding: 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
img {
  max-width: 100%;
}
fieldset {
  border: 1px solid var(--color-lightGrey);
}
iframe {
  border: 0;
}
.container {
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: calc(var(--grid-gutter) / -2);
  margin-right: calc(var(--grid-gutter) / -2);
}
.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.col,
[class*=" col-"],
[class^=col-] {
  margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(8.3333333333% - var(--grid-gutter));
  flex: 0 0 calc(8.3333333333% - var(--grid-gutter));
  max-width: calc(8.3333333333% - var(--grid-gutter));
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(16.6666666667% - var(--grid-gutter));
  flex: 0 0 calc(16.6666666667% - var(--grid-gutter));
  max-width: calc(16.6666666667% - var(--grid-gutter));
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% - var(--grid-gutter));
  flex: 0 0 calc(25% - var(--grid-gutter));
  max-width: calc(25% - var(--grid-gutter));
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.3333333333% - var(--grid-gutter));
  flex: 0 0 calc(33.3333333333% - var(--grid-gutter));
  max-width: calc(33.3333333333% - var(--grid-gutter));
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(41.6666666667% - var(--grid-gutter));
  flex: 0 0 calc(41.6666666667% - var(--grid-gutter));
  max-width: calc(41.6666666667% - var(--grid-gutter));
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - var(--grid-gutter));
  flex: 0 0 calc(50% - var(--grid-gutter));
  max-width: calc(50% - var(--grid-gutter));
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(58.3333333333% - var(--grid-gutter));
  flex: 0 0 calc(58.3333333333% - var(--grid-gutter));
  max-width: calc(58.3333333333% - var(--grid-gutter));
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(66.6666666667% - var(--grid-gutter));
  flex: 0 0 calc(66.6666666667% - var(--grid-gutter));
  max-width: calc(66.6666666667% - var(--grid-gutter));
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(75% - var(--grid-gutter));
  flex: 0 0 calc(75% - var(--grid-gutter));
  max-width: calc(75% - var(--grid-gutter));
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(83.3333333333% - var(--grid-gutter));
  flex: 0 0 calc(83.3333333333% - var(--grid-gutter));
  max-width: calc(83.3333333333% - var(--grid-gutter));
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(91.6666666667% - var(--grid-gutter));
  flex: 0 0 calc(91.6666666667% - var(--grid-gutter));
  max-width: calc(91.6666666667% - var(--grid-gutter));
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - var(--grid-gutter));
  flex: 0 0 calc(100% - var(--grid-gutter));
  max-width: calc(100% - var(--grid-gutter));
}
@media screen and (max-width: 599px) {
  .container {
    width: 100%;
  }
  .col,
  [class*=col-],
  [class^=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .col-1-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(8.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(8.3333333333% - var(--grid-gutter));
    max-width: calc(8.3333333333% - var(--grid-gutter));
  }
  .col-2-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(16.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(16.6666666667% - var(--grid-gutter));
    max-width: calc(16.6666666667% - var(--grid-gutter));
  }
  .col-3-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - var(--grid-gutter));
    flex: 0 0 calc(25% - var(--grid-gutter));
    max-width: calc(25% - var(--grid-gutter));
  }
  .col-4-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(33.3333333333% - var(--grid-gutter));
    max-width: calc(33.3333333333% - var(--grid-gutter));
  }
  .col-5-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(41.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(41.6666666667% - var(--grid-gutter));
    max-width: calc(41.6666666667% - var(--grid-gutter));
  }
  .col-6-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - var(--grid-gutter));
    flex: 0 0 calc(50% - var(--grid-gutter));
    max-width: calc(50% - var(--grid-gutter));
  }
  .col-7-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(58.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(58.3333333333% - var(--grid-gutter));
    max-width: calc(58.3333333333% - var(--grid-gutter));
  }
  .col-8-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(66.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(66.6666666667% - var(--grid-gutter));
    max-width: calc(66.6666666667% - var(--grid-gutter));
  }
  .col-9-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(75% - var(--grid-gutter));
    flex: 0 0 calc(75% - var(--grid-gutter));
    max-width: calc(75% - var(--grid-gutter));
  }
  .col-10-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(83.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(83.3333333333% - var(--grid-gutter));
    max-width: calc(83.3333333333% - var(--grid-gutter));
  }
  .col-11-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(91.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(91.6666666667% - var(--grid-gutter));
    max-width: calc(91.6666666667% - var(--grid-gutter));
  }
  .col-12-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - var(--grid-gutter));
    flex: 0 0 calc(100% - var(--grid-gutter));
    max-width: calc(100% - var(--grid-gutter));
  }
}
@media screen and (min-width: 1200px) {
  .col-1-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(8.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(8.3333333333% - var(--grid-gutter));
    max-width: calc(8.3333333333% - var(--grid-gutter));
  }
  .col-2-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(16.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(16.6666666667% - var(--grid-gutter));
    max-width: calc(16.6666666667% - var(--grid-gutter));
  }
  .col-3-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - var(--grid-gutter));
    flex: 0 0 calc(25% - var(--grid-gutter));
    max-width: calc(25% - var(--grid-gutter));
  }
  .col-4-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(33.3333333333% - var(--grid-gutter));
    max-width: calc(33.3333333333% - var(--grid-gutter));
  }
  .col-5-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(41.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(41.6666666667% - var(--grid-gutter));
    max-width: calc(41.6666666667% - var(--grid-gutter));
  }
  .col-6-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - var(--grid-gutter));
    flex: 0 0 calc(50% - var(--grid-gutter));
    max-width: calc(50% - var(--grid-gutter));
  }
  .col-7-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(58.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(58.3333333333% - var(--grid-gutter));
    max-width: calc(58.3333333333% - var(--grid-gutter));
  }
  .col-8-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(66.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(66.6666666667% - var(--grid-gutter));
    max-width: calc(66.6666666667% - var(--grid-gutter));
  }
  .col-9-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(75% - var(--grid-gutter));
    flex: 0 0 calc(75% - var(--grid-gutter));
    max-width: calc(75% - var(--grid-gutter));
  }
  .col-10-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(83.3333333333% - var(--grid-gutter));
    flex: 0 0 calc(83.3333333333% - var(--grid-gutter));
    max-width: calc(83.3333333333% - var(--grid-gutter));
  }
  .col-11-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(91.6666666667% - var(--grid-gutter));
    flex: 0 0 calc(91.6666666667% - var(--grid-gutter));
    max-width: calc(91.6666666667% - var(--grid-gutter));
  }
  .col-12-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - var(--grid-gutter));
    flex: 0 0 calc(100% - var(--grid-gutter));
    max-width: calc(100% - var(--grid-gutter));
  }
}
fieldset {
  padding: 0.5rem 2rem;
}
legend {
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.1rem;
}
input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]),
select,
textarea,
textarea[type=text] {
  font-family: inherit;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--color-lightGrey);
  font-size: 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
  width: 100%;
}
input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]):not(:disabled):hover,
select:hover,
textarea:hover,
textarea[type=text]:hover {
  border-color: var(--color-grey);
}
input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]):focus,
select:focus,
textarea:focus,
textarea[type=text]:focus {
  outline: none;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 1px var(--color-primary);
  box-shadow: 0 0 1px var(--color-primary);
}
input.error:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]),
textarea.error {
  border-color: var(--color-error);
}
input.success:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]),
textarea.success {
  border-color: var(--color-success);
}
select {
  -webkit-appearance: none;
  background: #f3f3f6 no-repeat 100%;
  background-size: 1ex;
  background-origin: content-box;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
}
[type=checkbox],
[type=radio] {
  width: 1.6rem;
  height: 1.6rem;
}
.button,
[type=button],
[type=reset],
[type=submit],
button {
  padding: 1rem 2.5rem;
  color: var(--color-darkGrey);
  background: var(--color-lightGrey);
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: var(--font-size);
  line-height: 1;
  text-align: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  text-decoration: none;
  -webkit-transform: scale(1);
  transform: scale(1);
  display: inline-block;
  cursor: pointer;
}
.grouped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grouped > *:not(:last-child) {
  margin-right: 16px;
}
.grouped.gapless > * {
  margin: 0 0 0 -1px !important;
  border-radius: 0 !important;
}
.grouped.gapless > *:first-child {
  margin: 0 !important;
  border-radius: 4px 0 0 4px !important;
}
.grouped.gapless > *:last-child {
  border-radius: 0 4px 4px 0 !important;
}
.button + .button {
  margin-left: 1rem;
}
.button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover,
button:hover {
  opacity: 0.8;
}
.button:active,
[type=button]:active,
[type=reset]:active,
[type=submit]:active,
button:active {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}
input:disabled,
button:disabled,
input:disabled:hover,
button:disabled:hover {
  opacity: 0.4;
  cursor: not-allowed;
}
.button.primary,
.button.secondary,
.button.dark,
.button.error,
.button.success,
[type=submit] {
  color: #fff;
  z-index: 1;
  background-color: #000;
  background-color: var(--color-primary);
}
.button.secondary {
  background-color: var(--color-grey);
}
.button.dark {
  background-color: var(--color-darkGrey);
}
.button.error {
  background-color: var(--color-error);
}
.button.success {
  background-color: var(--color-success);
}
.button.outline {
  background-color: transparent;
  border-color: var(--color-lightGrey);
}
.button.outline.primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.button.outline.secondary {
  border-color: var(--color-grey);
  color: var(--color-grey);
}
.button.outline.dark {
  border-color: var(--color-darkGrey);
  color: var(--color-darkGrey);
}
.button.clear {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
}
.button.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.button.icon > img {
  margin-left: 2px;
}
.button.icon-only {
  padding: 1rem;
}
::-webkit-input-placeholder {
  color: #bdbfc4;
}
::-moz-placeholder {
  color: #bdbfc4;
}
:-ms-input-placeholder {
  color: #bdbfc4;
}
::-ms-input-placeholder {
  color: #bdbfc4;
}
::placeholder {
  color: #bdbfc4;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 5rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.nav img {
  max-height: 3rem;
}
.nav > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-center,
.nav-left,
.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.nav-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.nav-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .nav,
  .nav > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav-center,
  .nav-left,
  .nav-right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.nav a,
.nav .brand {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 2rem;
  color: var(--color-darkGrey);
}
.nav .active:not(.button) {
  color: #000;
  color: var(--color-primary);
}
.nav .brand {
  font-size: 1.75em;
  padding-top: 0;
  padding-bottom: 0;
}
.nav .brand img {
  padding-right: 1rem;
}
.nav .button {
  margin: auto 1rem;
}
.card {
  padding: 1rem 2rem;
  border-radius: 4px;
  background: var(--bg-color);
  -webkit-box-shadow: 0 1px 3px var(--color-grey);
  box-shadow: 0 1px 3px var(--color-grey);
}
.card p:last-child {
  margin: 0;
}
.card header > * {
  margin-top: 0;
  margin-bottom: 1rem;
}
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs a {
  text-decoration: none;
}
.tabs > .dropdown > summary,
.tabs > a {
  padding: 1rem 2rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  color: var(--color-darkGrey);
  border-bottom: 2px solid var(--color-lightGrey);
  text-align: center;
}
.tabs > a.active,
.tabs > a:hover {
  opacity: 1;
  border-bottom: 2px solid var(--color-darkGrey);
}
.tabs > a.active {
  border-color: var(--color-primary);
}
.tabs.is-full a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.tag {
  display: inline-block;
  border: 1px solid var(--color-lightGrey);
  text-transform: uppercase;
  color: var(--color-grey);
  padding: 0.5rem;
  line-height: 1;
  letter-spacing: 0.5px;
}
.tag.is-small {
  padding: 0.4rem;
  font-size: 0.75em;
}
.tag.is-large {
  padding: 0.7rem;
  font-size: 1.125em;
}
.tag + .tag {
  margin-left: 1rem;
}
details.dropdown {
  position: relative;
  display: inline-block;
}
details.dropdown > :last-child {
  position: absolute;
  left: 0;
  white-space: nowrap;
}
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-light {
  background-color: var(--color-lightGrey) !important;
}
.bg-dark {
  background-color: var(--color-darkGrey) !important;
}
.bg-grey {
  background-color: var(--color-grey) !important;
}
.bg-error {
  background-color: var(--color-error) !important;
}
.bg-success {
  background-color: var(--color-success) !important;
}
.bd-primary {
  border: 1px solid var(--color-primary) !important;
}
.bd-light {
  border: 1px solid var(--color-lightGrey) !important;
}
.bd-dark {
  border: 1px solid var(--color-darkGrey) !important;
}
.bd-grey {
  border: 1px solid var(--color-grey) !important;
}
.bd-error {
  border: 1px solid var(--color-error) !important;
}
.bd-success {
  border: 1px solid var(--color-success) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-light {
  color: var(--color-lightGrey) !important;
}
.text-dark {
  color: var(--color-darkGrey) !important;
}
.text-grey {
  color: var(--color-grey) !important;
}
.text-error {
  color: var(--color-error) !important;
}
.text-success {
  color: var(--color-success) !important;
}
.text-white {
  color: #fff !important;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.is-full-screen {
  width: 100%;
  min-height: 100vh;
}
.is-full-width {
  width: 100% !important;
}
.is-vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.is-horizontal-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.is-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.is-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.is-fixed {
  position: fixed;
  width: 100%;
}
.is-paddingless {
  padding: 0 !important;
}
.is-marginless {
  margin: 0 !important;
}
.is-pointer {
  cursor: pointer !important;
}
.is-rounded {
  border-radius: 100%;
}
.clearfix {
  content: "";
  display: table;
  clear: both;
}
.is-hidden {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .hide-xs {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .hide-sm {
    display: none !important;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .hide-md {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .hide-lg {
    display: none !important;
  }
}
@media print {
  .hide-pr {
    display: none !important;
  }
}
pre,
code {
  font-size: 12pt;
  border-radius: 3px;
  background-color: #efefef;
  line-height: 16pt;
  tab-size: 2;
  color: #425358;
}
code {
  padding: 1px 5px;
}
pre {
  padding: 8px 12px;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}
div.highlight {
  background-color: #efefef;
  -moz-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}
div.highlight pre code {
  overflow-x: auto;
  white-space: inherit;
}
@media (min-width: 768px) {
  div.highlight {
    padding: 7px 7px 7px 10px;
    margin: 1em -2em 2em;
  }
  .has-sidenotes div.highlight {
    margin-right: -0.5em;
  }
}
@media (max-width: 768px) {
  div.highlight {
    padding: 7px 0px 7px 0px;
    margin: 7px 1px 12px;
  }
  pre {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  pre code {
    font-size: 0.7em;
    line-height: 1;
  }
}
.highlight .c {
  color: #586E75;
}
.highlight .err {
  color: #425358;
}
.highlight .g {
  color: #425358;
}
.highlight .k {
  color: #859900;
}
.highlight .l {
  color: #425358;
}
.highlight .n {
  color: #425358;
}
.highlight .o {
  color: #859900;
}
.highlight .x {
  color: #CB4B16;
}
.highlight .p {
  color: #425358;
}
.highlight .cm {
  color: #586E75;
}
.highlight .cp {
  color: #859900;
}
.highlight .c1 {
  color: #586E75;
}
.highlight .cs {
  color: #859900;
}
.highlight .gd {
  color: #2AA198;
}
.highlight .ge {
  color: #425358;
  font-style: italic;
}
.highlight .gr {
  color: #DC322F;
}
.highlight .gh {
  color: #CB4B16;
}
.highlight .gi {
  color: #859900;
}
.highlight .go {
  color: #425358;
}
.highlight .gp {
  color: #425358;
}
.highlight .gs {
  color: #425358;
  font-weight: bold;
}
.highlight .gu {
  color: #CB4B16;
}
.highlight .gt {
  color: #425358;
}
.highlight .kc {
  color: #CB4B16;
}
.highlight .kd {
  color: #268BD2;
}
.highlight .kn {
  color: #859900;
}
.highlight .kp {
  color: #859900;
}
.highlight .kr {
  color: #268BD2;
}
.highlight .kt {
  color: #DC322F;
}
.highlight .ld {
  color: #425358;
}
.highlight .m {
  color: #2AA198;
}
.highlight .s {
  color: #2AA198;
}
.highlight .na {
  color: #425358;
}
.highlight .nb {
  color: #B58900;
}
.highlight .nc {
  color: #268BD2;
}
.highlight .no {
  color: #CB4B16;
}
.highlight .nd {
  color: #268BD2;
}
.highlight .ni {
  color: #CB4B16;
}
.highlight .ne {
  color: #CB4B16;
}
.highlight .nf {
  color: #268BD2;
}
.highlight .nl {
  color: #425358;
}
.highlight .nn {
  color: #425358;
}
.highlight .nx {
  color: #555;
}
.highlight .py {
  color: #425358;
}
.highlight .nt {
  color: #268BD2;
}
.highlight .nv {
  color: #268BD2;
}
.highlight .ow {
  color: #859900;
}
.highlight .w {
  color: #425358;
}
.highlight .mf {
  color: #2AA198;
}
.highlight .mh {
  color: #2AA198;
}
.highlight .mi {
  color: #2AA198;
}
.highlight .mo {
  color: #2AA198;
}
.highlight .sb {
  color: #586E75;
}
.highlight .sc {
  color: #2AA198;
}
.highlight .sd {
  color: #425358;
}
.highlight .s2 {
  color: #2AA198;
}
.highlight .se {
  color: #CB4B16;
}
.highlight .sh {
  color: #425358;
}
.highlight .si {
  color: #2AA198;
}
.highlight .sx {
  color: #2AA198;
}
.highlight .sr {
  color: #DC322F;
}
.highlight .s1 {
  color: #2AA198;
}
.highlight .ss {
  color: #2AA198;
}
.highlight .bp {
  color: #268BD2;
}
.highlight .vc {
  color: #268BD2;
}
.highlight .vg {
  color: #268BD2;
}
.highlight .vi {
  color: #268BD2;
}
.highlight .il {
  color: #2AA198;
}
.divider {
  display: flex;
  flex-direction: row;
  color: #ccc;
  margin-bottom: 6rem;
  font-variant: small-caps;
}
.divider:before,
.divider:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid #ccc;
  margin: auto;
}
.divider:before {
  margin-right: 10px;
}
.divider:after {
  margin-left: 10px;
}
.sidenote {
  float: right;
  clear: right;
  width: 18vw;
  margin-right: -20vw;
  margin-bottom: 1em;
  font-size: 85%;
}
.sidenote.left {
  float: left;
  margin-left: -20vw;
  margin-bottom: 1em;
}
.sidenote:target {
  border: hsl(55deg, 55%, 70%) 1.5px solid;
  padding: 0 0.5rem;
  scroll-margin-block-start: 10rem;
}
.sidenote-number {
  counter-increment: sidenote-counter;
}
.sidenote-number::after,
.sidenote::before {
  position: relative;
  vertical-align: baseline;
}
.sidenote-number::after {
  content: counter(sidenote-counter);
  font-size: 1.2rem;
  top: -0.5rem;
  left: 0.1rem;
}
.sidenote-number ~ .sidenote::before {
  content: counter(sidenote-counter) " ";
  font-size: 1.2rem;
  top: -0.5rem;
}
label.sidenote-toggle:not(.sidenote-number) {
  display: none;
}
blockquote .sidenote {
  margin-right: -24vw;
  width: 18vw;
}
label.sidenote-toggle {
  display: inline;
  cursor: pointer;
}
input.sidenote-toggle {
  display: none;
}
@media (max-width: 1050px) {
  label.sidenote-toggle:not(.sidenote-number) {
    display: inline;
  }
  .sidenote {
    display: none;
  }
  .sidenote-toggle:checked + .sidenote {
    display: block;
    margin: 0.5rem 1.25rem 1rem 0.5rem;
    float: left;
    left: 1rem;
    clear: both;
    width: 95%;
  }
  blockquote .sidenote {
    margin-right: -25vw;
    width: 16vw;
  }
}
a.dead-internal-link {
  border-color: gray;
  border-width: 0 0 1px 0;
  text-decoration: none;
}
:root {
  --color-primary: #0400ff;
  --font-size: 1.5rem;
  --font-color: #222;
}
@media (min-width: 1200px) {
  :root {
    --font-size: 1.8rem;
  }
  article.has-sidenotes.post {
    margin-left: -15rem;
  }
}
h6.infoline {
  font-variant: small-caps;
  margin-bottom: 3em;
  text-align: right;
}
body {
  max-width: 42em;
  margin: auto;
  counter-reset: sidenote-counter;
  font-family: "Source Serif 4 Variable", serif;
  font-size: 20px;
}
body nav.main a.brand {
  padding-left: 0;
  font-variant: small-caps;
}
body a {
  color: #222;
  text-decoration: none;
}
body a:hover {
  background: #e8e1d8;
  opacity: 1;
  border-bottom: 0 none;
}
main a {
  text-decoration-line: underline;
  text-decoration-color: #cf0e0e;
  text-decoration-thickness: 2px;
}
main a:hover {
  text-decoration-color: #e8e1d8;
}
main a.glightbox,
main a.glightbox:hover {
  border-bottom: none;
  background: none;
}
main a.external-link::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 2px;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 11V3h-8v2h4v2h-2v2h-2v2h-2v2H9v2h2v-2h2v-2h2V9h2V7h2v4h2zM11 5H3v16h16v-8h-2v6H5V7h6V5z' fill='currentColor'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  text-decoration: none;
  color: #aaa;
  vertical-align: text-top;
}
main .post a.internal-link:before {
  content: "[[";
  color: #aaa;
  padding-right: 1px;
  font-size: 1.1em;
  vertical-align: baseline;
  display: inline-block;
  text-decoration: none;
}
main .post a.internal-link::after {
  content: "]]";
  padding-left: 1px;
  font-size: 1.1em;
  vertical-align: baseline;
  color: #aaa;
  display: inline-block;
  text-decoration: none;
}
body.wider {
  max-width: 68em;
}
article.post {
  max-width: 42em;
  margin: auto;
  margin-bottom: 3em;
}
article.post img {
  margin: auto;
}
@media (max-width: 768px) {
  body {
    padding: 0 0.5em;
  }
}
nav.main {
  margin-bottom: 3em;
}
section.post-footer {
  color: #666;
  margin-bottom: 8rem;
}
section.post-footer a {
  color: #555;
}
footer {
  font-size: 0.8em;
  color: #555;
}
footer a {
  color: #111;
}
footer p.copyright {
  text-align: center;
}

/* node_modules/@fontsource-variable/source-serif-4/index.css */
@font-face {
  font-family: "Source Serif 4 Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/_bridgetown/static/source-serif-4-cyrillic-ext-wght-normal-77L3BXMF.woff2) format("woff2-variations");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Serif 4 Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/_bridgetown/static/source-serif-4-cyrillic-wght-normal-IH2XNZCI.woff2) format("woff2-variations");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Source Serif 4 Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/_bridgetown/static/source-serif-4-greek-wght-normal-RXH5DJGN.woff2) format("woff2-variations");
  unicode-range:
    U+0370-0377,
    U+037A-037F,
    U+0384-038A,
    U+038C,
    U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: "Source Serif 4 Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/_bridgetown/static/source-serif-4-vietnamese-wght-normal-7U4DZPJD.woff2) format("woff2-variations");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Source Serif 4 Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/_bridgetown/static/source-serif-4-latin-ext-wght-normal-LEGYSCGD.woff2) format("woff2-variations");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Source Serif 4 Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/_bridgetown/static/source-serif-4-latin-wght-normal-AKYLMLTQ.woff2) format("woff2-variations");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
/*! chota.css v0.7.2 | MIT License | github.com/jenil/chota */
/*# sourceMappingURL=/_bridgetown/static/index.IDTTVE3B.css.map */
