@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.wallet-adapter-button {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: 'DM Sans', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    border-radius: 4px;
}

.wallet-adapter-button-trigger {
    background-color: #512da8;
}

.wallet-adapter-button:not([disabled]):focus-visible {
    outline-color: white;
}

.wallet-adapter-button:not([disabled]):hover {
    background-color: #1a1f2e;
}

.wallet-adapter-button[disabled] {
    background: #404144;
    color: #999;
    cursor: not-allowed;
}

.wallet-adapter-button-end-icon,
.wallet-adapter-button-start-icon,
.wallet-adapter-button-end-icon img,
.wallet-adapter-button-start-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.wallet-adapter-button-end-icon {
    margin-left: 12px;
}

.wallet-adapter-button-start-icon {
    margin-right: 12px;
}

.wallet-adapter-collapse {
    width: 100%;
}

.wallet-adapter-dropdown {
    position: relative;
    display: inline-block;
}

.wallet-adapter-dropdown-list {
    position: absolute;
    z-index: 99;
    display: grid;
    grid-template-rows: 1fr;
    grid-row-gap: 10px;
    padding: 10px;
    top: 100%;
    right: 0;
    margin: 0;
    list-style: none;
    background: #2c2d30;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
    font-family: 'DM Sans', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.wallet-adapter-dropdown-list-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.wallet-adapter-dropdown-list-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    height: 37px;
    color: #fff;
}

.wallet-adapter-dropdown-list-item:not([disabled]):hover {
    background-color: #1a1f2e;
}

.wallet-adapter-modal-collapse-button svg {
    align-self: center;
    fill: #999;
}

.wallet-adapter-modal-collapse-button.wallet-adapter-modal-collapse-button-active svg {
    transform: rotate(180deg);
    transition: transform ease-in 150ms;
}

.wallet-adapter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity linear 150ms;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    overflow-y: auto;
}

.wallet-adapter-modal.wallet-adapter-modal-fade-in {
    opacity: 1;
}

.wallet-adapter-modal-button-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 12px;
    cursor: pointer;
    background: #1a1f2e;
    border: none;
    border-radius: 50%;
}

.wallet-adapter-modal-button-close:focus-visible {
    outline-color: white;
}

.wallet-adapter-modal-button-close svg {
    fill: #777;
    transition: fill 200ms ease 0s;
}

.wallet-adapter-modal-button-close:hover svg {
    fill: #fff;
}

.wallet-adapter-modal-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wallet-adapter-modal-container {
    display: flex;
    margin: 3rem;
    min-height: calc(100vh - 6rem); /* 100vh - 2 * margin */
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .wallet-adapter-modal-container {
        margin: 1rem;
        min-height: calc(100vh - 2rem); /* 100vh - 2 * margin */
    }
}

.wallet-adapter-modal-wrapper {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1050;
    max-width: 400px;
    border-radius: 10px;
    background: #10141f;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
    font-family: 'DM Sans', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    flex: 1;
}

.wallet-adapter-modal-wrapper .wallet-adapter-button {
    width: 100%;
}

.wallet-adapter-modal-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin: 0;
    padding: 64px 48px 48px 48px;
    text-align: center;
    color: #fff;
}

@media (max-width: 374px) {
    .wallet-adapter-modal-title {
        font-size: 18px;
    }
}

.wallet-adapter-modal-list {
    margin: 0 0 12px 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.wallet-adapter-modal-list .wallet-adapter-button {
    font-weight: 400;
    border-radius: 0;
    font-size: 18px;
}

.wallet-adapter-modal-list .wallet-adapter-button-end-icon,
.wallet-adapter-modal-list .wallet-adapter-button-start-icon,
.wallet-adapter-modal-list .wallet-adapter-button-end-icon img,
.wallet-adapter-modal-list .wallet-adapter-button-start-icon img {
    width: 28px;
    height: 28px;
}

.wallet-adapter-modal-list .wallet-adapter-button span {
    margin-left: auto;
    font-size: 14px;
    opacity: .6;
}

.wallet-adapter-modal-list-more {
    cursor: pointer;
    border: none;
    padding: 12px 24px 24px 12px;
    align-self: flex-end;
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #fff;
}

.wallet-adapter-modal-list-more svg {
    transition: all 0.1s ease;
    fill: rgba(255, 255, 255, 1);
    margin-left: 0.5rem;
}

.wallet-adapter-modal-list-more-icon-rotate {
    transform: rotate(180deg);
}

.wallet-adapter-modal-middle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 24px 24px;
    box-sizing: border-box;
}

.wallet-adapter-modal-middle-button {
    display: block;
    cursor: pointer;
    margin-top: 48px;
    width: 100%;
    background-color: #512da8;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    color: #fff;
}

