/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.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).
*/

html {
  -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` */
		'Source Sans Pro',
		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;
}

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: Source Sans Pro, 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: currentColor;
  /* 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: #a1a1aa;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

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;
}

/**
 * 1. 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
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/**
 * 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;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(224, 224, 224, var(--tw-border-opacity));
}


.tw-aspect-w-16 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
}


.tw-aspect-w-16 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.tw-aspect-w-16 {
  --tw-aspect-w: 16;
}

.tw-aspect-h-9 {
  --tw-aspect-h: 9;
}

.tw-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;
}

.tw-fixed {
  position: fixed;
}

.tw-absolute {
  position: absolute;
}

.tw-relative {
  position: relative;
}

.tw-inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.tw-top-6 {
  top: 1.5rem;
}

.tw-top-20 {
  top: 5rem;
}

.tw-top-1\/2 {
  top: 50%;
}

.tw-right-0 {
  right: 0px;
}

.tw-right-4 {
  right: 1rem;
}

.tw-right-6 {
  right: 1.5rem;
}

.tw-bottom-0 {
  bottom: 0px;
}

.tw-left-0 {
  left: 0px;
}

.tw-left-4 {
  left: 1rem;
}

.tw-z-10 {
  z-index: 10;
}

.tw-z-20 {
  z-index: 20;
}

.tw-z-40 {
  z-index: 40;
}

.tw-z-50 {
  z-index: 50;
}

.tw-float-left {
  float: left;
}

.tw-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.tw--mx-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.tw--mx-6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.tw-my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.tw-my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tw-my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.tw-mt-1 {
  margin-top: 0.25rem;
}

.tw-mt-2 {
  margin-top: 0.5rem;
}

.tw-mt-3 {
  margin-top: 0.75rem;
}

.tw-mt-4 {
  margin-top: 1rem;
}

.tw-mt-6 {
  margin-top: 1.5rem;
}

.tw-mt-8 {
  margin-top: 2rem;
}

.tw-mt-10 {
  margin-top: 2.5rem;
}

.tw-mt-12 {
  margin-top: 3rem;
}

.tw--mr-1 {
  margin-right: -0.25rem;
}

.tw--mr-2 {
  margin-right: -0.5rem;
}

.tw-mb-1 {
  margin-bottom: 0.25rem;
}

.tw-mb-2 {
  margin-bottom: 0.5rem;
}

.tw-mb-3 {
  margin-bottom: 0.75rem;
}

.tw-mb-4 {
  margin-bottom: 1rem;
}

.tw-mb-6 {
  margin-bottom: 1.5rem;
}

.tw-mb-8 {
  margin-bottom: 2rem;
}

.tw-mb-10 {
  margin-bottom: 2.5rem;
}

.tw--mb-1 {
  margin-bottom: -0.25rem;
}

.tw-ml-1 {
  margin-left: 0.25rem;
}

.tw-ml-4 {
  margin-left: 1rem;
}

.tw-block {
  display: block;
}

.tw-inline-block {
  display: inline-block;
}

.tw-inline {
  display: inline;
}

.tw-flex {
  display: flex;
}

.tw-inline-flex {
  display: inline-flex;
}

.tw-grid {
  display: grid;
}

.tw-hidden {
  display: none;
}

.tw-h-4 {
  height: 1rem;
}

.tw-h-6 {
  height: 1.5rem;
}

.tw-h-8 {
  height: 2rem;
}

.tw-h-10 {
  height: 2.5rem;
}

.tw-h-20 {
  height: 5rem;
}

.tw-h-48 {
  height: 12rem;
}

.tw-h-64 {
  height: 16rem;
}

.tw-h-1\/2 {
  height: 50%;
}

.tw-h-1\/3 {
  height: 33.333333%;
}

.tw-h-1\/4 {
  height: 25%;
}

.tw-h-1\/5 {
  height: 20%;
}

.tw-h-full {
  height: 100%;
}

.tw-h-screen {
  height: 100vh;
}

.tw-w-3 {
  width: 0.75rem;
}

.tw-w-4 {
  width: 1rem;
}

.tw-w-6 {
  width: 1.5rem;
}

.tw-w-8 {
  width: 2rem;
}

.tw-w-10 {
  width: 2.5rem;
}

.tw-w-20 {
  width: 5rem;
}

.tw-w-24 {
  width: 6rem;
}

.tw-w-36 {
  width: 9rem;
}

.tw-w-96 {
  width: 24rem;
}

.tw-w-2\/3 {
  width: 66.666667%;
}

.tw-w-1\/4 {
  width: 25%;
}

.tw-w-full {
  width: 100%;
}

.tw-max-w-2xl {
  max-width: 42rem;
}

.tw-max-w-full {
  max-width: 100%;
}

.tw-max-w-screen-lg {
  max-width: 1024px;
}

.tw-flex-1 {
  flex: 1 1 0%;
}

.tw-flex-shrink-0 {
  flex-shrink: 0;
}

.tw-flex-grow-0 {
  flex-grow: 0;
}

.tw-flex-grow {
  flex-grow: 1;
}

.tw-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));
}

.tw--translate-y-1\/2 {
  --tw-translate-y: -50%;
}

.tw-rotate-180 {
  --tw-rotate: 180deg;
}

@-webkit-keyframes tw-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tw-spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes tw-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes tw-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes tw-pulse {
  50% {
    opacity: .5;
  }
}

@keyframes tw-pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes tw-bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes tw-bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.tw-cursor-auto {
  cursor: auto;
}

.tw-cursor-zoom-in {
  cursor: zoom-in;
}

.tw-cursor-zoom-out {
  cursor: zoom-out;
}

.tw-grid-flow-row {
  grid-auto-flow: row;
}

.tw-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tw-flex-col {
  flex-direction: column;
}

.tw-flex-col-reverse {
  flex-direction: column-reverse;
}

.tw-flex-wrap {
  flex-wrap: wrap;
}

.tw-items-end {
  align-items: flex-end;
}

.tw-items-center {
  align-items: center;
}

.tw-items-baseline {
  align-items: baseline;
}

.tw-justify-start {
  justify-content: flex-start;
}

.tw-justify-end {
  justify-content: flex-end;
}

.tw-justify-center {
  justify-content: center;
}

.tw-justify-between {
  justify-content: space-between;
}

.tw-gap-4 {
  gap: 1rem;
}

.tw-space-x-0 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0px * var(--tw-space-x-reverse));
  margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
}

.tw-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)));
}

.tw-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.tw-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)));
}

.tw-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)));
}

.tw-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)));
}

.tw-space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.tw-space-x-20 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(5rem * var(--tw-space-x-reverse));
  margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
}

.tw-space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.tw-space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.tw-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));
}

.tw-space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.tw-space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.tw-space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}

.tw-space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.tw-space-y-reverse > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 1;
}

.tw-overflow-hidden {
  overflow: hidden;
}

.tw-overflow-y-auto {
  overflow-y: auto;
}

.tw-overflow-ellipsis {
  text-overflow: ellipsis;
}

.tw-whitespace-nowrap {
  white-space: nowrap;
}

.tw-rounded-none {
  border-radius: 0px;
}

.tw-rounded {
  border-radius: 0.25rem;
}

.tw-rounded-full {
  border-radius: 9999px;
}

.tw-border-2 {
  border-width: 2px;
}

.tw-border {
  border-width: 1px;
}

.tw-border-t {
  border-top-width: 1px;
}

.tw-border-b {
  border-bottom-width: 1px;
}

.tw-border-l-4 {
  border-left-width: 4px;
}

.tw-border-l-12 {
  border-left-width: 12px;
}

.tw-border-transparent {
  border-color: transparent;
}

.tw-border-black {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.tw-border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.tw-border-green {
  --tw-border-opacity: 1;
  border-color: rgba(117, 177, 0, var(--tw-border-opacity));
}

.tw-border-yellow {
  --tw-border-opacity: 1;
  border-color: rgba(255, 204, 51, var(--tw-border-opacity));
}

.tw-border-orange {
  --tw-border-opacity: 1;
  border-color: rgba(243, 96, 0, var(--tw-border-opacity));
}

.tw-border-red {
  --tw-border-opacity: 1;
  border-color: rgba(227, 0, 15, var(--tw-border-opacity));
}

.tw-border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity));
}

.tw-border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(224, 224, 224, var(--tw-border-opacity));
}

.tw-border-gray-250 {
  --tw-border-opacity: 1;
  border-color: rgba(235, 235, 235, var(--tw-border-opacity));
}

.tw-border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgba(128, 128, 128, var(--tw-border-opacity));
}

.hover\:tw-border-black:hover {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.focus\:tw-border-black:focus {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.tw-bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.tw-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.tw-bg-navy {
  --tw-bg-opacity: 1;
  background-color: rgba(5, 80, 102, var(--tw-bg-opacity));
}

.tw-bg-green {
  --tw-bg-opacity: 1;
  background-color: rgba(117, 177, 0, var(--tw-bg-opacity));
}

.tw-bg-yellow {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 204, 51, var(--tw-bg-opacity));
}

.tw-bg-orange {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 96, 0, var(--tw-bg-opacity));
}

.tw-bg-red {
  --tw-bg-opacity: 1;
  background-color: rgba(227, 0, 15, var(--tw-bg-opacity));
}

.tw-bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(240, 240, 240, var(--tw-bg-opacity));
}

.tw-bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.tw-bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(224, 224, 224, var(--tw-bg-opacity));
}

.tw-bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(196, 196, 196, var(--tw-bg-opacity));
}

.tw-bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgba(51, 51, 51, var(--tw-bg-opacity));
}

.tw-bg-opacity-25 {
  --tw-bg-opacity: 0.25;
}

.tw-bg-opacity-80 {
  --tw-bg-opacity: 0.8;
}

.tw-bg-cover {
  background-size: cover;
}

.tw-bg-contain {
  background-size: contain;
}

.tw-bg-center {
  background-position: center;
}

.tw-bg-no-repeat {
  background-repeat: no-repeat;
}

.tw-fill-current {
  fill: currentColor;
}

.tw-stroke-current {
  stroke: currentColor;
}

.tw-object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.tw-object-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.tw-p-1 {
  padding: 0.25rem;
}

.tw-p-2 {
  padding: 0.5rem;
}

.tw-p-3 {
  padding: 0.75rem;
}

.tw-p-4 {
  padding: 1rem;
}

.tw-p-6 {
  padding: 1.5rem;
}

.tw-px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.tw-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.tw-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tw-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tw-px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.tw-py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.tw-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.tw-py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.tw-py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.tw-py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.tw-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.tw-py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.tw-py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.tw-pt-3 {
  padding-top: 0.75rem;
}

.tw-pt-4 {
  padding-top: 1rem;
}

.tw-pt-6 {
  padding-top: 1.5rem;
}

.tw-pt-32 {
  padding-top: 8rem;
}

.tw-pr-2 {
  padding-right: 0.5rem;
}

.tw-pr-3 {
  padding-right: 0.75rem;
}

.tw-pb-6 {
  padding-bottom: 1.5rem;
}

.tw-pb-10 {
  padding-bottom: 2.5rem;
}

.tw-pb-12 {
  padding-bottom: 3rem;
}

.tw-pb-16 {
  padding-bottom: 4rem;
}

.tw-pb-48 {
  padding-bottom: 12rem;
}

.tw-pl-6 {
  padding-left: 1.5rem;
}

.tw-pl-14 {
  padding-left: 3.5rem;
}

.tw-text-left {
  text-align: left;
}

.tw-text-center {
  text-align: center;
}

.tw-font-sans {
  font-family: Source Sans Pro, sans-serif;
}

.tw-text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.tw-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tw-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tw-text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.tw-text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.tw-text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.tw-text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.tw-text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.tw-font-regular {
  font-weight: 400;
}

.tw-font-semi {
  font-weight: 600;
}

.tw-uppercase {
  text-transform: uppercase;
}

.tw-leading-normal {
  line-height: 1.5;
}

.tw-text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.tw-text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.tw-text-green {
  --tw-text-opacity: 1;
  color: rgba(117, 177, 0, var(--tw-text-opacity));
}

.tw-text-yellow {
  --tw-text-opacity: 1;
  color: rgba(255, 204, 51, var(--tw-text-opacity));
}

.tw-text-orange {
  --tw-text-opacity: 1;
  color: rgba(243, 96, 0, var(--tw-text-opacity));
}

.tw-text-red {
  --tw-text-opacity: 1;
  color: rgba(227, 0, 15, var(--tw-text-opacity));
}

.tw-text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(128, 128, 128, var(--tw-text-opacity));
}

.tw-text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(95, 95, 95, var(--tw-text-opacity));
}

.tw-text-gray-900 {
  --tw-text-opacity: 1;
  color: rgba(51, 51, 51, var(--tw-text-opacity));
}

.tw-underline {
  text-decoration: underline;
}

.tw-group:hover .group-hover\:tw-underline {
  text-decoration: underline;
}

.hover\:tw-underline:hover {
  text-decoration: underline;
}

.focus\:tw-underline:focus {
  text-decoration: underline;
}

.tw-opacity-0 {
  opacity: 0;
}

.tw-opacity-100 {
  opacity: 1;
}

.tw-group:hover .group-hover\:tw-opacity-80 {
  opacity: 0.8;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

.tw-shadow-none {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.tw-shadow-outer {
  --tw-shadow: 0 0 8px 0 rgb(0 0 0 / 0.05), 2px 0 8px 0 rgb(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);
}

.hover\:tw-shadow-outer:hover {
  --tw-shadow: 0 0 8px 0 rgb(0 0 0 / 0.05), 2px 0 8px 0 rgb(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);
}

.focus\:tw-outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.tw-drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.tw-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;
}

.tw-duration-100 {
  transition-duration: 100ms;
}

.tw-duration-200 {
  transition-duration: 200ms;
}

.tw-ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.tw-ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.tw-ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[x-cloak] {
  display: none;
}

/*html {
    font-size: 16px;
    height: -webkit-fill-available;    
}

@media (min-width: 1800px) {
    html {
        font-size: 20px;
    }
}
*/

figcaption {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(235, 235, 235, var(--tw-bg-opacity));
  padding: 1rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tw-btn {
  align-items: center;
  justify-content: space-between;
}

.tw-btn > :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)));
}

.tw-btn {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.tw-btn svg {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
}

.rte a {
  --tw-text-opacity: 1;
  color: rgba(106, 176, 192, var(--tw-text-opacity));
  text-decoration: underline;
}

.rte.rte--inverse a {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.rte a:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.rte.rte--inverse a:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.rte > * + * {
  margin-top: 1rem;
}

.rte h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}

.rte * + h2 {
  margin-top: 2rem;
}

.rte table {
  border-collapse: collapse;
}

.rte td, .rte th {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(128, 128, 128, var(--tw-border-opacity));
  padding: 0.5rem;
}

/*
.rte tr:hover {
    @apply tw-bg-white;
}
*/

.underscore::after {
  content: '';
  display: block;
  height: 2px;
  width: 1.5rem;
  background-color: #F36000;
}

@media md {
  .rte h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.rte h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.rte * + h3 {
  margin-top: 1.5rem;
}

@media md {
  .rte h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.rte ul {
  list-style: outside;
  padding-left: 1.5rem;
}

.rte ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.message-text.rte a {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.message-text.rte.rte--inverse a {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.input-button {
  color: #767676;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.underscore {
  position: relative;
  padding-bottom: 4px;
}

.underscore::after {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 96, 0, var(--tw-bg-opacity));
  content: '';
  height: 2px;
  width: 32px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.layout-single, .layout-sidebar {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.layout-sidebar > .sidebar {
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .layout-single, .layout-sidebar {
    max-width: 1024px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .layout-single > .main {
    grid-column: span 8 / span 8;
  }

  .layout-sidebar > .main {
    grid-column: span 5 / span 5;
  }

  .layout-sidebar > .sidebar {
    grid-column: span 2 / span 2;
    grid-column-start: 7;
    margin-top: 0px;
  }
}

@media (min-width: 1440px) {
  /*html {
        @apply tw-text-xl;
    }*/

  .layout-single, .layout-sidebar {
    max-width: 1440px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .layout-single > .main {
    grid-column: span 10 / span 10;
    grid-column-start: 2;
  }

  .layout-sidebar > .main {
    grid-column: span 6 / span 6;
    grid-column-start: 2;
  }

  .layout-sidebar > .sidebar {
    grid-column: span 3 / span 3;
    grid-column-start: 9;
  }
}

.text-shadow-px {
  /*text-shadow: 0 0 2px black;*/
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.bg-danger-level-0,
.bg-danger-level-1,
.bg-danger-level-2,
.bg-danger-level-3,
.bg-danger-level-4,
.bg-danger-level-5,
.border-danger-level-0,
.border-danger-level-1,
.border-danger-level-2,
.border-danger-level-3,
.border-danger-level-4,
.border-danger-level-5 {
  -webkit-print-color-adjust: exact;
}

/* need important for print */

.bg-danger-level-0 {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 196, 196, var(--tw-bg-opacity)) !important;
}

.bg-danger-level-1 {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(117, 177, 0, var(--tw-bg-opacity)) !important;
}

.bg-danger-level-2 {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 204, 51, var(--tw-bg-opacity)) !important;
}

.bg-danger-level-3 {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(243, 96, 0, var(--tw-bg-opacity)) !important;
}

.bg-danger-level-4 {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(227, 0, 15, var(--tw-bg-opacity)) !important;
}

.bg-danger-level-5 {
  background-color: black !important;
}

.border-danger-level-0 {
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 196, 196, var(--tw-border-opacity)) !important;
}

.border-danger-level-1 {
  --tw-border-opacity: 1 !important;
  border-color: rgba(117, 177, 0, var(--tw-border-opacity)) !important;
}

.border-danger-level-2 {
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 204, 51, var(--tw-border-opacity)) !important;
}

.border-danger-level-3 {
  --tw-border-opacity: 1 !important;
  border-color: rgba(243, 96, 0, var(--tw-border-opacity)) !important;
}

.border-danger-level-4 {
  --tw-border-opacity: 1 !important;
  border-color: rgba(227, 0, 15, var(--tw-border-opacity)) !important;
}

.border-danger-level-5 {
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

@media print {
  .hidden-print {
    display: none;
  }
}

.twitter-timeline-wrapper * {
  border-radius: 0 !important;
}

@media (min-width: 768px) {
  .md\:tw-float-right {
    float: right;
  }

  .md\:tw-flex {
    display: flex;
  }

  .md\:tw-h-10 {
    height: 2.5rem;
  }

  .md\:tw-w-10 {
    width: 2.5rem;
  }

  .md\:tw-w-9\/12 {
    width: 75%;
  }

  .md\:tw-flex-row {
    flex-direction: row;
  }

  .md\:tw-items-center {
    align-items: center;
  }

  .md\:tw-space-x-20 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(5rem * var(--tw-space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:tw-space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:tw-px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:tw-py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .md\:tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:tw-col-start-1 {
    grid-column-start: 1;
  }

  .lg\:tw-col-start-6 {
    grid-column-start: 6;
  }

  .lg\:tw-col-start-7 {
    grid-column-start: 7;
  }

  .lg\:tw-col-end-5 {
    grid-column-end: 5;
  }

  .lg\:tw-col-end-7 {
    grid-column-end: 7;
  }

  .lg\:tw-col-end-9 {
    grid-column-end: 9;
  }

  .lg\:tw--m-3 {
    margin: -0.75rem;
  }

  .lg\:tw--mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .lg\:tw-mt-0 {
    margin-top: 0px;
  }

  .lg\:tw-block {
    display: block;
  }

  .lg\:tw-flex {
    display: flex;
  }

  .lg\:tw-table-cell {
    display: table-cell;
  }

  .lg\:tw-grid {
    display: grid;
  }

  .lg\:tw-hidden {
    display: none;
  }

  .lg\:tw-w-64 {
    width: 16rem;
  }

  .lg\:tw-w-72 {
    width: 18rem;
  }

  .lg\:tw-w-1\/2 {
    width: 50%;
  }

  .lg\:tw-w-1\/3 {
    width: 33.333333%;
  }

  .lg\:tw-w-2\/3 {
    width: 66.666667%;
  }

  .lg\:tw-w-1\/4 {
    width: 25%;
  }

  .lg\:tw-w-full {
    width: 100%;
  }

  .lg\:tw-flex-shrink-0 {
    flex-shrink: 0;
  }

  .lg\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:tw-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:tw-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:tw-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:tw-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .lg\:tw-flex-row {
    flex-direction: row;
  }

  .lg\:tw-flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:tw-flex-col {
    flex-direction: column;
  }

  .lg\:tw-flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:tw-items-center {
    align-items: center;
  }

  .lg\:tw-justify-between {
    justify-content: space-between;
  }

  .lg\:tw-gap-4 {
    gap: 1rem;
  }

  .lg\:tw-gap-6 {
    gap: 1.5rem;
  }

  .lg\:tw-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)));
  }

  .lg\:tw-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)));
  }

  .lg\:tw-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)));
  }

  .lg\:tw-space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:tw-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)));
  }

  .lg\:tw-space-x-16 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:tw-space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .lg\:tw-space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }

  .lg\:tw-space-y-20 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse));
  }

  .lg\:tw-space-x-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1;
  }

  .lg\:tw-border-b {
    border-bottom-width: 1px;
  }

  .lg\:tw-p-3 {
    padding: 0.75rem;
  }

  .lg\:tw-p-6 {
    padding: 1.5rem;
  }

  .lg\:tw-p-10 {
    padding: 2.5rem;
  }

  .lg\:tw-p-20 {
    padding: 5rem;
  }

  .lg\:tw-px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lg\:tw-pr-10 {
    padding-right: 2.5rem;
  }

  .lg\:tw-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:tw-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:tw-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1440px) {
}