/*! tailwindcss v2.1.1 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

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

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: "Inter", sans-serif; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e5e5; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #a3a3a3;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a3a3a3;
}

button,
[role="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

[type='text'],[type='email'],[type='url'],[type='search'],[type='time'],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #737373;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='search']:focus, [type='time']:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #0891b2;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  border-color: #0891b2;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #737373;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #737373;
  opacity: 1;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23737373' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px auto -webkit-focus-ring-color;
}

.btn-primary{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 182, 212, var(--tw-bg-opacity))
}

.btn-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(8, 145, 178, var(--tw-bg-opacity));
}

.btn-primary {
  border-color: transparent;
  border-radius: 0.375rem;
  border-width: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}

.btn-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.btn-primary {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-primary:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-color: #262626;
  --tw-ring-offset-width: 2px;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
}

.btn-primary {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

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

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(115, 115, 115, var(--tw-bg-opacity));
}

.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(236, 254, 255, var(--tw-bg-opacity));
}

.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 241, 242, var(--tw-bg-opacity));
}

.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(240, 253, 244, var(--tw-bg-opacity));
}

.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}

.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
}

.hover\:bg-blue-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(207, 250, 254, var(--tw-bg-opacity));
}

.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(8, 145, 178, var(--tw-bg-opacity));
}

.bg-none {
  background-image: none;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-gray-700 {
  --tw-gradient-from: #404040;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 64, 64, 0));
}

.from-blue-300 {
  --tw-gradient-from: #67e8f9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(103, 232, 249, 0));
}

.from-blue-600 {
  --tw-gradient-from: #0891b2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(8, 145, 178, 0));
}

.via-indigo-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
}

.via-green-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #86efac, var(--tw-gradient-to, rgba(134, 239, 172, 0));
}

.to-gray-900 {
  --tw-gradient-to: #171717;
}

.to-blue-100 {
  --tw-gradient-to: #cffafe;
}

.to-blue-900 {
  --tw-gradient-to: #164e63;
}

.bg-opacity-75 {
  --tw-bg-opacity: 0.75;
}

.border-transparent {
  border-color: transparent;
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(229, 229, 229, var(--tw-border-opacity));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(212, 212, 212, var(--tw-border-opacity));
}

.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgba(64, 64, 64, var(--tw-border-opacity));
}

.border-blue-100 {
  --tw-border-opacity: 1;
  border-color: rgba(207, 250, 254, var(--tw-border-opacity));
}

.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgba(165, 243, 252, var(--tw-border-opacity));
}

.border-red-100 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 228, 230, var(--tw-border-opacity));
}

.border-green-100 {
  --tw-border-opacity: 1;
  border-color: rgba(220, 252, 231, var(--tw-border-opacity));
}

.border-yellow-100 {
  --tw-border-opacity: 1;
  border-color: rgba(254, 243, 199, var(--tw-border-opacity));
}

.focus\:border-white:focus {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgba(6, 182, 212, var(--tw-border-opacity));
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

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

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

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.block {
  display: block;
}

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

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

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

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

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

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

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

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

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.font-wordmark {
  font-family: "Didact Gothic", sans-serif;
}

.font-medium {
  font-weight: 500;
}

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

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

.h-1 {
  height: 0.25rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-full {
  height: 100%;
}

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

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

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

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.mt-0 {
  margin-top: 0px;
}

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

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

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

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

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-screen-2xl {
  max-width: 1536px;
}

.min-h-screen {
  min-height: 100vh;
}

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

.opacity-0 {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-100 {
  opacity: 1;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

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

.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-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

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

.pt-4 {
  padding-top: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.placeholder-gray-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(115, 115, 115, var(--tw-placeholder-opacity));
}

.placeholder-gray-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(115, 115, 115, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-400:focus::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(163, 163, 163, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-400:focus::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(163, 163, 163, var(--tw-placeholder-opacity));
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.left-0 {
  left: 0px;
}

.top-7 {
  top: 1.75rem;
}

.right-8 {
  right: 2rem;
}

.left-full {
  left: 100%;
}

* {
  --tw-shadow: 0 0 #0000;
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(6, 182, 212, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-offset-gray-800:focus {
  --tw-ring-offset-color: #262626;
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.focus\:ring-white:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 182, 212, var(--tw-ring-opacity));
}

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

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

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgba(212, 212, 212, var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(163, 163, 163, var(--tw-text-opacity));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(115, 115, 115, var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(82, 82, 82, var(--tw-text-opacity));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgba(23, 23, 23, var(--tw-text-opacity));
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgba(6, 182, 212, var(--tw-text-opacity));
}

.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgba(14, 116, 144, var(--tw-text-opacity));
}

.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgba(21, 94, 117, var(--tw-text-opacity));
}

.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgba(22, 78, 99, var(--tw-text-opacity));
}

.text-red-900 {
  --tw-text-opacity: 1;
  color: rgba(136, 19, 55, var(--tw-text-opacity));
}

.text-green-900 {
  --tw-text-opacity: 1;
  color: rgba(20, 83, 45, var(--tw-text-opacity));
}

.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-text-opacity));
}

.text-yellow-900 {
  --tw-text-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:text-gray-500:hover {
  --tw-text-opacity: 1;
  color: rgba(115, 115, 115, var(--tw-text-opacity));
}

.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgba(64, 64, 64, var(--tw-text-opacity));
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.underline {
  text-decoration: underline;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.hover\:no-underline:hover {
  text-decoration: none;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.align-bottom {
  vertical-align: bottom;
}

.visible {
  visibility: visible;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-32 {
  width: 8rem;
}

.w-full {
  width: 100%;
}

.z-10 {
  z-index: 10;
}

.z-30 {
  z-index: 30;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

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

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

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-12 {
  --tw-translate-x: -3rem;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
}

.translate-y-0 {
  --tw-translate-y: 0px;
}

.translate-y-4 {
  --tw-translate-y: 1rem;
}

.-translate-y-6 {
  --tw-translate-y: -1.5rem;
}

.-translate-y-3\/4 {
  --tw-translate-y: -75%;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.duration-100 {
  transition-duration: 100ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.mix-blend-difference {
  mix-blend-mode: difference;
}

.markdown{
  line-height:1.8;
  color:#343a40;
  background:#fff;
  font-family:'Inter', sans-serif;
  font-weight:normal
}

@media all and (min-width: 33rem){
  .markdown{
    margin-left:12px
  }
}

.markdown h1{
  font-size:1.875rem;
  line-height:2.25rem
}

.markdown h1:first-of-type{
  text-transform:capitalize;
  margin-top:0;
  margin-bottom:0;
  font-size:2.8em
}

@media all and (max-width: 33rem){
  .markdown h1:first-of-type{
    font-size:2em
  }
}

.markdown .symbol{
  border:1px solid #ddd;
  border-radius:4px;
  padding:24px;
  margin:24px 0 48px 0;
  background-color:#fafafa
}

.markdown .symbol>h1:first-of-type{
  text-transform:none;
  font-size:1.875rem;
  line-height:2.25rem
}

.markdown h1:not(:first-of-type){
  margin-top:48px;
  padding:3px 12px;
  display:inline-block;
  border-radius:3px;
  font-family:'Source Code Pro', monospace;
  background-color:#f8f9fa;
  border:1px solid #e9ecef
}

.markdown h2{
  margin-top:60px;
  margin-bottom:6px;
  font-size:1.8em;
  font-weight:400
}

.markdown h3{
  margin-top:48px;
  font-size:1.4em
}

.markdown h3.member-title{
  margin-top:6px;
  margin-left:6px;
  padding:2px 6px;
  display:inline-block;
  border-radius:3px;
  font-family:'Source Code Pro', monospace;
  background-color:#f8f9fa;
  border:1px solid #e9ecef
}

.markdown h4{
  margin-top:32px
}

.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5{
  font-family:"Inter",sans-serif;
  letter-spacing:-0.025em;
  line-height:1.25
}

.markdown h1[id]:target,.markdown h2[id]:target,.markdown h3[id]:target,.markdown h4[id]:target,.markdown h5[id]:target{
  scroll-margin-top:60px;
  text-decoration:underline
}

.markdown p{
  margin:16px 0
}

.markdown b,.markdown optgroup,.markdown strong{
  font-weight:700
}

.markdown a{
  text-decoration:none;
  color:#087298
}

.markdown a:hover,.markdown a:visited:hover{
  color:#0b96c8
}

.markdown a:visited{
  color:#1e6198
}

.markdown ul,.markdown ol:not(.breadcrumbs){
  list-style-type:initial;
  padding-left:40px
}

.markdown ol:not(.breadcrumbs){
  list-style-type:decimal
}

.markdown li{
  margin-bottom:6px
}

.markdown li::marker{
  color:#868e96
}

.markdown code:not([data-lang]){
  font-family:'Source Code Pro', monospace;
  padding:0 .25rem;
  background:#e9ecef;
  color:#495057;
  font-size:0.9em;
  border-radius:4px;
  border:1px solid #dee2e6
}

.markdown a>code:not([data-lang]){
  color:#087298
}

.markdown pre:not(.chroma){
  padding:1rem;
  background:#343a40;
  border-radius:4px;
  font-size:.875rem;
  overflow-x:auto
}

.markdown pre:not(.chroma) code{
  color:#e9ecef;
  background:none;
  padding:none
}

.markdown blockquote{
  margin:0;
  padding:1rem 2rem;
  position:relative;
  color:#495057;
  border-left:2px solid #dee2e6
}

.markdown blockquote :first-child{
  margin-top:0
}

.markdown blockquote :last-child{
  margin-bottom:0
}

.markdown blockquote::before{
  content:'“';
  position:absolute;
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size:48px;
  top:0px;
  left:10px;
  color:#adb5bd
}

.markdown table{
  width:100%
}

.markdown table th{
  text-align:left
}

.markdown table td,.markdown table th{
  padding:.25rem
}

.markdown table tr:nth-child(odd) td{
  background-color:#f8f9fa
}

.markdown figure{
  margin:1rem 0;
  display:flex;
  flex-direction:column;
  justify-content:center
}

.markdown figure img{
  box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);
  border-radius:0.5rem
}

.markdown figure.flat img{
  box-shadow:none
}

.markdown figure figcaption p,.markdown figure figcaption h4{
  text-align:center;
  font-size:16px;
  margin-top:.25rem;
  margin-bottom:.25rem;
  font-style:italic
}

.markdown .highlight+.highlight{
  margin-top:16px
}

.article-toc #TableOfContents>ul{
  list-style-type:none;
  padding-left:0
}

.article-toc #TableOfContents>ul>li>ul{
  list-style-type:disc;
  color:#868e96
}

.article-toc #TableOfContents>ul>li>ul>li{
  margin-bottom:.5rem
}

nav.book-menu{
  text-transform:capitalize
}

nav.book-menu::-webkit-scrollbar{
  width:10px;
  height:10px
}

nav.book-menu::-webkit-scrollbar{
  width:10px;
  height:10px
}

nav.book-menu::-webkit-scrollbar-corner{
  background-color:hsl(0 0% 90%)
}

nav.book-menu::-webkit-scrollbar-thumb{
  background-color:hsl(0 0% 75%);
  border:2px solid hsl(0 0% 90%);
  border-radius:10px
}

nav.book-menu::-webkit-scrollbar-thumb:hover{
  background-color:hsl(0 0% 65%)
}

nav.book-menu::-webkit-scrollbar-track{
  background-color:hsl(0 0% 90%)
}

nav.book-menu ul{
  padding:0;
  margin:0;
  list-style:none
}

nav.book-menu ul li{
  margin:1em 0
}

nav.book-menu ul a{
  display:block
}

nav.book-menu ul a:hover{
  opacity:0.5
}

nav.book-menu ul ul{
  padding-left:1rem
}

nav.book-menu ul:not(.expanded)>.section:nth-of-type(7){
  padding-top:1em
}

nav.book-menu ul:not(.expanded)>.section:nth-of-type(7)::before{
  position:absolute;
  top:0;
  left:-1rem;
  right:0.5rem;
  content:' ';
  border-top:1px solid #ced4da
}

nav.book-menu ul:not(.expanded)>.section:nth-of-type(n+7){
  color:#495057
}

nav.book-menu .section{
  position:relative
}

nav.book-menu .section .section-link{
  display:flex;
  align-items:center
}

nav.book-menu .section .section-link .section-icon{
  width:12px;
  height:12px;
  transform:rotateZ(90deg);
  opacity:0.5;
  margin-left:-15px;
  margin-right:3px;
  cursor:pointer;
  transition:opacity 0.2s
}

nav.book-menu .section .section-link .section-icon:hover{
  opacity:0.9
}

nav.book-menu .section .section-link .section-icon.expanded{
  transform:rotateZ(180deg)
}

nav.book-menu .section .section-link a{
  flex:1
}

nav.book-menu .section>ul{
  max-height:0px;
  overflow:hidden
}

nav.book-menu .section>ul.expanded{
  max-height:initial
}

nav.book-menu .section>ul.expanded>li:last-child{
  margin-bottom:0
}

.member-info{
  display:flex;
  align-items:center;
  margin-top:4px;
  margin-left:8px;
  font-size:.75rem
}

@media screen and (max-width: 33rem){
  .member-info{
    flex-direction:column;
    align-items:flex-start
  }
}

.member-info .since{
  display:flex
}

.member-info .kind-label{
  font-size:.75rem;
  background-color:#eaf9f5;
  color:#38979f;
  border-radius:4px;
  padding:0 6px;
  margin-right:12px
}

.member-info .type,.member-info .default{
  margin-right:12px
}

.member-info .type a:link,.member-info .type a:visited,.member-info .default a:link,.member-info .default a:visited{
  color:#087298
}

.member-info .label{
  display:inline-block;
  color:#868e96
}

.member-description{
  margin-top:3px;
  margin-left:8px;
  margin-bottom:32px
}

.generation-info{
  font-size:.75rem;
  border-top:1px dashed #ced4da
}

.generation-info .label{
  color:#868e96
}

.generation-info .file{
  margin-left:12px
}

.gql-fields{
  padding:12px;
  font-size:14px;
  border-radius:3px;
  overflow-x:auto;
  border:1px solid #212529;
  color:#e9ecef;
  background-color:#343a40;
  position:relative;
  font-family:'Oxygen Mono', monospace
}

.gql-fields code{
  font-family:'Source Code Pro', monospace
}

.gql-fields::before{
  content:'sdl';
  position:absolute;
  right:3px;
  top:0;
  font-size:12px;
  color:#ced4da;
  text-transform:uppercase
}

.gql-fields ul{
  padding:0;
  margin:0;
  list-style-type:none;
  font-family:'Oxygen Mono', monospace
}

.gql-fields em{
  color:#776e71
}

.gql-fields a:link,.gql-fields a:visited{
  color:#13b7f3
}

.gql-enum-values{
  padding:12px;
  font-size:14px;
  border-radius:3px;
  overflow-x:auto;
  border:1px solid #212529;
  color:#e9ecef;
  background-color:#343a40;
  position:relative;
  max-height:80vh;
  overflow-y:auto
}

.gql-enum-values code{
  font-family:'Source Code Pro', monospace
}

.gql-enum-values::before{
  content:'sdl';
  position:absolute;
  right:3px;
  top:0;
  font-size:12px;
  color:#ced4da;
  text-transform:uppercase
}

.gql-enum-values ul{
  padding:0;
  margin:0;
  list-style-type:none;
  font-family:'Oxygen Mono', monospace
}

.gql-enum-values em{
  color:#776e71
}

.tab-container{
  border-left:2px solid #e9ecef;
  padding-left:6px;
  margin-left:-8px;
  margin-bottom:32px
}

.tab-container .tab-controls{
  margin-bottom:6px
}

.tab-container .tab-controls button.tab-control{
  color:#868e96;
  border:none;
  padding:3px 6px;
  margin:0 3px;
  border-bottom:2px solid transparent;
  background:none
}

.tab-container .tab-controls button.tab-control.active{
  border-bottom-color:#13b7f3;
  color:#495057
}

.tab-container .tab{
  display:none
}

.tab-container .tab.active{
  display:block
}

pre.chroma{
  padding:12px;
  font-size:14px;
  border-radius:3px;
  overflow-x:auto;
  border:1px solid #212529;
  color:#e9ecef;
  background-color:#343a40;
  position:relative
}

pre.chroma code{
  font-family:'Source Code Pro', monospace
}

pre.chroma>code::before{
  content:attr(data-lang);
  position:absolute;
  right:3px;
  top:0;
  font-size:12px;
  color:#ced4da;
  text-transform:uppercase
}

.chroma{
  color:#e7e9db;
  background-color:#2f1e2e
}

.chroma .err{
  color:#ef6155
}

.chroma .lntd{
  vertical-align:top;
  padding:0;
  margin:0;
  border:0
}

.chroma .lntable{
  border-spacing:0;
  padding:0;
  margin:0;
  border:0;
  width:auto;
  overflow:auto;
  display:block
}

.chroma .hl{
  width:100%;
  background-color:#26a9135c
}

.chroma .lnt{
  margin-right:0.4em;
  padding:0 0.4em 0 0.4em
}

.chroma .ln{
  margin-right:0.4em;
  padding:0 0.4em 0 0.4em
}

.chroma .k{
  color:#3ed0bd
}

.chroma .kc{
  color:#3ed0bd
}

.chroma .kd{
  color:#d0ba6f
}

.chroma .kn{
  color:#5bc4bf
}

.chroma .kp{
  color:#3ed0bd
}

.chroma .kr{
  color:#3ed0bd
}

.chroma .kt{
  color:#fec418
}

.chroma .na{
  color:#06b6ef
}

.chroma .nc{
  color:#fec418
}

.chroma .no{
  color:#ef6155
}

.chroma .nd{
  color:#5bc4bf
}

.chroma .ne{
  color:#ef6155
}

.chroma .nf{
  color:#06b6ef
}

.chroma .nn{
  color:#fec418
}

.chroma .nx{
  color:#86e6ff
}

.chroma .nt{
  color:#5bc4bf
}

.chroma .nv{
  color:#ef6155
}

.chroma .l{
  color:#f99b15
}

.chroma .ld{
  color:#48b685
}

.chroma .s{
  color:#48b685
}

.chroma .sa{
  color:#48b685
}

.chroma .sb{
  color:#48b685
}

.chroma .dl{
  color:#48b685
}

.chroma .sd{
  color:#adb5bd
}

.chroma .s2{
  color:#48b685
}

.chroma .se{
  color:#f99b15
}

.chroma .sh{
  color:#48b685
}

.chroma .si{
  color:#f99b15
}

.chroma .sx{
  color:#48b685
}

.chroma .sr{
  color:#48b685
}

.chroma .s1{
  color:#48b685
}

.chroma .ss{
  color:#48b685
}

.chroma .m{
  color:#f99b15
}

.chroma .mb{
  color:#f99b15
}

.chroma .mf{
  color:#f99b15
}

.chroma .mh{
  color:#f99b15
}

.chroma .mi{
  color:#f99b15
}

.chroma .il{
  color:#f99b15
}

.chroma .mo{
  color:#f99b15
}

.chroma .o{
  color:#5bc4bf
}

.chroma .ow{
  color:#5bc4bf
}

.chroma .c{
  color:#adb5bd
}

.chroma .ch{
  color:#adb5bd
}

.chroma .cm{
  color:#adb5bd
}

.chroma .c1{
  color:#adb5bd
}

.chroma .cs{
  color:#adb5bd
}

.chroma .cp{
  color:#adb5bd
}

.chroma .cpf{
  color:#adb5bd
}

.chroma .gd{
  color:#ef6155
}

.chroma .ge{
  font-style:italic
}

.chroma .gh{
  font-weight:bold
}

.chroma .gi{
  color:#48b685
}

.chroma .gp{
  color:#adb5bd;
  font-weight:bold
}

.chroma .gs{
  font-weight:bold
}

.chroma .gu{
  color:#5bc4bf;
  font-weight:bold
}

.autocomplete ul{
  padding:0;
  margin:0;
  list-style-type:none
}

.autocomplete li{
  background-color:transparent;
  transition:background-color 0.2s;
  border-left:3px solid
}

.autocomplete li.section{
  padding:3px 12px
}

.autocomplete li.section.recent{
  border-color:#e5e5e5;
  color:#696969
}

.autocomplete li.section.user-guide{
  border-color:#34D399;
  color:#064E3B
}

.autocomplete li.section.developer-guide{
  border-color:#60A5FA;
  color:#1E3A8A
}

.autocomplete li.section.config{
  border-color:#9CA3AF;
  color:#1F2937
}

.autocomplete li.section.gql{
  border-color:#9CA3AF;
  color:#1F2937
}

.autocomplete li.result{
  transition:border-color 0.2s, background-color 0.2s;
  padding:12px
}

.autocomplete li.result.recent{
  border-color:#c5c5c5
}

.autocomplete li.result.user-guide{
  border-color:#A7F3D0
}

.autocomplete li.result.developer-guide{
  border-color:#93C5FD
}

.autocomplete li.result.config{
  border-color:#D1D5DB
}

.autocomplete li.result.gql{
  border-color:#D1D5DB
}

.autocomplete li.result.selected{
  border-color:#24c9fb;
  background-color:#ebfcff
}

.autocomplete li.selected{
  background-color:#e9ecef
}

.autocomplete li a{
  display:flex;
  align-items:center
}

.autocomplete li .title{
  color:#343a40;
  width:300px;
  font-size:12px;
  margin-right:6px
}

.autocomplete li .parent{
  color:#868e96
}

.autocomplete li .heading{
  color:#212529
}

.autocomplete li .heading .hl{
  background-color:rgba(19,183,243,0.15);
  color:#032937
}

.blog{
  display:flex
}

@media screen and (max-width: 47rem){
  .blog{
    display:block
  }
}

.blog .book-toc{
  flex:1
}

.posts-list{
  min-height:50vh;
  padding:1.6rem;
  min-width:15rem;
  max-width:47rem;
  margin:auto
}

.posts-list h2{
  font-size:2em;
  font-weight:400
}

.posts-list h5{
  margin-top:-24px
}

.posts-list .featured-image{
  max-width:100%
}

.posts-list p{
  line-height:1.4em
}

.left-gutter{
  flex:1
}

.blog-post header{
  overflow:hidden;
  padding-bottom:1rem;
  border-bottom:1px dashed #dee2e6
}

.blog-post header h1{
  font-size:3em;
  font-weight:400;
  color:#13b7f3;
  margin-bottom:12px
}

@media screen and (max-width: 33rem){
  .blog-post header h1{
    font-size:2em
  }
}

.blog-post .markdown>p:first-child{
  font-size:22px;
  color:#495057
}

@media screen and (max-width: 33rem){
  .blog-post .markdown>p:first-child{
    font-size:16px
  }
}

.blog-post figure img{
  max-width:100%
}

aside.book-toc nav::-webkit-scrollbar{
  width:10px;
  height:10px
}

aside.book-toc nav::-webkit-scrollbar{
  width:10px;
  height:10px
}

aside.book-toc nav::-webkit-scrollbar-corner{
  background-color:hsl(0 0% 90%)
}

aside.book-toc nav::-webkit-scrollbar-thumb{
  background-color:hsl(0 0% 75%);
  border:2px solid hsl(0 0% 90%);
  border-radius:10px
}

aside.book-toc nav::-webkit-scrollbar-thumb:hover{
  background-color:hsl(0 0% 65%)
}

aside.book-toc nav::-webkit-scrollbar-track{
  background-color:hsl(0 0% 90%)
}

aside.book-toc nav ul{
  padding:0;
  margin:0;
  list-style:none
}

aside.book-toc nav ul li{
  margin:1em 0
}

aside.book-toc nav ul a{
  display:block
}

aside.book-toc nav ul a:hover{
  opacity:.5
}

aside.book-toc nav>ul>li:first-child>a{
  display:none
}

aside.book-toc nav>ul>li>a{
  font-weight:bold
}

aside.book-toc nav>ul>li>ul{
  padding-left:1rem
}

aside.book-toc nav>ul>li>ul>li>ul{
  padding-left:1rem
}

aside.book-toc nav>ul>li>ul>li>ul li a{
  color:#5f818e
}

@font-face{
  font-family:'Didact Gothic';

  font-style:normal;

  font-weight:400;

  font-display:swap;

  src:url(/fonts/didact-gothic-wordmark.woff2) format("woff2")
}

@font-face{
  font-family:'Lexend Deca';

  font-style:normal;

  font-weight:300;

  font-display:swap;

  src:url(/fonts/LexendDeca-Light.woff2) format("woff2");

  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face{
  font-family:'Lexend Deca';

  font-style:normal;

  font-weight:400;

  font-display:swap;

  src:url(/fonts/LexendDeca-Regular.woff2) format("woff2");

  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face{
  font-family:'Inter';

  font-style:normal;

  font-weight:300;

  font-display:swap;

  src:url(/fonts/Inter-Light.woff2) format("woff2");

  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face{
  font-family:'Inter';

  font-style:normal;

  font-weight:400;

  font-display:swap;

  src:url(/fonts/Inter-Regular.woff2) format("woff2");

  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face{
  font-family:'Inter';

  font-style:normal;

  font-weight:700;

  font-display:swap;

  src:url(/fonts/Inter-Bold.woff2) format("woff2");

  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

[x-cloak]{
  display:none !important
}

ul.pagination{
  display:flex;
  justify-content:center;
  list-style-type:none
}

ul.pagination .page-item a{
  padding:.5rem 1rem;
  border:1px solid #e9ecef;
  border-radius:3px
}

ul.pagination .page-item.active a{
  background-color:#e9ecef
}

ul.pagination .page-item.disabled a{
  color:#adb5bd
}

ul.pagination li+li{
  margin-left:.25rem
}

.container{
  min-width:15rem;
  max-width:80rem;
  margin:50px auto 0
}

ul.contents-list{
  padding:0;
  list-style-type:none;
  text-transform:capitalize
}

.book-brand{
  margin-top:0
}

.book-page{
  min-width:15rem;
  min-height:80vh;
  flex:1;
  padding:1.6rem;
  padding-right:3px
}

@media all and (max-width: 33rem){
  .book-page{
    padding:6px
  }
}

.book-page figure img{
  max-width:100%
}

.book-header{
  margin-bottom:1rem;
  display:none
}

.book-toc{
  font-size:.75rem
}

.book-toc nav{
  overflow-x:hidden;
  overflow-y:auto;
  max-height:70vh;
  padding-right:1em
}

.book-toc nav>ul>li{
  margin-bottom:12px
}

.book-toc a.active{
  text-decoration:underline;
  position:relative
}

.book-toc a.active::before{
  content:'';
  position:absolute;
  left:-12px;
  top:8px;
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background-color:#13b7f3;
  opacity:0.5
}

.book-git-footer{
  display:flex;
  margin-top:1rem;
  font-size:.875rem;
  align-items:baseline
}

.book-git-footer img{
  width:.875rem;
  vertical-align:bottom
}

.book-footer{
  height:200px;
  text-align:center;
  color:#868e96;
  margin-top:60px;
  font-size:12px
}

.book-posts{
  min-width:15rem;
  max-width:47rem;
  padding:1rem
}

.book-posts article{
  padding-bottom:1rem
}

.texture-bg{
  background-color:#1a1a1a;
  box-shadow:inset 0px 0px 15px 8px rgba(0,0,0,0.75);
  background-image:url("/header-bg.png");
  background-blend-mode:darken
}

aside nav,.book-page,.markdown{
  transition:0.2s ease-in-out;
  transition-property:transform, margin-left, opacity;
  will-change:transform, margin-left
}

@media screen and (max-width: 47rem){
  .book-toc{
    display:none
  }

  .left-gutter{
    display:none
  }
}

@media screen and (max-width: 33rem){
  .book-header{
    display:flex
  }

  #menu-control:checked+main nav.book-menu,#menu-control:checked+main .book-page{
    transform:translateX(18rem)
  }

  #menu-control:checked+main .book-header label{
    transform:rotate(90deg)
  }

  #menu-control:checked+main .markdown{
    opacity:0.25
  }
}

@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:leading-9 {
    line-height: 2.25rem;
  }

  .sm\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:max-w-md {
    max-width: 28rem;
  }

  .sm\:max-w-4xl {
    max-width: 56rem;
  }

  .sm\:p-0 {
    padding: 0px;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:pt-1 {
    padding-top: 0.25rem;
  }

  .sm\:pr-2 {
    padding-right: 0.5rem;
  }

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

  .sm\:align-middle {
    vertical-align: middle;
  }

  .sm\:w-16 {
    width: 4rem;
  }

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

  .sm\:scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .sm\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .sm\:translate-y-0 {
    --tw-translate-y: 0px;
  }

  .sm\:-translate-y-6 {
    --tw-translate-y: -1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

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

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

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mr-3 {
    margin-right: 0.75rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

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

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

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex-1 {
    flex: 1 1 0%;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:max-w-screen-2xl {
    max-width: 1536px;
  }

  .lg\:p-1 {
    padding: 0.25rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:left-auto {
    left: auto;
  }

  .lg\:right-full {
    right: 100%;
  }

  .lg\:w-0 {
    width: 0px;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

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

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:translate-x-full {
    --tw-translate-x: 100%;
  }

  .lg\:translate-y-1\/4 {
    --tw-translate-y: 25%;
  }
}

@media (min-width: 1280px) {
  .xl\:grid {
    display: grid;
  }

  .xl\:mt-0 {
    margin-top: 0px;
  }

  .xl\:gap-8 {
    gap: 2rem;
  }

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

  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1536px) {
}


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