/*! 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 {
	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::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

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));
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--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);
}

:root {
	background-color: hsla(var(--b1) / var(--tw-bg-opacity,1));
	color: hsla(var(--bc) / var(--tw-text-opacity,1));
}

html {
	-webkit-tap-highlight-color: transparent;
}

:root {
	--p: 24 74.3% 51.2%;
	--pf: 32 88.8% 42%;
	--pc: 240 29.7% 17.8%;
	--s: 271 45.8% 42%;
	--sf: 271 46% 32%;
	--sc: 0 0% 100%;
	--a: 91 100% 32.9%;
	--af: 91 100% 22.9%;
	--ac: 0 0% 100%;
	--n: 180 3.6% 11%;
	--nf: 240 29.7% 17.8%;
	--nc: 0 0% 100%;
	--b1: 213 10.6% 33.3%;
	--b2: 216 10.6% 9.2%;
	--b3: 240 12.5% 15.7%;
	--bc: 0 0% 100%;
	--in: 202 100% 70%;
	--su: 89 61.6% 52%;
	--wa: 54 68.8% 63.5%;
	--er: 0 100% 71.8%;
	--border-color: var(--b3);
	--rounded-box: 1rem;
	--rounded-btn: 0.5rem;
	--rounded-badge: 1.9rem;
	--animation-btn: 0.25s;
	--animation-input: .2s;
	--btn-text-case: uppercase;
	--btn-focus-scale: 0.95;
	--navbar-padding: .5rem;
	--border-btn: 1px;
	--tab-border: 1px;
	--tab-radius: 0.5rem;
}

.btn {
	border-color: transparent;
	border-color: hsla(var(--n) / var(--tw-border-opacity, 1));
	cursor: pointer;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-align: center;
	-webkit-user-select: none;
	user-select: none;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	border-radius: var(--rounded-btn, .5rem);
	height: 3rem;
	font-size: .875rem;
	line-height: 1.25rem;
	line-height: 1em;
	padding-left: 1rem;
	padding-right: 1rem;
	min-height: 3rem;
	font-weight: 600;
	text-transform: uppercase;
	text-transform: var(--btn-text-case, uppercase);
	border-width: var(--border-btn, 1px);
	animation: button-pop var(--animation-btn, .25s) ease-out;
	--tw-bg-opacity: 1;
	background-color: hsla(var(--n) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	--tw-text-opacity: 1;
	color: hsla(var(--nc) / var(--tw-text-opacity, 1));
}

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

.btn-disabled,.btn[disabled] {
	pointer-events: none;
	--tw-bg-opacity: 1;
	--tw-bg-opacity: 0.2;
	background-color: hsla(var(--n) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 0;
	--tw-text-opacity: 1;
	--tw-text-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}

.btn.loading,.btn.loading:hover {
	pointer-events: none;
}

.btn.loading:before {
	border-radius: 9999px;
	border-width: 2px;
	height: 1rem;
	margin-right: .5rem;
	width: 1rem;
	animation: spin 2s linear infinite;
	content: "";
	border-color: transparent currentColor currentColor transparent;
}

@media (prefers-reduced-motion:reduce) {

	.btn.loading:before {
		animation: spin 10s linear infinite;
	}
}

@keyframes spin {

	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(1turn);
	}
}

.btn-group>input[type=radio].btn {
	appearance: none;
}

.btn-group>input[type=radio].btn:before {
	content: attr(data-title);
}

.card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	border-radius: var(--rounded-box, 1rem);
}

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

.card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: var(--padding-card, 2rem);
}

.card figure,.card figure>* {
	width: 100%;
}

.card.image-full {
	display: grid;
}

.card.image-full:before {
	position: relative;
	content: "";
	--tw-bg-opacity: 1;
	background-color: hsla(var(--n) / var(--tw-bg-opacity, 1));
	opacity: .75;
	z-index: 10;
	border-radius: var(--rounded-box, 1rem);
}

.card.image-full:before,.card.image-full>* {
	grid-column-start: 1;
	grid-row-start: 1;
}

.card.image-full>figure img {
	height: 100%;
	object-fit: cover;
}

.card.image-full>.card-body {
	position: relative;
	--tw-text-opacity: 1;
	color: hsla(var(--nc) / var(--tw-text-opacity, 1));
	z-index: 20;
}

.dropdown {
	display: inline-block;
	position: relative;
}

.dropdown>:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.dropdown .dropdown-content {
	opacity: 0;
	position: absolute;
	visibility: hidden;
	z-index: 50;
	--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-x: .95;
	--tw-scale-y: 1;
	--tw-scale-y: .95;
	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));
	transform-origin: top;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.dropdown-end .dropdown-content {
	right: 0;
}

.dropdown-left .dropdown-content {
	top: 0;
	bottom: auto;
	right: 100%;
	transform-origin: right;
}

.dropdown-right .dropdown-content {
	top: 0;
	bottom: auto;
	left: 100%;
	transform-origin: left;
}

.dropdown-top .dropdown-content {
	top: auto;
	bottom: 100%;
	transform-origin: bottom;
}

.dropdown-end.dropdown-right .dropdown-content {
	bottom: 0;
	top: auto;
}

.dropdown-end.dropdown-left .dropdown-content {
	bottom: 0;
	top: auto;
}

.dropdown.dropdown-hover:hover .dropdown-content,.dropdown.dropdown-open .dropdown-content,.dropdown:not(.dropdown-hover):focus-within .dropdown-content,.dropdown:not(.dropdown-hover):focus .dropdown-content {
	opacity: 1;
	visibility: visible;
}

.footer {
	display: grid;
	place-items: start;
	width: 100%;
	grid-auto-flow: row;
	font-size: .875rem;
	line-height: 1.25rem;
	column-gap: 1rem;
	row-gap: 2.5rem;
}

.footer>* {
	display: grid;
	place-items: start;
	gap: .5rem;
}

@media (min-width:48rem) {

	.footer {
		grid-auto-flow: column;
	}

	.footer-center {
		grid-auto-flow: row dense;
	}
}

.form-control {
	display: flex;
	flex-direction: column;
}

.link {
	cursor: pointer;
	text-decoration: underline;
}

.menu {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.menu.horizontal {
	display: inline-flex;
	flex-direction: row;
}

.menu.horizontal :where(li) {
	flex-direction: row;
}

.menu :where(li) {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.menu :where(li)>a,.menu :where(li)>button,.menu :where(li)>span {
	display: flex;
	align-items: center;
	outline: 2px solid transparent;
	outline-offset: 2px;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.menu :where(li)>a {
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

.menu :where(li)>a:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.menu :where(li).disabled>a,.menu :where(li).disabled>button,.menu :where(li).disabled>span {
	cursor: auto;
}

.navbar {
	display: flex;
	align-items: center;
	padding: var(--navbar-padding, .5rem);
	min-height: 4rem;
}

.navbar>* {
	display: flex;
	align-items: center;
}

.select {
	appearance: none;
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	-webkit-user-select: none;
	user-select: none;
	height: 3rem;
	font-size: .875rem;
	line-height: 1.25rem;
	line-height: 2;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-right: 2.5rem;
	min-height: 3rem;
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b1) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	--tw-border-opacity: 0;
	border-color: hsla(var(--bc) / var(--tw-border-opacity, 1));
	border-width: 1px;
	font-weight: 600;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	border-radius: var(--rounded-btn, .5rem);
	background-image: linear-gradient(45deg, transparent 50%, currentColor 0),
    linear-gradient(135deg, currentColor 50%, transparent 0);
	background-position: calc(100% - 20px) calc(1px + 50%),
    calc(100% - 16px) calc(1px + 50%);
	background-size: 4px 4px,
    4px 4px;
	background-repeat: no-repeat;
}

.select:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsla(var(--bc) / .2);
}

.select-disabled,.select[disabled] {
	pointer-events: none;
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b2) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--b2) / var(--tw-border-opacity, 1));
	cursor: not-allowed;
	--tw-text-opacity: 0.2;
}

.stats {
	display: inline-grid;
	overflow: hidden;
	overflow-x: auto;
	grid-auto-flow: column;
	border-radius: var(--rounded-box, 1rem);
}

.stats.grid-flow-row {
	grid-auto-rows: minmax(0, 1fr);
}

.btn .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b1) / var(--tw-bg-opacity, 1));
	border-color: transparent;
	--tw-text-opacity: 1;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}

.btn .badge-outline {
	background-color: transparent;
	--tw-border-opacity: 1;
	border-color: hsla(var(--b2) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--b2) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-primary .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-secondary .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--s) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--s) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-primary .badge-outline {
	background-color: transparent;
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--p) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-secondary .badge-outline {
	background-color: transparent;
	--tw-border-opacity: 1;
	border-color: hsla(var(--s) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--s) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-primary:hover .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pc) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--p) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-primary:hover .badge.outline {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-secondary:hover .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sc) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--s) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-secondary:hover .badge.outline {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}

.btn:active:focus,.btn:active:hover {
	animation: none;
	transform: scale( var(--btn-focus-scale, .95) );
}

.btn-active,.btn:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--nf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--nf) / var(--tw-border-opacity, 1));
}

.btn:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--nf));
}

.btn-primary {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}

.btn-primary.btn-active,.btn-primary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pf) / var(--tw-border-opacity, 1));
}

.btn-primary:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
}

.btn-secondary {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--s) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--s) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}

.btn-secondary.btn-active,.btn-secondary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sf) / var(--tw-border-opacity, 1));
}

.btn-secondary:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
}

.btn.glass.btn-active,.btn.glass:hover {
	--glass-opacity: 25%;
	--glass-border-opacity: 15%;
}

.btn.glass:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}

.btn-ghost {
	background-color: transparent;
	border-color: transparent;
	border-width: 1px;
	color: currentColor;
}

.btn-ghost.btn-active,.btn-ghost:hover {
	--tw-bg-opacity: 1;
	--tw-bg-opacity: 0.2;
	background-color: hsla(var(--bc) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 0;
}

.btn-ghost:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}

.btn-outline.btn-primary {
	--tw-text-opacity: 1;
	color: hsla(var(--p) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-primary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pf) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-secondary {
	--tw-text-opacity: 1;
	color: hsla(var(--s) / var(--tw-text-opacity, 1));
}

.btn-outline.btn-secondary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sf) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}

.btn.loading.btn-circle:before,.btn.loading.btn-square:before {
	margin-right: 0;
}

.btn.loading.btn-lg:before,.btn.loading.btn-xl:before {
	height: 1.25rem;
	width: 1.25rem;
}

.btn.loading.btn-sm:before,.btn.loading.btn-xs:before {
	height: .75rem;
	width: .75rem;
}

.btn-group>.btn-active,.btn-group>input[type=radio]:checked.btn {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}

.btn-group>.btn-active:focus-visible,.btn-group>input[type=radio]:checked.btn:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
}

.btn-group>.btn:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
}

.btn-group>.btn:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

@keyframes button-pop {

	0% {
		transform: scale( var(--btn-focus-scale, .95) );
	}

	40% {
		transform: scale(1.02);
	}

	to {
		transform: scale(1);
	}
}

.card:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}

.card.bordered {
	--tw-border-opacity: 1;
	border-color: hsla(var(--b2) / var(--tw-border-opacity, 1));
	border-width: 1px;
}

.card.compact .card-body {
	font-size: .875rem;
	line-height: 1.25rem;
	padding: 1rem;
}

.card.compact .card-title {
	margin-bottom: .25rem;
}

@keyframes checkmark {

	0% {
		background-position-y: 5px;
	}

	50% {
		background-position-y: -2px;
	}

	to {
		background-position-y: 0;
	}
}

.drawer-toggle:focus-visible~.drawer-content .drawer-button.btn-primary {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
}

.drawer-toggle:focus-visible~.drawer-content .drawer-button.btn-secondary {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
}

.drawer-toggle:focus-visible~.drawer-content .drawer-button.btn-ghost {
	box-shadow: 0 0 0 2px currentColor;
}

.dropdown.dropdown-hover:hover .dropdown-content,.dropdown.dropdown-open .dropdown-content,.dropdown:focus-within .dropdown-content,.dropdown:focus .dropdown-content {
	--tw-scale-x: 1;
	--tw-scale-y: 1;
}

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

.link:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}

.menu.horizontal li.bordered>a,.menu.horizontal li.bordered>button,.menu.horizontal li.bordered>span {
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	border-left-width: 0;
	border-bottom-width: 4px;
}

.menu[class*=p-] li a {
	border-radius: var(--rounded-btn, .5rem);
}

.menu :where(li.bordered>a),.menu :where(li.bordered>button),.menu :where(li.bordered>span) {
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	border-left-width: 4px;
}

.menu li>:where(a),.menu li>:where(button),.menu li>:where(span) {
	padding: .75rem 1.25rem;
	color: currentColor;
}

.menu li>:where(a:focus),.menu li>:where(a:hover),.menu li>:where(button:focus),.menu li>:where(button:hover) {
	--tw-bg-opacity: 1;
	--tw-bg-opacity: 0.1;
	background-color: hsla(var(--bc) / var(--tw-bg-opacity, 1));
}

.menu li>:where(a.active),.menu li>:where(button.active) {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}

.menu li>:where(a:active),.menu li>:where(button:active) {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}

.menu li.disabled>a:hover,.menu li.disabled>button:hover,.menu li.disabled>span:hover {
	background-color: transparent;
}

.menu li.disabled>a,.menu li.disabled>button,.menu li.disabled>span {
	--tw-text-opacity: 1;
	--tw-text-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}

.menu li.hover-bordered a {
	border-color: transparent;
	border-left-width: 4px;
}

.menu li.hover-bordered a:hover {
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
}

.menu ul {
	padding-left: 1.5rem;
}

.menu.compact li>a,.menu.compact li>span {
	font-size: .875rem;
	line-height: 1.25rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.menu .menu-title>a,.menu .menu-title>span {
	font-weight: 700;
	font-size: .75rem;
	line-height: 1rem;
	padding-top: .25rem;
	padding-bottom: .25rem;
	--tw-text-opacity: 1;
	--tw-text-opacity: 0.4;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}

@keyframes radiomark {

	0% {
		box-shadow: 0 0 0 12px hsl(var(--b1)) inset, 0 0 0 12px hsl(var(--b1)) inset, var(--focus-shadow);
	}

	50% {
		box-shadow: 0 0 0 3px hsl(var(--b1)) inset, 0 0 0 3px hsl(var(--b1)) inset, var(--focus-shadow);
	}

	to {
		box-shadow: 0 0 0 4px hsl(var(--b1)) inset, 0 0 0 4px hsl(var(--b1)) inset, var(--focus-shadow);
	}
}

@keyframes rating-pop {

	0% {
		transform: translateY(-.125em);
	}

	40% {
		transform: translateY(-.125em);
	}

	to {
		transform: translateY(0);
	}
}

.select-disabled::placeholder,.select[disabled]::placeholder {
	--tw-placeholder-opacity: 1;
	--tw-placeholder-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-placeholder-opacity, 1));
}

.select-multiple,.select[multiple],.select[size].select:not([size="1"]) {
	background-image: none;
	padding-right: 1rem;
}

.stats.grid-flow-row .stat+.stat {
	border-left-width: 0;
	border-top-width: 1px;
}

.table tr.active:nth-child(2n) td,.table tr.active:nth-child(2n) th,.table tr.active td,.table tr.active th {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b3) / var(--tw-bg-opacity, 1));
}

.text-2xs {
	font-size: .7rem;
}

.btn-xs {
	height: 1.5rem;
	padding-left: .5rem;
	padding-right: .5rem;
	min-height: 1.5rem;
	font-size: .75rem;
}

.btn-sm {
	height: 2rem;
	padding-left: .75rem;
	padding-right: .75rem;
	min-height: 2rem;
	font-size: .875rem;
}

.btn-square:where(.btn-xs) {
	height: 1.5rem;
	padding: 0;
	width: 1.5rem;
}

.btn-square:where(.btn-sm) {
	height: 2rem;
	padding: 0;
	width: 2rem;
}

.btn-circle:where(.btn-xs) {
	border-radius: 9999px;
	height: 1.5rem;
	padding: 0;
	width: 1.5rem;
}

.btn-circle:where(.btn-sm) {
	border-radius: 9999px;
	height: 2rem;
	padding: 0;
	width: 2rem;
}

.select-sm {
	height: 2rem;
	font-size: .875rem;
	line-height: 1.25rem;
	line-height: 2rem;
	padding-left: .75rem;
	padding-right: 2rem;
	min-height: 2rem;
}

.card-compact [class~=card-body] {
	font-size: .875rem;
	line-height: 1.25rem;
	padding: 1rem;
}

.card-compact [class~=card-title] {
	margin-bottom: .25rem;
}

.fixed {
	position: fixed;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.bottom-0 {
	bottom: 0px;
}

.left-0 {
	left: 0px;
}

.right-0 {
	right: 0px;
}

.top-1 {
	top: 0.25rem;
}

.left-1 {
	left: 0.25rem;
}

.bottom-1 {
	bottom: 0.25rem;
}

.right-1 {
	right: 0.25rem;
}

.top-0 {
	top: 0px;
}

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

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

.col-span-1 {
	grid-column: span 1 / span 1;
}

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

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

.mx-3 {
	margin-left: 0.75rem;
	margin-right: 0.75rem;
}

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

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

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

.mb-2 {
	margin-bottom: 0.5rem;
}

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

.mb-1 {
	margin-bottom: 0.25rem;
}

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

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

.mr-5 {
	margin-right: 1.25rem;
}

.mt-24 {
	margin-top: 6rem;
}

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

.mb-16 {
	margin-bottom: 4rem;
}

.mt-6 {
	margin-top: 1.5rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

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

.block {
	display: block;
}

.inline {
	display: inline;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}

.hidden {
	display: none;
}

.h-8 {
	height: 2rem;
}

.h-4 {
	height: 1rem;
}

.h-screen {
	height: calc(var(--vh) * 100);
}

.h-10 {
	height: 2.5rem;
}

.h-16 {
	height: 4rem;
}

.h-\[76vh\] {
	height: 76vh;
}

.h-\[85vh\] {
	height: 85vh;
}

.h-24 {
	height: 6rem;
}

.max-h-\[54rem\] {
	max-height: 54rem;
}

.w-8 {
	width: 2rem;
}

.w-4 {
	width: 1rem;
}

.w-full {
	width: 100%;
}

.w-16 {
	width: 4rem;
}

.w-12 {
	width: 3rem;
}

.w-\[12rem\] {
	width: 12rem;
}

.w-\[60rem\] {
	width: 60rem;
}

.w-20 {
	width: 5rem;
}

.w-10 {
	width: 2.5rem;
}

.w-36 {
	width: 9rem;
}

.transform {
	transform: var(--tw-transform);
}

@keyframes spin {

	to {
		transform: rotate(360deg);
	}
}

.animate-spin {
	animation: spin 1s linear infinite;
}

.cursor-not-allowed {
	cursor: not-allowed;
}

.grid-flow-row {
	grid-auto-flow: row;
}

.auto-rows-max {
	grid-auto-rows: max-content;
}

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

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

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

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

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

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

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

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

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

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

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

.gap-2 {
	gap: 0.5rem;
}

.gap-5 {
	gap: 1.25rem;
}

.gap-1 {
	gap: 0.25rem;
}

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

.overflow-auto {
	overflow: auto;
}

.rounded {
	border-radius: 0.25rem;
}

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

.rounded-t-lg {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}

.rounded-b-lg {
	border-bottom-right-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
}

.border {
	border-width: 1px;
}

.border-2 {
	border-width: 2px;
}

.border-gray-500 {
	--tw-border-opacity: 1;
	border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}

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

.bg-gray-900 {
	--tw-bg-opacity: 1;
	background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.bg-green-500 {
	--tw-bg-opacity: 1;
	background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}

.bg-base-300 {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b3) / var(--tw-bg-opacity));
}

.bg-base-200 {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b2) / var(--tw-bg-opacity));
}

.bg-primary {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity));
}

.bg-red-800 {
	--tw-bg-opacity: 1;
	background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}

.bg-gray-400 {
	--tw-bg-opacity: 1;
	background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

.bg-opacity-70 {
	--tw-bg-opacity: 0.7;
}

.p-1 {
	padding: 0.25rem;
}

.p-2 {
	padding: 0.5rem;
}

.p-4 {
	padding: 1rem;
}

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

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

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

.font-trash {
	font-family: Trash;
}

.font-pixel {
	font-family: Pixel;
}

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

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

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

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.font-light {
	font-weight: 300;
}

.uppercase {
	text-transform: uppercase;
}

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

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

.text-neutral-content {
	--tw-text-opacity: 1;
	color: hsla(var(--nc) / var(--tw-text-opacity));
}

.text-green-500 {
	--tw-text-opacity: 1;
	color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.text-red-500 {
	--tw-text-opacity: 1;
	color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.underline {
	text-decoration: underline;
}

.opacity-5 {
	opacity: 0.05;
}

.opacity-75 {
	opacity: 0.75;
}

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

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

.hover\:cursor-pointer:hover {
	cursor: pointer;
}

.hover\:bg-gray-600:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

@media (min-width: 768px) {

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

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

@media (min-width: 1024px) {

	.lg\:static {
		position: static;
	}

	.lg\:m-0 {
		margin: 0px;
	}

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

	.lg\:block {
		display: block;
	}

	.lg\:grid {
		display: grid;
	}

	.lg\:hidden {
		display: none;
	}

	.lg\:h-\[85vh\] {
		height: 85vh;
	}

	.lg\:w-screen {
		width: 100vw;
	}

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

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

	.lg\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
}

/*! 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: #9ca3af;
}

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

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));
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--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);
}

:root {
	background-color: hsla(var(--b1) / var(--tw-bg-opacity,1));
	color: hsla(var(--bc) / var(--tw-text-opacity,1));
}

html {
	-webkit-tap-highlight-color: transparent;
}

:root {
	--p: 24 74.3% 51.2%;
	--pf: 32 88.8% 42%;
	--pc: 240 29.7% 17.8%;
	--s: 271 45.8% 42%;
	--sf: 271 46% 32%;
	--sc: 0 0% 100%;
	--a: 91 100% 32.9%;
	--af: 91 100% 22.9%;
	--ac: 0 0% 100%;
	--n: 180 3.6% 11%;
	--nf: 240 29.7% 17.8%;
	--nc: 0 0% 100%;
	--b1: 213 10.6% 33.3%;
	--b2: 216 10.6% 9.2%;
	--b3: 240 12.5% 15.7%;
	--bc: 0 0% 100%;
	--in: 202 100% 70%;
	--su: 89 61.6% 52%;
	--wa: 54 68.8% 63.5%;
	--er: 0 100% 71.8%;
	--border-color: var(--b3);
	--rounded-box: 1rem;
	--rounded-btn: 0.5rem;
	--rounded-badge: 1.9rem;
	--animation-btn: 0.25s;
	--animation-input: .2s;
	--btn-text-case: uppercase;
	--btn-focus-scale: 0.95;
	--navbar-padding: .5rem;
	--border-btn: 1px;
	--tab-border: 1px;
	--tab-radius: 0.5rem;
}
  @font-face {
    font-family: "Pixel";
    src: url(/_next/static/media/Pixel1.4648e02d.ttf);
  }

  @font-face {
    font-family: "Impact";
    src: url(/_next/static/media/Impact.1a7ecb64.ttf);
  }
  
  @font-face {
    font-family: "Trash";
    src: url(/_next/static/media/trashtalk.c3dbf8d3.ttf);
  }

  img {
	display: inline-block;
}
.btn {
	border-color: transparent;
	border-color: hsla(var(--n) / var(--tw-border-opacity, 1));
	cursor: pointer;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	border-radius: var(--rounded-btn, .5rem);
	height: 3rem;
	font-size: .875rem;
	line-height: 1.25rem;
	line-height: 1em;
	padding-left: 1rem;
	padding-right: 1rem;
	min-height: 3rem;
	font-weight: 600;
	text-transform: uppercase;
	text-transform: var(--btn-text-case, uppercase);
	border-width: var(--border-btn, 1px);
	animation: button-pop var(--animation-btn, .25s) ease-out;
	--tw-bg-opacity: 1;
	background-color: hsla(var(--n) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	--tw-text-opacity: 1;
	color: hsla(var(--nc) / var(--tw-text-opacity, 1));
}
.btn:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.btn-disabled,.btn[disabled] {
	pointer-events: none;
	--tw-bg-opacity: 1;
	--tw-bg-opacity: 0.2;
	background-color: hsla(var(--n) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 0;
	--tw-text-opacity: 1;
	--tw-text-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}
.btn.loading,.btn.loading:hover {
	pointer-events: none;
}
.btn.loading:before {
	border-radius: 9999px;
	border-width: 2px;
	height: 1rem;
	margin-right: .5rem;
	width: 1rem;
	animation: spin 2s linear infinite;
	content: "";
	border-color: transparent currentColor currentColor transparent;
}
@media (prefers-reduced-motion:reduce) {

	.btn.loading:before {
		animation: spin 10s linear infinite;
	}
}
@keyframes spin {

	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(1turn);
	}
}
.btn-group>input[type=radio].btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.btn-group>input[type=radio].btn:before {
	content: attr(data-title);
}
.card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	border-radius: var(--rounded-box, 1rem);
}
.card:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: var(--padding-card, 2rem);
}
.card figure,.card figure>* {
	width: 100%;
}
.card.image-full {
	display: grid;
}
.card.image-full:before {
	position: relative;
	content: "";
	--tw-bg-opacity: 1;
	background-color: hsla(var(--n) / var(--tw-bg-opacity, 1));
	opacity: .75;
	z-index: 10;
	border-radius: var(--rounded-box, 1rem);
}
.card.image-full:before,.card.image-full>* {
	grid-column-start: 1;
	grid-row-start: 1;
}
.card.image-full>figure img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.card.image-full>.card-body {
	position: relative;
	--tw-text-opacity: 1;
	color: hsla(var(--nc) / var(--tw-text-opacity, 1));
	z-index: 20;
}
.dropdown {
	display: inline-block;
	position: relative;
}
.dropdown>:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.dropdown .dropdown-content {
	opacity: 0;
	position: absolute;
	visibility: hidden;
	z-index: 50;
	--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-x: .95;
	--tw-scale-y: 1;
	--tw-scale-y: .95;
	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));
	transform-origin: top;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.dropdown-end .dropdown-content {
	right: 0;
}
.dropdown-left .dropdown-content {
	top: 0;
	bottom: auto;
	right: 100%;
	transform-origin: right;
}
.dropdown-right .dropdown-content {
	top: 0;
	bottom: auto;
	left: 100%;
	transform-origin: left;
}
.dropdown-top .dropdown-content {
	top: auto;
	bottom: 100%;
	transform-origin: bottom;
}
.dropdown-end.dropdown-right .dropdown-content {
	bottom: 0;
	top: auto;
}
.dropdown-end.dropdown-left .dropdown-content {
	bottom: 0;
	top: auto;
}
.dropdown.dropdown-hover:hover .dropdown-content,.dropdown.dropdown-open .dropdown-content,.dropdown:not(.dropdown-hover):focus-within .dropdown-content,.dropdown:not(.dropdown-hover):focus .dropdown-content {
	opacity: 1;
	visibility: visible;
}
.footer {
	display: grid;
	place-items: start;
	width: 100%;
	grid-auto-flow: row;
	font-size: .875rem;
	line-height: 1.25rem;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	row-gap: 2.5rem;
}
.footer>* {
	display: grid;
	place-items: start;
	gap: .5rem;
}
@media (min-width:48rem) {

	.footer {
		grid-auto-flow: column;
	}

	.footer-center {
		grid-auto-flow: row dense;
	}
}
.form-control {
	display: flex;
	flex-direction: column;
}
.link {
	cursor: pointer;
	text-decoration: underline;
}
.menu {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.menu.horizontal {
	display: inline-flex;
	flex-direction: row;
}
.menu.horizontal :where(li) {
	flex-direction: row;
}
.menu :where(li) {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.menu :where(li)>a,.menu :where(li)>button,.menu :where(li)>span {
	display: flex;
	align-items: center;
	outline: 2px solid transparent;
	outline-offset: 2px;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.menu :where(li)>a {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.menu :where(li)>a:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.menu :where(li).disabled>a,.menu :where(li).disabled>button,.menu :where(li).disabled>span {
	cursor: auto;
}
.navbar {
	display: flex;
	align-items: center;
	padding: var(--navbar-padding, .5rem);
	min-height: 4rem;
}
.navbar>* {
	display: flex;
	align-items: center;
}
.select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	height: 3rem;
	font-size: .875rem;
	line-height: 1.25rem;
	line-height: 2;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-right: 2.5rem;
	min-height: 3rem;
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b1) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	--tw-border-opacity: 0;
	border-color: hsla(var(--bc) / var(--tw-border-opacity, 1));
	border-width: 1px;
	font-weight: 600;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
	transition-duration: .15s;
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	border-radius: var(--rounded-btn, .5rem);
	background-image: linear-gradient(45deg, transparent 50%, currentColor 0),
    linear-gradient(135deg, currentColor 50%, transparent 0);
	background-position: calc(100% - 20px) calc(1px + 50%),
    calc(100% - 16px) calc(1px + 50%);
	background-size: 4px 4px,
    4px 4px;
	background-repeat: no-repeat;
}
.select:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsla(var(--bc) / .2);
}
.select-disabled,.select[disabled] {
	pointer-events: none;
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b2) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--b2) / var(--tw-border-opacity, 1));
	cursor: not-allowed;
	--tw-text-opacity: 0.2;
}
.stats {
	display: inline-grid;
	overflow: hidden;
	overflow-x: auto;
	grid-auto-flow: column;
	border-radius: var(--rounded-box, 1rem);
}
.stats.grid-flow-row {
	grid-auto-rows: minmax(0, 1fr);
}
.btn .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b1) / var(--tw-bg-opacity, 1));
	border-color: transparent;
	--tw-text-opacity: 1;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}
.btn .badge-outline {
	background-color: transparent;
	--tw-border-opacity: 1;
	border-color: hsla(var(--b2) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--b2) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-primary .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-secondary .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--s) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--s) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-primary .badge-outline {
	background-color: transparent;
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--p) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-secondary .badge-outline {
	background-color: transparent;
	--tw-border-opacity: 1;
	border-color: hsla(var(--s) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--s) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-primary:hover .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pc) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--p) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-primary:hover .badge.outline {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-secondary:hover .badge {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sc) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--s) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-secondary:hover .badge.outline {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sc) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}
.btn:active:focus,.btn:active:hover {
	animation: none;
	transform: scale( var(--btn-focus-scale, .95) );
}
.btn-active,.btn:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--nf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--nf) / var(--tw-border-opacity, 1));
}
.btn:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--nf));
}
.btn-primary {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}
.btn-primary.btn-active,.btn-primary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pf) / var(--tw-border-opacity, 1));
}
.btn-primary:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
}
.btn-secondary {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--s) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--s) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}
.btn-secondary.btn-active,.btn-secondary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sf) / var(--tw-border-opacity, 1));
}
.btn-secondary:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
}
.btn.glass.btn-active,.btn.glass:hover {
	--glass-opacity: 25%;
	--glass-border-opacity: 15%;
}
.btn.glass:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}
.btn-ghost {
	background-color: transparent;
	border-color: transparent;
	border-width: 1px;
	color: currentColor;
}
.btn-ghost.btn-active,.btn-ghost:hover {
	--tw-bg-opacity: 1;
	--tw-bg-opacity: 0.2;
	background-color: hsla(var(--bc) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 0;
}
.btn-ghost:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}
.btn-outline.btn-primary {
	--tw-text-opacity: 1;
	color: hsla(var(--p) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-primary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--pf) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-secondary {
	--tw-text-opacity: 1;
	color: hsla(var(--s) / var(--tw-text-opacity, 1));
}
.btn-outline.btn-secondary:hover {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--sf) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--sf) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--sc) / var(--tw-text-opacity, 1));
}
.btn.loading.btn-circle:before,.btn.loading.btn-square:before {
	margin-right: 0;
}
.btn.loading.btn-lg:before,.btn.loading.btn-xl:before {
	height: 1.25rem;
	width: 1.25rem;
}
.btn.loading.btn-sm:before,.btn.loading.btn-xs:before {
	height: .75rem;
	width: .75rem;
}
.btn-group>.btn-active,.btn-group>input[type=radio]:checked.btn {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}
.btn-group>.btn-active:focus-visible,.btn-group>input[type=radio]:checked.btn:focus-visible {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
}
.btn-group>.btn:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
}
.btn-group>.btn:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
@keyframes button-pop {

	0% {
		transform: scale( var(--btn-focus-scale, .95) );
	}

	40% {
		transform: scale(1.02);
	}

	to {
		transform: scale(1);
	}
}
.card:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}
.card.bordered {
	--tw-border-opacity: 1;
	border-color: hsla(var(--b2) / var(--tw-border-opacity, 1));
	border-width: 1px;
}
.card.compact .card-body {
	font-size: .875rem;
	line-height: 1.25rem;
	padding: 1rem;
}
.card.compact .card-title {
	margin-bottom: .25rem;
}
@keyframes checkmark {

	0% {
		background-position-y: 5px;
	}

	50% {
		background-position-y: -2px;
	}

	to {
		background-position-y: 0;
	}
}
.drawer-toggle:focus-visible~.drawer-content .drawer-button.btn-primary {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
}
.drawer-toggle:focus-visible~.drawer-content .drawer-button.btn-secondary {
	box-shadow: 0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
}
.drawer-toggle:focus-visible~.drawer-content .drawer-button.btn-ghost {
	box-shadow: 0 0 0 2px currentColor;
}
.dropdown.dropdown-hover:hover .dropdown-content,.dropdown.dropdown-open .dropdown-content,.dropdown:focus-within .dropdown-content,.dropdown:focus .dropdown-content {
	--tw-scale-x: 1;
	--tw-scale-y: 1;
}
.link:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.link:focus-visible {
	box-shadow: 0 0 0 2px currentColor;
}
.menu.horizontal li.bordered>a,.menu.horizontal li.bordered>button,.menu.horizontal li.bordered>span {
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	border-left-width: 0;
	border-bottom-width: 4px;
}
.menu[class*=p-] li a {
	border-radius: var(--rounded-btn, .5rem);
}
.menu :where(li.bordered>a),.menu :where(li.bordered>button),.menu :where(li.bordered>span) {
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
	border-left-width: 4px;
}
.menu li>:where(a),.menu li>:where(button),.menu li>:where(span) {
	padding: .75rem 1.25rem;
	color: currentColor;
}
.menu li>:where(a:focus),.menu li>:where(a:hover),.menu li>:where(button:focus),.menu li>:where(button:hover) {
	--tw-bg-opacity: 1;
	--tw-bg-opacity: 0.1;
	background-color: hsla(var(--bc) / var(--tw-bg-opacity, 1));
}
.menu li>:where(a.active),.menu li>:where(button.active) {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}
.menu li>:where(a:active),.menu li>:where(button:active) {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--pf) / var(--tw-bg-opacity, 1));
	--tw-text-opacity: 1;
	color: hsla(var(--pc) / var(--tw-text-opacity, 1));
}
.menu li.disabled>a:hover,.menu li.disabled>button:hover,.menu li.disabled>span:hover {
	background-color: transparent;
}
.menu li.disabled>a,.menu li.disabled>button,.menu li.disabled>span {
	--tw-text-opacity: 1;
	--tw-text-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}
.menu li.hover-bordered a {
	border-color: transparent;
	border-left-width: 4px;
}
.menu li.hover-bordered a:hover {
	--tw-border-opacity: 1;
	border-color: hsla(var(--p) / var(--tw-border-opacity, 1));
}
.menu ul {
	padding-left: 1.5rem;
}
.menu.compact li>a,.menu.compact li>span {
	font-size: .875rem;
	line-height: 1.25rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
}
.menu .menu-title>a,.menu .menu-title>span {
	font-weight: 700;
	font-size: .75rem;
	line-height: 1rem;
	padding-top: .25rem;
	padding-bottom: .25rem;
	--tw-text-opacity: 1;
	--tw-text-opacity: 0.4;
	color: hsla(var(--bc) / var(--tw-text-opacity, 1));
}
@keyframes radiomark {

	0% {
		box-shadow: 0 0 0 12px hsl(var(--b1)) inset, 0 0 0 12px hsl(var(--b1)) inset, var(--focus-shadow);
	}

	50% {
		box-shadow: 0 0 0 3px hsl(var(--b1)) inset, 0 0 0 3px hsl(var(--b1)) inset, var(--focus-shadow);
	}

	to {
		box-shadow: 0 0 0 4px hsl(var(--b1)) inset, 0 0 0 4px hsl(var(--b1)) inset, var(--focus-shadow);
	}
}
@keyframes rating-pop {

	0% {
		transform: translateY(-.125em);
	}

	40% {
		transform: translateY(-.125em);
	}

	to {
		transform: translateY(0);
	}
}
.select-disabled::-moz-placeholder,.select[disabled]::-moz-placeholder {
	--tw-placeholder-opacity: 1;
	--tw-placeholder-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-placeholder-opacity, 1));
}
.select-disabled::-moz-placeholder, .select[disabled]::-moz-placeholder {
	--tw-placeholder-opacity: 1;
	--tw-placeholder-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-placeholder-opacity, 1));
}
.select-disabled::placeholder,.select[disabled]::placeholder {
	--tw-placeholder-opacity: 1;
	--tw-placeholder-opacity: 0.2;
	color: hsla(var(--bc) / var(--tw-placeholder-opacity, 1));
}
.select-multiple,.select[multiple],.select[size].select:not([size="1"]) {
	background-image: none;
	padding-right: 1rem;
}
.stats.grid-flow-row .stat+.stat {
	border-left-width: 0;
	border-top-width: 1px;
}
.table tr.active:nth-child(2n) td,.table tr.active:nth-child(2n) th,.table tr.active td,.table tr.active th {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b3) / var(--tw-bg-opacity, 1));
}
.text-2xs {
	font-size: .7rem;
}
.btn-xs {
	height: 1.5rem;
	padding-left: .5rem;
	padding-right: .5rem;
	min-height: 1.5rem;
	font-size: .75rem;
}
.btn-sm {
	height: 2rem;
	padding-left: .75rem;
	padding-right: .75rem;
	min-height: 2rem;
	font-size: .875rem;
}
.btn-square:where(.btn-xs) {
	height: 1.5rem;
	padding: 0;
	width: 1.5rem;
}
.btn-square:where(.btn-sm) {
	height: 2rem;
	padding: 0;
	width: 2rem;
}
.btn-circle:where(.btn-xs) {
	border-radius: 9999px;
	height: 1.5rem;
	padding: 0;
	width: 1.5rem;
}
.btn-circle:where(.btn-sm) {
	border-radius: 9999px;
	height: 2rem;
	padding: 0;
	width: 2rem;
}
.select-sm {
	height: 2rem;
	font-size: .875rem;
	line-height: 1.25rem;
	line-height: 2rem;
	padding-left: .75rem;
	padding-right: 2rem;
	min-height: 2rem;
}
.card-compact [class~=card-body] {
	font-size: .875rem;
	line-height: 1.25rem;
	padding: 1rem;
}
.card-compact [class~=card-title] {
	margin-bottom: .25rem;
}
.fixed {
	position: fixed;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.bottom-0 {
	bottom: 0px;
}
.left-0 {
	left: 0px;
}
.right-0 {
	right: 0px;
}
.top-1 {
	top: 0.25rem;
}
.left-1 {
	left: 0.25rem;
}
.bottom-1 {
	bottom: 0.25rem;
}
.right-1 {
	right: 0.25rem;
}
.top-0 {
	top: 0px;
}
.z-10 {
	z-index: 10;
}
.z-50 {
	z-index: 50;
}
.col-span-1 {
	grid-column: span 1 / span 1;
}
.col-span-2 {
	grid-column: span 2 / span 2;
}
.mx-2 {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}
.mx-3 {
	margin-left: 0.75rem;
	margin-right: 0.75rem;
}
.mt-1 {
	margin-top: 0.25rem;
}
.mr-2 {
	margin-right: 0.5rem;
}
.ml-8 {
	margin-left: 2rem;
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mr-1 {
	margin-right: 0.25rem;
}
.mb-1 {
	margin-bottom: 0.25rem;
}
.ml-2 {
	margin-left: 0.5rem;
}
.mr-3 {
	margin-right: 0.75rem;
}
.mr-5 {
	margin-right: 1.25rem;
}
.mt-24 {
	margin-top: 6rem;
}
.mt-2 {
	margin-top: 0.5rem;
}
.mb-16 {
	margin-bottom: 4rem;
}
.mt-6 {
	margin-top: 1.5rem;
}
.mb-4 {
	margin-bottom: 1rem;
}
.mt-4 {
	margin-top: 1rem;
}
.block {
	display: block;
}
.inline {
	display: inline;
}
.flex {
	display: flex;
}
.grid {
	display: grid;
}
.hidden {
	display: none;
}
.h-8 {
	height: 2rem;
}
.h-4 {
	height: 1rem;
}
.h-screen {
	height: calc(var(--vh) * 100);
}
.h-10 {
	height: 2.5rem;
}
.h-16 {
	height: 4rem;
}
.h-\[76vh\] {
	height: 76vh;
}
.h-\[85vh\] {
	height: 85vh;
}
.h-24 {
	height: 6rem;
}
.max-h-\[54rem\] {
	max-height: 54rem;
}
.w-8 {
	width: 2rem;
}
.w-4 {
	width: 1rem;
}
.w-full {
	width: 100%;
}
.w-16 {
	width: 4rem;
}
.w-12 {
	width: 3rem;
}
.w-\[12rem\] {
	width: 12rem;
}
.w-\[60rem\] {
	width: 60rem;
}
.w-20 {
	width: 5rem;
}
.w-10 {
	width: 2.5rem;
}
.w-36 {
	width: 9rem;
}
.transform {
	transform: var(--tw-transform);
}
@keyframes spin {

	to {
		transform: rotate(360deg);
	}
}
.animate-spin {
	animation: spin 1s linear infinite;
}
.cursor-not-allowed {
	cursor: not-allowed;
}
.grid-flow-row {
	grid-auto-flow: row;
}
.auto-rows-max {
	grid-auto-rows: max-content;
}
.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-rows-2 {
	grid-template-rows: repeat(2, minmax(0, 1fr));
}
.flex-col {
	flex-direction: column;
}
.flex-wrap {
	flex-wrap: wrap;
}
.place-content-center {
	place-content: center;
}
.content-center {
	align-content: center;
}
.items-start {
	align-items: flex-start;
}
.items-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.gap-2 {
	gap: 0.5rem;
}
.gap-5 {
	gap: 1.25rem;
}
.gap-1 {
	gap: 0.25rem;
}
.space-x-5 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(1.25rem * var(--tw-space-x-reverse));
	margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-auto {
	overflow: auto;
}
.rounded {
	border-radius: 0.25rem;
}
.rounded-lg {
	border-radius: 0.5rem;
}
.rounded-t-lg {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}
.rounded-b-lg {
	border-bottom-right-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
}
.border {
	border-width: 1px;
}
.border-2 {
	border-width: 2px;
}
.border-gray-500 {
	--tw-border-opacity: 1;
	border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}
.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-gray-900 {
	--tw-bg-opacity: 1;
	background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}
.bg-green-500 {
	--tw-bg-opacity: 1;
	background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}
.bg-base-300 {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b3) / var(--tw-bg-opacity));
}
.bg-base-200 {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--b2) / var(--tw-bg-opacity));
}
.bg-primary {
	--tw-bg-opacity: 1;
	background-color: hsla(var(--p) / var(--tw-bg-opacity));
}
.bg-red-800 {
	--tw-bg-opacity: 1;
	background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}
.bg-gray-400 {
	--tw-bg-opacity: 1;
	background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}
.bg-opacity-70 {
	--tw-bg-opacity: 0.7;
}
.p-1 {
	padding: 0.25rem;
}
.p-2 {
	padding: 0.5rem;
}
.p-4 {
	padding: 1rem;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.font-trash {
	font-family: Trash;
}
.font-pixel {
	font-family: Pixel;
}
.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}
.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}
.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}
.font-light {
	font-weight: 300;
}
.uppercase {
	text-transform: uppercase;
}
.text-white {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-black {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-neutral-content {
	--tw-text-opacity: 1;
	color: hsla(var(--nc) / var(--tw-text-opacity));
}
.text-green-500 {
	--tw-text-opacity: 1;
	color: rgba(16, 185, 129, var(--tw-text-opacity));
}
.text-red-500 {
	--tw-text-opacity: 1;
	color: rgba(239, 68, 68, var(--tw-text-opacity));
}
.underline {
	text-decoration: underline;
}
.opacity-5 {
	opacity: 0.05;
}
.opacity-75 {
	opacity: 0.75;
}
.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);
}
.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;
}
.scrollbar::-webkit-scrollbar {
    width: 17px;
    height: 20px;
  }
.scrollbar::-webkit-scrollbar-track {
    background: #15171a;
  }
.scrollbar::-webkit-scrollbar-thumb {
    background: #b9c7d7;
    border-radius: 6px;
    border: 3px solid #384152;
  }
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #df6f25;
  }
.hover\:cursor-pointer:hover {
	cursor: pointer;
}
.hover\:bg-gray-600:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}
@media (min-width: 768px) {

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

	.md\:flex-row {
		flex-direction: row;
	}
}
@media (min-width: 1024px) {

	.lg\:static {
		position: static;
	}

	.lg\:m-0 {
		margin: 0px;
	}

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

	.lg\:block {
		display: block;
	}

	.lg\:grid {
		display: grid;
	}

	.lg\:hidden {
		display: none;
	}

	.lg\:h-\[85vh\] {
		height: 85vh;
	}

	.lg\:w-screen {
		width: 100vw;
	}

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

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

	.lg\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  height: 100vh;
  width: 100vw;
}
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

.element__wrapper {
  display: inline-flex;
  box-sizing: border-box;
  position: absolute;
}
.element__wrapper:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 1px dashed white;
}
.element__wrapper.element__selected {
  background-color: #eee;
}
.element__wrapper.element__selectable {
  box-sizing: border-box;
  color: #fff;
}
.art_board_wrapper {
  position: relative;
  height: 800px;
}
.art_board_wrapper.show__ruler {
  margin-top: 20px;
  margin-left: 20px;
}
.art_board_wrapper .art_board_area {
  position: relative;
  background-color: transparent;
  border: 2px;
  margin: 0 auto;
  height: 800px;
}
.art_board__loading .art_board_wrapper .art_board_area {
  background-color: transparent;
  height: 800px;
}
.art_board_wrapper .art_board_area.art_board__desktop {
  width: 100%;
}
.art_board_wrapper .art_board_area.art_board__tablet {
  width: 890px;
}
.art_board_wrapper .art_board_area.art_board__phone {
  width: 425px;
}
.test__section {
  height: 200px;
}
.lf__selector {
  position: absolute;
  background: rgba(0, 0, 255, 0.1);
  border: 1px dashed transparent;
  display: none;
  z-index: 100;
  pointer-events: none;
}
.lf__selector.mouse__drag_LeftUp {
  background: rgba(77, 5, 232, 0.1);
  border-color: #4d05e8;
}
.lf__selector.mouse__drag_LeftDown {
  background: rgba(77, 5, 232, 0.1);
  border-color: #4d05e8;
}
.lf__selector.mouse__drag_RightUp {
  background: rgba(0, 230, 64, 0.1);
  border-color: #00e640;
}
.lf__selector.mouse__drag_RightDown {
  background: rgba(0, 230, 64, 0.1);
  border-color: #00e640;
}
.lf__tooltip {
  position: fixed;
  top: 0;
  left: 0;
  padding: 5px;
  border-radius: 5px;
  background: #333;
  z-index: 10;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  display: none;
  transform: translate(-100%, -100%);
}
.ruler {
  position: absolute;
  top: 0;
  left: 0;
}
.ruler.horizontal {
  width: 100%;
  height: 20px;
}
.ruler.vertical {
  width: 20px;
  height: 100%;
}
.box {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #444;
  box-sizing: border-box;
  z-index: 21;
}
.box:before, .box:after {
  position: absolute;
  content: "";
  background: #777;
}
.box:before {
  width: 1px;
  height: 100%;
  left: 100%;
}
.box:after {
  height: 1px;
  width: 100%;
  top: 100%;
}

