
  .rangeSlider {
    --pip: var(--range-pip, lightslategray);
    --pip-text: var(--range-pip-text, var(--pip));
    --pip-active: var(--range-pip-active, darkslategrey);
    --pip-active-text: var(--range-pip-active-text, var(--pip-active));
    --pip-hover: var(--range-pip-hover, darkslategrey);
    --pip-hover-text: var(--range-pip-hover-text, var(--pip-hover));
    --pip-in-range: var(--range-pip-in-range, var(--pip-active));
    --pip-in-range-text: var(--range-pip-in-range-text, var(--pip-active-text));
  }
  .rangePips {
    position: absolute;
    height: 1em;
    left: 0;
    right: 0;
    bottom: -1em;
  }
  .rangePips.vertical {
    height: auto;
    width: 1em;
    left: 100%;
    right: auto;
    top: 0;
    bottom: 0;
  }
  .rangePips .pip {
    height: 0.4em;
    position: absolute;
    top: 0.25em;
    width: 1px;
    white-space: nowrap;
  }
  .rangePips.vertical .pip {
    height: 1px;
    width: 0.4em;
    left: 0.25em;
    top: auto;
    bottom: auto;
  }
  .rangePips .pipVal {
    position: absolute;
    top: 0.4em;
    transform: translate(-50%, 25%);
  }
  .rangePips.vertical .pipVal {
    position: absolute;
    top: 0;
    left: 0.4em;
    transform: translate(25%, -50%);
  }
  .rangePips .pip {
    transition: all 0.15s ease;
  }
  .rangePips .pipVal {
    transition: all 0.15s ease, font-weight 0s linear;
  }
  .rangePips .pip {
    color: lightslategray;
    color: var(--pip-text);
    background-color: lightslategray;
    background-color: var(--pip);
  }
  .rangePips .pip.selected {
    color: darkslategrey;
    color: var(--pip-active-text);
    background-color: darkslategrey;
    background-color: var(--pip-active);
  }
  .rangePips.hoverable:not(.disabled) .pip:hover {
    color: darkslategrey;
    color: var(--pip-hover-text);
    background-color: darkslategrey;
    background-color: var(--pip-hover);
  }
  .rangePips .pip.in-range {
    color: darkslategrey;
    color: var(--pip-in-range-text);
    background-color: darkslategrey;
    background-color: var(--pip-in-range);
  }
  .rangePips .pip.selected {
    height: 0.75em;
  }
  .rangePips.vertical .pip.selected {
    height: 1px;
    width: 0.75em;
  }
  .rangePips .pip.selected .pipVal {
    font-weight: bold;
    top: 0.75em;
  }
  .rangePips.vertical .pip.selected .pipVal {
    top: 0;
    left: 0.75em;
  }
  .rangePips.hoverable:not(.disabled) .pip:not(.selected):hover {
    transition: none;
  }
  .rangePips.hoverable:not(.disabled) .pip:not(.selected):hover .pipVal {
    transition: none;
    font-weight: bold;
  }

  .rangeSlider {
    --slider: var(--range-slider, #d7dada);
    --handle-inactive: var(--range-handle-inactive, #99a2a2);
    --handle: var(--range-handle, #838de7);
    --handle-focus: var(--range-handle-focus, #4a40d4);
    --handle-border: var(--range-handle-border, var(--handle));
    --range-inactive: var(--range-range-inactive, var(--handle-inactive));
    --range: var(--range-range, var(--handle-focus));
    --float-inactive: var(--range-float-inactive, var(--handle-inactive));
    --float: var(--range-float, var(--handle-focus));
    --float-text: var(--range-float-text, white);
    position: relative;
    border-radius: 100px;
    height: 0.5em;
    margin: 1em;
    transition: opacity 0.2s ease;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .rangeSlider * {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .rangeSlider.pips {
    margin-bottom: 1.8em;
  }
  .rangeSlider.pip-labels {
    margin-bottom: 2.8em;
  }
  .rangeSlider.vertical {
    display: inline-block;
    border-radius: 100px;
    width: 0.5em;
    min-height: 200px;
  }
  .rangeSlider.vertical.pips {
    margin-right: 1.8em;
    margin-bottom: 1em;
  }
  .rangeSlider.vertical.pip-labels {
    margin-right: 2.8em;
    margin-bottom: 1em;
  }
  .rangeSlider .rangeHandle {
    position: absolute;
    display: block;
    height: 1.4em;
    width: 1.4em;
    top: 0.25em;
    bottom: auto;
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
  }
  .rangeSlider.reversed .rangeHandle {
    transform: translateY(-50%) translateX(50%);
  }
  .rangeSlider.vertical .rangeHandle {
    left: 0.25em;
    top: auto;
    transform: translateY(50%) translateX(-50%);
  }
  .rangeSlider.vertical.reversed .rangeHandle {
    transform: translateY(-50%) translateX(-50%);
  }
  .rangeSlider .rangeNub,
  .rangeSlider .rangeHandle:before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    border-radius: 10em;
    height: 100%;
    width: 100%;
    transition: box-shadow 0.2s ease;
  }
  .rangeSlider .rangeHandle:before {
    content: "";
    left: 1px;
    top: 1px;
    bottom: 1px;
    right: 1px;
    height: auto;
    width: auto;
    box-shadow: 0 0 0 0px var(--handle-border);
    opacity: 0;
  }
  .rangeSlider.hoverable:not(.disabled) .rangeHandle:hover:before {
    box-shadow: 0 0 0 8px var(--handle-border);
    opacity: 0.2;
  }
  .rangeSlider.hoverable:not(.disabled) .rangeHandle.press:before,
  .rangeSlider.hoverable:not(.disabled) .rangeHandle.press:hover:before {
    box-shadow: 0 0 0 12px var(--handle-border);
    opacity: 0.4;
  }
  .rangeSlider.range:not(.min):not(.max) .rangeNub {
    border-radius: 10em 10em 10em 1.6em;
  }
  .rangeSlider.range .rangeHandle:nth-of-type(1) .rangeNub {
    transform: rotate(-135deg);
  }
  .rangeSlider.range .rangeHandle:nth-of-type(2) .rangeNub {
    transform: rotate(45deg);
  }
  .rangeSlider.range.reversed .rangeHandle:nth-of-type(1) .rangeNub {
    transform: rotate(45deg);
  }
  .rangeSlider.range.reversed .rangeHandle:nth-of-type(2) .rangeNub {
    transform: rotate(-135deg);
  }
  .rangeSlider.range.vertical .rangeHandle:nth-of-type(1) .rangeNub {
    transform: rotate(135deg);
  }
  .rangeSlider.range.vertical .rangeHandle:nth-of-type(2) .rangeNub {
    transform: rotate(-45deg);
  }
  .rangeSlider.range.vertical.reversed .rangeHandle:nth-of-type(1) .rangeNub {
    transform: rotate(-45deg);
  }
  .rangeSlider.range.vertical.reversed .rangeHandle:nth-of-type(2) .rangeNub {
    transform: rotate(135deg);
  }
  .rangeSlider .rangeFloat {
    display: block;
    position: absolute;
    left: 50%;
    top: -0.5em;
    transform: translate(-50%, -100%);
    font-size: 1em;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-size: 0.9em;
    padding: 0.2em 0.4em;
    border-radius: 0.2em;
  }
  .rangeSlider .rangeHandle.active .rangeFloat,
  .rangeSlider.hoverable .rangeHandle:hover .rangeFloat {
    opacity: 1;
    top: -0.2em;
    transform: translate(-50%, -100%);
  }
  .rangeSlider .rangeBar {
    position: absolute;
    display: block;
    transition: background 0.2s ease;
    border-radius: 1em;
    height: 0.5em;
    top: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    z-index: 1;
  }
  .rangeSlider.vertical .rangeBar {
    width: 0.5em;
    height: auto;
  }
  .rangeSlider {
    background-color: #d7dada;
    background-color: var(--slider);
  }
  .rangeSlider .rangeBar {
    background-color: #99a2a2;
    background-color: var(--range-inactive);
  }
  .rangeSlider.focus .rangeBar {
    background-color: #838de7;
    background-color: var(--range);
  }
  .rangeSlider .rangeNub {
    background-color: #99a2a2;
    background-color: var(--handle-inactive);
  }
  .rangeSlider.focus .rangeNub {
    background-color: #838de7;
    background-color: var(--handle);
  }
  .rangeSlider .rangeHandle.active .rangeNub {
    background-color: #4a40d4;
    background-color: var(--handle-focus);
  }
  .rangeSlider .rangeFloat {
    color: white;
    color: var(--float-text);
    background-color: #99a2a2;
    background-color: var(--float-inactive);
  }
  .rangeSlider.focus .rangeFloat {
    background-color: #4a40d4;
    background-color: var(--float);
  }
  .rangeSlider.disabled {
    opacity: 0.5;
  }
  .rangeSlider.disabled .rangeNub {
    background-color: #d7dada;
    background-color: var(--slider);
  }

  .checkmark-overlay.svelte-1s8k3g1 {
    opacity: 0;
  }
  .checkbox-input.svelte-1s8k3g1:checked ~ .checkmark-overlay:where(.svelte-1s8k3g1) {
    opacity: 1;
  }
/*! 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` */
		'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='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

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

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

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

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

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

:-moz-ui-invalid {
	box-shadow: none;
}

/**
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.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
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.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

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

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
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: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 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::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.
 */
 
:-moz-focusring {
	outline: auto;
}

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-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;
	--tw-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));
	border-color: currentColor;
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--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-shadow: 0 0 #0000;
	--tw-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
	--tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
  .container {
	width: 100%;
}
  .\!container {
	width: 100% !important;
}
  @media (min-width: 640px) {

	.container {
		max-width: 640px;
	}

	.\!container {
		max-width: 640px !important;
	}
}
  @media (min-width: 768px) {

	.container {
		max-width: 768px;
	}

	.\!container {
		max-width: 768px !important;
	}
}
  @media (min-width: 1024px) {

	.container {
		max-width: 1024px;
	}

	.\!container {
		max-width: 1024px !important;
	}
}
  @media (min-width: 1280px) {

	.container {
		max-width: 1280px;
	}

	.\!container {
		max-width: 1280px !important;
	}
}
  @media (min-width: 1536px) {

	.container {
		max-width: 1536px;
	}

	.\!container {
		max-width: 1536px !important;
	}
}
  .group-label {
	display: block;
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 700;
}
  .input-label {
	display: block;
	font-size: 1rem;
	line-height: 1.5rem;
}
  .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;
}
  .pointer-events-none {
	pointer-events: none;
}
  .pointer-events-auto {
	pointer-events: auto;
}
  .visible {
	visibility: visible;
}
  .\!visible {
	visibility: visible !important;
}
  .invisible {
	visibility: hidden;
}
  .fixed {
	position: fixed;
}
  .absolute {
	position: absolute;
}
  .relative {
	position: relative;
}
  .sticky {
	position: sticky;
}
  .inset-0 {
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
  .inset-x-0 {
	left: 0px;
	right: 0px;
}
  .inset-y-0 {
	top: 0px;
	bottom: 0px;
}
  .top-0 {
	top: 0px;
}
  .right-0 {
	right: 0px;
}
  .left-0 {
	left: 0px;
}
  .bottom-0 {
	bottom: 0px;
}
  .right-1\.5 {
	right: 0.375rem;
}
  .-top-0\.5 {
	top: -0.125rem;
}
  .right-1 {
	right: 0.25rem;
}
  .-top-0 {
	top: 0px;
}
  .top-3 {
	top: 0.75rem;
}
  .right-3 {
	right: 0.75rem;
}
  .top-2\.5 {
	top: 0.625rem;
}
  .right-2\.5 {
	right: 0.625rem;
}
  .top-2 {
	top: 0.5rem;
}
  .right-2 {
	right: 0.5rem;
}
  .top-full {
	top: 100%;
}
  .bottom-full {
	bottom: 100%;
}
  .z-10 {
	z-index: 10;
}
  .z-20 {
	z-index: 20;
}
  .z-30 {
	z-index: 30;
}
  .z-50 {
	z-index: 50;
}
  .col-start-1 {
	grid-column-start: 1;
}
  .row-start-1 {
	grid-row-start: 1;
}
  .float-right {
	float: right;
}
  .m-auto {
	margin: auto;
}
  .m-0 {
	margin: 0px;
}
  .m-2 {
	margin: 0.5rem;
}
  .m-8 {
	margin: 2rem;
}
  .m-16 {
	margin: 4rem;
}
  .my-2 {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
  .my-4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
  .mx-auto {
	margin-left: auto;
	margin-right: auto;
}
  .mx-10 {
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}
  .my-auto {
	margin-top: auto;
	margin-bottom: auto;
}
  .my-1 {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}
  .mx-16 {
	margin-left: 4rem;
	margin-right: 4rem;
}
  .mx-3 {
	margin-left: 0.75rem;
	margin-right: 0.75rem;
}
  .my-9 {
	margin-top: 2.25rem;
	margin-bottom: 2.25rem;
}
  .my-7 {
	margin-top: 1.75rem;
	margin-bottom: 1.75rem;
}
  .-mx-3 {
	margin-left: -0.75rem;
	margin-right: -0.75rem;
}
  .mx-4 {
	margin-left: 1rem;
	margin-right: 1rem;
}
  .mx-2 {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}
  .my-8 {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
  .my-3 {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}
  .-mx-4 {
	margin-left: -1rem;
	margin-right: -1rem;
}
  .my-0 {
	margin-top: 0px;
	margin-bottom: 0px;
}
  .mb-3 {
	margin-bottom: 0.75rem;
}
  .ml-2 {
	margin-left: 0.5rem;
}
  .mt-1 {
	margin-top: 0.25rem;
}
  .mt-2 {
	margin-top: 0.5rem;
}
  .mb-2 {
	margin-bottom: 0.5rem;
}
  .mb-8 {
	margin-bottom: 2rem;
}
  .mb-60 {
	margin-bottom: 15rem;
}
  .mr-8 {
	margin-right: 2rem;
}
  .\!mb-0 {
	margin-bottom: 0px !important;
}
  .mb-6 {
	margin-bottom: 1.5rem;
}
  .mr-4 {
	margin-right: 1rem;
}
  .mr-2 {
	margin-right: 0.5rem;
}
  .ml-9 {
	margin-left: 2.25rem;
}
  .mt-4 {
	margin-top: 1rem;
}
  .mt-6 {
	margin-top: 1.5rem;
}
  .mt-12 {
	margin-top: 3rem;
}
  .mt-3 {
	margin-top: 0.75rem;
}
  .mb-0\.5 {
	margin-bottom: 0.125rem;
}
  .mb-0 {
	margin-bottom: 0px;
}
  .mb-4 {
	margin-bottom: 1rem;
}
  .ml-10 {
	margin-left: 2.5rem;
}
  .mt-0\.5 {
	margin-top: 0.125rem;
}
  .mt-0 {
	margin-top: 0px;
}
  .mt-5 {
	margin-top: 1.25rem;
}
  .mb-2\.5 {
	margin-bottom: 0.625rem;
}
  .mr-3 {
	margin-right: 0.75rem;
}
  .mt-8 {
	margin-top: 2rem;
}
  .mt-28 {
	margin-top: 7rem;
}
  .mt-20 {
	margin-top: 5rem;
}
  .mr-7 {
	margin-right: 1.75rem;
}
  .mb-1 {
	margin-bottom: 0.25rem;
}
  .mb-16 {
	margin-bottom: 4rem;
}
  .mr-6 {
	margin-right: 1.5rem;
}
  .mr-1 {
	margin-right: 0.25rem;
}
  .mt-auto {
	margin-top: auto;
}
  .mb-9 {
	margin-bottom: 2.25rem;
}
  .ml-auto {
	margin-left: auto;
}
  .-mt-2 {
	margin-top: -0.5rem;
}
  .mb-10 {
	margin-bottom: 2.5rem;
}
  .mb-5 {
	margin-bottom: 1.25rem;
}
  .-ml-7 {
	margin-left: -1.75rem;
}
  .mt-1\.5 {
	margin-top: 0.375rem;
}
  .ml-11\.5 {
	margin-left: 2.875rem;
}
  .ml-11 {
	margin-left: 2.75rem;
}
  .ml-8 {
	margin-left: 2rem;
}
  .ml-4 {
	margin-left: 1rem;
}
  .block {
	display: block;
}
  .inline-block {
	display: inline-block;
}
  .inline {
	display: inline;
}
  .flex {
	display: flex;
}
  .inline-flex {
	display: inline-flex;
}
  .table {
	display: table;
}
  .\!table {
	display: table !important;
}
  .grid {
	display: grid;
}
  .hidden {
	display: none;
}
  .h-full {
	height: 100%;
}
  .h-8 {
	height: 2rem;
}
  .h-14 {
	height: 3.5rem;
}
  .h-10 {
	height: 2.5rem;
}
  .h-60 {
	height: 15rem;
}
  .h-auto {
	height: auto;
}
  .h-9 {
	height: 2.25rem;
}
  .h-80 {
	height: 20rem;
}
  .h-12 {
	height: 3rem;
}
  .h-7\.5 {
	height: 1.9375rem;
}
  .h-7 {
	height: 1.75rem;
}
  .h-40 {
	height: 10rem;
}
  .h-110 {
	height: 31.125rem;
}
  .h-screen {
	height: 100vh;
}
  .h-96 {
	height: 24rem;
}
  .h-36 {
	height: 9rem;
}
  .h-6 {
	height: 1.5rem;
}
  .h-24 {
	height: 6rem;
}
  .h-3\.5 {
	height: 0.875rem;
}
  .h-3 {
	height: 0.75rem;
}
  .h-13 {
	height: 3.0625rem;
}
  .max-h-screen {
	max-height: 100vh;
}
  .max-h-0 {
	max-height: 0px;
}
  .max-h-96 {
	max-height: 24rem;
}
  .min-h-3\/6 {
	min-height: 50vh;
}
  .min-h-screen {
	min-height: 100vh;
}
  .min-h-216 {
	min-height: 13.5rem;
}
  .min-h-40 {
	min-height: 2.5rem;
}
  .min-h-0 {
	min-height: 0px;
}
  .w-full {
	width: 100%;
}
  .w-8 {
	width: 2rem;
}
  .w-14 {
	width: 3.5rem;
}
  .w-10 {
	width: 2.5rem;
}
  .w-32 {
	width: 8rem;
}
  .w-28 {
	width: 7rem;
}
  .w-min {
	width: -moz-min-content;
	width: min-content;
}
  .w-48 {
	width: 12rem;
}
  .w-2\/3 {
	width: 66.666667%;
}
  .w-7 {
	width: 1.75rem;
}
  .w-20 {
	width: 5rem;
}
  .w-60 {
	width: 15rem;
}
  .w-9 {
	width: 2.25rem;
}
  .w-1\/2 {
	width: 50%;
}
  .w-26 {
	width: 6.5rem;
}
  .w-170 {
	width: 51.5rem;
}
  .w-72 {
	width: 18rem;
}
  .w-auto {
	width: auto;
}
  .w-230 {
	width: 84.25rem;
}
  .w-17 {
	width: 4.375rem;
}
  .w-6 {
	width: 1.5rem;
}
  .w-24 {
	width: 6rem;
}
  .w-40 {
	width: 10rem;
}
  .w-5 {
	width: 1.25rem;
}
  .min-w-0 {
	min-width: 0px;
}
  .min-w-1\/2 {
	min-width: 50%;
}
  .min-w-full {
	min-width: 100%;
}
  .max-w-content {
	max-width: 40rem;
}
  .max-w-xl {
	max-width: 36rem;
}
  .max-w-sm {
	max-width: 24rem;
}
  .max-w-min {
	max-width: -moz-min-content;
	max-width: min-content;
}
  .max-w-screen-sm {
	max-width: 640px;
}
  .max-w-grid {
	max-width: 88.25rem;
}
  .max-w-xs {
	max-width: 20rem;
}
  .flex-1 {
	flex: 1 1 0%;
}
  .flex-shrink-0 {
	flex-shrink: 0;
}
  .table-auto {
	table-layout: auto;
}
  .table-fixed {
	table-layout: fixed;
}
  .rotate-180 {
	--tw-rotate: 180deg;
	transform: var(--tw-transform);
}
  .rotate-45 {
	--tw-rotate: 45deg;
	transform: var(--tw-transform);
}
  .scale-90 {
	--tw-scale-x: .9;
	--tw-scale-y: .9;
	transform: var(--tw-transform);
}
  .transform {
	transform: var(--tw-transform);
}
  @keyframes spin {

	to {
		transform: rotate(360deg);
	}
}
  .animate-spin {
	animation: spin 1s linear infinite;
}
  @keyframes ping-small {

	75%, 100% {
		transform: scale(1.5);
		opacity: 0;
	}
}
  .animate-ping-small {
	animation: ping-small 1s cubic-bezier(0, 0, 0.1, 1) infinite;
}
  .cursor-not-allowed {
	cursor: not-allowed;
}
  .cursor-pointer {
	cursor: pointer;
}
  .cursor-\[inherit\] {
	cursor: inherit;
}
  .cursor-default {
	cursor: default;
}
  .select-none {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
}
  .resize {
	resize: both;
}
  .list-none {
	list-style-type: none;
}
  .appearance-none {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
  .grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
  .grid-rows-1 {
	grid-template-rows: repeat(1, minmax(0, 1fr));
}
  .flex-row {
	flex-direction: row;
}
  .flex-row-reverse {
	flex-direction: row-reverse;
}
  .flex-col {
	flex-direction: column;
}
  .flex-col-reverse {
	flex-direction: column-reverse;
}
  .flex-wrap {
	flex-wrap: wrap;
}
  .place-content-evenly {
	place-content: space-evenly;
}
  .place-items-stretch {
	place-items: stretch;
}
  .items-start {
	align-items: flex-start;
}
  .items-end {
	align-items: flex-end;
}
  .items-center {
	align-items: center;
}
  .items-stretch {
	align-items: stretch;
}
  .justify-start {
	justify-content: flex-start;
}
  .justify-end {
	justify-content: flex-end;
}
  .justify-center {
	justify-content: center;
}
  .justify-between {
	justify-content: space-between;
}
  .justify-around {
	justify-content: space-around;
}
  .gap-3 {
	gap: 0.75rem;
}
  .gap-4 {
	gap: 1rem;
}
  .gap-2 {
	gap: 0.5rem;
}
  .gap-1 {
	gap: 0.25rem;
}
  .gap-6 {
	gap: 1.5rem;
}
  .gap-11 {
	gap: 2.75rem;
}
  .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)));
}
  .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-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)));
}
  .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));
}
  .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-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)));
}
  .space-x-3\.5 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(0.875rem * var(--tw-space-x-reverse));
	margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse)));
}
  .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));
}
  .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-1\.5 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(0.375rem * var(--tw-space-x-reverse));
	margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
  .space-x-7 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(1.75rem * var(--tw-space-x-reverse));
	margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse)));
}
  .self-start {
	align-self: flex-start;
}
  .self-end {
	align-self: flex-end;
}
  .self-center {
	align-self: center;
}
  .overflow-hidden {
	overflow: hidden;
}
  .overflow-visible {
	overflow: visible;
}
  .overflow-x-auto {
	overflow-x: auto;
}
  .overflow-y-auto {
	overflow-y: auto;
}
  .overflow-x-hidden {
	overflow-x: hidden;
}
  .whitespace-nowrap {
	white-space: nowrap;
}
  .break-normal {
	overflow-wrap: normal;
	word-break: normal;
}
  .break-words {
	overflow-wrap: break-word;
}
  .rounded-full {
	border-radius: 9999px;
}
  .rounded-md {
	border-radius: 0.375rem;
}
  .rounded {
	border-radius: 0.25rem;
}
  .rounded-sm {
	border-radius: 0.125rem;
}
  .rounded-lg {
	border-radius: 0.5rem;
}
  .rounded-3xl {
	border-radius: 1.5rem;
}
  .rounded-l-md {
	border-top-left-radius: 0.375rem;
	border-bottom-left-radius: 0.375rem;
}
  .border-2 {
	border-width: 2px;
}
  .border {
	border-width: 1px;
}
  .border-4 {
	border-width: 4px;
}
  .border-t {
	border-top-width: 1px;
}
  .border-b {
	border-bottom-width: 1px;
}
  .border-l {
	border-left-width: 1px;
}
  .border-b-1 {
	border-bottom-width: 1px;
}
  .border-t-1 {
	border-top-width: 1px;
}
  .border-t-0\.6 {
	border-top-width: 0.6px;
}
  .border-b-0\.6 {
	border-bottom-width: 0.6px;
}
  .border-t-0 {
	border-top-width: 0px;
}
  .border-b-0 {
	border-bottom-width: 0px;
}
  .border-solid {
	border-style: solid;
}
  .border-none {
	border-style: none;
}
  .border-Neutral400 {
	--tw-border-opacity: 1;
	border-color: rgba(203, 196, 188, var(--tw-border-opacity));
}
  .border-Neutral300 {
	--tw-border-opacity: 1;
	border-color: rgba(227, 224, 221, var(--tw-border-opacity));
}
  .border-Red900 {
	--tw-border-opacity: 1;
	border-color: rgba(224, 62, 82, var(--tw-border-opacity));
}
  .border-Neutral200 {
	--tw-border-opacity: 1;
	border-color: rgba(242, 240, 238, var(--tw-border-opacity));
}
  .border-Violet700 {
	--tw-border-opacity: 1;
	border-color: rgba(168, 61, 114, var(--tw-border-opacity));
}
  .border-PurplePrimary {
	--tw-border-opacity: 1;
	border-color: rgba(112, 32, 130, var(--tw-border-opacity));
}
  .border-white {
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
  .border-Neutral100 {
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
  .border-TextGrey {
	--tw-border-opacity: 1;
	border-color: rgba(196, 196, 196, var(--tw-border-opacity));
}
  .border-Neutral700 {
	--tw-border-opacity: 1;
	border-color: rgba(117, 120, 123, var(--tw-border-opacity));
}
  .border-opacity-50 {
	--tw-border-opacity: 0.5;
}
  .bg-Neutral110 {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 249, 249, var(--tw-bg-opacity));
}
  .bg-Neutral200 {
	--tw-bg-opacity: 1;
	background-color: rgba(242, 240, 238, var(--tw-bg-opacity));
}
  .bg-Yellow {
	--tw-bg-opacity: 1;
	background-color: rgba(237, 224, 75, var(--tw-bg-opacity));
}
  .bg-Neutral400 {
	--tw-bg-opacity: 1;
	background-color: rgba(203, 196, 188, var(--tw-bg-opacity));
}
  .bg-Violet400 {
	--tw-bg-opacity: 1;
	background-color: rgba(231, 130, 169, var(--tw-bg-opacity));
}
  .bg-Neutral300 {
	--tw-bg-opacity: 1;
	background-color: rgba(227, 224, 221, var(--tw-bg-opacity));
}
  .bg-Violet100 {
	--tw-bg-opacity: 1;
	background-color: rgba(241, 218, 227, var(--tw-bg-opacity));
}
  .bg-Purple200 {
	--tw-bg-opacity: 1;
	background-color: rgba(232, 217, 236, var(--tw-bg-opacity));
}
  .bg-PurplePrimary {
	--tw-bg-opacity: 1;
	background-color: rgba(112, 32, 130, var(--tw-bg-opacity));
}
  .bg-Purple700 {
	--tw-bg-opacity: 1;
	background-color: rgba(130, 70, 175, var(--tw-bg-opacity));
}
  .bg-white {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
  .bg-Violet300 {
	--tw-bg-opacity: 1;
	background-color: rgba(244, 201, 218, var(--tw-bg-opacity));
}
  .bg-Neutral100 {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
  .bg-Purple900 {
	--tw-bg-opacity: 1;
	background-color: rgba(60, 16, 83, var(--tw-bg-opacity));
}
  .bg-Orange {
	--tw-bg-opacity: 1;
	background-color: rgba(236, 161, 84, var(--tw-bg-opacity));
}
  .bg-Red400 {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 128, 139, var(--tw-bg-opacity));
}
  .bg-opacity-25 {
	--tw-bg-opacity: 0.25;
}
  .bg-none {
	background-image: none;
}
  .bg-contain {
	background-size: contain;
}
  .bg-cover {
	background-size: cover;
}
  .bg-no-repeat {
	background-repeat: no-repeat;
}
  .fill-current {
	fill: currentColor;
}
  .object-cover {
	-o-object-fit: cover;
	   object-fit: cover;
}
  .p-4 {
	padding: 1rem;
}
  .p-8 {
	padding: 2rem;
}
  .p-2 {
	padding: 0.5rem;
}
  .p-0 {
	padding: 0px;
}
  .p-3 {
	padding: 0.75rem;
}
  .p-6 {
	padding: 1.5rem;
}
  .p-2\.5 {
	padding: 0.625rem;
}
  .p-1 {
	padding: 0.25rem;
}
  .px-16 {
	padding-left: 4rem;
	padding-right: 4rem;
}
  .px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
  .px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
  .px-0 {
	padding-left: 0px;
	padding-right: 0px;
}
  .py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
  .px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}
  .py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
  .py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
  .py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
  .py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
  .px-1\.5 {
	padding-left: 0.375rem;
	padding-right: 0.375rem;
}
  .px-1 {
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}
  .py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
  .py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
  .py-2\.5 {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
}
  .px-32 {
	padding-left: 8rem;
	padding-right: 8rem;
}
  .px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
  .px-10 {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
  .py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
  .pt-10 {
	padding-top: 2.5rem;
}
  .pb-6 {
	padding-bottom: 1.5rem;
}
  .pr-4 {
	padding-right: 1rem;
}
  .pb-4 {
	padding-bottom: 1rem;
}
  .pt-1 {
	padding-top: 0.25rem;
}
  .pl-17 {
	padding-left: 4.375rem;
}
  .pt-px {
	padding-top: 1px;
}
  .pl-2 {
	padding-left: 0.5rem;
}
  .pr-7 {
	padding-right: 1.75rem;
}
  .pl-3 {
	padding-left: 0.75rem;
}
  .pr-2 {
	padding-right: 0.5rem;
}
  .pt-4 {
	padding-top: 1rem;
}
  .pl-4 {
	padding-left: 1rem;
}
  .pt-3 {
	padding-top: 0.75rem;
}
  .pt-2 {
	padding-top: 0.5rem;
}
  .pl-16 {
	padding-left: 4rem;
}
  .pb-2 {
	padding-bottom: 0.5rem;
}
  .pt-32 {
	padding-top: 8rem;
}
  .pt-16 {
	padding-top: 4rem;
}
  .pl-8 {
	padding-left: 2rem;
}
  .pb-3 {
	padding-bottom: 0.75rem;
}
  .pt-0 {
	padding-top: 0px;
}
  .pl-1 {
	padding-left: 0.25rem;
}
  .pb-1\.5 {
	padding-bottom: 0.375rem;
}
  .pb-1 {
	padding-bottom: 0.25rem;
}
  .pt-6 {
	padding-top: 1.5rem;
}
  .pr-10 {
	padding-right: 2.5rem;
}
  .pb-0 {
	padding-bottom: 0px;
}
  .text-left {
	text-align: left;
}
  .text-center {
	text-align: center;
}
  .text-right {
	text-align: right;
}
  .align-baseline {
	vertical-align: baseline;
}
  .align-middle {
	vertical-align: middle;
}
  .font-Sk-Sans {
	font-family: 'SK Sans';
}
  .text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}
  .\!text-H2 {
	font-size: 2rem !important;
	line-height: 2.5rem !important;
}
  .text-S {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
  .text-M {
	font-size: 1rem;
	line-height: 1.5rem;
}
  .text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}
  .text-L {
	font-size: 1.188rem;
	line-height: 1.5rem;
}
  .text-H3 {
	font-size: 1.5rem;
	line-height: 1.875rem;
}
  .text-H4 {
	font-size: 1.125rem;
	line-height: 1.5rem;
}
  .text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
  .text-H2 {
	font-size: 2rem;
	line-height: 2.5rem;
}
  .text-H6 {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
  .text-H4m {
	font-size: 1.1875rem;
	line-height: 1.375rem;
}
  .text-H5 {
	font-size: 1rem;
	line-height: 1.25rem;
}
  .text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}
  .text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}
  .\!text-H3 {
	font-size: 1.5rem !important;
	line-height: 1.875rem !important;
}
  .\!text-base {
	font-size: 1rem !important;
	line-height: 1.5rem !important;
}
  .\!text-L {
	font-size: 1.188rem !important;
	line-height: 1.5rem !important;
}
  .text-CardTextH1m {
	font-size: 3rem;
	line-height: 3.5rem;
}
  .text-CardTextH2m {
	font-size: 2.125rem;
	line-height: 2.625rem;
}
  .text-CardTextH3m {
	font-size: 1.75rem;
	line-height: 2rem;
}
  .text-CardTextH4m {
	font-size: 1.375rem;
	line-height: 1.625rem;
}
  .text-CardTextH5m {
	font-size: 0.875rem;
	line-height: 1.125rem;
}
  .text-CardTextH6m {
	font-size: 0.75rem;
	line-height: 1rem;
}
  .text-CardTextMm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
  .text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}
  .text-H1m {
	font-size: 2.25rem;
	line-height: 2.5rem;
}
  .text-H5m {
	font-size: 1rem;
	line-height: 1.25rem;
}
  .text-FineTuned {
	font-size: 0.75rem;
	line-height: 1rem;
}
  .font-semibold {
	font-weight: 600;
}
  .font-black {
	font-weight: 900;
}
  .font-bold {
	font-weight: 700;
}
  .font-normal {
	font-weight: 400;
}
  .\!font-bold {
	font-weight: 700 !important;
}
  .font-extralight {
	font-weight: 200;
}
  .font-light {
	font-weight: 300;
}
  .lowercase {
	text-transform: lowercase;
}
  .capitalize {
	text-transform: capitalize;
}
  .italic {
	font-style: italic;
}
  .ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions {
	--tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
	--tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
	--tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
	--tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
	--tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
	font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
  .tabular-nums {
	--tw-numeric-spacing: tabular-nums;
}
  .leading-6 {
	line-height: 1.5rem;
}
  .leading-4 {
	line-height: 1rem;
}
  .leading-none {
	line-height: 1;
}
  .leading-5 {
	line-height: 1.25rem;
}
  .leading-\[18px\] {
	line-height: 18px;
}
  .text-PurplePrimary {
	--tw-text-opacity: 1;
	color: rgba(112, 32, 130, var(--tw-text-opacity));
}
  .text-Violet700 {
	--tw-text-opacity: 1;
	color: rgba(168, 61, 114, var(--tw-text-opacity));
}
  .text-Neutral900 {
	--tw-text-opacity: 1;
	color: rgba(39, 39, 38, var(--tw-text-opacity));
}
  .\!text-PurplePrimary {
	--tw-text-opacity: 1 !important;
	color: rgba(112, 32, 130, var(--tw-text-opacity)) !important;
}
  .text-Neutral700 {
	--tw-text-opacity: 1;
	color: rgba(117, 120, 123, var(--tw-text-opacity));
}
  .text-Red800 {
	--tw-text-opacity: 1;
	color: rgba(216, 38, 60, var(--tw-text-opacity));
}
  .text-Red400 {
	--tw-text-opacity: 1;
	color: rgba(255, 128, 139, var(--tw-text-opacity));
}
  .text-Neutral100 {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
  .text-white {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
  .text-Neutral800 {
	--tw-text-opacity: 1;
	color: rgba(94, 97, 99, var(--tw-text-opacity));
}
  .text-Neutral110 {
	--tw-text-opacity: 1;
	color: rgba(249, 249, 249, var(--tw-text-opacity));
}
  .text-Violet100 {
	--tw-text-opacity: 1;
	color: rgba(241, 218, 227, var(--tw-text-opacity));
}
  .text-Green700 {
	--tw-text-opacity: 1;
	color: rgba(80, 158, 47, var(--tw-text-opacity));
}
  .text-Violet900 {
	--tw-text-opacity: 1;
	color: rgba(137, 59, 103, var(--tw-text-opacity));
}
  .text-Red900 {
	--tw-text-opacity: 1;
	color: rgba(224, 62, 82, var(--tw-text-opacity));
}
  .text-black {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
  .text-Purple700 {
	--tw-text-opacity: 1;
	color: rgba(130, 70, 175, var(--tw-text-opacity));
}
  .underline {
	text-decoration: underline;
}
  .no-underline {
	text-decoration: none;
}
  .placeholder-Purple700::-moz-placeholder {
	--tw-placeholder-opacity: 1;
	color: rgba(130, 70, 175, var(--tw-placeholder-opacity));
}
  .placeholder-Purple700::placeholder {
	--tw-placeholder-opacity: 1;
	color: rgba(130, 70, 175, var(--tw-placeholder-opacity));
}
  .opacity-80 {
	opacity: 0.8;
}
  .opacity-50 {
	opacity: 0.5;
}
  .opacity-40 {
	opacity: 0.4;
}
  .opacity-70 {
	opacity: 0.7;
}
  .opacity-100 {
	opacity: 1;
}
  .shadow-InputContainer {
	--tw-shadow: 0px 0px 12px rgba(0, 0, 0, 0.07);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
  .shadow-md {
	--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
  .shadow-CookieConsent {
	--tw-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
  .shadow-3xl {
	--tw-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
  .shadow-lg {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px 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-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);
}
  .shadow {
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
  .outline-none {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
  .ring-0 {
	--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(0px + 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);
}
  .ring-2 {
	--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);
}
  .ring {
	--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(3px + 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);
}
  .ring-Red800 {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(216, 38, 60, var(--tw-ring-opacity));
}
  .ring-Yellow {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(237, 224, 75, var(--tw-ring-opacity));
}
  .blur {
	--tw-blur: blur(8px);
	filter: var(--tw-filter);
}
  .filter {
	filter: var(--tw-filter);
}
  .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-maxHeight {
	transition-property: max-height;
	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-transform {
	transition-property: transform;
	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;
}
  .transition-width {
	transition-property: width;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
  .duration-500 {
	transition-duration: 500ms;
}
  .duration-150 {
	transition-duration: 150ms;
}
  .duration-200 {
	transition-duration: 200ms;
}
  .duration-700 {
	transition-duration: 700ms;
}
  .duration-300 {
	transition-duration: 300ms;
}
  .ease-in-out {
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
  .focus-within\:border-Violet700:focus-within {
	--tw-border-opacity: 1;
	border-color: rgba(168, 61, 114, var(--tw-border-opacity));
}
  .focus-within\:border-opacity-100:focus-within {
	--tw-border-opacity: 1;
}
  .hover\:bg-Neutral200:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(242, 240, 238, var(--tw-bg-opacity));
}
  .hover\:bg-Neutral100:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
  .hover\:underline:hover {
	text-decoration: underline;
}
  .hover\:opacity-75:hover {
	opacity: 0.75;
}
  .hover\:opacity-80:hover {
	opacity: 0.8;
}
  .hover\:opacity-70:hover {
	opacity: 0.7;
}
  .focus\:outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
  .focus\:ring-0: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(0px + 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-4: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(4px + 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-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-Red800:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(216, 38, 60, var(--tw-ring-opacity));
}
  .focus\:ring-Violet400:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(231, 130, 169, var(--tw-ring-opacity));
}
  .focus\:ring-Green900:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(33, 87, 50, var(--tw-ring-opacity));
}
  .focus-visible\:ring-2:focus-visible {
	--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-visible\:ring-Violet400:focus-visible {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(231, 130, 169, var(--tw-ring-opacity));
}
  .focus-visible\:ring-offset-2:focus-visible {
	--tw-ring-offset-width: 2px;
}
  .group:hover .group-hover\:-translate-x-0\.5 {
	--tw-translate-x: -0.125rem;
	transform: var(--tw-transform);
}
  .group:hover .group-hover\:-translate-x-0 {
	--tw-translate-x: 0px;
	transform: var(--tw-transform);
}
  .group:hover .group-hover\:translate-x-0\.5 {
	--tw-translate-x: 0.125rem;
	transform: var(--tw-transform);
}
  .group:hover .group-hover\:translate-x-0 {
	--tw-translate-x: 0px;
	transform: var(--tw-transform);
}
  @media (min-width: 640px) {

	.sm\:my-0 {
		margin-top: 0px;
		margin-bottom: 0px;
	}

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

	.sm\:ml-4 {
		margin-left: 1rem;
	}

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

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

	.sm\:w-auto {
		width: auto;
	}

	.sm\:max-w-xs {
		max-width: 20rem;
	}

	.sm\:flex-row {
		flex-direction: row;
	}

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

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

	.sm\:gap-3 {
		gap: 0.75rem;
	}

	.sm\:text-XL {
		font-size: 1.5rem;
		line-height: 1.875rem;
	}

	.sm\:text-L {
		font-size: 1.188rem;
		line-height: 1.5rem;
	}
}
  @media (min-width: 768px) {

	.md\:m-4 {
		margin: 1rem;
	}

	.md\:mx-16 {
		margin-left: 4rem;
		margin-right: 4rem;
	}

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

	.md\:ml-0 {
		margin-left: 0px;
	}

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

	.md\:mb-0 {
		margin-bottom: 0px;
	}

	.md\:mb-12 {
		margin-bottom: 3rem;
	}

	.md\:mt-3 {
		margin-top: 0.75rem;
	}

	.md\:mb-3 {
		margin-bottom: 0.75rem;
	}

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

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

	.md\:block {
		display: block;
	}

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

	.md\:flex {
		display: flex;
	}

	.md\:hidden {
		display: none;
	}

	.md\:h-22 {
		height: 5.625rem;
	}

	.md\:h-full {
		height: 100%;
	}

	.md\:min-h-4\/6 {
		min-height: 70vh;
	}

	.md\:w-full {
		width: 100%;
	}

	.md\:w-80 {
		width: 20rem;
	}

	.md\:w-42 {
		width: 10.25rem;
	}

	.md\:max-w-grid {
		max-width: 88.25rem;
	}

	.md\:max-w-footerM {
		max-width: 51.5rem;
	}

	.md\:scale-100 {
		--tw-scale-x: 1;
		--tw-scale-y: 1;
		transform: var(--tw-transform);
	}

	.md\:flex-row {
		flex-direction: row;
	}

	.md\:flex-row-reverse {
		flex-direction: row-reverse;
	}

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

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

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

	.md\:gap-12 {
		gap: 3rem;
	}

	.md\: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)));
	}

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

	.md\:self-start {
		align-self: flex-start;
	}

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

	.md\:px-0 {
		padding-left: 0px;
		padding-right: 0px;
	}

	.md\:px-14 {
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}

	.md\:py-3 {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}

	.md\:px-3 {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.md\:py-1 {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}

	.md\:py-2 {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

	.md\:pb-0 {
		padding-bottom: 0px;
	}

	.md\:pr-8 {
		padding-right: 2rem;
	}

	.md\:pt-2 {
		padding-top: 0.5rem;
	}

	.md\:pt-3 {
		padding-top: 0.75rem;
	}

	.md\:pr-36 {
		padding-right: 9rem;
	}

	.md\:pr-0 {
		padding-right: 0px;
	}

	.md\:text-right {
		text-align: right;
	}

	.md\:text-H2 {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.md\:text-H3 {
		font-size: 1.5rem;
		line-height: 1.875rem;
	}

	.md\:text-M {
		font-size: 1rem;
		line-height: 1.5rem;
	}

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

	.md\:text-CardTextH1 {
		font-size: 4rem;
		line-height: 4.5rem;
	}

	.md\:text-CardTextH2 {
		font-size: 3rem;
		line-height: 3.5rem;
	}

	.md\:text-CardTextH3 {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.md\:text-CardTextH4 {
		font-size: 1.5rem;
		line-height: 1.875rem;
	}

	.md\:text-CardTextH5 {
		font-size: 1.125rem;
		line-height: 1.375rem;
	}

	.md\:text-CardTextH6 {
		font-size: 0.875rem;
		line-height: 1.125rem;
	}

	.md\:text-CardTextM {
		font-size: 1rem;
		line-height: 1.5rem;
	}

	.md\:text-H1 {
		font-size: 3rem;
		line-height: 3.5rem;
	}
}
  @media (min-width: 1024px) {

	.lg\:ml-8 {
		margin-left: 2rem;
	}

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

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

	.lg\:mb-0 {
		margin-bottom: 0px;
	}

	.lg\:mr-16 {
		margin-right: 4rem;
	}

	.lg\:mr-24 {
		margin-right: 6rem;
	}

	.lg\:block {
		display: block;
	}

	.lg\:flex {
		display: flex;
	}

	.lg\:hidden {
		display: none;
	}

	.lg\:max-w-grid {
		max-width: 88.25rem;
	}

	.lg\:flex-row {
		flex-direction: row;
	}

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

	.lg\:p-10 {
		padding: 2.5rem;
	}

	.lg\:px-56 {
		padding-left: 14rem;
		padding-right: 14rem;
	}

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

	.lg\:pr-64 {
		padding-right: 16rem;
	}
}
  @media (min-width: 1280px) {

	.xl\:m-auto {
		margin: auto;
	}

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

	.xl\:ml-6 {
		margin-left: 1.5rem;
	}

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

	.xl\:flex {
		display: flex;
	}

	.xl\:hidden {
		display: none;
	}

	.xl\:w-42 {
		width: 10.25rem;
	}

	.xl\:max-w-grid {
		max-width: 88.25rem;
	}

	.xl\:py-1 {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}
}
